(%i1) batch(diffeq.max) read and interpret file: /home/dennis/mastersource/mine/omnisode/diffeq.max (%i2) load(stringproc) (%o2) /usr/local/share/maxima/5.26.0/share/contrib/stringproc/stringproc.mac (%i3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "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 : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%o3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "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 : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%i4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), 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 ), hnew : sz2) 1 (%o4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), 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 ), hnew : sz2) 1 (%i5) prog_report(x_start, x_end) := (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(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 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(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 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, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%o5) prog_report(x_start, x_end) := (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(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 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(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 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, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%i6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%o6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%i7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%o7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%i8) atomall() := (array_tmp1 : array_m1 array_const_3D0 , 1 1 1 array_tmp1 array_tmp2 1 1 array_tmp2 : -----------, array_tmp3 : -----------, 1 array_x 1 array_x 1 1 array_tmp3 array_tmp4 1 1 array_tmp4 : -----------, array_tmp5 : -----------, 1 array_x 1 array_x 1 1 array_tmp6 : array_tmp5 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp6 glob_h factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 2, glob_h 2, 1 array_tmp1 : ats(2, array_m1, array_const_3D0, 1), 2 array_tmp1 - ats(2, array_x, array_tmp2, 2) 2 array_tmp2 : --------------------------------------------, 2 array_x 1 array_tmp2 - ats(2, array_x, array_tmp3, 2) 2 array_tmp3 : --------------------------------------------, 2 array_x 1 array_tmp3 - ats(2, array_x, array_tmp4, 2) 2 array_tmp4 : --------------------------------------------, 2 array_x 1 array_tmp4 - ats(2, array_x, array_tmp5, 2) 2 array_tmp5 : --------------------------------------------, 2 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp6 glob_h factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 3, glob_h 2, 2 array_tmp1 : ats(3, array_m1, array_const_3D0, 1), 3 array_tmp1 - ats(3, array_x, array_tmp2, 2) 3 array_tmp2 : --------------------------------------------, 3 array_x 1 array_tmp2 - ats(3, array_x, array_tmp3, 2) 3 array_tmp3 : --------------------------------------------, 3 array_x 1 array_tmp3 - ats(3, array_x, array_tmp4, 2) 3 array_tmp4 : --------------------------------------------, 3 array_x 1 array_tmp4 - ats(3, array_x, array_tmp5, 2) 3 array_tmp5 : --------------------------------------------, 3 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp6 glob_h factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 4, glob_h 2, 3 array_tmp1 : ats(4, array_m1, array_const_3D0, 1), 4 array_tmp1 - ats(4, array_x, array_tmp2, 2) 4 array_tmp2 : --------------------------------------------, 4 array_x 1 array_tmp2 - ats(4, array_x, array_tmp3, 2) 4 array_tmp3 : --------------------------------------------, 4 array_x 1 array_tmp3 - ats(4, array_x, array_tmp4, 2) 4 array_tmp4 : --------------------------------------------, 4 array_x 1 array_tmp4 - ats(4, array_x, array_tmp5, 2) 4 array_tmp5 : --------------------------------------------, 4 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp6 glob_h factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 5, glob_h 2, 4 array_tmp1 : ats(5, array_m1, array_const_3D0, 1), 5 array_tmp1 - ats(5, array_x, array_tmp2, 2) 5 array_tmp2 : --------------------------------------------, 5 array_x 1 array_tmp2 - ats(5, array_x, array_tmp3, 2) 5 array_tmp3 : --------------------------------------------, 5 array_x 1 array_tmp3 - ats(5, array_x, array_tmp4, 2) 5 array_tmp4 : --------------------------------------------, 5 array_x 1 array_tmp4 - ats(5, array_x, array_tmp5, 2) 5 array_tmp5 : --------------------------------------------, 5 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp6 glob_h factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 6, glob_h 2, 5 while kkk <= glob_max_terms do (array_tmp1 : kkk ats(kkk, array_m1, array_const_3D0, 1), array_tmp1 - ats(kkk, array_x, array_tmp2, 2) kkk array_tmp2 : ------------------------------------------------, kkk array_x 1 array_tmp2 - ats(kkk, array_x, array_tmp3, 2) kkk array_tmp3 : ------------------------------------------------, kkk array_x 1 array_tmp3 - ats(kkk, array_x, array_tmp4, 2) kkk array_tmp4 : ------------------------------------------------, kkk array_x 1 array_tmp4 - ats(kkk, array_x, array_tmp5, 2) kkk array_tmp5 : ------------------------------------------------, kkk array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , order_d : 1, kkk kkk kkk if 1 + order_d + kkk <= glob_max_terms then (if not array_y_set_initial 1, order_d + kkk order_d array_tmp6 glob_h kkk then (temporary : -----------------------------------------, factorial_3(kkk - 1, - 1 + order_d + kkk) array_y : temporary, array_y_higher : temporary, order_d + kkk 1, order_d + kkk term : - 1 + order_d + kkk, adj2 : 2, while (adj2 <= 1 + order_d) temporary convfp(adj2) and (term >= 1) do (temporary : ----------------------, glob_h array_y_higher : temporary, adj2 : 1 + adj2, term : term - 1))), adj2, term kkk : 1 + kkk)) (%o8) atomall() := (array_tmp1 : array_m1 array_const_3D0 , 1 1 1 array_tmp1 array_tmp2 1 1 array_tmp2 : -----------, array_tmp3 : -----------, 1 array_x 1 array_x 1 1 array_tmp3 array_tmp4 1 1 array_tmp4 : -----------, array_tmp5 : -----------, 1 array_x 1 array_x 1 1 array_tmp6 : array_tmp5 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp6 glob_h factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 2, glob_h 2, 1 array_tmp1 : ats(2, array_m1, array_const_3D0, 1), 2 array_tmp1 - ats(2, array_x, array_tmp2, 2) 2 array_tmp2 : --------------------------------------------, 2 array_x 1 array_tmp2 - ats(2, array_x, array_tmp3, 2) 2 array_tmp3 : --------------------------------------------, 2 array_x 1 array_tmp3 - ats(2, array_x, array_tmp4, 2) 2 array_tmp4 : --------------------------------------------, 2 array_x 1 array_tmp4 - ats(2, array_x, array_tmp5, 2) 2 array_tmp5 : --------------------------------------------, 2 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp6 glob_h factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 3, glob_h 2, 2 array_tmp1 : ats(3, array_m1, array_const_3D0, 1), 3 array_tmp1 - ats(3, array_x, array_tmp2, 2) 3 array_tmp2 : --------------------------------------------, 3 array_x 1 array_tmp2 - ats(3, array_x, array_tmp3, 2) 3 array_tmp3 : --------------------------------------------, 3 array_x 1 array_tmp3 - ats(3, array_x, array_tmp4, 2) 3 array_tmp4 : --------------------------------------------, 3 array_x 1 array_tmp4 - ats(3, array_x, array_tmp5, 2) 3 array_tmp5 : --------------------------------------------, 3 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp6 glob_h factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 4, glob_h 2, 3 array_tmp1 : ats(4, array_m1, array_const_3D0, 1), 4 array_tmp1 - ats(4, array_x, array_tmp2, 2) 4 array_tmp2 : --------------------------------------------, 4 array_x 1 array_tmp2 - ats(4, array_x, array_tmp3, 2) 4 array_tmp3 : --------------------------------------------, 4 array_x 1 array_tmp3 - ats(4, array_x, array_tmp4, 2) 4 array_tmp4 : --------------------------------------------, 4 array_x 1 array_tmp4 - ats(4, array_x, array_tmp5, 2) 4 array_tmp5 : --------------------------------------------, 4 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp6 glob_h factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 5, glob_h 2, 4 array_tmp1 : ats(5, array_m1, array_const_3D0, 1), 5 array_tmp1 - ats(5, array_x, array_tmp2, 2) 5 array_tmp2 : --------------------------------------------, 5 array_x 1 array_tmp2 - ats(5, array_x, array_tmp3, 2) 5 array_tmp3 : --------------------------------------------, 5 array_x 1 array_tmp3 - ats(5, array_x, array_tmp4, 2) 5 array_tmp4 : --------------------------------------------, 5 array_x 1 array_tmp4 - ats(5, array_x, array_tmp5, 2) 5 array_tmp5 : --------------------------------------------, 5 array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp6 glob_h factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 6, glob_h 2, 5 while kkk <= glob_max_terms do (array_tmp1 : kkk ats(kkk, array_m1, array_const_3D0, 1), array_tmp1 - ats(kkk, array_x, array_tmp2, 2) kkk array_tmp2 : ------------------------------------------------, kkk array_x 1 array_tmp2 - ats(kkk, array_x, array_tmp3, 2) kkk array_tmp3 : ------------------------------------------------, kkk array_x 1 array_tmp3 - ats(kkk, array_x, array_tmp4, 2) kkk array_tmp4 : ------------------------------------------------, kkk array_x 1 array_tmp4 - ats(kkk, array_x, array_tmp5, 2) kkk array_tmp5 : ------------------------------------------------, kkk array_x 1 array_tmp6 : array_tmp5 + array_const_0D0 , order_d : 1, kkk kkk kkk if 1 + order_d + kkk <= glob_max_terms then (if not array_y_set_initial 1, order_d + kkk order_d array_tmp6 glob_h kkk then (temporary : -----------------------------------------, factorial_3(kkk - 1, - 1 + order_d + kkk) array_y : temporary, array_y_higher : temporary, order_d + kkk 1, order_d + kkk term : - 1 + order_d + kkk, adj2 : 2, while (adj2 <= 1 + order_d) temporary convfp(adj2) and (term >= 1) do (temporary : ----------------------, glob_h array_y_higher : temporary, adj2 : 1 + adj2, term : term - 1))), adj2, term kkk : 1 + kkk)) log(x) (%i9) log10(x) := --------- log(10.0) log(x) (%o9) log10(x) := --------- log(10.0) (%i10) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%o10) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%i11) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%o11) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%i12) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%o12) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%i13) omniout_float(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (if vallen = 4 then printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel) else printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel)) (%o13) omniout_float(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (if vallen = 4 then printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel) else printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel)) (%i14) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%o14) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%i15) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%o15) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%i16) dump_series(iolevel, dump_label, series_name, array_series, numb) := if glob_iolevel >= iolevel then (i : 1, while i <= numb do (sprint(dump_label, series_name, "i = ", i, "series = ", array_series ), newline(), i : 1 + i)) i (%o16) dump_series(iolevel, dump_label, series_name, array_series, numb) := if glob_iolevel >= iolevel then (i : 1, while i <= numb do (sprint(dump_label, series_name, "i = ", i, "series = ", array_series ), newline(), i : 1 + i)) i (%i17) dump_series_2(iolevel, dump_label, series_name, array_series2, numb, subnum) := if glob_iolevel >= iolevel then (sub : 1, while sub <= subnum do (i : 1, while i <= num do (sprint(dump_label, series_name, "sub = ", sub, "i = ", i, "series2 = ", array_series2 ), i : 1 + i), sub : 1 + sub)) sub, i (%o17) dump_series_2(iolevel, dump_label, series_name, array_series2, numb, subnum) := if glob_iolevel >= iolevel then (sub : 1, while sub <= subnum do (i : 1, while i <= num do (sprint(dump_label, series_name, "sub = ", sub, "i = ", i, "series2 = ", array_series2 ), i : 1 + i), sub : 1 + sub)) sub, i (%i18) cs_info(iolevel, str) := if glob_iolevel >= iolevel then sprint(concat("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h)) (%o18) cs_info(iolevel, str) := if glob_iolevel >= iolevel then sprint(concat("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h)) (%i19) logitem_time(fd, secs_in) := (secs : secs_in, printf(fd, ""), if secs >= 0.0 then (sec_in_millinium : sec_in_min min_in_hour hours_in_day days_in_year years_in_century secs centuries_in_millinium, milliniums : ----------------, sec_in_millinium millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) centuries_in_millinium, cent_int : floor(centuries), years : (centuries - cent_int) years_in_century, years_int : floor(years), days : (years - years_int) days_in_year, days_int : floor(days), hours : (days - days_int) hours_in_day, hours_int : floor(hours), minutes : (hours - hours_int) min_in_hour, minutes_int : floor(minutes), seconds : (minutes - minutes_int) sec_in_min, sec_int : floor(seconds), if millinium_int > 0 then printf(fd, "~d Millinia ~d\ Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(fd, "~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(fd, "~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(fd, "~d Days ~d Hours ~d Minutes ~d Seconds", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(fd, "~d Hours ~d Minutes ~d Seconds", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(fd, "~d Minutes ~d Seconds", minutes_int, sec_int) else printf(fd, "~d Seconds", sec_int)) else printf(fd, "Unknown"), printf(fd, "")) (%o19) logitem_time(fd, secs_in) := (secs : secs_in, printf(fd, ""), if secs >= 0.0 then (sec_in_millinium : sec_in_min min_in_hour hours_in_day days_in_year years_in_century secs centuries_in_millinium, milliniums : ----------------, sec_in_millinium millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) centuries_in_millinium, cent_int : floor(centuries), years : (centuries - cent_int) years_in_century, years_int : floor(years), days : (years - years_int) days_in_year, days_int : floor(days), hours : (days - days_int) hours_in_day, hours_int : floor(hours), minutes : (hours - hours_int) min_in_hour, minutes_int : floor(minutes), seconds : (minutes - minutes_int) sec_in_min, sec_int : floor(seconds), if millinium_int > 0 then printf(fd, "~d Millinia ~d\ Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(fd, "~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(fd, "~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(fd, "~d Days ~d Hours ~d Minutes ~d Seconds", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(fd, "~d Hours ~d Minutes ~d Seconds", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(fd, "~d Minutes ~d Seconds", minutes_int, sec_int) else printf(fd, "~d Seconds", sec_int)) else printf(fd, "Unknown"), printf(fd, "")) (%i20) omniout_timestr(secs_in) := (secs : convfloat(secs_in), if secs >= convfloat(0.0) then (sec_in_millinium : convfloat(sec_in_min) convfloat(min_in_hour) convfloat(hours_in_day) convfloat(days_in_year) convfloat(years_in_century) secs convfloat(centuries_in_millinium), milliniums : ---------------------------, convfloat(sec_in_millinium) millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) convfloat(centuries_in_millinium), cent_int : floor(centuries), years : (centuries - cent_int) convfloat(years_in_century), years_int : floor(years), days : (years - years_int) convfloat(days_in_year), days_int : floor(days), hours : (days - days_int) convfloat(hours_in_day), hours_int : floor(hours), minutes : (hours - hours_int) convfloat(min_in_hour), minutes_int : floor(minutes), seconds : (minutes - minutes_int) convfloat(sec_in_min), sec_int : floor(seconds), if millinium_int > 0 then printf(true, "= ~d Millinia ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(true, "= ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(true, "= ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(true, "= ~d Days ~d Hours ~d Minutes ~d Seconds~%", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(true, "= ~d Hours ~d Minutes ~d Seconds~%", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(true, "= ~d Minutes ~d Seconds~%", minutes_int, sec_int) else printf(true, "= ~d Seconds~%", sec_int)) else printf(true, " Unknown~%")) (%o20) omniout_timestr(secs_in) := (secs : convfloat(secs_in), if secs >= convfloat(0.0) then (sec_in_millinium : convfloat(sec_in_min) convfloat(min_in_hour) convfloat(hours_in_day) convfloat(days_in_year) convfloat(years_in_century) secs convfloat(centuries_in_millinium), milliniums : ---------------------------, convfloat(sec_in_millinium) millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) convfloat(centuries_in_millinium), cent_int : floor(centuries), years : (centuries - cent_int) convfloat(years_in_century), years_int : floor(years), days : (years - years_int) convfloat(days_in_year), days_int : floor(days), hours : (days - days_int) convfloat(hours_in_day), hours_int : floor(hours), minutes : (hours - hours_int) convfloat(min_in_hour), minutes_int : floor(minutes), seconds : (minutes - minutes_int) convfloat(sec_in_min), sec_int : floor(seconds), if millinium_int > 0 then printf(true, "= ~d Millinia ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(true, "= ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(true, "= ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(true, "= ~d Days ~d Hours ~d Minutes ~d Seconds~%", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(true, "= ~d Hours ~d Minutes ~d Seconds~%", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(true, "= ~d Minutes ~d Seconds~%", minutes_int, sec_int) else printf(true, "= ~d Seconds~%", sec_int)) else printf(true, " Unknown~%")) (%i21) mode_declare(ats, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o21) [ats] (%i22) ats(mmm_ats, array_a, array_b, jjj_ats) := (ret_ats : 0.0, if jjj_ats <= mmm_ats then (ma_ats : 1 + mmm_ats, iii_ats : jjj_ats, while iii_ats <= mmm_ats do (lll_ats : ma_ats - iii_ats, ret_ats : array_a array_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%o22) ats(mmm_ats, array_a, array_b, jjj_ats) := (ret_ats : 0.0, if jjj_ats <= mmm_ats then (ma_ats : 1 + mmm_ats, iii_ats : jjj_ats, while iii_ats <= mmm_ats do (lll_ats : ma_ats - iii_ats, ret_ats : array_a array_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%i23) mode_declare(att, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o23) [att] (%i24) att(mmm_att, array_aa, array_bb, jjj_att) := (ret_att : 0.0, if jjj_att <= mmm_att then (ma_att : 2 + mmm_att, 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 : array_aa array_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%o24) att(mmm_att, array_aa, array_bb, jjj_att) := (ret_att : 0.0, if jjj_att <= mmm_att then (ma_att : 2 + mmm_att, 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 : array_aa array_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%i25) display_pole() := if (array_pole # glob_large_float) 1 and (array_pole > 0.0) and (array_pole # glob_large_float) 1 2 and (array_pole > 0.0) and glob_display_flag 2 then (omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole , 4, " "), omniout_float(ALWAYS, 1 "Order of pole ", 4, array_pole , 4, " ")) 2 (%o25) display_pole() := if (array_pole # glob_large_float) 1 and (array_pole > 0.0) and (array_pole # glob_large_float) 1 2 and (array_pole > 0.0) and glob_display_flag 2 then (omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole , 4, " "), omniout_float(ALWAYS, 1 "Order of pole ", 4, array_pole , 4, " ")) 2 (%i26) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%o26) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%i27) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%o27) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%i28) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%o28) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%i29) log_revs(file, revs) := printf(file, revs) (%o29) log_revs(file, revs) := printf(file, revs) (%i30) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%o30) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%i31) logitem_pole(file, pole) := (printf(file, ""), if pole = 0 then printf(file, "NA") elseif pole = 1 then printf(file, "Real") elseif pole = 2 then printf(file, "Complex") else printf(file, "No Pole"), printf(file, "")) (%o31) logitem_pole(file, pole) := (printf(file, ""), if pole = 0 then printf(file, "NA") elseif pole = 1 then printf(file, "Real") elseif pole = 2 then printf(file, "Complex") else printf(file, "No Pole"), printf(file, "")) (%i32) logstart(file) := printf(file, "") (%o32) logstart(file) := printf(file, "") (%i33) logend(file) := printf(file, "~%") (%o33) logend(file) := printf(file, "~%") (%i34) chk_data() := (errflag : false, if (glob_max_terms < 15) or (glob_max_terms > 512) then (omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"), glob_max_terms : 30), if glob_max_iter < 2 then (omniout_str(ALWAYS, "Illegal max_iter"), errflag : true), if errflag then quit()) (%o34) chk_data() := (errflag : false, if (glob_max_terms < 15) or (glob_max_terms > 512) then (omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"), glob_max_terms : 30), if glob_max_iter < 2 then (omniout_str(ALWAYS, "Illegal max_iter"), errflag : true), if errflag then quit()) (%i35) mode_declare(comp_expect_sec, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o35) [comp_expect_sec] (%i36) comp_expect_sec(t_end2, t_start2, t2, clock_sec) := (ms2 : clock_sec, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if abs(sub2) > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%o36) comp_expect_sec(t_end2, t_start2, t2, clock_sec) := (ms2 : clock_sec, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if abs(sub2) > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%i37) mode_declare(comp_percent, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o37) [comp_percent] (%i38) comp_percent(t_end2, t_start2, t2) := (sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if abs(sub2) > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%o38) comp_percent(t_end2, t_start2, t2) := (sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if abs(sub2) > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%i39) mode_declare(factorial_1, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o39) [factorial_1] (%i40) factorial_1(nnn) := nnn! (%o40) factorial_1(nnn) := nnn! (%i41) mode_declare(factorial_3, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o41) [factorial_3] mmm2! (%i42) factorial_3(mmm2, nnn2) := ----- nnn2! mmm2! (%o42) factorial_3(mmm2, nnn2) := ----- nnn2! (%i43) convfp(mmm) := mmm (%o43) convfp(mmm) := mmm (%i44) convfloat(mmm) := mmm (%o44) convfloat(mmm) := mmm (%i45) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%o45) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%i46) arcsin(x) := asin(x) (%o46) arcsin(x) := asin(x) (%i47) arccos(x) := acos(x) (%o47) arccos(x) := acos(x) (%i48) arctan(x) := atan(x) (%o48) arctan(x) := atan(x) 1.0 --- x --- x (%i49) exact_soln_y(x) := --- x 1.0 --- x --- x (%o49) exact_soln_y(x) := --- x (%i50) mainprog() := (define_variable(DEBUGL, 3, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(INFO, 2, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(min_in_hour, 60.0, float), define_variable(djd_debug2, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_percent_done, 0.0, float), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_warned2, false, boolean), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_large_float, 9.0E+100, float), define_variable(days_in_year, 365.0, float), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_h, 0.1, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(sec_in_min, 60.0, float), define_variable(glob_display_flag, true, boolean), define_variable(glob_html_log, true, boolean), define_variable(glob_iter, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_almost_1, 0.999, float), define_variable(hours_in_day, 24.0, float), define_variable(glob_dump, false, boolean), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_hmax, 1.0, float), define_variable(djd_debug, true, boolean), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_max_hours, 0.0, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_hmin_init, 0.001, float), define_variable(years_in_century, 100.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_not_yet_finished, true, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_optimal_expect_sec, 0.1, float), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, 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/sing5postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;"), 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 : -1.0,"), omniout_str(ALWAYS, "x_end : -0.7,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.00001,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 100,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.0001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 1000,"), omniout_str(ALWAYS, "glob_max_minutes : 15,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := ("), omniout_str(ALWAYS, "1.0/x/x/x "), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, 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(array_type_pole, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_tmp5, 1 + max_terms), array(array_tmp6, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_type_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_m1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_y_init : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp0 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp4 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp5 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp6 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_1st_rel_error : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_norms : 0.0, term : 1 + term), ord : 1, term while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord : 1 + ord), ord, term array(array_m1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_m1 : 0.0, term : 1 + term), term array(array_tmp6, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp6 : 0.0, term : 1 + term), term array(array_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 0.0, term : 1 + term), term array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term : 1 + term), term array(array_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2 : 0.0, term : 1 + term), term array(array_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 0.0, term : 1 + term), term array(array_tmp0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp0 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_3D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_3D0 : 0.0, term : 1 + term), term array_const_3D0 : 3.0, array(array_const_0D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, x_start : - 1.0, x_end : - 0.7, 1 array_y_init : exact_soln_y(x_start), glob_h : 1.0E-5, 1 + 0 glob_look_poles : true, glob_max_iter : 100, glob_h : 1.0E-4, glob_look_poles : true, glob_max_iter : 1000, glob_max_minutes : 15, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), glob_log10_abserr glob_log10_relerr glob_abserr : 10.0 , glob_relerr : 10.0 , chk_data(), array_y_set_initial : true, array_y_set_initial : false, 1, 1 1, 2 array_y_set_initial : false, array_y_set_initial : false, 1, 3 1, 4 array_y_set_initial : false, array_y_set_initial : false, 1, 5 1, 6 array_y_set_initial : false, array_y_set_initial : false, 1, 7 1, 8 array_y_set_initial : false, array_y_set_initial : false, 1, 9 1, 10 array_y_set_initial : false, array_y_set_initial : false, 1, 11 1, 12 array_y_set_initial : false, array_y_set_initial : false, 1, 13 1, 14 array_y_set_initial : false, array_y_set_initial : false, 1, 15 1, 16 array_y_set_initial : false, array_y_set_initial : false, 1, 17 1, 18 array_y_set_initial : false, array_y_set_initial : false, 1, 19 1, 20 array_y_set_initial : false, array_y_set_initial : false, 1, 21 1, 22 array_y_set_initial : false, array_y_set_initial : false, 1, 23 1, 24 array_y_set_initial : false, array_y_set_initial : false, 1, 25 1, 26 array_y_set_initial : false, array_y_set_initial : false, 1, 27 1, 28 array_y_set_initial : false, array_y_set_initial : false, 1, 29 1, 30 if glob_html_log then html_log_file : openw("html/entry.html"), omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no term_no - 1 array_y_init glob_h term_no -------------------------------------, term_no : 1 + term_no), factorial_1(term_no - 1) rows : order_diff, r_order : 1, while r_order <= rows do (term_no : 1, while term_no <= 1 - r_order + rows do (it : - 1 + r_order + term_no, term_no - 1 array_y_init glob_h it array_y_higher : --------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), current_iter : 1, glob_clock_start_sec : elapsed_time_seconds(), start_array_y(), if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, log10norm : log10(tmp), ! 1, 1! if log10norm < glob_log10normmin then glob_log10normmin : log10norm), 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 (array_x <= x_end) and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < 1 convfloat(glob_max_sec)) do (omniout_str (INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop"), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), if glob_look_poles then check_for_pole(), array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 1, ord : 2, calc_term : 1, 2 iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 2, iii array_y_higher 2, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 2, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 2, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 2, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 1, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, term_no : glob_max_terms, convfp(calc_term - 1)! while term_no >= 1 do (array_y : array_y_higher_work2 , term_no 1, term_no ord : 1, while ord <= order_diff do (array_y_higher : ord, term_no array_y_higher_work2 , ord : 1 + ord), term_no : term_no - 1), ord, term_no display_alot(current_iter)), omniout_str(ALWAYS, "Finished!"), if glob_iter >= glob_max_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!"), if elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!"), glob_clock_sec : elapsed_time_seconds(), omniout_str(INFO, "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;"), 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-06-13T18:59:33-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing5"), logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), 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) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 090 "), logitem_str(html_log_file, "sing5 diffeq.max"), logitem_str(html_log_file, "sing5 maxima results"), logitem_str(html_log_file, "Test of revised logic - mostly affecting systems of eqs"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%o50) mainprog() := (define_variable(DEBUGL, 3, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(INFO, 2, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(min_in_hour, 60.0, float), define_variable(djd_debug2, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_percent_done, 0.0, float), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_warned2, false, boolean), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_large_float, 9.0E+100, float), define_variable(days_in_year, 365.0, float), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_h, 0.1, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(sec_in_min, 60.0, float), define_variable(glob_display_flag, true, boolean), define_variable(glob_html_log, true, boolean), define_variable(glob_iter, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_almost_1, 0.999, float), define_variable(hours_in_day, 24.0, float), define_variable(glob_dump, false, boolean), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_hmax, 1.0, float), define_variable(djd_debug, true, boolean), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_max_hours, 0.0, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_hmin_init, 0.001, float), define_variable(years_in_century, 100.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_not_yet_finished, true, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_optimal_expect_sec, 0.1, float), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, 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/sing5postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;"), 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 : -1.0,"), omniout_str(ALWAYS, "x_end : -0.7,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.00001,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 100,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.0001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 1000,"), omniout_str(ALWAYS, "glob_max_minutes : 15,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := ("), omniout_str(ALWAYS, "1.0/x/x/x "), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, 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(array_type_pole, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_tmp5, 1 + max_terms), array(array_tmp6, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_type_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_m1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_y_init : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp0 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp4 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp5 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp6 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_1st_rel_error : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_pole : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_norms : 0.0, term : 1 + term), ord : 1, term while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord : 1 + ord), ord, term array(array_m1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_m1 : 0.0, term : 1 + term), term array(array_tmp6, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp6 : 0.0, term : 1 + term), term array(array_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 0.0, term : 1 + term), term array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term : 1 + term), term array(array_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2 : 0.0, term : 1 + term), term array(array_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 0.0, term : 1 + term), term array(array_tmp0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp0 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_3D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_3D0 : 0.0, term : 1 + term), term array_const_3D0 : 3.0, array(array_const_0D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, x_start : - 1.0, x_end : - 0.7, 1 array_y_init : exact_soln_y(x_start), glob_h : 1.0E-5, 1 + 0 glob_look_poles : true, glob_max_iter : 100, glob_h : 1.0E-4, glob_look_poles : true, glob_max_iter : 1000, glob_max_minutes : 15, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), glob_log10_abserr glob_log10_relerr glob_abserr : 10.0 , glob_relerr : 10.0 , chk_data(), array_y_set_initial : true, array_y_set_initial : false, 1, 1 1, 2 array_y_set_initial : false, array_y_set_initial : false, 1, 3 1, 4 array_y_set_initial : false, array_y_set_initial : false, 1, 5 1, 6 array_y_set_initial : false, array_y_set_initial : false, 1, 7 1, 8 array_y_set_initial : false, array_y_set_initial : false, 1, 9 1, 10 array_y_set_initial : false, array_y_set_initial : false, 1, 11 1, 12 array_y_set_initial : false, array_y_set_initial : false, 1, 13 1, 14 array_y_set_initial : false, array_y_set_initial : false, 1, 15 1, 16 array_y_set_initial : false, array_y_set_initial : false, 1, 17 1, 18 array_y_set_initial : false, array_y_set_initial : false, 1, 19 1, 20 array_y_set_initial : false, array_y_set_initial : false, 1, 21 1, 22 array_y_set_initial : false, array_y_set_initial : false, 1, 23 1, 24 array_y_set_initial : false, array_y_set_initial : false, 1, 25 1, 26 array_y_set_initial : false, array_y_set_initial : false, 1, 27 1, 28 array_y_set_initial : false, array_y_set_initial : false, 1, 29 1, 30 if glob_html_log then html_log_file : openw("html/entry.html"), omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no term_no - 1 array_y_init glob_h term_no -------------------------------------, term_no : 1 + term_no), factorial_1(term_no - 1) rows : order_diff, r_order : 1, while r_order <= rows do (term_no : 1, while term_no <= 1 - r_order + rows do (it : - 1 + r_order + term_no, term_no - 1 array_y_init glob_h it array_y_higher : --------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), current_iter : 1, glob_clock_start_sec : elapsed_time_seconds(), start_array_y(), if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, log10norm : log10(tmp), ! 1, 1! if log10norm < glob_log10normmin then glob_log10normmin : log10norm), 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 (array_x <= x_end) and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < 1 convfloat(glob_max_sec)) do (omniout_str (INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop"), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), if glob_look_poles then check_for_pole(), array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 1, ord : 2, calc_term : 1, 2 iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 2, iii array_y_higher 2, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 2, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 2, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 2, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 1, iii : glob_max_terms, convfp(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, term_no : glob_max_terms, convfp(calc_term - 1)! while term_no >= 1 do (array_y : array_y_higher_work2 , term_no 1, term_no ord : 1, while ord <= order_diff do (array_y_higher : ord, term_no array_y_higher_work2 , ord : 1 + ord), term_no : term_no - 1), ord, term_no display_alot(current_iter)), omniout_str(ALWAYS, "Finished!"), if glob_iter >= glob_max_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!"), if elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!"), glob_clock_sec : elapsed_time_seconds(), omniout_str(INFO, "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;"), 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-06-13T18:59:33-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing5"), logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), 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) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 090 "), logitem_str(html_log_file, "sing5 diffeq.max"), logitem_str(html_log_file, "sing5 maxima results"), logitem_str(html_log_file, "Test of revised logic - mostly affecting systems of eqs"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%i51) mainprog() "##############ECHO OF PROBLEM#################" "##############temp/sing5postode.ode#################" "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits : 32," "max_terms : 30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start : -1.0," "x_end : -0.7," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_h : 0.00001," "glob_look_poles : true," "glob_max_iter : 100," "/* END SECOND INPUT BLOCK */" "/* BEGIN OVERRIDE BLOCK */" "glob_h : 0.0001 ," "glob_look_poles : true," "glob_max_iter : 1000," "glob_max_minutes : 15," "/* END OVERRIDE BLOCK */" "!" "/* BEGIN USER DEF BLOCK */" "exact_soln_y (x) := (" "1.0/x/x/x " ");" "" "" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Soultion" x[1] = -1. " " y[1] (analytic) = -1. " " y[1] (numeric) = -1. " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.011256662924816 " " Order of pole = 5.625705785345467 " " x[1] = -0.9999 " " y[1] (analytic) = -1.0003000600100014 " " y[1] (numeric) = -1.0003000600100016 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.219779982046699300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0111555372585181 " " Order of pole = 5.625705785345303 " " x[1] = -0.9998 " " y[1] (analytic) = -1.0006002400800238 " " y[1] (numeric) = -1.000600240080024 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.219114048056525800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0110544115922342 " " Order of pole = 5.625705785345560 " " x[1] = -0.9997 " " y[1] (analytic) = -1.0009005402701212 " " y[1] (numeric) = -1.0009005402701217 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.4368964945329400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.010953285925937 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9996 " " y[1] (analytic) = -1.001200960640384 " " y[1] (numeric) = -1.0012009606403842 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.21778257966320800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0108521602596374 " " Order of pole = 5.6257057853452 " " x[1] = -0.9995 " " y[1] (analytic) = -1.0015015012509378 " " y[1] (numeric) = -1.001501501250938 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.217117045233419600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0107510345933535 " " Order of pole = 5.62570578534546 " " x[1] = -0.9994000000000001 " " y[1] (analytic) = -1.0018021621619455 " " y[1] (numeric) = -1.0018021621619455 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0106499089270657 " " Order of pole = 5.625705785345609 " " x[1] = -0.9993000000000001 " " y[1] (analytic) = -1.0021029434336048 " " y[1] (numeric) = -1.0021029434336048 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0105487832607611 " " Order of pole = 5.625705785345236 " " x[1] = -0.9992000000000001 " " y[1] (analytic) = -1.0024038451261508 " " y[1] (numeric) = -1.0024038451261508 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.010447657594478 " " Order of pole = 5.625705785345524 " " x[1] = -0.9991000000000001 " " y[1] (analytic) = -1.0027048672998535 " " y[1] (numeric) = -1.0027048672998538 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.214456238982532600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0103465319281824 " " Order of pole = 5.625705785345424 " " x[1] = -0.9990000000000001 " " y[1] (analytic) = -1.0030060100150209 " " y[1] (numeric) = -1.0030060100150209 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.010245406261886 " " Order of pole = 5.625705785345307 " " x[1] = -0.9989000000000001 " " y[1] (analytic) = -1.003307273331995 " " y[1] (numeric) = -1.0033072733319952 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.21312663455153300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.010144280595595 " " Order of pole = 5.6257057853453425 " " x[1] = -0.9988000000000001 " " y[1] (analytic) = -1.0036086573111558 " " y[1] (numeric) = -1.0036086573111562 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.424924063926030700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0100431549293083 " " Order of pole = 5.625705785345530 " " x[1] = -0.9987000000000001 " " y[1] (analytic) = -1.0039101620129192 " " y[1] (numeric) = -1.0039101620129196 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.42359512488277500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0099420292630152 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9986000000000002 " " y[1] (analytic) = -1.0042117874977368 " " y[1] (numeric) = -1.0042117874977372 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.422266451946656500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0098409035967193 " " Order of pole = 5.625705785345406 " " x[1] = -0.9985000000000002 " " y[1] (analytic) = -1.0045135338260969 " " y[1] (numeric) = -1.0045135338260973 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.42093804509102900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0097397779304278 " " Order of pole = 5.625705785345435 " " x[1] = -0.9984000000000002 " " y[1] (analytic) = -1.004815401058524 " " y[1] (numeric) = -1.0048154010585246 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62941485643387300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0096386522641454 " " Order of pole = 5.625705785345737 " " x[1] = -0.9983000000000002 " " y[1] (analytic) = -1.00511738925558 " " y[1] (numeric) = -1.0051173892555803 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.20914101475733300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0095375265978523 " " Order of pole = 5.62570578534573 " " x[1] = -0.9982000000000002 " " y[1] (analytic) = -1.0054194984778613 " " y[1] (numeric) = -1.0054194984778617 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.416954420740639700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0094364009315542 " " Order of pole = 5.625705785345545 " " x[1] = -0.9981000000000002 " " y[1] (analytic) = -1.005721728786002 " " y[1] (numeric) = -1.0057217287860027 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62344061691078500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0093352752652582 " " Order of pole = 5.625705785345438 " " x[1] = -0.9980000000000002 " " y[1] (analytic) = -1.006024080240673 " " y[1] (numeric) = -1.0060240802406737 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.62145000163150700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0092341495989705 " " Order of pole = 5.625705785345584 " " x[1] = -0.9979000000000002 " " y[1] (analytic) = -1.006326552902581 " " y[1] (numeric) = -1.0063265529025816 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.41297319015543600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0091330239326768 " " Order of pole = 5.625705785345545 " " x[1] = -0.9978000000000002 " " y[1] (analytic) = -1.0066291468324686 " " y[1] (numeric) = -1.0066291468324695 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.82329329023435400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.009031898266383 " " Order of pole = 5.625705785345517 " " x[1] = -0.9977000000000003 " " y[1] (analytic) = -1.0069318620911165 " " y[1] (numeric) = -1.0069318620911174 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.82064073189248800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0089307726000893 " " Order of pole = 5.62570578534547 " " x[1] = -0.9976000000000003 " " y[1] (analytic) = -1.0072346987393408 " " y[1] (numeric) = -1.0072346987393417 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.81798870523198900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.008829646933802 " " Order of pole = 5.625705785345627 " " x[1] = -0.9975000000000003 " " y[1] (analytic) = -1.0075376568379943 " " y[1] (numeric) = -1.0075376568379952 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.81533721019956500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.008728521267508 " " Order of pole = 5.625705785345584 " " x[1] = -0.9974000000000003 " " y[1] (analytic) = -1.007840736447967 " " y[1] (numeric) = -1.0078407364479678 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.81268624674192600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.00862739560121 " " Order of pole = 5.62570578534541 " " x[1] = -0.9973000000000003 " " y[1] (analytic) = -1.0081439376301848 " " y[1] (numeric) = -1.0081439376301857 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.81003581480577900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0085262699349173 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9972000000000003 " " y[1] (analytic) = -1.0084472604456107 " " y[1] (numeric) = -1.0084472604456118 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.10092323929222970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0084251442686245 " " Order of pole = 5.625705785345396 " " x[1] = -0.9971000000000003 " " y[1] (analytic) = -1.0087507049552444 " " y[1] (numeric) = -1.0087507049552458 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.3207104817927212000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0083240186023326 " " Order of pole = 5.62570578534541 " " x[1] = -0.9970000000000003 " " y[1] (analytic) = -1.0090542712201225 " " y[1] (numeric) = -1.0090542712201238 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.32031315613900940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.008222892936045 " " Order of pole = 5.625705785345566 " " x[1] = -0.9969000000000003 " " y[1] (analytic) = -1.0093579593013176 " " y[1] (numeric) = -1.0093579593013189 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31991591018154720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0081217672697504 " " Order of pole = 5.625705785345495 " " x[1] = -0.9968000000000004 " " y[1] (analytic) = -1.0096617692599397 " " y[1] (numeric) = -1.009661769259941 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31951874391234130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.008020641603466 " " Order of pole = 5.6257057853457475 " " x[1] = -0.9967000000000004 " " y[1] (analytic) = -1.0099657011571352 " " y[1] (numeric) = -1.0099657011571366 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.3191216573233980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0079195159371674 " " Order of pole = 5.625705785345556 " " x[1] = -0.9966000000000004 " " y[1] (analytic) = -1.0102697550540878 " " y[1] (numeric) = -1.0102697550540891 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31872465040672320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0078183902708682 " " Order of pole = 5.62570578534535 " " x[1] = -0.9965000000000004 " " y[1] (analytic) = -1.0105739310120174 " " y[1] (numeric) = -1.010573931012019 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53804901034671150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0077172646045793 " " Order of pole = 5.62570578534546 " " x[1] = -0.9964000000000004 " " y[1] (analytic) = -1.010878229092182 " " y[1] (numeric) = -1.0108782290921834 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31793087555820560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.007616138938289 " " Order of pole = 5.625705785345524 " " x[1] = -0.9963000000000004 " " y[1] (analytic) = -1.0111826493558747 " " y[1] (numeric) = -1.0111826493558762 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53712312554543850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.007515013271995 " " Order of pole = 5.625705785345481 " " x[1] = -0.9962000000000004 " " y[1] (analytic) = -1.011487191864427 " " y[1] (numeric) = -1.0114871918644284 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.31713741930283980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0074138876057037 " " Order of pole = 5.625705785345517 " " x[1] = -0.9961000000000004 " " y[1] (analytic) = -1.0117918566792061 " " y[1] (numeric) = -1.011791856679208 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75565441417014050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0073127619394138 " " Order of pole = 5.625705785345588 " " x[1] = -0.9960000000000004 " " y[1] (analytic) = -1.012096643861618 " " y[1] (numeric) = -1.0120966438616197 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75512570876890340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0072116362731272 " " Order of pole = 5.625705785345772 " " x[1] = -0.9959000000000005 " " y[1] (analytic) = -1.0124015534731037 " " y[1] (numeric) = -1.0124015534731055 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7545971095227510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0071105106068434 " " Order of pole = 5.625705785346046 " " x[1] = -0.9958000000000005 " " y[1] (analytic) = -1.0127065855751423 " " y[1] (numeric) = -1.012706585575144 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75406861642102500000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0070093849405386 " " Order of pole = 5.625705785345662 " " x[1] = -0.9957000000000005 " " y[1] (analytic) = -1.0130117402292498 " " y[1] (numeric) = -1.0130117402292516 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75354022945306800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0069082592742435 " " Order of pole = 5.625705785345577 " " x[1] = -0.9956000000000005 " " y[1] (analytic) = -1.0133170174969792 " " y[1] (numeric) = -1.013317017496981 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7530119486082210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0068071336079476 " " Order of pole = 5.6257057853454775 " " x[1] = -0.9955000000000005 " " y[1] (analytic) = -1.0136224174399207 " " y[1] (numeric) = -1.0136224174399224 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75248377387582640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.006706007941656 " " Order of pole = 5.625705785345506 " " x[1] = -0.9954000000000005 " " y[1] (analytic) = -1.0139279401197014 " " y[1] (numeric) = -1.0139279401197032 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75195570524522560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.006604882275368 " " Order of pole = 5.6257057853456445 " " x[1] = -0.9953000000000005 " " y[1] (analytic) = -1.014233585597986 " " y[1] (numeric) = -1.0142335855979878 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.75142774270576060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.00650375660908 " " Order of pole = 5.625705785345776 " " x[1] = -0.9952000000000005 " " y[1] (analytic) = -1.0145393539364755 " " y[1] (numeric) = -1.0145393539364775 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.96976237202762060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0064026309427825 " " Order of pole = 5.625705785345627 " " x[1] = -0.9951000000000005 " " y[1] (analytic) = -1.0148452451969094 " " y[1] (numeric) = -1.0148452451969114 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.9691686528398070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0063015052764643 " " Order of pole = 5.625705785344831 " " x[1] = -0.9950000000000006 " " y[1] (analytic) = -1.0151512594410637 " " y[1] (numeric) = -1.0151512594410654 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74984449152759990000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0062003796102001 " " Order of pole = 5.625705785345708 " " x[1] = -0.9949000000000006 " " y[1] (analytic) = -1.015457396730751 " " y[1] (numeric) = -1.0154573967307527 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7493169532460970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0060992539439044 " " Order of pole = 5.625705785345605 " " x[1] = -0.9948000000000006 " " y[1] (analytic) = -1.0157636571278226 " " y[1] (numeric) = -1.0157636571278241 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.53019083087713420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0059981282776125 " " Order of pole = 5.625705785345623 " " x[1] = -0.9947000000000006 " " y[1] (analytic) = -1.0160700406941656 " " y[1] (numeric) = -1.0160700406941674 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74826219478596860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0058970026113185 " " Order of pole = 5.62570578534557 " " x[1] = -0.9946000000000006 " " y[1] (analytic) = -1.016376547491706 " " y[1] (numeric) = -1.0163765474917077 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7477349745860270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0057958769450366 " " Order of pole = 5.625705785345904 " " x[1] = -0.9945000000000006 " " y[1] (analytic) = -1.016683177582406 " " y[1] (numeric) = -1.0166831775824077 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7472078603919558000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.005694751278744 " " Order of pole = 5.625705785345897 " " x[1] = -0.9944000000000006 " " y[1] (analytic) = -1.0169899310282655 " " y[1] (numeric) = -1.0169899310282673 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74668085219309800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0055936256124332 " " Order of pole = 5.625705785345332 " " x[1] = -0.9943000000000006 " " y[1] (analytic) = -1.0172968078913223 " " y[1] (numeric) = -1.017296807891324 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74615394997879400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0054924999461523 " " Order of pole = 5.625705785345687 " " x[1] = -0.9942000000000006 " " y[1] (analytic) = -1.017603808233651 " " y[1] (numeric) = -1.0176038082336527 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7456271537383860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0053913742798417 " " Order of pole = 5.625705785345130 " " x[1] = -0.9941000000000006 " " y[1] (analytic) = -1.0179109321173636 " " y[1] (numeric) = -1.0179109321173656 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.9632380213938690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.005290248613563 " " Order of pole = 5.625705785345556 " " x[1] = -0.9940000000000007 " " y[1] (analytic) = -1.0182181796046104 " " y[1] (numeric) = -1.0182181796046124 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.9626456140287060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0051891229472576 " " Order of pole = 5.625705785345154 " " x[1] = -0.9939000000000007 " " y[1] (analytic) = -1.0185255507575788 " " y[1] (numeric) = -1.0185255507575806 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74404740075395970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.005087997280974 " " Order of pole = 5.625705785345435 " " x[1] = -0.9938000000000007 " " y[1] (analytic) = -1.018833045638493 " " y[1] (numeric) = -1.0188330456384949 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7435210283025560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0049868716146853 " " Order of pole = 5.625705785345545 " " x[1] = -0.9937000000000007 " " y[1] (analytic) = -1.019140664309616 " " y[1] (numeric) = -1.019140664309618 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.9608691069932280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0048857459483878 " " Order of pole = 5.625705785345382 " " x[1] = -0.9936000000000007 " " y[1] (analytic) = -1.0194484068332479 " " y[1] (numeric) = -1.0194484068332497 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.74246860115090720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004784620282103 " " Order of pole = 5.625705785345627 " " x[1] = -0.9935000000000007 " " y[1] (analytic) = -1.019756273271726 " " y[1] (numeric) = -1.0197562732717278 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.7419425464293462000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004683494615815 " " Order of pole = 5.625705785345762 " " x[1] = -0.9934000000000007 " " y[1] (analytic) = -1.0200642636874258 " " y[1] (numeric) = -1.0200642636874278 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.95909367229596840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004582368949515 " " Order of pole = 5.625705785345524 " " x[1] = -0.9933000000000007 " " y[1] (analytic) = -1.0203723781427605 " " y[1] (numeric) = -1.0203723781427625 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.95850209897164150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0044812432832186 " " Order of pole = 5.62570578534541 " " x[1] = -0.9932000000000007 " " y[1] (analytic) = -1.0206806167001805 " " y[1] (numeric) = -1.0206806167001827 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.17545627194227130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.004380117616931 " " Order of pole = 5.625705785345556 " " x[1] = -0.9931000000000008 " " y[1] (analytic) = -1.0209889794221745 " " y[1] (numeric) = -1.0209889794221767 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.174799232903539800000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0042789919506456 " " Order of pole = 5.6257057853457795 " " x[1] = -0.9930000000000008 " " y[1] (analytic) = -1.0212974663712688 " " y[1] (numeric) = -1.021297466371271 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.17414232617230600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0041778662843424 " " Order of pole = 5.625705785345449 " " x[1] = -0.9929000000000008 " " y[1] (analytic) = -1.021606077610027 " " y[1] (numeric) = -1.0216060776100295 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.39083410690877380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0040767406180506 " " Order of pole = 5.625705785345474 " " x[1] = -0.9928000000000008 " " y[1] (analytic) = -1.0219148132010514 " " y[1] (numeric) = -1.021914813201054 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60739469149485300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.003975614951768 " " Order of pole = 5.625705785345772 " " x[1] = -0.9927000000000008 " " y[1] (analytic) = -1.0222236732069814 " " y[1] (numeric) = -1.022223673206984 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60660687962844360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0038744892854632 " " Order of pole = 5.625705785345396 " " x[1] = -0.9926000000000008 " " y[1] (analytic) = -1.0225326576904947 " " y[1] (numeric) = -1.0225326576904974 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.6058192264670830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0037733636191826 " " Order of pole = 5.625705785345762 " " x[1] = -0.9925000000000008 " " y[1] (analytic) = -1.0228417667143068 " " y[1] (numeric) = -1.0228417667143093 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.3879457543285523000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0036722379528868 " " Order of pole = 5.625705785345652 " " x[1] = -0.9924000000000008 " " y[1] (analytic) = -1.0231510003411706 " " y[1] (numeric) = -1.0231510003411732 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60424439619556100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.003571112286592 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9923000000000008 " " y[1] (analytic) = -1.0234603586338777 " " y[1] (numeric) = -1.0234603586338804 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60345721905342440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0034699866202947 " " Order of pole = 5.625705785345431 " " x[1] = -0.9922000000000009 " " y[1] (analytic) = -1.0237698416552574 " " y[1] (numeric) = -1.02376984165526 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60267020055238900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0033688609540028 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9921000000000009 " " y[1] (analytic) = -1.024079449468177 " " y[1] (numeric) = -1.0240794494681795 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.38505972895342640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.003267735287722 " " Order of pole = 5.625705785345804 " " x[1] = -0.9920000000000009 " " y[1] (analytic) = -1.0243891821355415 " " y[1] (numeric) = -1.0243891821355442 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60109663940966850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0031666096214125 " " Order of pole = 5.625705785345286 " " x[1] = -0.9919000000000009 " " y[1] (analytic) = -1.0246990397202946 " " y[1] (numeric) = -1.0246990397202973 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.60031009673601000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.003065483955125 " " Order of pole = 5.625705785345442 " " x[1] = -0.9918000000000009 " " y[1] (analytic) = -1.0250090222854176 " " y[1] (numeric) = -1.0250090222854205 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.8161506886927950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0029643582888375 " " Order of pole = 5.625705785345598 " " x[1] = -0.9917000000000009 " " y[1] (analytic) = -1.0253191298939304 " " y[1] (numeric) = -1.025319129893933 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.5987374871041590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0028632326225442 " " Order of pole = 5.62570578534557 " " x[1] = -0.9916000000000009 " " y[1] (analytic) = -1.02562936260889 " " y[1] (numeric) = -1.0256293626088928 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.814447371790159700000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0027621069562505 " " Order of pole = 5.62570578534552 " " x[1] = -0.9915000000000009 " " y[1] (analytic) = -1.0259397204933924 " " y[1] (numeric) = -1.0259397204933955 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.0300264302618540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0026609812899592 " " Order of pole = 5.625705785345563 " " x[1] = -0.991400000000001 " " y[1] (analytic) = -1.0262502036105723 " " y[1] (numeric) = -1.0262502036105754 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.02910972198945140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0025598556236637 " " Order of pole = 5.625705785345467 " " x[1] = -0.991300000000001 " " y[1] (analytic) = -1.0265608120236014 " " y[1] (numeric) = -1.0265608120236045 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.0281931986304660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.002458729957363 " " Order of pole = 5.625705785345222 " " x[1] = -0.991200000000001 " " y[1] (analytic) = -1.0268715457956898 " " y[1] (numeric) = -1.0268715457956934 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.45974498304714160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0023576042910818 " " Order of pole = 5.625705785345560 " " x[1] = -0.991100000000001 " " y[1] (analytic) = -1.0271824049900875 " " y[1] (numeric) = -1.0271824049900908 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2425293284765827000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.002256478624789 " " Order of pole = 5.625705785345563 " " x[1] = -0.991000000000001 " " y[1] (analytic) = -1.0274933896700806 " " y[1] (numeric) = -1.0274933896700837 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.0254447378475020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0021553529584921 " " Order of pole = 5.625705785345424 " " x[1] = -0.990900000000001 " " y[1] (analytic) = -1.0278044998989944 " " y[1] (numeric) = -1.0278044998989977 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.24056673638107750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0020542272922008 " " Order of pole = 5.62570578534546 " " x[1] = -0.990800000000001 " " y[1] (analytic) = -1.028115735740193 " " y[1] (numeric) = -1.0281157357401964 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.23958573737571530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0019531016259096 " " Order of pole = 5.625705785345492 " " x[1] = -0.990700000000001 " " y[1] (analytic) = -1.0284270972570788 " " y[1] (numeric) = -1.0284270972570821 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2386049363719680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0018519759596112 " " Order of pole = 5.6257057853453105 " " x[1] = -0.990600000000001 " " y[1] (analytic) = -1.0287385845130916 " " y[1] (numeric) = -1.0287385845130952 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.45346595557317600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0017508502933314 " " Order of pole = 5.625705785345705 " " x[1] = -0.990500000000001 " " y[1] (analytic) = -1.029050197571711 " " y[1] (numeric) = -1.0290501975717146 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4524201901753430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0016497246270377 " " Order of pole = 5.625705785345662 " " x[1] = -0.9904000000000011 " " y[1] (analytic) = -1.0293619364964544 " " y[1] (numeric) = -1.0293619364964577 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2356637211705780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0015485989607475 " " Order of pole = 5.625705785345737 " " x[1] = -0.9903000000000011 " " y[1] (analytic) = -1.0296738013508773 " " y[1] (numeric) = -1.0296738013508806 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.2346837119734510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0014474732944378 " " Order of pole = 5.6257057853452 " " x[1] = -0.9902000000000011 " " y[1] (analytic) = -1.0299857921985744 " " y[1] (numeric) = -1.0299857921985776 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.01812364063281770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0013463476281617 " " Order of pole = 5.625705785345708 " " x[1] = -0.9901000000000011 " " y[1] (analytic) = -1.0302979091031785 " " y[1] (numeric) = -1.0302979091031816 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 3.01720933478001160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0012452219618613 " " Order of pole = 5.625705785345463 " " x[1] = -0.9900000000000011 " " y[1] (analytic) = -1.030610152128361 " " y[1] (numeric) = -1.0306101521283644 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.23174487171230540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0011440962955822 " " Order of pole = 5.625705785345872 " " x[1] = -0.9899000000000011 " " y[1] (analytic) = -1.0309225213378324 " " y[1] (numeric) = -1.030922521337836 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.44615003093552530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0010429706292758 " " Order of pole = 5.625705785345449 " " x[1] = -0.9898000000000011 " " y[1] (analytic) = -1.0312350167953415 " " y[1] (numeric) = -1.031235016795345 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4451057430544674000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0009418449629883 " " Order of pole = 5.625705785345598 " " x[1] = -0.9897000000000011 " " y[1] (analytic) = -1.0315476385646754 " " y[1] (numeric) = -1.031547638564679 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.44406166616196940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000840719296685 " " Order of pole = 5.625705785345260 " " x[1] = -0.9896000000000011 " " y[1] (analytic) = -1.0318603867096603 " " y[1] (numeric) = -1.0318603867096638 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.44301780023671570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000739593630395 " " Order of pole = 5.625705785345339 " " x[1] = -0.9895000000000012 " " y[1] (analytic) = -1.032173261294161 " " y[1] (numeric) = -1.0321732612941645 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.44197414525738900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0006384679641107 " " Order of pole = 5.625705785345591 " " x[1] = -0.9894000000000012 " " y[1] (analytic) = -1.0324862623820812 " " y[1] (numeric) = -1.0324862623820845 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.22587253237750560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000537342297818 " " Order of pole = 5.625705785345591 " " x[1] = -0.9893000000000012 " " y[1] (analytic) = -1.0327993900373627 " " y[1] (numeric) = -1.0327993900373662 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4398874680512520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.000436216631519 " " Order of pole = 5.625705785345382 " " x[1] = -0.9892000000000012 " " y[1] (analytic) = -1.033112644323987 " " y[1] (numeric) = -1.0331126443239906 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.43884444578180960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0003350909652307 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9891000000000012 " " y[1] (analytic) = -1.0334260253059742 " " y[1] (numeric) = -1.0334260253059775 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.22293903222471500000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0002339652989294 " " Order of pole = 5.6257057853452395 " " x[1] = -0.9890000000000012 " " y[1] (analytic) = -1.0337395330473822 " " y[1] (numeric) = -1.0337395330473858 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4367590338035950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0001328396326463 " " Order of pole = 5.625705785345530 " " x[1] = -0.9889000000000012 " " y[1] (analytic) = -1.0340531676123093 " " y[1] (numeric) = -1.0340531676123128 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4357166440521913000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 1.0000317139663495 " " Order of pole = 5.625705785345396 " " x[1] = -0.9888000000000012 " " y[1] (analytic) = -1.034366929064892 " " y[1] (numeric) = -1.0343669290648954 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.22000731102890570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9999305883000663 " " Order of pole = 5.625705785345687 " " x[1] = -0.9887000000000012 " " y[1] (analytic) = -1.0346808174693052 " " y[1] (numeric) = -1.0346808174693087 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4336324969182064000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9998294626337875 " " Order of pole = 5.62570578534611 " " x[1] = -0.9886000000000013 " " y[1] (analytic) = -1.0349948328897638 " " y[1] (numeric) = -1.0349948328897673 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.4325907394929930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9997283369674715 " " Order of pole = 5.625705785345385 " " x[1] = -0.9885000000000013 " " y[1] (analytic) = -1.035308975390521 " " y[1] (numeric) = -1.0353089753905245 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.43154919280054500000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9996272113011795 " " Order of pole = 5.625705785345389 " " x[1] = -0.9884000000000013 " " y[1] (analytic) = -1.035623245035869 " " y[1] (numeric) = -1.0356232450358727 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.64491459787076640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9995260856348919 " " Order of pole = 5.625705785345545 " " x[1] = -0.9883000000000013 " " y[1] (analytic) = -1.0359376418901394 " " y[1] (numeric) = -1.0359376418901431 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6438084022492190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9994249599686055 " " Order of pole = 5.62570578534573 " " x[1] = -0.9882000000000013 " " y[1] (analytic) = -1.0362521660177024 " " y[1] (numeric) = -1.0362521660177064 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.8569790440199530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9993238343022974 " " Order of pole = 5.625705785345243 " " x[1] = -0.9881000000000013 " " y[1] (analytic) = -1.0365668174829683 " " y[1] (numeric) = -1.036566817482972 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6415966824903256000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9992227086360126 " " Order of pole = 5.625705785345481 " " x[1] = -0.9880000000000013 " " y[1] (analytic) = -1.036881596350385 " " y[1] (numeric) = -1.0368815963503888 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6404911583076827000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9991215829697115 " " Order of pole = 5.625705785345218 " " x[1] = -0.9879000000000013 " " y[1] (analytic) = -1.0371965026844403 " " y[1] (numeric) = -1.0371965026844443 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.85346737894522450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9990204573034226 " " Order of pole = 5.625705785345328 " " x[1] = -0.9878000000000013 " " y[1] (analytic) = -1.037511536549662 " " y[1] (numeric) = -1.0375115365496659 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.63828078122276130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9989193316371373 " " Order of pole = 5.6257057853455485 " " x[1] = -0.9877000000000014 " " y[1] (analytic) = -1.0378266980106157 " " y[1] (numeric) = -1.0378266980106194 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.6371759282751860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9988182059708499 " " Order of pole = 5.625705785345712 " " x[1] = -0.9876000000000014 " " y[1] (analytic) = -1.0381419871319066 " " y[1] (numeric) = -1.0381419871319106 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.84995784602894400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9987170803045443 " " Order of pole = 5.6257057853453 " " x[1] = -0.9875000000000014 " " y[1] (analytic) = -1.03845740397818 " " y[1] (numeric) = -1.038457403978184 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.84878847542459660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9986159546382586 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9874000000000014 " " y[1] (analytic) = -1.0387729486141193 " " y[1] (numeric) = -1.0387729486141235 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0613759717214210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9985148289719599 " " Order of pole = 5.625705785345318 " " x[1] = -0.9873000000000014 " " y[1] (analytic) = -1.0390886211044483 " " y[1] (numeric) = -1.0390886211044525 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.06014213599161340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9984137033056613 " " Order of pole = 5.625705785345126 " " x[1] = -0.9872000000000014 " " y[1] (analytic) = -1.0394044215139295 " " y[1] (numeric) = -1.0394044215139338 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.05890855017789260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9983125776393867 " " Order of pole = 5.62570578534568 " " x[1] = -0.9871000000000014 " " y[1] (analytic) = -1.0397203499073646 " " y[1] (numeric) = -1.039720349907369 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2712370676367867000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9982114519730938 " " Order of pole = 5.625705785345670 " " x[1] = -0.9870000000000014 " " y[1] (analytic) = -1.0400364063495955 " " y[1] (numeric) = -1.0400364063495997 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.05644212819746330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9981103263068031 " " Order of pole = 5.625705785345726 " " x[1] = -0.9869000000000014 " " y[1] (analytic) = -1.0403525909055025 " " y[1] (numeric) = -1.0403525909055067 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.05520929198012860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9980092006405116 " " Order of pole = 5.625705785345751 " " x[1] = -0.9868000000000015 " " y[1] (analytic) = -1.040668903640006 " " y[1] (numeric) = -1.0406689036400103 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0539767055776290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9979080749742145 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9867000000000015 " " y[1] (analytic) = -1.0409853446180661 " " y[1] (numeric) = -1.0409853446180704 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.05274436896465140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9978069493079141 " " Order of pole = 5.625705785345364 " " x[1] = -0.9866000000000015 " " y[1] (analytic) = -1.0413019139046817 " " y[1] (numeric) = -1.041301913904686 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0515122821158840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9977058236416324 " " Order of pole = 5.625705785345698 " " x[1] = -0.9865000000000015 " " y[1] (analytic) = -1.041618611564892 " " y[1] (numeric) = -1.0416186115648962 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 4.0502804450060120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9976046979753376 " " Order of pole = 5.625705785345623 " " x[1] = -0.9864000000000015 " " y[1] (analytic) = -1.0419354376637748 " " y[1] (numeric) = -1.0419354376637793 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2621566922207615000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9975035723090309 " " Order of pole = 5.625705785345179 " " x[1] = -0.9863000000000015 " " y[1] (analytic) = -1.0422523922664486 " " y[1] (numeric) = -1.042252392266453 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2608605472649524000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9974024466427502 " " Order of pole = 5.625705785345556 " " x[1] = -0.9862000000000015 " " y[1] (analytic) = -1.0425694754380708 " " y[1] (numeric) = -1.0425694754380752 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2595646651122560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9973013209764632 " " Order of pole = 5.625705785345723 " " x[1] = -0.9861000000000015 " " y[1] (analytic) = -1.0428866872438385 " " y[1] (numeric) = -1.042886687243843 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.25826904573602670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.997200195310161 " " Order of pole = 5.625705785345417 " " x[1] = -0.9860000000000015 " " y[1] (analytic) = -1.0432040277489887 " " y[1] (numeric) = -1.0432040277489931 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.25697368910961940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.997099069643868 " " Order of pole = 5.625705785345400 " " x[1] = -0.9859000000000016 " " y[1] (analytic) = -1.043521497018798 " " y[1] (numeric) = -1.0435214970188025 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.25567859520638860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9969979439775675 " " Order of pole = 5.625705785345150 " " x[1] = -0.9858000000000016 " " y[1] (analytic) = -1.0438390951185827 " " y[1] (numeric) = -1.0438390951185874 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.46710295219967400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9968968183112932 " " Order of pole = 5.625705785345708 " " x[1] = -0.9857000000000016 " " y[1] (analytic) = -1.0441568221136994 " " y[1] (numeric) = -1.0441568221137039 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2530891954628750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9967956926449947 " " Order of pole = 5.625705785345524 " " x[1] = -0.9856000000000016 " " y[1] (analytic) = -1.044474678069543 " " y[1] (numeric) = -1.0444746780695477 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.4643846340477680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9966945669787022 " " Order of pole = 5.625705785345530 " " x[1] = -0.9855000000000016 " " y[1] (analytic) = -1.0447926630515503 " " y[1] (numeric) = -1.044792663051555 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.4630258886069407000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9965934413124135 " " Order of pole = 5.625705785345648 " " x[1] = -0.9854000000000016 " " y[1] (analytic) = -1.0451107771251964 " " y[1] (numeric) = -1.0451107771252008 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.2492070656052960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9964923156461206 " " Order of pole = 5.62570578534563 " " x[1] = -0.9853000000000016 " " y[1] (analytic) = -1.0454290203559964 " " y[1] (numeric) = -1.045429020356001 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.46030922485565140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9963911899798266 " " Order of pole = 5.625705785345588 " " x[1] = -0.9852000000000016 " " y[1] (analytic) = -1.0457473928095062 " " y[1] (numeric) = -1.045747392809511 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.45895130648923330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9962900643135456 " " Order of pole = 5.6257057853459465 " " x[1] = -0.9851000000000016 " " y[1] (analytic) = -1.0460658945513208 " " y[1] (numeric) = -1.0460658945513257 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.6698600286992030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9961889386472428 " " Order of pole = 5.625705785345623 " " x[1] = -0.9850000000000017 " " y[1] (analytic) = -1.0463845256470758 " " y[1] (numeric) = -1.0463845256470805 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.45623629663496300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9960878129809461 " " Order of pole = 5.625705785345485 " " x[1] = -0.9849000000000017 " " y[1] (analytic) = -1.0467032861624457 " " y[1] (numeric) = -1.0467032861624508 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.8791534150998384000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9959866873146686 " " Order of pole = 5.62570578534595 " " x[1] = -0.9848000000000017 " " y[1] (analytic) = -1.0470221761631464 " " y[1] (numeric) = -1.0470221761631515 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.8776673785369240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.995885561648353 " " Order of pole = 5.625705785345225 " " x[1] = -0.9847000000000017 " " y[1] (analytic) = -1.0473411957149332 " " y[1] (numeric) = -1.0473411957149383 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.8761816437379570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9957844359820819 " " Order of pole = 5.625705785345904 " " x[1] = -0.9846000000000017 " " y[1] (analytic) = -1.0476603448836015 " " y[1] (numeric) = -1.0476603448836064 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.6627528971648025000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9956833103157862 " " Order of pole = 5.625705785345800 " " x[1] = -0.9845000000000017 " " y[1] (analytic) = -1.0479796237349859 " " y[1] (numeric) = -1.0479796237349912 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0850898218879610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.995582184649476 " " Order of pole = 5.625705785345247 " " x[1] = -0.9844000000000017 " " y[1] (analytic) = -1.048299032334963 " " y[1] (numeric) = -1.0482990323349684 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0835404343843300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9954810589831946 " " Order of pole = 5.625705785345588 " " x[1] = -0.9843000000000017 " " y[1] (analytic) = -1.0486185707494482 " " y[1] (numeric) = -1.0486185707494535 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0819913616369230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9953799333169144 " " Order of pole = 5.625705785345971 " " x[1] = -0.9842000000000017 " " y[1] (analytic) = -1.0489382390443975 " " y[1] (numeric) = -1.0489382390444029 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.080442603613760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9952788076506149 " " Order of pole = 5.625705785345755 " " x[1] = -0.9841000000000018 " " y[1] (analytic) = -1.0492580372858071 " " y[1] (numeric) = -1.0492580372858125 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0788941602828700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9951776819843169 " " Order of pole = 5.625705785345584 " " x[1] = -0.9840000000000018 " " y[1] (analytic) = -1.0495779655397133 " " y[1] (numeric) = -1.0495779655397186 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0773460316122780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.995076556318026 " " Order of pole = 5.62570578534563 " " x[1] = -0.9839000000000018 " " y[1] (analytic) = -1.0498980238721929 " " y[1] (numeric) = -1.0498980238721982 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0757982175700090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9949754306517296 " " Order of pole = 5.625705785345506 " " x[1] = -0.9838000000000018 " " y[1] (analytic) = -1.0502182123493624 " " y[1] (numeric) = -1.0502182123493682 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4971049446344320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9948743049854342 " " Order of pole = 5.625705785345417 " " x[1] = -0.9837000000000018 " " y[1] (analytic) = -1.0505385310373803 " " y[1] (numeric) = -1.0505385310373858 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2840661804609850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.994773179319145 " " Order of pole = 5.62570578534552 " " x[1] = -0.9836000000000018 " " y[1] (analytic) = -1.0508589800024433 " " y[1] (numeric) = -1.0508589800024488 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2824548571806240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9946720536528482 " " Order of pole = 5.625705785345378 " " x[1] = -0.9835000000000018 " " y[1] (analytic) = -1.0511795593107893 " " y[1] (numeric) = -1.051179559310795 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4920776159650710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9945709279865493 " " Order of pole = 5.625705785345186 " " x[1] = -0.9834000000000018 " " y[1] (analytic) = -1.0515002690286976 " " y[1] (numeric) = -1.0515002690287034 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4904025211364470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9944698023202613 " " Order of pole = 5.625705785345325 " " x[1] = -0.9833000000000018 " " y[1] (analytic) = -1.0518211092224867 " " y[1] (numeric) = -1.0518211092224925 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.488727766947340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9943686766539779 " " Order of pole = 5.625705785345605 " " x[1] = -0.9832000000000019 " " y[1] (analytic) = -1.0521420799585162 " " y[1] (numeric) = -1.052142079958522 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.487053353363110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9942675509876868 " " Order of pole = 5.625705785345648 " " x[1] = -0.9831000000000019 " " y[1] (analytic) = -1.0524631813031855 " " y[1] (numeric) = -1.0524631813031915 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6963554065163950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9941664253213954 " " Order of pole = 5.6257057853456836 " " x[1] = -0.9830000000000019 " " y[1] (analytic) = -1.0527844133229356 " " y[1] (numeric) = -1.0527844133229418 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9055290515530940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9940652996550838 " " Order of pole = 5.625705785345087 " " x[1] = -0.9829000000000019 " " y[1] (analytic) = -1.0531057760842475 " " y[1] (numeric) = -1.0531057760842537 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9037269371158620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9939641739888032 " " Order of pole = 5.625705785345456 " " x[1] = -0.9828000000000019 " " y[1] (analytic) = -1.0534272696536426 " " y[1] (numeric) = -1.0534272696536489 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9019251893346680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9938630483225129 " " Order of pole = 5.625705785345527 " " x[1] = -0.9827000000000019 " " y[1] (analytic) = -1.0537488940976831 " " y[1] (numeric) = -1.0537488940976893 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.900123808172210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9937619226562349 " " Order of pole = 5.625705785345975 " " x[1] = -0.9826000000000019 " " y[1] (analytic) = -1.0540706494829721 " " y[1] (numeric) = -1.0540706494829784 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8983227935911830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9936607969899208 " " Order of pole = 5.6257057853453 " " x[1] = -0.9825000000000019 " " y[1] (analytic) = -1.0543925358761528 " " y[1] (numeric) = -1.0543925358761592 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1071122221812250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9935596713236405 " " Order of pole = 5.6257057853456836 " " x[1] = -0.9824000000000019 " " y[1] (analytic) = -1.05471455334391 " " y[1] (numeric) = -1.0547145533439162 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8947218640242120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.993458545657351 " " Order of pole = 5.625705785345772 " " x[1] = -0.982300000000002 " " y[1] (analytic) = -1.055036701952968 " " y[1] (numeric) = -1.0550367019529743 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.892921948963660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9933574199910585 " " Order of pole = 5.625705785345776 " " x[1] = -0.982200000000002 " " y[1] (analytic) = -1.0553589817700928 " " y[1] (numeric) = -1.0553589817700995 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3119168575021380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9932562943247595 " " Order of pole = 5.625705785345566 " " x[1] = -0.982100000000002 " " y[1] (analytic) = -1.0556813928620914 " " y[1] (numeric) = -1.055681392862098 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3099891622520440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9931551686584739 " " Order of pole = 5.625705785345783 " " x[1] = -0.982000000000002 " " y[1] (analytic) = -1.0560039352958108 " " y[1] (numeric) = -1.0560039352958175 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3080618595279630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9930540429921688 " " Order of pole = 5.625705785345392 " " x[1] = -0.981900000000002 " " y[1] (analytic) = -1.0563266091381394 " " y[1] (numeric) = -1.0563266091381458 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.0959304509802600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9929529173258824 " " Order of pole = 5.625705785345577 " " x[1] = -0.981800000000002 " " y[1] (analytic) = -1.0566494144560057 " " y[1] (numeric) = -1.0566494144560123 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3042084314979660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9928517916595998 " " Order of pole = 5.62570578534589 " " x[1] = -0.981700000000002 " " y[1] (analytic) = -1.0569723513163805 " " y[1] (numeric) = -1.0569723513163871 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3022823061121120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9927506659932915 " " Order of pole = 5.625705785345389 " " x[1] = -0.981600000000002 " " y[1] (analytic) = -1.0572954197862743 " " y[1] (numeric) = -1.057295419786281 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3003565730923970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9926495403270075 " " Order of pole = 5.625705785345655 " " x[1] = -0.981500000000002 " " y[1] (analytic) = -1.0576186199327393 " " y[1] (numeric) = -1.057618619932746 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2984312323988540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.992548414660702 " " Order of pole = 5.62570578534525 " " x[1] = -0.981400000000002 " " y[1] (analytic) = -1.0579419518228683 " " y[1] (numeric) = -1.057941951822875 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2965062839915150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9924472889944217 " " Order of pole = 5.62570578534563 " " x[1] = -0.9813000000000021 " " y[1] (analytic) = -1.058265415523795 " " y[1] (numeric) = -1.0582654155238018 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5044011187580940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9923461633281303 " " Order of pole = 5.625705785345666 " " x[1] = -0.9812000000000021 " " y[1] (analytic) = -1.0585890111026948 " " y[1] (numeric) = -1.0585890111027016 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5024128160047620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9922450376618326 " " Order of pole = 5.625705785345499 " " x[1] = -0.9811000000000021 " " y[1] (analytic) = -1.0589127386267836 " " y[1] (numeric) = -1.0589127386267905 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5004249184899420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9921439119955529 " " Order of pole = 5.6257057853459 " " x[1] = -0.9810000000000021 " " y[1] (analytic) = -1.059236598163319 " " y[1] (numeric) = -1.0592365981633256 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.2888104124248330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9920427863292414 " " Order of pole = 5.625705785345303 " " x[1] = -0.9809000000000021 " " y[1] (analytic) = -1.0595605897795983 " " y[1] (numeric) = -1.0595605897796052 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4964503390106250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.991941660662953 " " Order of pole = 5.625705785345431 " " x[1] = -0.9808000000000021 " " y[1] (analytic) = -1.059884713542962 " " y[1] (numeric) = -1.059884713542969 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4944636569635320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9918405349966645 " " Order of pole = 5.625705785345560 " " x[1] = -0.9807000000000021 " " y[1] (analytic) = -1.0602089695207908 " " y[1] (numeric) = -1.0602089695207977 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4924773799897450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9917394093303764 " " Order of pole = 5.625705785345694 " " x[1] = -0.9806000000000021 " " y[1] (analytic) = -1.0605333577805063 " " y[1] (numeric) = -1.0605333577805132 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.4904915080479650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9916382836640789 " " Order of pole = 5.625705785345538 " " x[1] = -0.9805000000000021 " " y[1] (analytic) = -1.0608578783895715 " " y[1] (numeric) = -1.0608578783895786 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6978126875838930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9915371579977819 " " Order of pole = 5.625705785345396 " " x[1] = -0.9804000000000022 " " y[1] (analytic) = -1.0611825314154912 " " y[1] (numeric) = -1.0611825314154986 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.9050062035529900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9914360323314979 " " Order of pole = 5.625705785345659 " " x[1] = -0.9803000000000022 " " y[1] (analytic) = -1.0615073169258118 " " y[1] (numeric) = -1.061507316925819 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.6937149130339870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9913349066652037 " " Order of pole = 5.625705785345605 " " x[1] = -0.9802000000000022 " " y[1] (analytic) = -1.0618322349881197 " " y[1] (numeric) = -1.0618322349881268 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.691666652670890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9912337809989168 " " Order of pole = 5.625705785345783 " " x[1] = -0.9801000000000022 " " y[1] (analytic) = -1.0621572856700436 " " y[1] (numeric) = -1.062157285670051 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8986693980106950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9911326553326149 " " Order of pole = 5.625705785345481 " " x[1] = -0.9800000000000022 " " y[1] (analytic) = -1.0624824690392538 " " y[1] (numeric) = -1.0624824690392611 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8965579913538490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9910315296663206 " " Order of pole = 5.625705785345428 " " x[1] = -0.9799000000000022 " " y[1] (analytic) = -1.0628077851634612 " " y[1] (numeric) = -1.0628077851634687 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.1033696523872750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9909304040000296 " " Order of pole = 5.625705785345474 " " x[1] = -0.9798000000000022 " " y[1] (analytic) = -1.0631332341104194 " " y[1] (numeric) = -1.0631332341104267 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8923364705622450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9908292783337399 " " Order of pole = 5.625705785345560 " " x[1] = -0.9797000000000022 " " y[1] (analytic) = -1.063458815947922 " " y[1] (numeric) = -1.0634588159479295 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0990210944104560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9907281526674439 " " Order of pole = 5.625705785345449 " " x[1] = -0.9796000000000022 " " y[1] (analytic) = -1.0637845307438054 " " y[1] (numeric) = -1.063784530743813 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0968474811082190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9906270270011529 " " Order of pole = 5.625705785345495 " " x[1] = -0.9795000000000023 " " y[1] (analytic) = -1.064110378565947 " " y[1] (numeric) = -1.0641103785659545 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0946743115363700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9905259013348647 " " Order of pole = 5.625705785345627 " " x[1] = -0.9794000000000023 " " y[1] (analytic) = -1.0644363594822657 " " y[1] (numeric) = -1.0644363594822732 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0925015856496070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9904247756685663 " " Order of pole = 5.625705785345442 " " x[1] = -0.9793000000000023 " " y[1] (analytic) = -1.0647624735607224 " " y[1] (numeric) = -1.06476247356073 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0903293034026360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9903236500022772 " " Order of pole = 5.625705785345545 " " x[1] = -0.9792000000000023 " " y[1] (analytic) = -1.0650887208693194 " " y[1] (numeric) = -1.0650887208693267 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 6.8796822451986840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9902225243359855 " " Order of pole = 5.625705785345566 " " x[1] = -0.9791000000000023 " " y[1] (analytic) = -1.0654151014761002 " " y[1] (numeric) = -1.0654151014761077 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0859860696468810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9901213986696987 " " Order of pole = 5.625705785345751 " " x[1] = -0.9790000000000023 " " y[1] (analytic) = -1.0657416154491508 " " y[1] (numeric) = -1.0657416154491586 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.292162621519490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9900202730033975 " " Order of pole = 5.6257057853454775 " " x[1] = -0.9789000000000023 " " y[1] (analytic) = -1.0660682628565987 " " y[1] (numeric) = -1.0660682628566067 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4982119399012450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9899191473371074 " " Order of pole = 5.6257057853455485 " " x[1] = -0.9788000000000023 " " y[1] (analytic) = -1.0663950437666139 " " y[1] (numeric) = -1.0663950437666214 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.0794745451792580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9898180216708141 " " Order of pole = 5.625705785345524 " " x[1] = -0.9787000000000023 " " y[1] (analytic) = -1.066721958247406 " " y[1] (numeric) = -1.0667219582474137 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.285460950990970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9897168960045271 " " Order of pole = 5.625705785345698 " " x[1] = -0.9786000000000024 " " y[1] (analytic) = -1.0670490063672282 " " y[1] (numeric) = -1.0670490063672362 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.491320201417351000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9896157703382245 " " Order of pole = 5.625705785345378 " " x[1] = -0.9785000000000024 " " y[1] (analytic) = -1.0673761881943757 " " y[1] (numeric) = -1.0673761881943837 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4890238940251140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9895146446719378 " " Order of pole = 5.625705785345563 " " x[1] = -0.9784000000000024 " " y[1] (analytic) = -1.067703503797185 " " y[1] (numeric) = -1.067703503797193 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.4867280559374740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9894135190056462 " " Order of pole = 5.625705785345588 " " x[1] = -0.9783000000000024 " " y[1] (analytic) = -1.068030953244034 " " y[1] (numeric) = -1.0680309532440422 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.6923335950816470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9893123933393442 " " Order of pole = 5.625705785345286 " " x[1] = -0.9782000000000024 " " y[1] (analytic) = -1.0683585366033435 " " y[1] (numeric) = -1.068358536603352 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.897812109011030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.989211267673054 " " Order of pole = 5.62570578534536 " " x[1] = -0.9781000000000024 " " y[1] (analytic) = -1.068686253943576 " " y[1] (numeric) = -1.0686862539435844 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8953902101904270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9891101420067625 " " Order of pole = 5.625705785345385 " " x[1] = -0.9780000000000024 " " y[1] (analytic) = -1.069014105333236 " " y[1] (numeric) = -1.0690141053332443 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.6852591011090110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9890090163404676 " " Order of pole = 5.625705785345314 " " x[1] = -0.9779000000000024 " " y[1] (analytic) = -1.0693420908408693 " " y[1] (numeric) = -1.0693420908408777 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8905478980222980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9889078906741783 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9778000000000024 " " y[1] (analytic) = -1.069670210535065 " " y[1] (numeric) = -1.0696702105350735 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.8881274845735190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9888067650078977 " " Order of pole = 5.625705785345787 " " x[1] = -0.9777000000000025 " " y[1] (analytic) = -1.0699984644844538 " " y[1] (numeric) = -1.0699984644844622 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 7.885707566147430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9887056393416059 " " Order of pole = 5.6257057853458114 " " x[1] = -0.9776000000000025 " " y[1] (analytic) = -1.070326852757708 " " y[1] (numeric) = -1.0703268527577166 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.0907430938169170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9886045136753114 " " Order of pole = 5.625705785345744 " " x[1] = -0.9775000000000025 " " y[1] (analytic) = -1.0706553754235426 " " y[1] (numeric) = -1.0706553754235513 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.0882605092703130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9885033880090208 " " Order of pole = 5.625705785345804 " " x[1] = -0.9774000000000025 " " y[1] (analytic) = -1.070984032550715 " " y[1] (numeric) = -1.0709840325507236 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.0857784326174350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9884022623427179 " " Order of pole = 5.6257057853454775 " " x[1] = -0.9773000000000025 " " y[1] (analytic) = -1.0713128242080239 " " y[1] (numeric) = -1.0713128242080328 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.290560885955210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9883011366764228 " " Order of pole = 5.625705785345392 " " x[1] = -0.9772000000000025 " " y[1] (analytic) = -1.0716417504643114 " " y[1] (numeric) = -1.0716417504643203 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2880162079846480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9882000110101207 " " Order of pole = 5.625705785345087 " " x[1] = -0.9771000000000025 " " y[1] (analytic) = -1.0719708113884612 " " y[1] (numeric) = -1.07197081138847 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2854720507708560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9880988853438578 " " Order of pole = 5.625705785346021 " " x[1] = -0.9770000000000025 " " y[1] (analytic) = -1.072300007049399 " " y[1] (numeric) = -1.072300007049408 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2829284142605460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9879977596775439 " " Order of pole = 5.6257057853453425 " " x[1] = -0.9769000000000025 " " y[1] (analytic) = -1.0726293375160938 " " y[1] (numeric) = -1.0726293375161027 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2803852984004270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.987896634011256 " " Order of pole = 5.625705785345495 " " x[1] = -0.9768000000000026 " " y[1] (analytic) = -1.0729588028575563 " " y[1] (numeric) = -1.0729588028575652 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2778427031372040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9877955083449685 " " Order of pole = 5.625705785345648 " " x[1] = -0.9767000000000026 " " y[1] (analytic) = -1.0732884031428394 " " y[1] (numeric) = -1.0732884031428485 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4821831441280320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9876943826786706 " " Order of pole = 5.62570578534547 " " x[1] = -0.9766000000000026 " " y[1] (analytic) = -1.0736181384410393 " " y[1] (numeric) = -1.0736181384410481 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2727590741882950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9875932570123837 " " Order of pole = 5.6257057853456445 " " x[1] = -0.9765000000000026 " " y[1] (analytic) = -1.0739480088212936 " " y[1] (numeric) = -1.0739480088213025 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.2702180403960260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9874921313460855 " " Order of pole = 5.62570578534547 " " x[1] = -0.9764000000000026 " " y[1] (analytic) = -1.074278014352783 " " y[1] (numeric) = -1.0742780143527921 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4743694651621810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9873910056797984 " " Order of pole = 5.625705785345641 " " x[1] = -0.9763000000000026 " " y[1] (analytic) = -1.074608155104731 " " y[1] (numeric) = -1.0746081551047402 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4717659722571400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9872898800135014 " " Order of pole = 5.625705785345495 " " x[1] = -0.9762000000000026 " " y[1] (analytic) = -1.074938431146403 " " y[1] (numeric) = -1.074938431146412 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4691630126361840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9871887543472048 " " Order of pole = 5.625705785345364 " " x[1] = -0.9761000000000026 " " y[1] (analytic) = -1.0752688425471073 " " y[1] (numeric) = -1.0752688425471164 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4665605862446880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9870876286809181 " " Order of pole = 5.625705785345552 " " x[1] = -0.9760000000000026 " " y[1] (analytic) = -1.0755993893761946 " " y[1] (numeric) = -1.075599389376204 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6703967099311530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9869865030146278 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9759000000000027 " " y[1] (analytic) = -1.0759300717030587 " " y[1] (numeric) = -1.075930071703068 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6677319020274790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9868853773483227 " " Order of pole = 5.625705785345218 " " x[1] = -0.9758000000000027 " " y[1] (analytic) = -1.0762608895971357 " " y[1] (numeric) = -1.0762608895971448 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.4587565059007340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.986784251682037 " " Order of pole = 5.625705785345428 " " x[1] = -0.9757000000000027 " " y[1] (analytic) = -1.0765918431279042 " " y[1] (numeric) = -1.0765918431279136 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6624039243657510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.986683126015752 " " Order of pole = 5.625705785345670 " " x[1] = -0.9756000000000027 " " y[1] (analytic) = -1.0769229323648863 " " y[1] (numeric) = -1.0769229323648957 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6597407544957850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9865820003494606 " " Order of pole = 5.625705785345701 " " x[1] = -0.9755000000000027 " " y[1] (analytic) = -1.077254157377646 " " y[1] (numeric) = -1.0772541573776555 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 8.8631990383947950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9864808746831581 " " Order of pole = 5.625705785345385 " " x[1] = -0.9754000000000027 " " y[1] (analytic) = -1.077585518235791 " " y[1] (numeric) = -1.0775855182358003 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 8.6544160523978770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9863797490168718 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9753000000000027 " " y[1] (analytic) = -1.0779170150089703 " " y[1] (numeric) = -1.07791701500898 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0637428305369800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9862786233505685 " " Order of pole = 5.6257057853452395 " " x[1] = -0.9752000000000027 " " y[1] (analytic) = -1.078248647766878 " " y[1] (numeric) = -1.0782486477668878 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0609551302805680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.986177497684281 " " Order of pole = 5.625705785345392 " " x[1] = -0.9751000000000027 " " y[1] (analytic) = -1.0785804165792494 " " y[1] (numeric) = -1.078580416579259 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 8.8523005471004730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9860763720179937 " " Order of pole = 5.625705785345560 " " x[1] = -0.9750000000000028 " " y[1] (analytic) = -1.0789123215158627 " " y[1] (numeric) = -1.0789123215158725 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.055381444689280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9859752463516983 " " Order of pole = 5.625705785345467 " " x[1] = -0.9749000000000028 " " y[1] (analytic) = -1.07924436264654 " " y[1] (numeric) = -1.0792443626465498 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0525954592371660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9858741206853973 " " Order of pole = 5.625705785345193 " " x[1] = -0.9748000000000028 " " y[1] (analytic) = -1.0795765400411457 " " y[1] (numeric) = -1.0795765400411557 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.2554875462980930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9857729950191084 " " Order of pole = 5.6257057853453105 " " x[1] = -0.9747000000000028 " " y[1] (analytic) = -1.0799088537695878 " " y[1] (numeric) = -1.0799088537695976 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.0470252027268980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9856718693528269 " " Order of pole = 5.625705785345655 " " x[1] = -0.9746000000000028 " " y[1] (analytic) = -1.0802413039018164 " " y[1] (numeric) = -1.0802413039018264 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.2497918618140420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9855707436865335 " " Order of pole = 5.62570578534563 " " x[1] = -0.9745000000000028 " " y[1] (analytic) = -1.0805738905078255 " " y[1] (numeric) = -1.0805738905078357 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4524325603973780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9854696180202499 " " Order of pole = 5.625705785345904 " " x[1] = -0.9744000000000028 " " y[1] (analytic) = -1.0809066136576524 " " y[1] (numeric) = -1.0809066136576624 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.2440985145004440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.985368492353941 " " Order of pole = 5.625705785345385 " " x[1] = -0.9743000000000028 " " y[1] (analytic) = -1.081239473421376 " " y[1] (numeric) = -1.0812394734213864 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6519750601163650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9852673666876546 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9742000000000028 " " y[1] (analytic) = -1.0815724698691205 " " y[1] (numeric) = -1.0815724698691307 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 9.4437054484083060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9851662410213652 " " Order of pole = 5.625705785345673 " " x[1] = -0.9741000000000029 " " y[1] (analytic) = -1.0819056030710514 " " y[1] (numeric) = -1.0819056030710619 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6460323357721880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9850651153550753 " " Order of pole = 5.625705785345755 " " x[1] = -0.9740000000000029 " " y[1] (analytic) = -1.0822388730973789 " " y[1] (numeric) = -1.0822388730973893 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6430618885535460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9849639896887857 " " Order of pole = 5.6257057853458505 " " x[1] = -0.9739000000000029 " " y[1] (analytic) = -1.0825722800183553 " " y[1] (numeric) = -1.082572280018366 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.845200392735709000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.984862864022479 " " Order of pole = 5.625705785345400 " " x[1] = -0.9738000000000029 " " y[1] (analytic) = -1.0829058239042773 " " y[1] (numeric) = -1.082905823904288 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.842167990171989000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9847617383561991 " " Order of pole = 5.625705785345794 " " x[1] = -0.9737000000000029 " " y[1] (analytic) = -1.0832395048254841 " " y[1] (numeric) = -1.0832395048254946 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 9.6341542059600050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9846606126898957 " " Order of pole = 5.625705785345449 " " x[1] = -0.9736000000000029 " " y[1] (analytic) = -1.0835733228523579 " " y[1] (numeric) = -1.0835733228523687 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0041023908456827000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.984559487023593 " " Order of pole = 5.625705785345126 " " x[1] = -0.9735000000000029 " " y[1] (analytic) = -1.0839072780553258 " " y[1] (numeric) = -1.0839072780553365 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.8330745186282250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9844583613573091 " " Order of pole = 5.625705785345396 " " x[1] = -0.9734000000000029 " " y[1] (analytic) = -1.0842413705048568 " " y[1] (numeric) = -1.0842413705048675 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 9.8300446066162720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9843572356910312 " " Order of pole = 5.625705785345854 " " x[1] = -0.9733000000000029 " " y[1] (analytic) = -1.084575600271464 " " y[1] (numeric) = -1.0845756002714748 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0031744802854939000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9842561100247238 " " Order of pole = 5.625705785345389 " " x[1] = -0.973200000000003 " " y[1] (analytic) = -1.0849099674257041 " " y[1] (numeric) = -1.084909967425715 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0028653038503513000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9841549843584425 " " Order of pole = 5.62570578534574 " " x[1] = -0.973100000000003 " " y[1] (analytic) = -1.0852444720381769 " " y[1] (numeric) = -1.085244472038188 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0230165213742744000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9840538586921447 " " Order of pole = 5.625705785345566 " " x[1] = -0.973000000000003 " " y[1] (analytic) = -1.0855791141795261 " " y[1] (numeric) = -1.0855791141795372 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0227011648655898000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9839527330258573 " " Order of pole = 5.62570578534573 " " x[1] = -0.972900000000003 " " y[1] (analytic) = -1.085913893920439 " " y[1] (numeric) = -1.08591389392045 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0223858731717256000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9838516073595556 " " Order of pole = 5.625705785345438 " " x[1] = -0.972800000000003 " " y[1] (analytic) = -1.0862488113316457 " " y[1] (numeric) = -1.086248811331657 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0425120592117407000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9837504816932677 " " Order of pole = 5.625705785345588 " " x[1] = -0.972700000000003 " " y[1] (analytic) = -1.0865838664839216 " " y[1] (numeric) = -1.0865838664839327 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0217554842018123000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9836493560269699 " " Order of pole = 5.62570578534541 " " x[1] = -0.972600000000003 " " y[1] (analytic) = -1.0869190594480835 " " y[1] (numeric) = -1.0869190594480949 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0418691946506894000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.983548230360679 " " Order of pole = 5.625705785345463 " " x[1] = -0.972500000000003 " " y[1] (analytic) = -1.0872543902949943 " " y[1] (numeric) = -1.0872543902950054 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.0211253544112436000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9834471046943846 " " Order of pole = 5.625705785345403 " " x[1] = -0.972400000000003 " " y[1] (analytic) = -1.0875898590955584 " " y[1] (numeric) = -1.0875898590955697 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.0412265944253916000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9833459790280921 " " Order of pole = 5.625705785345400 " " x[1] = -0.972300000000003 " " y[1] (analytic) = -1.0879254659207254 " " y[1] (numeric) = -1.0879254659207371 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.081725212771533100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9832448533617966 " " Order of pole = 5.625705785345307 " " x[1] = -0.9722000000000031 " " y[1] (analytic) = -1.0882612108414886 " " y[1] (numeric) = -1.0882612108415004 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0813914843042943000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9831437276955043 " " Order of pole = 5.625705785345314 " " x[1] = -0.9721000000000031 " " y[1] (analytic) = -1.088597093928885 " " y[1] (numeric) = -1.0885970939288965 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.060660507041177000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9830426020292158 " " Order of pole = 5.625705785345438 " " x[1] = -0.9720000000000031 " " y[1] (analytic) = -1.0889331152539947 " " y[1] (numeric) = -1.0889331152540063 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0603332100345242000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9829414763629174 " " Order of pole = 5.625705785345247 " " x[1] = -0.9719000000000031 " " y[1] (analytic) = -1.0892692748879425 " " y[1] (numeric) = -1.089269274887954 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0600059803660068000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9828403506966358 " " Order of pole = 5.625705785345591 " " x[1] = -0.9718000000000031 " " y[1] (analytic) = -1.0896055729018967 " " y[1] (numeric) = -1.0896055729019083 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0596788180286966000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9827392250303458 " " Order of pole = 5.6257057853456764 " " x[1] = -0.9717000000000031 " " y[1] (analytic) = -1.0899420093670702 " " y[1] (numeric) = -1.0899420093670817 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.059351723015665900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9826380993640544 " " Order of pole = 5.625705785345708 " " x[1] = -0.9716000000000031 " " y[1] (analytic) = -1.090278584354719 " " y[1] (numeric) = -1.0902785843547305 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.059024695319987000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9825369736977669 " " Order of pole = 5.625705785345865 " " x[1] = -0.9715000000000031 " " y[1] (analytic) = -1.0906152979361434 " " y[1] (numeric) = -1.0906152979361552 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0790573067603998000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.982435848031462 " " Order of pole = 5.625705785345467 " " x[1] = -0.9714000000000031 " " y[1] (analytic) = -1.0909521501826887 " " y[1] (numeric) = -1.0909521501827002 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.0583708418529726000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9823347223651709 " " Order of pole = 5.625705785345513 " " x[1] = -0.9713000000000032 " " y[1] (analytic) = -1.0912891411657424 " " y[1] (numeric) = -1.0912891411657542 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0783910163767778000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9822335966988864 " " Order of pole = 5.625705785345765 " " x[1] = -0.9712000000000032 " " y[1] (analytic) = -1.0916262709567377 " " y[1] (numeric) = -1.0916262709567497 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0983986905557794000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9821324710325864 " " Order of pole = 5.62570578534552 " " x[1] = -0.9711000000000032 " " y[1] (analytic) = -1.0919635396271514 " " y[1] (numeric) = -1.0919635396271634 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.0980594342962943000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9820313453662979 " " Order of pole = 5.625705785345648 " " x[1] = -0.9710000000000032 " " y[1] (analytic) = -1.0923009472485048 " " y[1] (numeric) = -1.0923009472485166 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.0773920951612329000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9819302197000128 " " Order of pole = 5.625705785345886 " " x[1] = -0.9709000000000032 " " y[1] (analytic) = -1.092638493892362 " " y[1] (numeric) = -1.092638493892374 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.11770300416304000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9818290940337131 " " Order of pole = 5.625705785345652 " " x[1] = -0.9708000000000032 " " y[1] (analytic) = -1.0929761796303334 " " y[1] (numeric) = -1.0929761796303457 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1173576788294892000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9817279683674253 " " Order of pole = 5.625705785345800 " " x[1] = -0.9707000000000032 " " y[1] (analytic) = -1.0933140045340723 " " y[1] (numeric) = -1.0933140045340846 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1170124246310366000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9816268427011282 " " Order of pole = 5.625705785345659 " " x[1] = -0.9706000000000032 " " y[1] (analytic) = -1.0936519686752768 " " y[1] (numeric) = -1.093651968675289 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1166672415603542000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.981525717034837 " " Order of pole = 5.625705785345701 " " x[1] = -0.9705000000000032 " " y[1] (analytic) = -1.0939900721256892 " " y[1] (numeric) = -1.0939900721257014 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1163221296101145000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9814245913685361 " " Order of pole = 5.625705785345428 " " x[1] = -0.9704000000000033 " " y[1] (analytic) = -1.0943283149570961 " " y[1] (numeric) = -1.0943283149571084 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1159770887729904000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9813234657022415 " " Order of pole = 5.62570578534536 " " x[1] = -0.9703000000000033 " " y[1] (analytic) = -1.0946666972413284 " " y[1] (numeric) = -1.0946666972413408 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1359163393878663000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9812223400359469 " " Order of pole = 5.625705785345293 " " x[1] = -0.9702000000000033 " " y[1] (analytic) = -1.0950052190502617 " " y[1] (numeric) = -1.0950052190502744 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1558431193327343000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9811212143696614 " " Order of pole = 5.625705785345517 " " x[1] = -0.9701000000000033 " " y[1] (analytic) = -1.0953438804558164 " " y[1] (numeric) = -1.0953438804558289 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1352140727373453000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.981020088703363 " " Order of pole = 5.625705785345328 " " x[1] = -0.9700000000000033 " " y[1] (analytic) = -1.0956826815299563 " " y[1] (numeric) = -1.0956826815299687 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.134863047980173000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.980918963037087 " " Order of pole = 5.625705785345854 " " x[1] = -0.9699000000000033 " " y[1] (analytic) = -1.0960216223446904 " " y[1] (numeric) = -1.096021622344703 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1547712401559172000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9808178373707794 " " Order of pole = 5.625705785345378 " " x[1] = -0.9698000000000033 " " y[1] (analytic) = -1.0963607029720728 " " y[1] (numeric) = -1.0963607029720852 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1341612155647003000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.980716711704493 " " Order of pole = 5.625705785345566 " " x[1] = -0.9697000000000033 " " y[1] (analytic) = -1.0966999234842012 " " y[1] (numeric) = -1.0966999234842134 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.113563793464845000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9806155860382 " " Order of pole = 5.6257057853455485 " " x[1] = -0.9696000000000033 " " y[1] (analytic) = -1.0970392839532184 " " y[1] (numeric) = -1.0970392839532306 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.1132193212688549000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9805144603719087 " " Order of pole = 5.625705785345591 " " x[1] = -0.9695000000000034 " " y[1] (analytic) = -1.0973787844513112 " " y[1] (numeric) = -1.0973787844513239 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1533430990334890000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9804133347056173 " " Order of pole = 5.62570578534562 " " x[1] = -0.9694000000000034 " " y[1] (analytic) = -1.0977184250507128 " " y[1] (numeric) = -1.0977184250507253 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1327584189203437000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9803122090393227 " " Order of pole = 5.6257057853455485 " " x[1] = -0.9693000000000034 " " y[1] (analytic) = -1.098058205823699 " " y[1] (numeric) = -1.0980582058237116 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1526294702412963000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9802110833730328 " " Order of pole = 5.625705785345634 " " x[1] = -0.9692000000000034 " " y[1] (analytic) = -1.098398126842592 " " y[1] (numeric) = -1.0983981268426044 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.132057454572089000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.980109957706737 " " Order of pole = 5.625705785345527 " " x[1] = -0.9691000000000034 " " y[1] (analytic) = -1.0987381881797575 " " y[1] (numeric) = -1.09873818817977 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1317070808653303000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9800088320404489 " " Order of pole = 5.625705785345670 " " x[1] = -0.9690000000000034 " " y[1] (analytic) = -1.0990783899076069 " " y[1] (numeric) = -1.0990783899076195 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.151559579093420900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9799077063741465 " " Order of pole = 5.625705785345353 " " x[1] = -0.9689000000000034 " " y[1] (analytic) = -1.0994187320985964 " " y[1] (numeric) = -1.099418732098609 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1512030958911967000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.979806580707861 " " Order of pole = 5.62570578534557 " " x[1] = -0.9688000000000034 " " y[1] (analytic) = -1.0997592148252266 " " y[1] (numeric) = -1.0997592148252393 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1508466862665168000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9797054550415675 " " Order of pole = 5.625705785345541 " " x[1] = -0.9687000000000034 " " y[1] (analytic) = -1.1000998381600435 " " y[1] (numeric) = -1.100099838160056 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1303063089800011000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9796043293752734 " " Order of pole = 5.625705785345488 " " x[1] = -0.9686000000000035 " " y[1] (analytic) = -1.1004406021756374 " " y[1] (numeric) = -1.1004406021756499 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1299562967067919000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9795032037089759 " " Order of pole = 5.625705785345332 " " x[1] = -0.9685000000000035 " " y[1] (analytic) = -1.100781506944644 " " y[1] (numeric) = -1.1007815069446567 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.149777898781802000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9794020780426875 " " Order of pole = 5.625705785345463 " " x[1] = -0.9684000000000035 " " y[1] (analytic) = -1.1011225525397443 " " y[1] (numeric) = -1.101122552539757 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1494217833913592000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9793009523763986 " " Order of pole = 5.62570578534557 " " x[1] = -0.9683000000000035 " " y[1] (analytic) = -1.101463739033664 " " y[1] (numeric) = -1.1014637390336766 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1490657415404906000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.979199826710106 " " Order of pole = 5.625705785345566 " " x[1] = -0.9682000000000035 " " y[1] (analytic) = -1.1018050664991736 " " y[1] (numeric) = -1.1018050664991863 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1487097732216026000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9790987010438095 " " Order of pole = 5.625705785345442 " " x[1] = -0.9681000000000035 " " y[1] (analytic) = -1.1021465350090893 " " y[1] (numeric) = -1.102146535009102 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.148353878427101100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9789975753775156 " " Order of pole = 5.625705785345400 " " x[1] = -0.9680000000000035 " " y[1] (analytic) = -1.102488144636272 " " y[1] (numeric) = -1.1024881446362846 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1479980571493924000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9788964497112295 " " Order of pole = 5.625705785345591 " " x[1] = -0.9679000000000035 " " y[1] (analytic) = -1.1028298954536278 " " y[1] (numeric) = -1.1028298954536406 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1677763849840557000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9787953240449297 " " Order of pole = 5.625705785345364 " " x[1] = -0.9678000000000035 " " y[1] (analytic) = -1.1031717875341085 " " y[1] (numeric) = -1.1031717875341212 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.147286635113977100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9786941983786432 " " Order of pole = 5.625705785345552 " " x[1] = -0.9677000000000036 " " y[1] (analytic) = -1.1035138209507105 " " y[1] (numeric) = -1.1035138209507231 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1469310343410825000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9785930727123417 " " Order of pole = 5.625705785345268 " " x[1] = -0.9676000000000036 " " y[1] (analytic) = -1.1038559957764753 " " y[1] (numeric) = -1.1038559957764882 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1666908668274932000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9784919470460616 " " Order of pole = 5.625705785345662 " " x[1] = -0.9675000000000036 " " y[1] (analytic) = -1.1041983120844912 " " y[1] (numeric) = -1.1041983120845038 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1462200532469506000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9783908213797632 " " Order of pole = 5.625705785345474 " " x[1] = -0.9674000000000036 " " y[1] (analytic) = -1.1045407699478897 " " y[1] (numeric) = -1.1045407699479024 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1458646729105253000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9782896957134759 " " Order of pole = 5.625705785345634 " " x[1] = -0.9673000000000036 " " y[1] (analytic) = -1.104883369439849 " " y[1] (numeric) = -1.1048833694398619 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1656060215822572000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9781885700471779 " " Order of pole = 5.62570578534546 " " x[1] = -0.9672000000000036 " " y[1] (analytic) = -1.1052261106335932 " " y[1] (numeric) = -1.1052261106336057 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1250637092416706000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9780874443808871 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9671000000000036 " " y[1] (analytic) = -1.1055689936023896 " " y[1] (numeric) = -1.1055689936024025 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1648831651553637000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9779863187145998 " " Order of pole = 5.625705785345673 " " x[1] = -0.9670000000000036 " " y[1] (analytic) = -1.1059120184195537 " " y[1] (numeric) = -1.1059120184195665 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1645218490397147000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9778851930482978 " " Order of pole = 5.6257057853453745 " " x[1] = -0.9669000000000036 " " y[1] (analytic) = -1.1062551851584448 " " y[1] (numeric) = -1.1062551851584577 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1641606076456279000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9777840673820032 " " Order of pole = 5.625705785345303 " " x[1] = -0.9668000000000037 " " y[1] (analytic) = -1.106598493892468 " " y[1] (numeric) = -1.1065984938924809 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1637994409653762000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9776829417157241 " " Order of pole = 5.62570578534573 " " x[1] = -0.9667000000000037 " " y[1] (analytic) = -1.1069419446950746 " " y[1] (numeric) = -1.1069419446950872 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1433790671120732000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9775818160494215 " " Order of pole = 5.62570578534541 " " x[1] = -0.9666000000000037 " " y[1] (analytic) = -1.1072855376397603 " " y[1] (numeric) = -1.107285537639773 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1430242742720995000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9774806903831257 " " Order of pole = 5.625705785345303 " " x[1] = -0.9665000000000037 " " y[1] (analytic) = -1.1076292728000674 " " y[1] (numeric) = -1.1076292728000803 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1627163891303607000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9773795647168444 " " Order of pole = 5.625705785345659 " " x[1] = -0.9664000000000037 " " y[1] (analytic) = -1.1079731502495844 " " y[1] (numeric) = -1.1079731502495969 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.1222742963582404000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9772784390505592 " " Order of pole = 5.625705785345893 " " x[1] = -0.9663000000000037 " " y[1] (analytic) = -1.1083171700619434 " " y[1] (numeric) = -1.108317170061956 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.141960336139105100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9771773133842545 " " Order of pole = 5.625705785345499 " " x[1] = -0.9662000000000037 " " y[1] (analytic) = -1.1086613323108245 " " y[1] (numeric) = -1.1086613323108372 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1416058368651026000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9770761877179709 " " Order of pole = 5.6257057853457795 " " x[1] = -0.9661000000000037 " " y[1] (analytic) = -1.1090056370699524 " " y[1] (numeric) = -1.109005637069965 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1412514109636084000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9769750620516692 " " Order of pole = 5.625705785345488 " " x[1] = -0.9660000000000037 " " y[1] (analytic) = -1.1093500844130975 " " y[1] (numeric) = -1.1093500844131103 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1609127962941693000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.976873936385379 " " Order of pole = 5.625705785345563 " " x[1] = -0.9659000000000038 " " y[1] (analytic) = -1.1096946744140768 " " y[1] (numeric) = -1.1096946744140894 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.1405427792477682000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9767728107190786 " " Order of pole = 5.6257057853453105 " " x[1] = -0.9658000000000038 " " y[1] (analytic) = -1.110039407146752 " " y[1] (numeric) = -1.110039407146765 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.160191881723818000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9766716850527868 " " Order of pole = 5.625705785345332 " " x[1] = -0.9657000000000038 " " y[1] (analytic) = -1.1103842826850323 " " y[1] (numeric) = -1.1103842826850452 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1598315363857604000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9765705593864954 " " Order of pole = 5.625705785345367 " " x[1] = -0.9656000000000038 " " y[1] (analytic) = -1.1107293011028714 " " y[1] (numeric) = -1.1107293011028843 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.1594712656688122000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9764694337202035 " " Order of pole = 5.625705785345382 " " x[1] = -0.9655000000000038 " " y[1] (analytic) = -1.1110744624742692 " " y[1] (numeric) = -1.1110744624742823 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.1790957431784405000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9763683080539127 " " Order of pole = 5.625705785345438 " " x[1] = -0.9654000000000038 " " y[1] (analytic) = -1.1114197668732724 " " y[1] (numeric) = -1.1114197668732857 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1987078773110368000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9762671823876193 " " Order of pole = 5.625705785345406 " " x[1] = -0.9653000000000038 " " y[1] (analytic) = -1.1117652143739731 " " y[1] (numeric) = -1.1117652143739865 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1983354150007094000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9761660567213262 " " Order of pole = 5.625705785345382 " " x[1] = -0.9652000000000038 " " y[1] (analytic) = -1.1121108050505095 " " y[1] (numeric) = -1.1121108050505228 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1979630298526588000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9760649310550346 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9651000000000038 " " y[1] (analytic) = -1.112456538977066 " " y[1] (numeric) = -1.1124565389770793 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1975907218588909000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9759638053887448 " " Order of pole = 5.625705785345502 " " x[1] = -0.9650000000000039 " " y[1] (analytic) = -1.1128024162278731 " " y[1] (numeric) = -1.1128024162278864 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.1972184910114124000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9758626797224514 " " Order of pole = 5.625705785345467 " " x[1] = -0.9649000000000039 " " y[1] (analytic) = -1.1131484368772073 " " y[1] (numeric) = -1.1131484368772209 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.216793776257267000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9757615540561638 " " Order of pole = 5.625705785345623 " " x[1] = -0.9648000000000039 " " y[1] (analytic) = -1.1134946009993918 " " y[1] (numeric) = -1.1134946009994053 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.2164154984020717000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9756604283898613 " " Order of pole = 5.625705785345307 " " x[1] = -0.9647000000000039 " " y[1] (analytic) = -1.1138409086687953 " " y[1] (numeric) = -1.113840908668809 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2359723366423364000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9755593027235837 " " Order of pole = 5.625705785345776 " " x[1] = -0.9646000000000039 " " y[1] (analytic) = -1.1141873599598335 " " y[1] (numeric) = -1.1141873599598473 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2355880168886706000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9754581770572868 " " Order of pole = 5.625705785345637 " " x[1] = -0.9645000000000039 " " y[1] (analytic) = -1.1145339549469677 " " y[1] (numeric) = -1.1145339549469817 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2551264183730135000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.975357051390999 " " Order of pole = 5.625705785345787 " " x[1] = -0.9644000000000039 " " y[1] (analytic) = -1.1148806937047064 " " y[1] (numeric) = -1.1148806937047202 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.2348196164026752000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9752559257246942 " " Order of pole = 5.625705785345396 " " x[1] = -0.9643000000000039 " " y[1] (analytic) = -1.1152275763076034 " " y[1] (numeric) = -1.1152275763076174 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2543457862288873000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9751548000584146 " " Order of pole = 5.625705785345804 " " x[1] = -0.9642000000000039 " " y[1] (analytic) = -1.1155746028302598 " " y[1] (numeric) = -1.1155746028302738 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.2539555915657072000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9750536743921183 " " Order of pole = 5.62570578534568 " " x[1] = -0.964100000000004 " " y[1] (analytic) = -1.1159217733473223 " " y[1] (numeric) = -1.1159217733473366 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.2734633425580613000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9749525487258328 " " Order of pole = 5.625705785345904 " " x[1] = -0.964000000000004 " " y[1] (analytic) = -1.1162690879334851 " " y[1] (numeric) = -1.1162690879334995 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.292958792475945000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9748514230595257 " " Order of pole = 5.625705785345435 " " x[1] = -0.963900000000004 " " y[1] (analytic) = -1.1166165466634883 " " y[1] (numeric) = -1.1166165466635027 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2925564611462487000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9747502973932378 " " Order of pole = 5.625705785345588 " " x[1] = -0.963800000000004 " " y[1] (analytic) = -1.1169641496121183 " " y[1] (numeric) = -1.1169641496121328 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2921542132877822000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9746491717269425 " " Order of pole = 5.625705785345495 " " x[1] = -0.963700000000004 " " y[1] (analytic) = -1.1173118968542086 " " y[1] (numeric) = -1.117311896854223 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.291752048891886000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9745480460606488 " " Order of pole = 5.625705785345453 " " x[1] = -0.963600000000004 " " y[1] (analytic) = -1.1176597884646389 " " y[1] (numeric) = -1.1176597884646533 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.2913499679499000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9744469203943643 " " Order of pole = 5.625705785345708 " " x[1] = -0.963500000000004 " " y[1] (analytic) = -1.1180078245183351 " " y[1] (numeric) = -1.11800782451835 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.330669446467109000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9743457947280746 " " Order of pole = 5.625705785345794 " " x[1] = -0.963400000000004 " " y[1] (analytic) = -1.1183560050902717 " " y[1] (numeric) = -1.1183560050902863 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.3104006111067598000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9742446690617763 " " Order of pole = 5.625705785345609 " " x[1] = -0.963300000000004 " " y[1] (analytic) = -1.1187043302554673 " " y[1] (numeric) = -1.118704330255482 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.3099925984648206000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9741435433954853 " " Order of pole = 5.625705785345652 " " x[1] = -0.963200000000004 " " y[1] (analytic) = -1.119052800088989 " " y[1] (numeric) = -1.1190528000890039 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.329426862503186000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9740424177291785 " " Order of pole = 5.6257057853452 " " x[1] = -0.9631000000000041 " " y[1] (analytic) = -1.1194014146659503 " " y[1] (numeric) = -1.1194014146659652 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.3290128398146306000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9739412920628899 " " Order of pole = 5.625705785345321 " " x[1] = -0.9630000000000041 " " y[1] (analytic) = -1.119750174061511 " " y[1] (numeric) = -1.119750174061526 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3484287374687826000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.973840166396606 " " Order of pole = 5.625705785345602 " " x[1] = -0.9629000000000041 " " y[1] (analytic) = -1.1200990783508786 " " y[1] (numeric) = -1.1200990783508935 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.328185052333092000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9737390407303207 " " Order of pole = 5.625705785345826 " " x[1] = -0.9628000000000041 " " y[1] (analytic) = -1.1204481276093063 " " y[1] (numeric) = -1.1204481276093214 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3475887694255734000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9736379150640262 " " Order of pole = 5.625705785345762 " " x[1] = -0.9627000000000041 " " y[1] (analytic) = -1.1207973219120955 " " y[1] (numeric) = -1.1207973219121106 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3471689162446404000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9735367893977298 " " Order of pole = 5.625705785345637 " " x[1] = -0.9626000000000041 " " y[1] (analytic) = -1.1211466613345933 " " y[1] (numeric) = -1.1211466613346086 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3665542848416654000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9734356637314457 " " Order of pole = 5.6257057853459 " " x[1] = -0.9625000000000041 " " y[1] (analytic) = -1.1214961459521948 " " y[1] (numeric) = -1.1214961459522104 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.3859273971517275000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9733345380651375 " " Order of pole = 5.625705785345400 " " x[1] = -0.9624000000000041 " " y[1] (analytic) = -1.121845775840342 " " y[1] (numeric) = -1.1218457758403573 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3657026723081064000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9732334123988617 " " Order of pole = 5.625705785345932 " " x[1] = -0.9623000000000042 " " y[1] (analytic) = -1.1221955510745227 " " y[1] (numeric) = -1.1221955510745383 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.3850636219212745000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9731322867325544 " " Order of pole = 5.625705785345453 " " x[1] = -0.9622000000000042 " " y[1] (analytic) = -1.122545471730274 " " y[1] (numeric) = -1.1225454717302892 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.3450709583843150000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.973031161066261 " " Order of pole = 5.625705785345431 " " x[1] = -0.9621000000000042 " " y[1] (analytic) = -1.1228955378831778 " " y[1] (numeric) = -1.122895537883193 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.3644259170100215000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9729300353999684 " " Order of pole = 5.625705785345428 " " x[1] = -0.9620000000000042 " " y[1] (analytic) = -1.1232457496088644 " " y[1] (numeric) = -1.12324574960888 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.3837686321238787000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9728289097336701 " " Order of pole = 5.625705785345236 " " x[1] = -0.9619000000000042 " " y[1] (analytic) = -1.1235961069830112 " " y[1] (numeric) = -1.123596106983027 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.4030991075617524000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9727277840673828 " " Order of pole = 5.625705785345406 " " x[1] = -0.9618000000000042 " " y[1] (analytic) = -1.123946610081343 " " y[1] (numeric) = -1.1239466100813587 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.402661550670655000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9726266584010932 " " Order of pole = 5.625705785345492 " " x[1] = -0.9617000000000042 " " y[1] (analytic) = -1.124297258979631 " " y[1] (numeric) = -1.1242972589796467 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.4022240847571830000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9725255327348072 " " Order of pole = 5.625705785345705 " " x[1] = -0.9616000000000042 " " y[1] (analytic) = -1.1246480537536945 " " y[1] (numeric) = -1.1246480537537102 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.401786709811877000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9724244070685086 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9615000000000042 " " y[1] (analytic) = -1.1249989944793992 " " y[1] (numeric) = -1.1249989944794154 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.440824057538667200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9723232814022211 " " Order of pole = 5.625705785345670 " " x[1] = -0.9614000000000043 " " y[1] (analytic) = -1.12535008123266 " " y[1] (numeric) = -1.125350081232676 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4206433909962090000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9722221557359301 " " Order of pole = 5.625705785345708 " " x[1] = -0.9613000000000043 " " y[1] (analytic) = -1.125701314089437 " " y[1] (numeric) = -1.125701314089453 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4202001325310767000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9721210300696356 " " Order of pole = 5.6257057853456445 " " x[1] = -0.9612000000000043 " " y[1] (analytic) = -1.1260526931257389 " " y[1] (numeric) = -1.126052693125755 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4394758130308300000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9720199044033407 " " Order of pole = 5.62570578534557 " " x[1] = -0.9611000000000043 " " y[1] (analytic) = -1.126404218417622 " " y[1] (numeric) = -1.126404218417638 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4193138922243353000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9719187787370556 " " Order of pole = 5.625705785345804 " " x[1] = -0.9610000000000043 " " y[1] (analytic) = -1.1267558900411894 " " y[1] (numeric) = -1.1267558900412051 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.3991643699418263000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9718176530707598 " " Order of pole = 5.625705785345701 " " x[1] = -0.9609000000000043 " " y[1] (analytic) = -1.1271077080725918 " " y[1] (numeric) = -1.1271077080726077 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.4184280206850108000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9717165274044607 " " Order of pole = 5.625705785345485 " " x[1] = -0.9608000000000043 " " y[1] (analytic) = -1.127459672588028 " " y[1] (numeric) = -1.1274596725880441 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.437679462389970800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9716154017381721 " " Order of pole = 5.625705785345609 " " x[1] = -0.9607000000000043 " " y[1] (analytic) = -1.1278117836637442 " " y[1] (numeric) = -1.1278117836637604 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4372306083618697000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9715142760718739 " " Order of pole = 5.625705785345428 " " x[1] = -0.9606000000000043 " " y[1] (analytic) = -1.1281640413760343 " " y[1] (numeric) = -1.1281640413760505 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4367818477671630000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9714131504055857 " " Order of pole = 5.625705785345563 " " x[1] = -0.9605000000000044 " " y[1] (analytic) = -1.1285164458012393 " " y[1] (numeric) = -1.1285164458012555 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4363331805961250000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9713120247392927 " " Order of pole = 5.625705785345545 " " x[1] = -0.9604000000000044 " " y[1] (analytic) = -1.1288689970157484 " " y[1] (numeric) = -1.1288689970157648 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4555542589875103000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9712108990730075 " " Order of pole = 5.6257057853457795 " " x[1] = -0.9603000000000044 " " y[1] (analytic) = -1.1292216950959988 " " y[1] (numeric) = -1.129221695096015 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4354361264861534000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9711097734067088 " " Order of pole = 5.625705785345577 " " x[1] = -0.9602000000000044 " " y[1] (analytic) = -1.1295745401184747 " " y[1] (numeric) = -1.129574540118491 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.4349877395277685000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9710086477404268 " " Order of pole = 5.6257057853459145 " " x[1] = -0.9601000000000044 " " y[1] (analytic) = -1.1299275321597084 " " y[1] (numeric) = -1.1299275321597249 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4541906712411937000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9709075220741211 " " Order of pole = 5.625705785345495 " " x[1] = -0.9600000000000044 " " y[1] (analytic) = -1.1302806712962807 " " y[1] (numeric) = -1.1302806712962972 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4537363313138685000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9708063964078398 " " Order of pole = 5.625705785345854 " " x[1] = -0.9599000000000044 " " y[1] (analytic) = -1.1306339576048192 " " y[1] (numeric) = -1.1306339576048359 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.472921033139361000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9707052707415276 " " Order of pole = 5.625705785345218 " " x[1] = -0.9598000000000044 " " y[1] (analytic) = -1.1309873911620005 " " y[1] (numeric) = -1.130987391162017 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4528279353822368000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9706041450752461 " " Order of pole = 5.62570578534557 " " x[1] = -0.9597000000000044 " " y[1] (analytic) = -1.1313409720445478 " " y[1] (numeric) = -1.1313409720445644 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4720005534035946000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9705030194089576 " " Order of pole = 5.625705785345698 " " x[1] = -0.9596000000000044 " " y[1] (analytic) = -1.1316947003292335 " " y[1] (numeric) = -1.1316947003292501 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4715404573806473000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9704018937426641 " " Order of pole = 5.625705785345662 " " x[1] = -0.9595000000000045 " " y[1] (analytic) = -1.1320485760928776 " " y[1] (numeric) = -1.1320485760928942 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4710804572410013000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9703007680763618 " " Order of pole = 5.625705785345353 " " x[1] = -0.9594000000000045 " " y[1] (analytic) = -1.132402599412348 " " y[1] (numeric) = -1.1324025994123645 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4510122789350022000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9701996424100705 " " Order of pole = 5.625705785345389 " " x[1] = -0.9593000000000045 " " y[1] (analytic) = -1.132756770364561 " " y[1] (numeric) = -1.1327567703645773 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.4505586013106897000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9700985167437881 " " Order of pole = 5.625705785345705 " " x[1] = -0.9592000000000045 " " y[1] (analytic) = -1.1331110890264802 " " y[1] (numeric) = -1.1331110890264968 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.469701032021951000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9699973910774864 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9591000000000045 " " y[1] (analytic) = -1.1334655554751185 " " y[1] (numeric) = -1.1334655554751352 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4692414153155903000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9698962654111973 " " Order of pole = 5.625705785345524 " " x[1] = -0.9590000000000045 " " y[1] (analytic) = -1.1338201697875363 " " y[1] (numeric) = -1.133820169787553 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4687818944425707000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9697951397449107 " " Order of pole = 5.625705785345712 " " x[1] = -0.9589000000000045 " " y[1] (analytic) = -1.1341749320408425 " " y[1] (numeric) = -1.1341749320408592 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4683224693929003000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9696940140786029 " " Order of pole = 5.625705785345218 " " x[1] = -0.9588000000000045 " " y[1] (analytic) = -1.1345298423121937 " " y[1] (numeric) = -1.1345298423122105 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4874346486920090000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9695928884123137 " " Order of pole = 5.625705785345321 " " x[1] = -0.9587000000000045 " " y[1] (analytic) = -1.134884900678796 " " y[1] (numeric) = -1.1348849006788126 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.4674039067236394000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9694917627460292 " " Order of pole = 5.625705785345577 " " x[1] = -0.9586000000000046 " " y[1] (analytic) = -1.1352401072179021 " " y[1] (numeric) = -1.135240107217919 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4865040326718526000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9693906370797297 " " Order of pole = 5.625705785345353 " " x[1] = -0.9585000000000046 " " y[1] (analytic) = -1.1355954620068147 " " y[1] (numeric) = -1.1355954620068316 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4860388702575770000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9692895114134513 " " Order of pole = 5.625705785345804 " " x[1] = -0.9584000000000046 " " y[1] (analytic) = -1.1359509651228838 " " y[1] (numeric) = -1.135950965122901 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5051208286422696000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9691883857471433 " " Order of pole = 5.625705785345303 " " x[1] = -0.9583000000000046 " " y[1] (analytic) = -1.1363066166435087 " " y[1] (numeric) = -1.1363066166435258 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5046497423143454000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9690872600808594 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9582000000000046 " " y[1] (analytic) = -1.1366624166461365 " " y[1] (numeric) = -1.1366624166461536 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5041787542932503000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9689861344145708 " " Order of pole = 5.625705785345708 " " x[1] = -0.9581000000000046 " " y[1] (analytic) = -1.137018365208263 " " y[1] (numeric) = -1.1370183652082801 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.503707864568726000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.968885008748284 " " Order of pole = 5.625705785345886 " " x[1] = -0.9580000000000046 " " y[1] (analytic) = -1.1373744624074327 " " y[1] (numeric) = -1.1373744624074498 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5032370731305142000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9687838830819754 " " Order of pole = 5.625705785345367 " " x[1] = -0.9579000000000046 " " y[1] (analytic) = -1.1377307083212385 " " y[1] (numeric) = -1.1377307083212553 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4832499334752605000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9686827574156937 " " Order of pole = 5.6257057853457155 " " x[1] = -0.9578000000000046 " " y[1] (analytic) = -1.1380871030273216 " " y[1] (numeric) = -1.1380871030273385 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.4827854502009288000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9685816317494005 " " Order of pole = 5.625705785345690 " " x[1] = -0.9577000000000047 " " y[1] (analytic) = -1.1384436466033723 " " y[1] (numeric) = -1.1384436466033894 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5018252884311686000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9684805060831093 " " Order of pole = 5.625705785345737 " " x[1] = -0.9576000000000047 " " y[1] (analytic) = -1.13880033912713 " " y[1] (numeric) = -1.138800339127147 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5013548900356220000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9683793804168078 " " Order of pole = 5.625705785345442 " " x[1] = -0.9575000000000047 " " y[1] (analytic) = -1.1391571806763818 " " y[1] (numeric) = -1.139157180676399 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.5008845898750953000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9682782547505148 " " Order of pole = 5.625705785345424 " " x[1] = -0.9574000000000047 " " y[1] (analytic) = -1.139514171328964 " " y[1] (numeric) = -1.1395141713289814 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5199002890813998000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9681771290842194 " " Order of pole = 5.625705785345328 " " x[1] = -0.9573000000000047 " " y[1] (analytic) = -1.1398713111627623 " " y[1] (numeric) = -1.1398713111627796 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5194240801170047000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9680760034179257 " " Order of pole = 5.625705785345293 " " x[1] = -0.9572000000000047 " " y[1] (analytic) = -1.1402286002557103 " " y[1] (numeric) = -1.1402286002557276 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5189479706322342000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9679748777516446 " " Order of pole = 5.625705785345659 " " x[1] = -0.9571000000000047 " " y[1] (analytic) = -1.1405860386857907 " " y[1] (numeric) = -1.1405860386858082 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5379395498553725000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.967873752085345 " " Order of pole = 5.625705785345428 " " x[1] = -0.9570000000000047 " " y[1] (analytic) = -1.1409436265310358 " " y[1] (numeric) = -1.140943626531053 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.51799605006000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9677726264190679 " " Order of pole = 5.625705785345925 " " x[1] = -0.9569000000000047 " " y[1] (analytic) = -1.1413013638695255 " " y[1] (numeric) = -1.1413013638695428 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5175202389517530000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9676715007527592 " " Order of pole = 5.625705785345400 " " x[1] = -0.9568000000000048 " " y[1] (analytic) = -1.14165925077939 " " y[1] (numeric) = -1.1416592507794072 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.517044527281564000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9675703750864654 " " Order of pole = 5.625705785345357 " " x[1] = -0.9567000000000048 " " y[1] (analytic) = -1.1420172873388077 " " y[1] (numeric) = -1.142017287338825 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5165689150390407000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9674692494201785 " " Order of pole = 5.625705785345538 " " x[1] = -0.9566000000000048 " " y[1] (analytic) = -1.1423754736260063 " " y[1] (numeric) = -1.1423754736260237 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5160934022137923000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9673681237538816 " " Order of pole = 5.625705785345400 " " x[1] = -0.9565000000000048 " " y[1] (analytic) = -1.1427338097192627 " " y[1] (numeric) = -1.14273380971928 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5156179887954263000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9672669980876007 " " Order of pole = 5.625705785345772 " " x[1] = -0.9564000000000048 " " y[1] (analytic) = -1.1430922956969025 " " y[1] (numeric) = -1.14309229569692 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5345675808603920000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9671658724212959 " " Order of pole = 5.6257057853453745 " " x[1] = -0.9563000000000048 " " y[1] (analytic) = -1.1434509316373007 " " y[1] (numeric) = -1.1434509316373185 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.5535050873207962000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.967064746754999 " " Order of pole = 5.625705785345229 " " x[1] = -0.9562000000000048 " " y[1] (analytic) = -1.1438097176188824 " " y[1] (numeric) = -1.1438097176188997 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5141923448777075000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.96696362108872 " " Order of pole = 5.625705785345662 " " x[1] = -0.9561000000000048 " " y[1] (analytic) = -1.1441686537201197 " " y[1] (numeric) = -1.1441686537201372 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5331239614058145000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9668624954224232 " " Order of pole = 5.625705785345524 " " x[1] = -0.9560000000000048 " " y[1] (analytic) = -1.144527740019536 " " y[1] (numeric) = -1.1445277400195535 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5326429561923990000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9667613697561366 " " Order of pole = 5.625705785345712 " " x[1] = -0.9559000000000049 " " y[1] (analytic) = -1.1448869765957028 " " y[1] (numeric) = -1.1448869765957206 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.551556507946496000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.966660244089838 " " Order of pole = 5.62570578534552 " " x[1] = -0.9558000000000049 " " y[1] (analytic) = -1.1452463635272423 " " y[1] (numeric) = -1.1452463635272598 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5316812476095854000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9665591184235447 " " Order of pole = 5.625705785345488 " " x[1] = -0.9557000000000049 " " y[1] (analytic) = -1.1456059008928243 " " y[1] (numeric) = -1.1456059008928419 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.531200544219137000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9664579927572523 " " Order of pole = 5.625705785345488 " " x[1] = -0.9556000000000049 " " y[1] (analytic) = -1.1459655887711693 " " y[1] (numeric) = -1.1459655887711868 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5307199414152942000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9663568670909594 " " Order of pole = 5.625705785345474 " " x[1] = -0.9555000000000049 " " y[1] (analytic) = -1.1463254272410466 " " y[1] (numeric) = -1.1463254272410641 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.530239439187532000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.966255741424663 " " Order of pole = 5.625705785345346 " " x[1] = -0.9554000000000049 " " y[1] (analytic) = -1.1466854163812752 " " y[1] (numeric) = -1.1466854163812927 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5297590375253262000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9661546157583751 " " Order of pole = 5.625705785345502 " " x[1] = -0.9553000000000049 " " y[1] (analytic) = -1.147045556270724 " " y[1] (numeric) = -1.1470455562707413 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.509920777729313000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9660534900920826 " " Order of pole = 5.625705785345499 " " x[1] = -0.9552000000000049 " " y[1] (analytic) = -1.1474058469883102 " " y[1] (numeric) = -1.1474058469883277 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5287985358554815000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9659523644257989 " " Order of pole = 5.625705785345783 " " x[1] = -0.955100000000005 " " y[1] (analytic) = -1.147766288613002 " " y[1] (numeric) = -1.1477662886130195 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5283184358267934000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.965851238759496 " " Order of pole = 5.625705785345442 " " x[1] = -0.955000000000005 " " y[1] (analytic) = -1.1481268812238166 " " y[1] (numeric) = -1.148126881223834 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5278384363215616000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.965750113093205 " " Order of pole = 5.625705785345492 " " x[1] = -0.954900000000005 " " y[1] (analytic) = -1.1484876248998206 " " y[1] (numeric) = -1.1484876248998381 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5273585373292614000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9656489874269197 " " Order of pole = 5.625705785345723 " " x[1] = -0.954800000000005 " " y[1] (analytic) = -1.1488485197201308 " " y[1] (numeric) = -1.1488485197201483 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5268787388393673000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9655478617606245 " " Order of pole = 5.625705785345637 " " x[1] = -0.954700000000005 " " y[1] (analytic) = -1.1492095657639134 " " y[1] (numeric) = -1.149209565763931 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5263990408413547000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9654467360943265 " " Order of pole = 5.625705785345456 " " x[1] = -0.954600000000005 " " y[1] (analytic) = -1.1495707631103846 " " y[1] (numeric) = -1.1495707631104022 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5259194433246990000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9653456104280238 " " Order of pole = 5.625705785345122 " " x[1] = -0.954500000000005 " " y[1] (analytic) = -1.1499321118388104 " " y[1] (numeric) = -1.1499321118388277 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5061305798702810000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9652444847617454 " " Order of pole = 5.625705785345577 " " x[1] = -0.954400000000005 " " y[1] (analytic) = -1.150293612028506 " " y[1] (numeric) = -1.1502936120285234 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5056572515959724000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9651433590954545 " " Order of pole = 5.625705785345627 " " x[1] = -0.954300000000005 " " y[1] (analytic) = -1.1506552637588372 " " y[1] (numeric) = -1.1506552637588547 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5244812535576210000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9650422334291613 " " Order of pole = 5.6257057853456125 " " x[1] = -0.954200000000005 " " y[1] (analytic) = -1.1510170671092197 " " y[1] (numeric) = -1.1510170671092372 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5240020578611420000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.964941107762863 " " Order of pole = 5.625705785345420 " " x[1] = -0.954100000000005 " " y[1] (analytic) = -1.1513790221591191 " " y[1] (numeric) = -1.1513790221591365 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.5042378618010735000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9648399820965674 " " Order of pole = 5.625705785345314 " " x[1] = -0.9540000000000051 " " y[1] (analytic) = -1.1517411289880501 " " y[1] (numeric) = -1.1517411289880677 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.5230439677438554000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.964738856430273 " " Order of pole = 5.625705785345254 " " x[1] = -0.9539000000000051 " " y[1] (analytic) = -1.1521033876755784 " " y[1] (numeric) = -1.1521033876755964 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.5611110245248333000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9646377307639894 " " Order of pole = 5.625705785345538 " " x[1] = -0.9538000000000051 " " y[1] (analytic) = -1.15246579830132 " " y[1] (numeric) = -1.152465798301338 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.5606201091119130000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9645366050977003 " " Order of pole = 5.625705785345652 " " x[1] = -0.9537000000000051 " " y[1] (analytic) = -1.15282836094494 " " y[1] (numeric) = -1.152828360944958 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5793901521409726000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9644354794314048 " " Order of pole = 5.625705785345556 " " x[1] = -0.9536000000000051 " " y[1] (analytic) = -1.1531910756861543 " " y[1] (numeric) = -1.1531910756861725 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.578893384430583000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9643343537651126 " " Order of pole = 5.625705785345563 " " x[1] = -0.9535000000000051 " " y[1] (analytic) = -1.1535539426047288 " " y[1] (numeric) = -1.153553942604747 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5783967208971272000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9642332280988241 " " Order of pole = 5.625705785345687 " " x[1] = -0.9534000000000051 " " y[1] (analytic) = -1.1539169617804794 " " y[1] (numeric) = -1.1539169617804976 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5779001615296806000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9641321024325262 " " Order of pole = 5.625705785345513 " " x[1] = -0.9533000000000051 " " y[1] (analytic) = -1.1542801332932726 " " y[1] (numeric) = -1.1542801332932908 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5774037063173185000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9640309767662293 " " Order of pole = 5.625705785345367 " " x[1] = -0.9532000000000052 " " y[1] (analytic) = -1.154643457223025 " " y[1] (numeric) = -1.1546434572230433 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5769073552491164000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.963929851099942 " " Order of pole = 5.625705785345534 " " x[1] = -0.9531000000000052 " " y[1] (analytic) = -1.1550069336497033 " " y[1] (numeric) = -1.1550069336497217 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5956356340252980000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9638287254336559 " " Order of pole = 5.6257057853457475 " " x[1] = -0.9530000000000052 " " y[1] (analytic) = -1.1553705626533255 " " y[1] (numeric) = -1.1553705626533437 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.5759149655014937000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9637275997673612 " " Order of pole = 5.6257057853456764 " " x[1] = -0.9529000000000052 " " y[1] (analytic) = -1.1557343443139583 " " y[1] (numeric) = -1.1557343443139767 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.594631352736812200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.963626474101059 " " Order of pole = 5.62570578534535 " " x[1] = -0.9528000000000052 " " y[1] (analytic) = -1.1560982787117202 " " y[1] (numeric) = -1.1560982787117386 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5941293701530673000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9635253484347693 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9527000000000052 " " y[1] (analytic) = -1.1564623659267796 " " y[1] (numeric) = -1.1564623659267983 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.6128278241683436000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9634242227684707 " " Order of pole = 5.625705785345247 " " x[1] = -0.9526000000000052 " " y[1] (analytic) = -1.1568266060393562 " " y[1] (numeric) = -1.1568266060393748 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.6123200068470833000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9633230971021848 " " Order of pole = 5.625705785345456 " " x[1] = -0.9525000000000052 " " y[1] (analytic) = -1.1571909991297191 " " y[1] (numeric) = -1.1571909991297376 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.5926240545111310000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9632219714358956 " " Order of pole = 5.62570578534557 " " x[1] = -0.9524000000000052 " " y[1] (analytic) = -1.1575555452781883 " " y[1] (numeric) = -1.157555545278207 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.611304692011144000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9631208457696064 " " Order of pole = 5.625705785345670 " " x[1] = -0.9523000000000053 " " y[1] (analytic) = -1.1579202445651349 " " y[1] (numeric) = -1.1579202445651535 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.6107971944740826000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9630197201033189 " " Order of pole = 5.625705785345833 " " x[1] = -0.9522000000000053 " " y[1] (analytic) = -1.15828509707098 " " y[1] (numeric) = -1.1582850970709988 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6294599202178175000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9629185944370137 " " Order of pole = 5.625705785345420 " " x[1] = -0.9521000000000053 " " y[1] (analytic) = -1.158650102876196 " " y[1] (numeric) = -1.1586501028762148 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.628946596714225000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9628174687707263 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9520000000000053 " " y[1] (analytic) = -1.1590152620613057 " " y[1] (numeric) = -1.1590152620613245 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 1.6284333810290533000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9627163431044349 " " Order of pole = 5.62570578534562 " " x[1] = -0.9519000000000053 " " y[1] (analytic) = -1.1593805747068822 " " y[1] (numeric) = -1.1593805747069015 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6662242795780605000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9626152174381445 " " Order of pole = 5.625705785345690 " " x[1] = -0.9518000000000053 " " y[1] (analytic) = -1.1597460408935507 " " y[1] (numeric) = -1.15974604089357 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6656992089055855000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9625140917718509 " " Order of pole = 5.625705785345648 " " x[1] = -0.9517000000000053 " " y[1] (analytic) = -1.160111660701986 " " y[1] (numeric) = -1.1601116607020052 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.6651742485536639000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9624129661055527 " " Order of pole = 5.62570578534547 " " x[1] = -0.9516000000000053 " " y[1] (analytic) = -1.1604774342129143 " " y[1] (numeric) = -1.1604774342129334 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 1.6455154973783967000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9623118404392674 " " Order of pole = 5.625705785345694 " " x[1] = -0.9515000000000053 " " y[1] (analytic) = -1.1608433615071123 " " y[1] (numeric) = -1.1608433615071316 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 1.664124658765115000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9622107147729753 " " Order of pole = 5.625705785345708 " " x[1] = -0.9514000000000054 " " y[1] (analytic) = -1.1612094426654083 " " y[1] (numeric) = -1.1612094426654278 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6827218687226092000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9621095891066832 " " Order of pole = 5.625705785345719 " " x[1] = -0.9513000000000054 " " y[1] (analytic) = -1.1615756777686812 " " y[1] (numeric) = -1.1615756777687007 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6821913205808342000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.962008463440385 " " Order of pole = 5.625705785345541 " " x[1] = -0.9512000000000054 " " y[1] (analytic) = -1.1619420668978608 " " y[1] (numeric) = -1.1619420668978804 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6816608839690447000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9619073377740935 " " Order of pole = 5.62570578534557 " " x[1] = -0.9511000000000054 " " y[1] (analytic) = -1.1623086101339284 " " y[1] (numeric) = -1.162308610133948 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6811305588755163000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9618062121077919 " " Order of pole = 5.625705785345268 " " x[1] = -0.9510000000000054 " " y[1] (analytic) = -1.162675307557916 " " y[1] (numeric) = -1.1626753075579355 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.680600345288525000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9617050864415028 " " Order of pole = 5.625705785345382 " " x[1] = -0.9509000000000054 " " y[1] (analytic) = -1.1630421592509066 " " y[1] (numeric) = -1.1630421592509261 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6800702431963470000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9616039607752029 " " Order of pole = 5.62570578534514 " " x[1] = -0.9508000000000054 " " y[1] (analytic) = -1.1634091652940346 " " y[1] (numeric) = -1.1634091652940544 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.698625937275751000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9615028351089205 " " Order of pole = 5.625705785345467 " " x[1] = -0.9507000000000054 " " y[1] (analytic) = -1.1637763257684863 " " y[1] (numeric) = -1.1637763257685059 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6790103734495362000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9614017094426299 " " Order of pole = 5.625705785345524 " " x[1] = -0.9506000000000054 " " y[1] (analytic) = -1.1641436407554981 " " y[1] (numeric) = -1.1641436407555177 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6784806057714550000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.961300583776337 " " Order of pole = 5.625705785345513 " " x[1] = -0.9505000000000055 " " y[1] (analytic) = -1.1645111103363581 " " y[1] (numeric) = -1.1645111103363777 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 1.6779509495412911000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9611994581100458 " " Order of pole = 5.625705785345556 " " x[1] = -0.9504000000000055 " " y[1] (analytic) = -1.1648787345924059 " " y[1] (numeric) = -1.1648787345924256 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6964830116194500000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9610983324437556 " " Order of pole = 5.62570578534563 " " x[1] = -0.9503000000000055 " " y[1] (analytic) = -1.1652465136050323 " " y[1] (numeric) = -1.1652465136050523 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.7150031525454987000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9609972067774645 " " Order of pole = 5.625705785345673 " " x[1] = -0.9502000000000055 " " y[1] (analytic) = -1.16561444745568 " " y[1] (numeric) = -1.1656144474556998 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.695412224982669000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9608960811111571 " " Order of pole = 5.62570578534519 " " x[1] = -0.9501000000000055 " " y[1] (analytic) = -1.165982536225842 " " y[1] (numeric) = -1.1659825362258618 " " absolute error = 1.976196983832778600000000000000E-14 " " relative error = 1.6948770006706207000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9607949554448693 " " Order of pole = 5.625705785345339 " " x[1] = -0.9500000000000055 " " y[1] (analytic) = -1.1663507799970638 " " y[1] (numeric) = -1.1663507799970838 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.7133794383284184000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9606938297785832 " " Order of pole = 5.625705785345545 " " x[1] = -0.9499000000000055 " " y[1] (analytic) = -1.1667191788509423 " " y[1] (numeric) = -1.1667191788509623 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.7128384280898099000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9605927041122924 " " Order of pole = 5.625705785345598 " " x[1] = -0.9498000000000055 " " y[1] (analytic) = -1.1670877328691251 " " y[1] (numeric) = -1.1670877328691454 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.7313230598786283000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9604915784459848 " " Order of pole = 5.625705785345108 " " x[1] = -0.9497000000000055 " " y[1] (analytic) = -1.1674564421333127 " " y[1] (numeric) = -1.167456442133333 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.7497957881644188000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9603904527796915 " " Order of pole = 5.62570578534508 " " x[1] = -0.9496000000000056 " " y[1] (analytic) = -1.1678253067252569 " " y[1] (numeric) = -1.1678253067252768 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 1.7112160807073748000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9602893271134182 " " Order of pole = 5.625705785345708 " " x[1] = -0.9495000000000056 " " y[1] (analytic) = -1.1681943267267592 " " y[1] (numeric) = -1.1681943267267796 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.7486905376729345000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9601882014471095 " " Order of pole = 5.6257057853451755 " " x[1] = -0.9494000000000056 " " y[1] (analytic) = -1.168563502219676 " " y[1] (numeric) = -1.1685635022196963 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.7291365860560096000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9600870757808329 " " Order of pole = 5.625705785345694 " " x[1] = -0.9493000000000056 " " y[1] (analytic) = -1.1689328332859132 " " y[1] (numeric) = -1.1689328332859334 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.728590255385151000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9599859501145346 " " Order of pole = 5.625705785345502 " " x[1] = -0.9492000000000056 " " y[1] (analytic) = -1.1693023200074288 " " y[1] (numeric) = -1.1693023200074495 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7660230296897655000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9598848244482397 " " Order of pole = 5.625705785345424 " " x[1] = -0.9491000000000056 " " y[1] (analytic) = -1.1696719624662342 " " y[1] (numeric) = -1.1696719624662544 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 1.7274979393003234000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9597836987819524 " " Order of pole = 5.625705785345588 " " x[1] = -0.9490000000000056 " " y[1] (analytic) = -1.1700417607443898 " " y[1] (numeric) = -1.1700417607444102 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.7459294478605925000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9596825731156592 " " Order of pole = 5.625705785345566 " " x[1] = -0.9489000000000056 " " y[1] (analytic) = -1.1704117149240107 " " y[1] (numeric) = -1.1704117149240312 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.745377578900018000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9595814474493578 " " Order of pole = 5.625705785345282 " " x[1] = -0.9488000000000056 " " y[1] (analytic) = -1.1707818250872624 " " y[1] (numeric) = -1.1707818250872828 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.744825826244809000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9594803217830808 " " Order of pole = 5.6257057853457795 " " x[1] = -0.9487000000000056 " " y[1] (analytic) = -1.1711520913163622 " " y[1] (numeric) = -1.1711520913163829 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7632336919466515000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9593791961167875 " " Order of pole = 5.625705785345758 " " x[1] = -0.9486000000000057 " " y[1] (analytic) = -1.1715225136935807 " " y[1] (numeric) = -1.1715225136936014 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7626761770819105000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9592780704504841 " " Order of pole = 5.625705785345406 " " x[1] = -0.9485000000000057 " " y[1] (analytic) = -1.1718930923012394 " " y[1] (numeric) = -1.17189309230126 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7621187797495538000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9591769447841875 " " Order of pole = 5.625705785345260 " " x[1] = -0.9484000000000057 " " y[1] (analytic) = -1.1722638272217125 " " y[1] (numeric) = -1.172263827221733 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.7426199784324892000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9590758191178976 " " Order of pole = 5.625705785345353 " " x[1] = -0.9483000000000057 " " y[1] (analytic) = -1.1726347185374255 " " y[1] (numeric) = -1.1726347185374462 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.761004337632431000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9589746934516054 " " Order of pole = 5.625705785345353 " " x[1] = -0.9482000000000057 " " y[1] (analytic) = -1.173005766330857 " " y[1] (numeric) = -1.173005766330878 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.779376833605926800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.95887356778532 " " Order of pole = 5.625705785345588 " " x[1] = -0.9481000000000057 " " y[1] (analytic) = -1.1733769706845378 " " y[1] (numeric) = -1.1733769706845585 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7598903654961623000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9587724421190222 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9480000000000057 " " y[1] (analytic) = -1.17374833168105 " " y[1] (numeric) = -1.1737483316810706 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7593335556398734000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9586713164527312 " " Order of pole = 5.625705785345467 " " x[1] = -0.9479000000000057 " " y[1] (analytic) = -1.1741198494030287 " " y[1] (numeric) = -1.1741198494030494 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7587768632416276000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9585701907864371 " " Order of pole = 5.625705785345406 " " x[1] = -0.9478000000000057 " " y[1] (analytic) = -1.1744915239331617 " " y[1] (numeric) = -1.1744915239331821 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 1.7393146937913032000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9584690651201568 " " Order of pole = 5.625705785345808 " " x[1] = -0.9477000000000058 " " y[1] (analytic) = -1.1748633553541876 " " y[1] (numeric) = -1.1748633553542083 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7576638307697054000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9583679394538546 " " Order of pole = 5.625705785345488 " " x[1] = -0.9476000000000058 " " y[1] (analytic) = -1.1752353437488994 " " y[1] (numeric) = -1.17523534374892 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 1.7571074906712490000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9582668137875687 " " Order of pole = 5.625705785345701 " " x[1] = -0.9475000000000058 " " y[1] (analytic) = -1.175607489200141 " " y[1] (numeric) = -1.1756074892001618 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.775438916024085000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.958165688121265 " " Order of pole = 5.625705785345335 " " x[1] = -0.9474000000000058 " " y[1] (analytic) = -1.1759797917908095 " " y[1] (numeric) = -1.1759797917908303 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7748768311033883000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.958064562454972 " " Order of pole = 5.625705785345318 " " x[1] = -0.9473000000000058 " " y[1] (analytic) = -1.1763522516038543 " " y[1] (numeric) = -1.1763522516038754 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.793190554879953000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9579634367886847 " " Order of pole = 5.625705785345485 " " x[1] = -0.9472000000000058 " " y[1] (analytic) = -1.1767248687222776 " " y[1] (numeric) = -1.1767248687222986 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7926227301359507000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9578623111223895 " " Order of pole = 5.625705785345400 " " x[1] = -0.9471000000000058 " " y[1] (analytic) = -1.177097643229134 " " y[1] (numeric) = -1.1770976432291549 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 1.7731912881665635000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9577611854561036 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9470000000000058 " " y[1] (analytic) = -1.17747057520753 " " y[1] (numeric) = -1.1774705752075512 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7914874402836012000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9576600597898106 " " Order of pole = 5.625705785345591 " " x[1] = -0.9469000000000058 " " y[1] (analytic) = -1.1778436647406265 " " y[1] (numeric) = -1.1778436647406476 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7909199751499402000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9575589341235216 " " Order of pole = 5.625705785345705 " " x[1] = -0.9468000000000059 " " y[1] (analytic) = -1.1782169119116355 " " y[1] (numeric) = -1.1782169119116566 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7903526298610803000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9574578084572222 " " Order of pole = 5.625705785345485 " " x[1] = -0.9467000000000059 " " y[1] (analytic) = -1.1785903168038223 " " y[1] (numeric) = -1.1785903168038434 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7897854044043648000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9573566827909209 " " Order of pole = 5.625705785345193 " " x[1] = -0.9466000000000059 " " y[1] (analytic) = -1.178963879500505 " " y[1] (numeric) = -1.1789638795005264 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 1.8080521755962645000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9572555571246449 " " Order of pole = 5.625705785345733 " " x[1] = -0.9465000000000059 " " y[1] (analytic) = -1.179337600085055 " " y[1] (numeric) = -1.1793376000850762 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 1.7886513129367396000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.957154431458357 " " Order of pole = 5.6257057853458825 " " x[1] = -0.9464000000000059 " " y[1] (analytic) = -1.1797114786408953 " " y[1] (numeric) = -1.1797114786409169 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.8257283299931604000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9570533057920582 " " Order of pole = 5.625705785345673 " " x[1] = -0.9463000000000059 " " y[1] (analytic) = -1.1800855152515033 " " y[1] (numeric) = -1.1800855152515248 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.825149652238357300000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9569521801257566 " " Order of pole = 5.625705785345371 " " x[1] = -0.9462000000000059 " " y[1] (analytic) = -1.1804597100004084 " " y[1] (numeric) = -1.18045971000043 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.8245710967738650000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9568510544594668 " " Order of pole = 5.625705785345467 " " x[1] = -0.9461000000000059 " " y[1] (analytic) = -1.1808340629711933 " " y[1] (numeric) = -1.1808340629712146 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 1.8051886155085467000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.956749928793175 " " Order of pole = 5.625705785345485 " " x[1] = -0.946000000000006 " " y[1] (analytic) = -1.1812085742474931 " " y[1] (numeric) = -1.1812085742475147 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.8234143526641225000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.956648803126874 " " Order of pole = 5.6257057853452075 " " x[1] = -0.945900000000006 " " y[1] (analytic) = -1.1815832439129974 " " y[1] (numeric) = -1.1815832439130187 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 1.8040440385910356000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.956547677460591 " " Order of pole = 5.62570578534552 " " x[1] = -0.945800000000006 " " y[1] (analytic) = -1.181958072051447 " " y[1] (numeric) = -1.1819580720514686 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.8222580975605482000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9564465517943008 " " Order of pole = 5.625705785345591 " " x[1] = -0.945700000000006 " " y[1] (analytic) = -1.1823330587466374 " " y[1] (numeric) = -1.1823330587466592 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.8404603611203013000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9563454261280009 " " Order of pole = 5.625705785345346 " " x[1] = -0.945600000000006 " " y[1] (analytic) = -1.1827082040824168 " " y[1] (numeric) = -1.1827082040824384 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 1.8211023313597596000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9562443004617114 " " Order of pole = 5.6257057853454455 " " x[1] = -0.945500000000006 " " y[1] (analytic) = -1.183083508142686 " " y[1] (numeric) = -1.1830835081427078 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.8392929267363817000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9561431747954194 " " Order of pole = 5.625705785345456 " " x[1] = -0.945400000000006 " " y[1] (analytic) = -1.1834589710113999 " " y[1] (numeric) = -1.1834589710114218 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.857471735483287000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.956042049129135 " " Order of pole = 5.625705785345723 " " x[1] = -0.945300000000006 " " y[1] (analytic) = -1.1838345927725662 " " y[1] (numeric) = -1.1838345927725882 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.856882373752469000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9559409234628315 " " Order of pole = 5.625705785345364 " " x[1] = -0.945200000000006 " " y[1] (analytic) = -1.1842103735102463 " " y[1] (numeric) = -1.1842103735102683 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.856293136701516700000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9558397977965404 " " Order of pole = 5.625705785345406 " " x[1] = -0.945100000000006 " " y[1] (analytic) = -1.1845863133085546 " " y[1] (numeric) = -1.1845863133085766 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.855704024317242000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9557386721302447 " " Order of pole = 5.625705785345296 " " x[1] = -0.9450000000000061 " " y[1] (analytic) = -1.1849624122516593 " " y[1] (numeric) = -1.184962412251681 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 1.8363765008633587000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9556375464639538 " " Order of pole = 5.625705785345357 " " x[1] = -0.9449000000000061 " " y[1] (analytic) = -1.185338670423781 " " y[1] (numeric) = -1.1853386704238031 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.873258761107036200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9555364207976684 " " Order of pole = 5.625705785345588 " " x[1] = -0.9448000000000061 " " y[1] (analytic) = -1.1857150879091958 " " y[1] (numeric) = -1.1857150879092178 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.8539374350325846000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9554352951313683 " " Order of pole = 5.625705785345332 " " x[1] = -0.9447000000000061 " " y[1] (analytic) = -1.1860916647922313 " " y[1] (numeric) = -1.1860916647922533 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.8533488211831234000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9553341694650753 " " Order of pole = 5.625705785345318 " " x[1] = -0.9446000000000061 " " y[1] (analytic) = -1.1864684011572697 " " y[1] (numeric) = -1.186468401157292 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8714750827620116000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9552330437987792 " " Order of pole = 5.625705785345193 " " x[1] = -0.9445000000000061 " " y[1] (analytic) = -1.186845297088747 " " y[1] (numeric) = -1.186845297088769 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 1.8521719672731998000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9551319181324998 " " Order of pole = 5.625705785345623 " " x[1] = -0.9444000000000061 " " y[1] (analytic) = -1.1872223526711518 " " y[1] (numeric) = -1.187222352671174 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8702865931175347000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9550307924662005 " " Order of pole = 5.625705785345403 " " x[1] = -0.9443000000000061 " " y[1] (analytic) = -1.1875995679890277 " " y[1] (numeric) = -1.1875995679890499 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8696925370309903000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9549296667999112 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9442000000000061 " " y[1] (analytic) = -1.1879769431269709 " " y[1] (numeric) = -1.1879769431269933 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.8877895928179828000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9548285411336129 " " Order of pole = 5.625705785345321 " " x[1] = -0.9441000000000062 " " y[1] (analytic) = -1.1883544781696325 " " y[1] (numeric) = -1.1883544781696547 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8685048022626746000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9547274154673254 " " Order of pole = 5.6257057853454775 " " x[1] = -0.9440000000000062 " " y[1] (analytic) = -1.188732173201716 " " y[1] (numeric) = -1.1887321732017382 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.867911123554259000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9546262898010316 " " Order of pole = 5.625705785345435 " " x[1] = -0.9439000000000062 " " y[1] (analytic) = -1.1891100283079798 " " y[1] (numeric) = -1.189110028308002 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.867317570611907000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.954525164134741 " " Order of pole = 5.625705785345499 " " x[1] = -0.9438000000000062 " " y[1] (analytic) = -1.189488043573236 " " y[1] (numeric) = -1.1894880435732584 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.88539138485652000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9544240384684463 " " Order of pole = 5.625705785345420 " " x[1] = -0.9437000000000062 " " y[1] (analytic) = -1.1898662190823508 " " y[1] (numeric) = -1.189866219082373 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 1.8661308419721054000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9543229128021667 " " Order of pole = 5.625705785345847 " " x[1] = -0.9436000000000062 " " y[1] (analytic) = -1.1902445549202434 " " y[1] (numeric) = -1.1902445549202658 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.8841930429104906000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9542217871358655 " " Order of pole = 5.625705785345560 " " x[1] = -0.9435000000000062 " " y[1] (analytic) = -1.190623051171888 " " y[1] (numeric) = -1.1906230511719107 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.9022435085614234000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9541206614695832 " " Order of pole = 5.62570578534589 " " x[1] = -0.9434000000000062 " " y[1] (analytic) = -1.191001707922313 " " y[1] (numeric) = -1.1910017079223356 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.9016387257633152000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9540195358032767 " " Order of pole = 5.625705785345435 " " x[1] = -0.9433000000000062 " " y[1] (analytic) = -1.1913805252566003 " " y[1] (numeric) = -1.1913805252566227 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 1.8823964822320666000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9539184101369849 " " Order of pole = 5.625705785345453 " " x[1] = -0.9432000000000063 " " y[1] (analytic) = -1.1917595032598856 " " y[1] (numeric) = -1.1917595032599082 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.9004295447530617000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.953817284470694 " " Order of pole = 5.625705785345506 " " x[1] = -0.9431000000000063 " " y[1] (analytic) = -1.1921386420173596 " " y[1] (numeric) = -1.1921386420173823 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8998251465137383000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9537161588044011 " " Order of pole = 5.625705785345495 " " x[1] = -0.9430000000000063 " " y[1] (analytic) = -1.1925179416142668 " " y[1] (numeric) = -1.1925179416142895 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.8992208764334986000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9536150331381104 " " Order of pole = 5.625705785345552 " " x[1] = -0.9429000000000063 " " y[1] (analytic) = -1.192897402135906 " " y[1] (numeric) = -1.1928974021359287 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 1.898616734498752800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9535139074718205 " " Order of pole = 5.625705785345637 " " x[1] = -0.9428000000000063 " " y[1] (analytic) = -1.1932770236676302 " " y[1] (numeric) = -1.193277023667653 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.916620688545872000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9534127818055218 " " Order of pole = 5.625705785345431 " " x[1] = -0.9427000000000063 " " y[1] (analytic) = -1.1936568062948472 " " y[1] (numeric) = -1.19365680629487 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.9160108824134597000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9533116561392346 " " Order of pole = 5.625705785345605 " " x[1] = -0.9426000000000063 " " y[1] (analytic) = -1.1940367501030182 " " y[1] (numeric) = -1.1940367501030413 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.933997333851816800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.953210530472943 " " Order of pole = 5.625705785345634 " " x[1] = -0.9425000000000063 " " y[1] (analytic) = -1.19441685517766 " " y[1] (numeric) = -1.194416855177683 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.9333818684908305000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9531094048066536 " " Order of pole = 5.62570578534573 " " x[1] = -0.9424000000000063 " " y[1] (analytic) = -1.194797121604343 " " y[1] (numeric) = -1.194797121604366 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.9327665337187164000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9530082791403602 " " Order of pole = 5.625705785345698 " " x[1] = -0.9423000000000064 " " y[1] (analytic) = -1.1951775494686925 " " y[1] (numeric) = -1.1951775494687154 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.9135729513531427000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9529071534740554 " " Order of pole = 5.6257057853453 " " x[1] = -0.9422000000000064 " " y[1] (analytic) = -1.1955581388563878 " " y[1] (numeric) = -1.1955581388564107 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.9129637918867845000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9528060278077702 " " Order of pole = 5.625705785345538 " " x[1] = -0.9421000000000064 " " y[1] (analytic) = -1.1959388898531635 " " y[1] (numeric) = -1.1959388898531864 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 1.91235476171246980000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9527049021414719 " " Order of pole = 5.625705785345346 " " x[1] = -0.9420000000000064 " " y[1] (analytic) = -1.1963198025448083 " " y[1] (numeric) = -1.1963198025448314 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.9303065002418798000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9526037764751735 " " Order of pole = 5.625705785345147 " " x[1] = -0.9419000000000064 " " y[1] (analytic) = -1.1967008770171659 " " y[1] (numeric) = -1.196700877017189 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 1.9296918182062978000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9525026508088911 " " Order of pole = 5.625705785345481 " " x[1] = -0.9418000000000064 " " y[1] (analytic) = -1.197082113356134 " " y[1] (numeric) = -1.1970821133561576 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.9661749064202333000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9524015251426043 " " Order of pole = 5.625705785345673 " " x[1] = -0.9417000000000064 " " y[1] (analytic) = -1.1974635116476666 " " y[1] (numeric) = -1.19746351164769 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 1.9470057576157895000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9523003994763078 " " Order of pole = 5.625705785345538 " " x[1] = -0.9416000000000064 " " y[1] (analytic) = -1.1978450719777705 " " y[1] (numeric) = -1.197845071977794 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.964922565753153800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9521992738100143 " " Order of pole = 5.625705785345499 " " x[1] = -0.9415000000000064 " " y[1] (analytic) = -1.1982267944325087 " " y[1] (numeric) = -1.1982267944325322 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.964296594886324000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9520981481437124 " " Order of pole = 5.625705785345197 " " x[1] = -0.9414000000000065 " " y[1] (analytic) = -1.1986086790979984 " " y[1] (numeric) = -1.198608679098022 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.963670756978471200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9519970224774287 " " Order of pole = 5.625705785345481 " " x[1] = -0.9413000000000065 " " y[1] (analytic) = -1.1989907260604122 " " y[1] (numeric) = -1.1989907260604356 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 1.944525759071931000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9518958968111338 " " Order of pole = 5.625705785345400 " " x[1] = -0.9412000000000065 " " y[1] (analytic) = -1.1993729354059768 " " y[1] (numeric) = -1.1993729354060003 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 1.962419479983209300000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9517947711448524 " " Order of pole = 5.625705785345769 " " x[1] = -0.9411000000000065 " " y[1] (analytic) = -1.1997553072209748 " " y[1] (numeric) = -1.1997553072209985 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 1.9803015318191364000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9516936454785453 " " Order of pole = 5.625705785345286 " " x[1] = -0.9410000000000065 " " y[1] (analytic) = -1.2001378415917436 " " y[1] (numeric) = -1.2001378415917674 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 1.979670326490753000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9515925198122546 " " Order of pole = 5.6257057853453425 " " x[1] = -0.9409000000000065 " " y[1] (analytic) = -1.2005205386046751 " " y[1] (numeric) = -1.200520538604699 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 1.997534949279208800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9514913941459626 " " Order of pole = 5.625705785345357 " " x[1] = -0.9408000000000065 " " y[1] (analytic) = -1.2009033983462172 " " y[1] (numeric) = -1.2009033983462412 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 1.9968981156126078000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.951390268479682 " " Order of pole = 5.625705785345755 " " x[1] = -0.9407000000000065 " " y[1] (analytic) = -1.2012864209028717 " " y[1] (numeric) = -1.201286420902896 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.014745319325082000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9512891428133775 " " Order of pole = 5.625705785345346 " " x[1] = -0.9406000000000065 " " y[1] (analytic) = -1.2016696063611971 " " y[1] (numeric) = -1.2016696063612213 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.0141028622765655000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.951188017147095 " " Order of pole = 5.625705785345673 " " x[1] = -0.9405000000000066 " " y[1] (analytic) = -1.2020529548078065 " " y[1] (numeric) = -1.2020529548078305 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 1.994988426756758000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9510868914808048 " " Order of pole = 5.625705785345751 " " x[1] = -0.9404000000000066 " " y[1] (analytic) = -1.2024364663293672 " " y[1] (numeric) = -1.2024364663293914 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.012818357938826200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9509857658145001 " " Order of pole = 5.625705785345353 " " x[1] = -0.9403000000000066 " " y[1] (analytic) = -1.2028201410126034 " " y[1] (numeric) = -1.2028201410126276 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.0121763106205595000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.950884640148208 " " Order of pole = 5.625705785345364 " " x[1] = -0.9402000000000066 " " y[1] (analytic) = -1.2032039789442939 " " y[1] (numeric) = -1.203203978944318 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.0115343998499993000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9507835144819154 " " Order of pole = 5.625705785345364 " " x[1] = -0.9401000000000066 " " y[1] (analytic) = -1.203587980211273 " " y[1] (numeric) = -1.2035879802112972 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.010892625612624000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9506823888156204 " " Order of pole = 5.6257057853452785 " " x[1] = -0.9400000000000066 " " y[1] (analytic) = -1.2039721449004301 " " y[1] (numeric) = -1.2039721449004546 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0286936575076173000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9505812631493353 " " Order of pole = 5.625705785345517 " " x[1] = -0.9399000000000066 " " y[1] (analytic) = -1.2043564730987109 " " y[1] (numeric) = -1.2043564730987353 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0280462709608021000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9504801374830479 " " Order of pole = 5.625705785345690 " " x[1] = -0.9398000000000066 " " y[1] (analytic) = -1.204740964893116 " " y[1] (numeric) = -1.2047409648931402 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.0089681219543887000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9503790118167494 " " Order of pole = 5.625705785345488 " " x[1] = -0.9397000000000066 " " y[1] (analytic) = -1.2051256203707008 " " y[1] (numeric) = -1.2051256203707255 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.045176928451408200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9502778861504686 " " Order of pole = 5.625705785345868 " " x[1] = -0.9396000000000067 " " y[1] (analytic) = -1.2055104396185783 " " y[1] (numeric) = -1.205510439618603 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.044524073510034000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9501767604841593 " " Order of pole = 5.625705785345314 " " x[1] = -0.9395000000000067 " " y[1] (analytic) = -1.2058954227239158 " " y[1] (numeric) = -1.2058954227239402 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0254581020451730000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9500756348178719 " " Order of pole = 5.625705785345488 " " x[1] = -0.9394000000000067 " " y[1] (analytic) = -1.206280569773936 " " y[1] (numeric) = -1.2062805697739605 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0248114040608990000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.94997450915157 " " Order of pole = 5.6257057853451755 " " x[1] = -0.9393000000000067 " " y[1] (analytic) = -1.206665880855918 " " y[1] (numeric) = -1.2066658808559425 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0241648437451676000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9498733834852746 " " Order of pole = 5.62570578534508 " " x[1] = -0.9392000000000067 " " y[1] (analytic) = -1.2070513560571967 " " y[1] (numeric) = -1.2070513560572211 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0235184210833246000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9497722578189982 " " Order of pole = 5.625705785345605 " " x[1] = -0.9391000000000067 " " y[1] (analytic) = -1.207436995465162 " " y[1] (numeric) = -1.2074369954651867 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.0412618827521764000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9496711321526855 " " Order of pole = 5.625705785344948 " " x[1] = -0.9390000000000067 " " y[1] (analytic) = -1.207822799167261 " " y[1] (numeric) = -1.2078227991672854 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.0222259886626837000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9495700064864135 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9389000000000067 " " y[1] (analytic) = -1.2082087672509951 " " y[1] (numeric) = -1.2082087672510198 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.0399579786825267000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.949468880820125 " " Order of pole = 5.6257057853457475 " " x[1] = -0.9388000000000067 " " y[1] (analytic) = -1.208594899803923 " " y[1] (numeric) = -1.2085948998039477 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.039306234924298000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9493677551538168 " " Order of pole = 5.625705785345229 " " x[1] = -0.9387000000000068 " " y[1] (analytic) = -1.2089811969136586 " " y[1] (numeric) = -1.2089811969136834 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.0570208879253205000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9492666294875274 " " Order of pole = 5.625705785345325 " " x[1] = -0.9386000000000068 " " y[1] (analytic) = -1.2093676586678719 " " y[1] (numeric) = -1.2093676586678967 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.0563635527509397000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9491655038212243 " " Order of pole = 5.62570578534498 " " x[1] = -0.9385000000000068 " " y[1] (analytic) = -1.2097542851542893 " " y[1] (numeric) = -1.2097542851543142 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.055706357628795000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9490643781549443 " " Order of pole = 5.625705785345389 " " x[1] = -0.9384000000000068 " " y[1] (analytic) = -1.210141076460693 " " y[1] (numeric) = -1.210141076460718 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.0550493025439656000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9489632524886488 " " Order of pole = 5.625705785345293 " " x[1] = -0.9383000000000068 " " y[1] (analytic) = -1.2105280326749215 " " y[1] (numeric) = -1.2105280326749461 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.036049598307587000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9488621268223609 " " Order of pole = 5.625705785345438 " " x[1] = -0.9382000000000068 " " y[1] (analytic) = -1.2109151538848686 " " y[1] (numeric) = -1.2109151538848937 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.072072537537518000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9487610011560637 " " Order of pole = 5.625705785345282 " " x[1] = -0.9381000000000068 " " y[1] (analytic) = -1.2113024401784864 " " y[1] (numeric) = -1.2113024401785113 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.0530789773641533000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9486598754897783 " " Order of pole = 5.625705785345513 " " x[1] = -0.9380000000000068 " " y[1] (analytic) = -1.211689891643781 " " y[1] (numeric) = -1.2116898916438061 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.070747683014007900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9485587498234779 " " Order of pole = 5.625705785345254 " " x[1] = -0.9379000000000068 " " y[1] (analytic) = -1.2120775083688162 " " y[1] (numeric) = -1.2120775083688413 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.070085467578342800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9484576241571974 " " Order of pole = 5.625705785345648 " " x[1] = -0.9378000000000069 " " y[1] (analytic) = -1.2124652904417115 " " y[1] (numeric) = -1.2124652904417368 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.08773687469699020000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.948356498490912 " " Order of pole = 5.625705785345875 " " x[1] = -0.9377000000000069 " " y[1] (analytic) = -1.2128532379506436 " " y[1] (numeric) = -1.2128532379506687 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.0687614602839197000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9482553728246118 " " Order of pole = 5.625705785345627 " " x[1] = -0.9376000000000069 " " y[1] (analytic) = -1.2132413509838444 " " y[1] (numeric) = -1.2132413509838695 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.0680996683950523000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9481542471583169 " " Order of pole = 5.625705785345541 " " x[1] = -0.9375000000000069 " " y[1] (analytic) = -1.213629629629603 " " y[1] (numeric) = -1.2136296296296283 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.0857339293190347000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9480531214920036 " " Order of pole = 5.625705785344863 " " x[1] = -0.9374000000000069 " " y[1] (analytic) = -1.214018073976265 " " y[1] (numeric) = -1.2140180739762905 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.1033566232456136000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9479519958257331 " " Order of pole = 5.625705785345584 " " x[1] = -0.9373000000000069 " " y[1] (analytic) = -1.2144066841122327 " " y[1] (numeric) = -1.2144066841122583 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.102683549131281200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9478508701594408 " " Order of pole = 5.625705785345591 " " x[1] = -0.9372000000000069 " " y[1] (analytic) = -1.2147954601259647 " " y[1] (numeric) = -1.2147954601259903 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.1020106186214105000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9477497444931472 " " Order of pole = 5.625705785345552 " " x[1] = -0.9371000000000069 " " y[1] (analytic) = -1.2151844021059766 " " y[1] (numeric) = -1.2151844021060019 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.0830653288163262000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9476486188268518 " " Order of pole = 5.625705785345453 " " x[1] = -0.9370000000000069 " " y[1] (analytic) = -1.2155735101408398 " " y[1] (numeric) = -1.2155735101408651 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.0823985345419976000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9475474931605538 " " Order of pole = 5.625705785345275 " " x[1] = -0.936900000000007 " " y[1] (analytic) = -1.2159627843191834 " " y[1] (numeric) = -1.215962784319209 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.099992688565358000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9474463674942702 " " Order of pole = 5.625705785345566 " " x[1] = -0.936800000000007 " " y[1] (analytic) = -1.2163522247296932 " " y[1] (numeric) = -1.2163522247297187 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.099320332320123000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9473452418279827 " " Order of pole = 5.625705785345733 " " x[1] = -0.936700000000007 " " y[1] (analytic) = -1.2167418314611114 " " y[1] (numeric) = -1.2167418314611367 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.0803990055192417000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9472441161616952 " " Order of pole = 5.625705785345893 " " x[1] = -0.936600000000007 " " y[1] (analytic) = -1.2171316046022365 " " y[1] (numeric) = -1.2171316046022622 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.1162193204013613000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.947142990495391 " " Order of pole = 5.6257057853455095 " " x[1] = -0.936500000000007 " " y[1] (analytic) = -1.2175215442419258 " " y[1] (numeric) = -1.2175215442419514 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.0973041246902716000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9470418648291071 " " Order of pole = 5.62570578534579 " " x[1] = -0.936400000000007 " " y[1] (analytic) = -1.2179116504690917 " " y[1] (numeric) = -1.2179116504691172 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.096632342464535000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9469407391628017 " " Order of pole = 5.625705785345364 " " x[1] = -0.936300000000007 " " y[1] (analytic) = -1.2183019233727042 " " y[1] (numeric) = -1.2183019233727297 " " absolute error = 2.5535129566378600000000000000E-14 " " relative error = 2.095960703705371200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9468396134965177 " " Order of pole = 5.625705785345641 " " x[1] = -0.936200000000007 " " y[1] (analytic) = -1.2186923630417903 " " y[1] (numeric) = -1.218692363041816 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.1135091145574356000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9467384878302192 " " Order of pole = 5.6257057853454455 " " x[1] = -0.936100000000007 " " y[1] (analytic) = -1.2190829695654342 " " y[1] (numeric) = -1.2190829695654601 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1310459931607004000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9466373621639279 " " Order of pole = 5.625705785345485 " " x[1] = -0.936000000000007 " " y[1] (analytic) = -1.2194737430327776 " " y[1] (numeric) = -1.2194737430328033 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.1121548797964830000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9465362364976292 " " Order of pole = 5.6257057853452785 " " x[1] = -0.9359000000000071 " " y[1] (analytic) = -1.2198646835330182 " " y[1] (numeric) = -1.219864683533044 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.1114779794021687000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9464351108313469 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9358000000000071 " " y[1] (analytic) = -1.220255791155412 " " y[1] (numeric) = -1.2202557911554377 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.11080122364469020000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9463339851650685 " " Order of pole = 5.625705785346074 " " x[1] = -0.9357000000000071 " " y[1] (analytic) = -1.2206470659892712 " " y[1] (numeric) = -1.2206470659892972 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1283153419267714000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9462328594987613 " " Order of pole = 5.625705785345595 " " x[1] = -0.9356000000000071 " " y[1] (analytic) = -1.221038508123967 " " y[1] (numeric) = -1.2210385081239927 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.109448145978424200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9461317338324657 " " Order of pole = 5.625705785345495 " " x[1] = -0.9355000000000071 " " y[1] (analytic) = -1.2214301176489257 " " y[1] (numeric) = -1.2214301176489517 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1269508914873378000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9460306081661781 " " Order of pole = 5.625705785345648 " " x[1] = -0.9354000000000071 " " y[1] (analytic) = -1.221821894653633 " " y[1] (numeric) = -1.2218218946536588 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.10809564667405000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9459294824998865 " " Order of pole = 5.62570578534568 " " x[1] = -0.9353000000000071 " " y[1] (analytic) = -1.2222138392276303 " " y[1] (numeric) = -1.2222138392276563 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.125587024333323900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9458283568335816 " " Order of pole = 5.625705785345271 " " x[1] = -0.9352000000000071 " " y[1] (analytic) = -1.2226059514605179 " " y[1] (numeric) = -1.2226059514605438 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1249053094493808000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9457272311672922 " " Order of pole = 5.625705785345367 " " x[1] = -0.9351000000000071 " " y[1] (analytic) = -1.2229982314419527 " " y[1] (numeric) = -1.2229982314419787 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.12422374034003000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9456261055010112 " " Order of pole = 5.625705785345751 " " x[1] = -0.9350000000000072 " " y[1] (analytic) = -1.2233906792616496 " " y[1] (numeric) = -1.2233906792616756 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1235423169896836000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9455249798347073 " " Order of pole = 5.625705785345367 " " x[1] = -0.9349000000000072 " " y[1] (analytic) = -1.2237832950093805 " " y[1] (numeric) = -1.2237832950094065 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.122861039382755200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9454238541684259 " " Order of pole = 5.625705785345737 " " x[1] = -0.9348000000000072 " " y[1] (analytic) = -1.2241760787749756 " " y[1] (numeric) = -1.2241760787750016 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1221799075036563000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9453227285021262 " " Order of pole = 5.625705785345499 " " x[1] = -0.9347000000000072 " " y[1] (analytic) = -1.2245690306483223 " " y[1] (numeric) = -1.2245690306483483 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.1214989213367996000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9452216028358283 " " Order of pole = 5.625705785345318 " " x[1] = -0.9346000000000072 " " y[1] (analytic) = -1.2249621507193662 " " y[1] (numeric) = -1.2249621507193922 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.120818080866598000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9451204771695441 " " Order of pole = 5.625705785345591 " " x[1] = -0.9345000000000072 " " y[1] (analytic) = -1.2253554390781098 " " y[1] (numeric) = -1.225355439078136 " " absolute error = 2.620126338115369400000000000000E-14 " " relative error = 2.1382582184370996000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9450193515032491 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9344000000000072 " " y[1] (analytic) = -1.2257488958146148 " " y[1] (numeric) = -1.2257488958146407 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.119456836953808000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9449182258369574 " " Order of pole = 5.625705785345530 " " x[1] = -0.9343000000000072 " " y[1] (analytic) = -1.2261425210189991 " " y[1] (numeric) = -1.226142521019025 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.118776433480045200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9448171001706698 " " Order of pole = 5.625705785345690 " " x[1] = -0.9342000000000072 " " y[1] (analytic) = -1.2265363147814392 " " y[1] (numeric) = -1.2265363147814656 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.15430294787376000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9447159745043674 " " Order of pole = 5.625705785345367 " " x[1] = -0.9341000000000073 " " y[1] (analytic) = -1.2269302771921704 " " y[1] (numeric) = -1.2269302771921968 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.1536112098030916000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9446148488380843 " " Order of pole = 5.625705785345673 " " x[1] = -0.9340000000000073 " " y[1] (analytic) = -1.2273244083414847 " " y[1] (numeric) = -1.2273244083415111 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.152919619824495100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9445137231717805 " " Order of pole = 5.625705785345307 " " x[1] = -0.9339000000000073 " " y[1] (analytic) = -1.2277187083197325 " " y[1] (numeric) = -1.227718708319759 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.1522281779221167000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9444125975054998 " " Order of pole = 5.625705785345690 " " x[1] = -0.9338000000000073 " " y[1] (analytic) = -1.2281131772173226 " " y[1] (numeric) = -1.228113177217349 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.1515368840801022000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9443114718392118 " " Order of pole = 5.62570578534584 " " x[1] = -0.9337000000000073 " " y[1] (analytic) = -1.2285078151247215 " " y[1] (numeric) = -1.228507815124748 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.1508457382825974000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9442103461729086 " " Order of pole = 5.625705785345488 " " x[1] = -0.9336000000000073 " " y[1] (analytic) = -1.2289026221324537 " " y[1] (numeric) = -1.2289026221324804 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 2.1682232677449575000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9441092205066237 " " Order of pole = 5.625705785345733 " " x[1] = -0.9335000000000073 " " y[1] (analytic) = -1.229297598331103 " " y[1] (numeric) = -1.2292975983311296 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 2.1675266125287762000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.944008094840328 " " Order of pole = 5.625705785345627 " " x[1] = -0.9334000000000073 " " y[1] (analytic) = -1.22969274381131 " " y[1] (numeric) = -1.2296927438113365 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 2.1487731889986042000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9439069691740262 " " Order of pole = 5.625705785345318 " " x[1] = -0.9333000000000073 " " y[1] (analytic) = -1.2300880586637744 " " y[1] (numeric) = -1.230088058663801 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 2.166133749802286000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9438058435077377 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9332000000000074 " " y[1] (analytic) = -1.230483542979254 " " y[1] (numeric) = -1.2304835429792806 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 2.1654375422600022000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.943704717841446 " " Order of pole = 5.625705785345474 " " x[1] = -0.9331000000000074 " " y[1] (analytic) = -1.2308791968485646 " " y[1] (numeric) = -1.2308791968485917 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 2.2008205086422172000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9436035921751496 " " Order of pole = 5.625705785345346 " " x[1] = -0.9330000000000074 " " y[1] (analytic) = -1.2312750203625817 " " y[1] (numeric) = -1.2312750203626086 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 2.182079287860235200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9435024665088534 " " Order of pole = 5.625705785345225 " " x[1] = -0.9329000000000074 " " y[1] (analytic) = -1.2316710136122375 " " y[1] (numeric) = -1.2316710136122646 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 2.1994056449705723000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9434013408425618 " " Order of pole = 5.625705785345254 " " x[1] = -0.9328000000000074 " " y[1] (analytic) = -1.232067176688524 " " y[1] (numeric) = -1.2320671766885511 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 2.198698440588539000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.943300215176278 " " Order of pole = 5.625705785345541 " " x[1] = -0.9327000000000074 " " y[1] (analytic) = -1.2324635096824914 " " y[1] (numeric) = -1.2324635096825183 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 2.179975064969704200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9431990895099853 " " Order of pole = 5.625705785345530 " " x[1] = -0.9326000000000074 " " y[1] (analytic) = -1.2328600126852476 " " y[1] (numeric) = -1.232860012685275 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.215295015229887800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.943097963843689 " " Order of pole = 5.625705785345406 " " x[1] = -0.9325000000000074 " " y[1] (analytic) = -1.2332566857879608 " " y[1] (numeric) = -1.233256685787988 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.2145824726122454000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9429968381773979 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9324000000000074 " " y[1] (analytic) = -1.2336535290818567 " " y[1] (numeric) = -1.233653529081884 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.213870082802369000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9428957125111269 " " Order of pole = 5.62570578534616 " " x[1] = -0.9323000000000075 " " y[1] (analytic) = -1.2340505426582198 " " y[1] (numeric) = -1.234050542658247 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.2131578457838727000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9427945868447981 " " Order of pole = 5.625705785344962 " " x[1] = -0.9322000000000075 " " y[1] (analytic) = -1.2344477266083935 " " y[1] (numeric) = -1.234447726608421 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 2.230433125455332000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9426934611785254 " " Order of pole = 5.625705785345609 " " x[1] = -0.9321000000000075 " " y[1] (analytic) = -1.2348450810237808 " " y[1] (numeric) = -1.234845081023808 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.211733830055471200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9425923355122442 " " Order of pole = 5.625705785345989 " " x[1] = -0.9320000000000075 " " y[1] (analytic) = -1.235242605995842 " " y[1] (numeric) = -1.2352426059958692 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.2110220513127918000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9424912098459357 " " Order of pole = 5.62570578534546 " " x[1] = -0.9319000000000075 " " y[1] (analytic) = -1.235640301616097 " " y[1] (numeric) = -1.2356403016161244 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.210310425295945000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9423900841796494 " " Order of pole = 5.625705785345655 " " x[1] = -0.9318000000000075 " " y[1] (analytic) = -1.2360381679761254 " " y[1] (numeric) = -1.2360381679761527 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 2.2095989519885426000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9422889585133492 " " Order of pole = 5.625705785345400 " " x[1] = -0.9317000000000075 " " y[1] (analytic) = -1.2364362051675646 " " y[1] (numeric) = -1.2364362051675921 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 2.2268460674016316000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9421878328470635 " " Order of pole = 5.625705785345627 " " x[1] = -0.9316000000000075 " " y[1] (analytic) = -1.2368344132821119 " " y[1] (numeric) = -1.2368344132821394 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 2.226129117610807200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9420867071807778 " " Order of pole = 5.625705785345854 " " x[1] = -0.9315000000000075 " " y[1] (analytic) = -1.237232792411523 " " y[1] (numeric) = -1.2372327924115507 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 2.2433591952836776000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9419855815144726 " " Order of pole = 5.625705785345431 " " x[1] = -0.9314000000000076 " " y[1] (analytic) = -1.2376313426476133 " " y[1] (numeric) = -1.237631342647641 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 2.242636773908179000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9418844558481818 " " Order of pole = 5.625705785345485 " " x[1] = -0.9313000000000076 " " y[1] (analytic) = -1.238030064082257 " " y[1] (numeric) = -1.2380300640822848 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 2.241914507641939200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9417833301818881 " " Order of pole = 5.625705785345442 " " x[1] = -0.9312000000000076 " " y[1] (analytic) = -1.2384289568073874 " " y[1] (numeric) = -1.2384289568074154 " " absolute error = 2.797762022055394500000000000000E-14 " " relative error = 2.2591219356400513000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9416822045156003 " " Order of pole = 5.625705785345595 " " x[1] = -0.9311000000000076 " " y[1] (analytic) = -1.2388280209149978 " " y[1] (numeric) = -1.2388280209150255 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 2.240470440370622000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9415810788493032 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9310000000000076 " " y[1] (analytic) = -1.2392272564971392 " " y[1] (numeric) = -1.2392272564971674 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 2.275584617561555200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9414799531830198 " " Order of pole = 5.6257057853457475 " " x[1] = -0.9309000000000076 " " y[1] (analytic) = -1.239626663645924 " " y[1] (numeric) = -1.2396266636459523 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 2.274851425229885000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9413788275167254 " " Order of pole = 5.6257057853456836 " " x[1] = -0.9308000000000076 " " y[1] (analytic) = -1.2400262424535227 " " y[1] (numeric) = -1.2400262424535509 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 2.2741183904046228000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9412777018504256 " " Order of pole = 5.625705785345442 " " x[1] = -0.9307000000000076 " " y[1] (analytic) = -1.2404259930121653 " " y[1] (numeric) = -1.2404259930121935 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 2.2733855130688488000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9411765761841329 " " Order of pole = 5.625705785345431 " " x[1] = -0.9306000000000076 " " y[1] (analytic) = -1.2408259154141414 " " y[1] (numeric) = -1.2408259154141696 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 2.272652793205643000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9410754505178317 " " Order of pole = 5.6257057853451435 " " x[1] = -0.9305000000000077 " " y[1] (analytic) = -1.2412260097518 " " y[1] (numeric) = -1.2412260097518286 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 2.3076985021492377000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9409743248515522 " " Order of pole = 5.625705785345573 " " x[1] = -0.9304000000000077 " " y[1] (analytic) = -1.2416262761175505 " " y[1] (numeric) = -1.2416262761175791 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 2.306954563243892000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.940873199185254 " " Order of pole = 5.625705785345378 " " x[1] = -0.9303000000000077 " " y[1] (analytic) = -1.2420267146038608 " " y[1] (numeric) = -1.2420267146038895 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 2.306210784239439100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9407720735189619 " " Order of pole = 5.625705785345392 " " x[1] = -0.9302000000000077 " " y[1] (analytic) = -1.2424273253032587 " " y[1] (numeric) = -1.2424273253032876 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.323339003607984800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9406709478526838 " " Order of pole = 5.625705785345868 " " x[1] = -0.9301000000000077 " " y[1] (analytic) = -1.2428281083083326 " " y[1] (numeric) = -1.2428281083083612 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 2.3047237058644657000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9405698221863773 " " Order of pole = 5.625705785345403 " " x[1] = -0.9300000000000077 " " y[1] (analytic) = -1.243229063711729 " " y[1] (numeric) = -1.2432290637117578 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.321840719687942000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9404686965200835 " " Order of pole = 5.62570578534536 " " x[1] = -0.9299000000000077 " " y[1] (analytic) = -1.2436301916061556 " " y[1] (numeric) = -1.2436301916061845 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.321091819343315000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9403675708537966 " " Order of pole = 5.625705785345545 " " x[1] = -0.9298000000000077 " " y[1] (analytic) = -1.2440314920843796 " " y[1] (numeric) = -1.2440314920844082 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 2.3024942871290438000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9402664451874987 " " Order of pole = 5.625705785345364 " " x[1] = -0.9297000000000077 " " y[1] (analytic) = -1.2444329652392272 " " y[1] (numeric) = -1.244432965239256 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.3195945017982522000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9401653195212128 " " Order of pole = 5.625705785345588 " " x[1] = -0.9296000000000078 " " y[1] (analytic) = -1.244834611163586 " " y[1] (numeric) = -1.2448346111636148 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.3188460845631778000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9400641938549233 " " Order of pole = 5.6257057853456764 " " x[1] = -0.9295000000000078 " " y[1] (analytic) = -1.2452364299504024 " " y[1] (numeric) = -1.2452364299504313 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.3180978283299816000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9399630681886172 " " Order of pole = 5.625705785345236 " " x[1] = -0.9294000000000078 " " y[1] (analytic) = -1.2456384216926832 " " y[1] (numeric) = -1.2456384216927123 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 2.3351755002588934000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9398619425223306 " " Order of pole = 5.625705785345428 " " x[1] = -0.9293000000000078 " " y[1] (analytic) = -1.2460405864834956 " " y[1] (numeric) = -1.2460405864835247 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 2.33442181263687020000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9397608168560491 " " Order of pole = 5.62570578534579 " " x[1] = -0.9292000000000078 " " y[1] (analytic) = -1.2464429244159665 " " y[1] (numeric) = -1.2464429244159954 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 2.3158540254684692000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9396596911897498 " " Order of pole = 5.625705785345563 " " x[1] = -0.9291000000000078 " " y[1] (analytic) = -1.2468454355832825 " " y[1] (numeric) = -1.2468454355833116 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 2.3329149239393585000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9395585655234548 " " Order of pole = 5.6257057853454775 " " x[1] = -0.9290000000000078 " " y[1] (analytic) = -1.2472481200786913 " " y[1] (numeric) = -1.2472481200787207 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 2.3499644840719353000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9394574398571628 " " Order of pole = 5.625705785345499 " " x[1] = -0.9289000000000078 " " y[1] (analytic) = -1.2476509779955007 " " y[1] (numeric) = -1.24765097799553 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 2.3492056967080605000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9393563141908673 " " Order of pole = 5.625705785345392 " " x[1] = -0.9288000000000078 " " y[1] (analytic) = -1.248054009427078 " " y[1] (numeric) = -1.2480540094271075 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 2.3662383384021868000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9392551885245883 " " Order of pole = 5.62570578534584 " " x[1] = -0.9287000000000079 " " y[1] (analytic) = -1.2484572144668515 " " y[1] (numeric) = -1.2484572144668813 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 2.3832596516061233000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9391540628582987 " " Order of pole = 5.625705785345940 " " x[1] = -0.9286000000000079 " " y[1] (analytic) = -1.2488605932083103 " " y[1] (numeric) = -1.2488605932083399 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 2.3647100897916817000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9390529371919902 " " Order of pole = 5.625705785345400 " " x[1] = -0.9285000000000079 " " y[1] (analytic) = -1.2492641457450022 " " y[1] (numeric) = -1.2492641457450322 " " absolute error = 2.997602166487922700000000000000E-14 " " relative error = 2.399494275648400800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.938951811525703 " " Order of pole = 5.625705785345577 " " x[1] = -0.9284000000000079 " " y[1] (analytic) = -1.2496678721705379 " " y[1] (numeric) = -1.2496678721705676 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 2.3809507888103706000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9388506858594191 " " Order of pole = 5.625705785345858 " " x[1] = -0.9283000000000079 " " y[1] (analytic) = -1.2500717725785866 " " y[1] (numeric) = -1.2500717725786161 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 2.362418950882488000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9387495601931164 " " Order of pole = 5.625705785345524 " " x[1] = -0.9282000000000079 " " y[1] (analytic) = -1.2504758470628785 " " y[1] (numeric) = -1.2504758470629083 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 2.379412375684059000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.938648434526825 " " Order of pole = 5.625705785345552 " " x[1] = -0.9281000000000079 " " y[1] (analytic) = -1.2508800957172053 " " y[1] (numeric) = -1.250880095717235 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 2.3786434176886026000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9385473088605286 " " Order of pole = 5.625705785345431 " " x[1] = -0.9280000000000079 " " y[1] (analytic) = -1.2512845186354182 " " y[1] (numeric) = -1.2512845186354482 " " absolute error = 2.997602166487922700000000000000E-14 " " relative error = 2.395619958406376000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9384461831942406 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9279000000000079 " " y[1] (analytic) = -1.2516891159114303 " " y[1] (numeric) = -1.25168911591146 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 2.377105998743827800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9383450575279546 " " Order of pole = 5.62570578534579 " " x[1] = -0.927800000000008 " " y[1] (analytic) = -1.2520938876392143 " " y[1] (numeric) = -1.252093887639244 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 2.3763375377588042000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9382439318616633 " " Order of pole = 5.625705785345833 " " x[1] = -0.927700000000008 " " y[1] (analytic) = -1.2524988339128038 " " y[1] (numeric) = -1.2524988339128338 " " absolute error = 2.997602166487922700000000000000E-14 " " relative error = 2.3932973710829092000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9381428061953627 " " Order of pole = 5.625705785345566 " " x[1] = -0.927600000000008 " " y[1] (analytic) = -1.2529039548262941 " " y[1] (numeric) = -1.2529039548263243 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.4102459054007053000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9380416805290706 " " Order of pole = 5.625705785345566 " " x[1] = -0.927500000000008 " " y[1] (analytic) = -1.253309250473841 " " y[1] (numeric) = -1.253309250473871 " " absolute error = 2.997602166487922700000000000000E-14 " " relative error = 2.3917498138265664000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9379405548627734 " " Order of pole = 5.625705785345417 " " x[1] = -0.927400000000008 " " y[1] (analytic) = -1.2537147209496606 " " y[1] (numeric) = -1.2537147209496906 " " absolute error = 2.997602166487922700000000000000E-14 " " relative error = 2.3909762854322283000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.937839429196484 " " Order of pole = 5.625705785345527 " " x[1] = -0.927300000000008 " " y[1] (analytic) = -1.2541203663480305 " " y[1] (numeric) = -1.2541203663480607 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.4079081306796993000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9377383035301873 " " Order of pole = 5.625705785345378 " " x[1] = -0.927200000000008 " " y[1] (analytic) = -1.2545261867632895 " " y[1] (numeric) = -1.2545261867633197 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.4071292084955245000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.937637177863902 " " Order of pole = 5.625705785345616 " " x[1] = -0.927100000000008 " " y[1] (analytic) = -1.2549321822898372 " " y[1] (numeric) = -1.2549321822898674 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.406350454309232000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9375360521976002 " " Order of pole = 5.6257057853453105 " " x[1] = -0.927000000000008 " " y[1] (analytic) = -1.255338353022134 " " y[1] (numeric) = -1.2553383530221642 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.405571868102703300000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9374349265313103 " " Order of pole = 5.625705785345396 " " x[1] = -0.926900000000008 " " y[1] (analytic) = -1.255744699054702 " " y[1] (numeric) = -1.2557446990547323 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.404793449857818800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9373338008650184 " " Order of pole = 5.625705785345406 " " x[1] = -0.9268000000000081 " " y[1] (analytic) = -1.2561512204821246 " " y[1] (numeric) = -1.2561512204821548 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.40401519955646010000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9372326751987359 " " Order of pole = 5.625705785345744 " " x[1] = -0.9267000000000081 " " y[1] (analytic) = -1.2565579173990455 " " y[1] (numeric) = -1.2565579173990757 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.4032371171805086000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9371315495324283 " " Order of pole = 5.625705785345236 " " x[1] = -0.9266000000000081 " " y[1] (analytic) = -1.2569647899001708 " " y[1] (numeric) = -1.256964789900201 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 2.4024592027118447000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9370304238661438 " " Order of pole = 5.625705785345502 " " x[1] = -0.9265000000000081 " " y[1] (analytic) = -1.257371838080267 " " y[1] (numeric) = -1.2573718380802974 " " absolute error = 3.04201108747292900000000000000E-14 " " relative error = 2.419340878603912200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9369292981998462 " " Order of pole = 5.625705785345332 " " x[1] = -0.9264000000000081 " " y[1] (analytic) = -1.257779062034163 " " y[1] (numeric) = -1.2577790620341933 " " absolute error = 3.04201108747292900000000000000E-14 " " relative error = 2.4185575824049643000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9368281725335555 " " Order of pole = 5.625705785345396 " " x[1] = -0.9263000000000081 " " y[1] (analytic) = -1.2581864618567478 " " y[1] (numeric) = -1.2581864618567784 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 2.4354224440179295000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9367270468672647 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9262000000000081 " " y[1] (analytic) = -1.2585940376429736 " " y[1] (numeric) = -1.258594037643004 " " absolute error = 3.04201108747292900000000000000E-14 " " relative error = 2.4169914972502504000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9366259212009769 " " Order of pole = 5.625705785345602 " " x[1] = -0.9261000000000081 " " y[1] (analytic) = -1.2590017894878522 " " y[1] (numeric) = -1.2590017894878829 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 2.433845268172272200000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9365247955346908 " " Order of pole = 5.6257057853458186 " " x[1] = -0.9260000000000081 " " y[1] (analytic) = -1.2594097174864587 " " y[1] (numeric) = -1.2594097174864893 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 2.4330569356579373000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9364236698683859 " " Order of pole = 5.625705785345400 " " x[1] = -0.9259000000000082 " " y[1] (analytic) = -1.2598178217339284 " " y[1] (numeric) = -1.2598178217339593 " " absolute error = 3.08642000845793500000000000000E-14 " " relative error = 2.449893909430487800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9363225442021009 " " Order of pole = 5.625705785345648 " " x[1] = -0.9258000000000082 " " y[1] (analytic) = -1.2602261023254595 " " y[1] (numeric) = -1.2602261023254904 " " absolute error = 3.08642000845793500000000000000E-14 " " relative error = 2.4491002073061743000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9362214185358136 " " Order of pole = 5.625705785345822 " " x[1] = -0.9257000000000082 " " y[1] (analytic) = -1.2606345593563109 " " y[1] (numeric) = -1.260634559356342 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 2.4659203937243515000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9361202928695123 " " Order of pole = 5.625705785345527 " " x[1] = -0.9256000000000082 " " y[1] (analytic) = -1.261043192921804 " " y[1] (numeric) = -1.261043192921835 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 2.465121326849904800000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9360191672032147 " " Order of pole = 5.625705785345353 " " x[1] = -0.9255000000000082 " " y[1] (analytic) = -1.2614520031173215 " " y[1] (numeric) = -1.2614520031173526 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 2.4643224326160276000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9359180415369341 " " Order of pole = 5.625705785345755 " " x[1] = -0.9254000000000082 " " y[1] (analytic) = -1.2618609900383082 " " y[1] (numeric) = -1.2618609900383393 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 2.4635237110040667000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9358169158706341 " " Order of pole = 5.625705785345499 " " x[1] = -0.9253000000000082 " " y[1] (analytic) = -1.2622701537802705 " " y[1] (numeric) = -1.2622701537803018 " " absolute error = 3.130828929442941400000000000000E-14 " " relative error = 2.4803160560096232000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9357157902043413 " " Order of pole = 5.625705785345492 " " x[1] = -0.9252000000000082 " " y[1] (analytic) = -1.2626794944387774 " " y[1] (numeric) = -1.2626794944388087 " " absolute error = 3.130828929442941400000000000000E-14 " " relative error = 2.479511976896797100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9356146645380519 " " Order of pole = 5.625705785345595 " " x[1] = -0.9251000000000082 " " y[1] (analytic) = -1.263089012109459 " " y[1] (numeric) = -1.2630890121094904 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 2.496287561451927000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9355135388717535 " " Order of pole = 5.625705785345392 " " x[1] = -0.9250000000000083 " " y[1] (analytic) = -1.2634987068880081 " " y[1] (numeric) = -1.2634987068880397 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 2.4954781296938186000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.935412413205467 " " Order of pole = 5.625705785345598 " " x[1] = -0.9249000000000083 " " y[1] (analytic) = -1.26390857887018 " " y[1] (numeric) = -1.2639085788702111 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 2.459532691620202000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9353112875391711 " " Order of pole = 5.625705785345485 " " x[1] = -0.9248000000000083 " " y[1] (analytic) = -1.2643186281517902 " " y[1] (numeric) = -1.2643186281518217 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 2.4938597911387425000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9352101618728778 " " Order of pole = 5.625705785345453 " " x[1] = -0.9247000000000083 " " y[1] (analytic) = -1.2647288548287188 " " y[1] (numeric) = -1.2647288548287503 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 2.4930508843039384000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9351090362065869 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9246000000000083 " " y[1] (analytic) = -1.2651392589969066 " " y[1] (numeric) = -1.2651392589969381 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 2.492242152405733000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9350079105402862 " " Order of pole = 5.625705785345232 " " x[1] = -0.9245000000000083 " " y[1] (analytic) = -1.2655498407523569 " " y[1] (numeric) = -1.2655498407523886 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 2.508978902435245000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9349067848740046 " " Order of pole = 5.625705785345591 " " x[1] = -0.9244000000000083 " " y[1] (analytic) = -1.2659606001911359 " " y[1] (numeric) = -1.2659606001911676 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 2.5081648275219204000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9348056592077093 " " Order of pole = 5.625705785345495 " " x[1] = -0.9243000000000083 " " y[1] (analytic) = -1.2663715374093718 " " y[1] (numeric) = -1.2663715374094036 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 2.5073509287199885000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9347045335414162 " " Order of pole = 5.625705785345481 " " x[1] = -0.9242000000000083 " " y[1] (analytic) = -1.2667826525032548 " " y[1] (numeric) = -1.2667826525032868 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 2.52406543822026000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9346034078751257 " " Order of pole = 5.6257057853455485 " " x[1] = -0.9241000000000084 " " y[1] (analytic) = -1.2671939455690384 " " y[1] (numeric) = -1.2671939455690704 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 2.5232462024466400000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9345022822088294 " " Order of pole = 5.625705785345417 " " x[1] = -0.9240000000000084 " " y[1] (analytic) = -1.267605416703038 " " y[1] (numeric) = -1.26760541670307 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 2.5224271439584073000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9344011565425371 " " Order of pole = 5.625705785345420 " " x[1] = -0.9239000000000084 " " y[1] (analytic) = -1.2680170660016314 " " y[1] (numeric) = -1.2680170660016634 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 2.521608262736376000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9343000308762394 " " Order of pole = 5.625705785345243 " " x[1] = -0.9238000000000084 " " y[1] (analytic) = -1.2684288935612598 " " y[1] (numeric) = -1.2684288935612917 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 2.520789558761362000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9341989052099485 " " Order of pole = 5.625705785345303 " " x[1] = -0.9237000000000084 " " y[1] (analytic) = -1.2688408994784262 " " y[1] (numeric) = -1.2688408994784581 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 2.5199710320141805000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9340977795436649 " " Order of pole = 5.625705785345598 " " x[1] = -0.9236000000000084 " " y[1] (analytic) = -1.2692530838496967 " " y[1] (numeric) = -1.269253083849729 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 2.5366467983261726000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9339966538773692 " " Order of pole = 5.625705785345488 " " x[1] = -0.9235000000000084 " " y[1] (analytic) = -1.2696654467717003 " " y[1] (numeric) = -1.2696654467717325 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 2.5358229442246777000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9338955282110867 " " Order of pole = 5.6257057853458186 " " x[1] = -0.9234000000000084 " " y[1] (analytic) = -1.2700779883411286 " " y[1] (numeric) = -1.270077988341161 " " absolute error = 3.24185123190545700000000000000E-14 " " relative error = 2.552482022099837000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9337944025447891 " " Order of pole = 5.625705785345648 " " x[1] = -0.9233000000000084 " " y[1] (analytic) = -1.2704907086547361 " " y[1] (numeric) = -1.2704907086547685 " " absolute error = 3.24185123190545700000000000000E-14 " " relative error = 2.5516528454884200000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9336932768784966 " " Order of pole = 5.625705785345648 " " x[1] = -0.9232000000000085 " " y[1] (analytic) = -1.27090360780934 " " y[1] (numeric) = -1.2709036078093725 " " absolute error = 3.24185123190545700000000000000E-14 " " relative error = 2.5508238484690790000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.933592151212206 " " Order of pole = 5.625705785345712 " " x[1] = -0.9231000000000085 " " y[1] (analytic) = -1.271316685901821 " " y[1] (numeric) = -1.2713166859018532 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 2.532529311631795000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9334910255459171 " " Order of pole = 5.625705785345833 " " x[1] = -0.9230000000000085 " " y[1] (analytic) = -1.2717299430291213 " " y[1] (numeric) = -1.271729943029154 " " absolute error = 3.2640556923979600000000000000E-14 " " relative error = 2.5666264369173675000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9333898998796103 " " Order of pole = 5.625705785345357 " " x[1] = -0.9229000000000085 " " y[1] (analytic) = -1.2721433792882482 " " y[1] (numeric) = -1.272143379288281 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.583246673601441400000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9332887742133295 " " Order of pole = 5.625705785345737 " " x[1] = -0.9228000000000085 " " y[1] (analytic) = -1.272556994776271 " " y[1] (numeric) = -1.2725569947763038 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.5824070484703304000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9331876485470306 " " Order of pole = 5.625705785345530 " " x[1] = -0.9227000000000085 " " y[1] (analytic) = -1.2729707895903217 " " y[1] (numeric) = -1.2729707895903546 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.581567605292872000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9330865228807299 " " Order of pole = 5.625705785345254 " " x[1] = -0.9226000000000085 " " y[1] (analytic) = -1.2733847638275964 " " y[1] (numeric) = -1.2733847638276292 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.5807283440493484000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9329853972144463 " " Order of pole = 5.625705785345545 " " x[1] = -0.9225000000000085 " " y[1] (analytic) = -1.2737989175853537 " " y[1] (numeric) = -1.2737989175853865 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.579889264720041700000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9328842715481642 " " Order of pole = 5.625705785345893 " " x[1] = -0.9224000000000085 " " y[1] (analytic) = -1.274213250960916 " " y[1] (numeric) = -1.274213250960949 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.5790503672852344000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9327831458818637 " " Order of pole = 5.62570578534563 " " x[1] = -0.9223000000000086 " " y[1] (analytic) = -1.274627764051669 " " y[1] (numeric) = -1.2746277640517016 " " absolute error = 3.2640556923979600000000000000E-14 " " relative error = 2.5607913027270657000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9326820202155617 " " Order of pole = 5.625705785345307 " " x[1] = -0.9222000000000086 " " y[1] (analytic) = -1.275042456955061 " " y[1] (numeric) = -1.2750424569550938 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.577373118020248000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9325808945492707 " " Order of pole = 5.62570578534536 " " x[1] = -0.9221000000000086 " " y[1] (analytic) = -1.2754573297686043 " " y[1] (numeric) = -1.2754573297686373 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.5939437848408414000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.93247976888298 " " Order of pole = 5.6257057853454135 " " x[1] = -0.9220000000000086 " " y[1] (analytic) = -1.2758723825898752 " " y[1] (numeric) = -1.2758723825899083 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.593099951475681000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9323786432166895 " " Order of pole = 5.625705785345485 " " x[1] = -0.9219000000000086 " " y[1] (analytic) = -1.2762876155165124 " " y[1] (numeric) = -1.2762876155165457 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 2.6096539944309900000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9322775175503946 " " Order of pole = 5.625705785345400 " " x[1] = -0.9218000000000086 " " y[1] (analytic) = -1.2767030286462193 " " y[1] (numeric) = -1.2767030286462524 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.5914128337982960000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.932176391884105 " " Order of pole = 5.625705785345492 " " x[1] = -0.9217000000000086 " " y[1] (analytic) = -1.2771186220767619 " " y[1] (numeric) = -1.277118622076795 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.5905695494463704000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9320752662178187 " " Order of pole = 5.625705785345701 " " x[1] = -0.9216000000000086 " " y[1] (analytic) = -1.2775343959059702 " " y[1] (numeric) = -1.2775343959060033 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.589726448059155000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9319741405515178 " " Order of pole = 5.625705785345428 " " x[1] = -0.9215000000000086 " " y[1] (analytic) = -1.2779503502317384 " " y[1] (numeric) = -1.2779503502317713 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.571508472371048000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9318730148852327 " " Order of pole = 5.625705785345673 " " x[1] = -0.9214000000000087 " " y[1] (analytic) = -1.2783664851520236 " " y[1] (numeric) = -1.2783664851520564 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.57067139279677000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9317718892189479 " " Order of pole = 5.625705785345925 " " x[1] = -0.9213000000000087 " " y[1] (analytic) = -1.278782800764847 " " y[1] (numeric) = -1.2787828007648803 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 2.604561988074424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9316707635526437 " " Order of pole = 5.625705785345530 " " x[1] = -0.9212000000000087 " " y[1] (analytic) = -1.2791992971682948 " " y[1] (numeric) = -1.2791992971683277 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 2.568997778661314000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9315696378863482 " " Order of pole = 5.625705785345431 " " x[1] = -0.9211000000000087 " " y[1] (analytic) = -1.279615974460515 " " y[1] (numeric) = -1.279615974460548 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.58551368489895000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9314685122200556 " " Order of pole = 5.625705785345424 " " x[1] = -0.9210000000000087 " " y[1] (analytic) = -1.280032832739721 " " y[1] (numeric) = -1.280032832739754 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.584671680883128000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9313673865537588 " " Order of pole = 5.6257057853452785 " " x[1] = -0.9209000000000087 " " y[1] (analytic) = -1.28044987210419 " " y[1] (numeric) = -1.280449872104223 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.5838298596930603000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9312662608874769 " " Order of pole = 5.625705785345634 " " x[1] = -0.9208000000000087 " " y[1] (analytic) = -1.2808670926522625 " " y[1] (numeric) = -1.2808670926522958 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 2.600323712727078400000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9311651352211716 " " Order of pole = 5.625705785345211 " " x[1] = -0.9207000000000087 " " y[1] (analytic) = -1.2812844944823447 " " y[1] (numeric) = -1.2812844944823778 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 2.5821467657107866000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9310640095548982 " " Order of pole = 5.625705785345847 " " x[1] = -0.9206000000000087 " " y[1] (analytic) = -1.281702077692905 " " y[1] (numeric) = -1.2817020776929382 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 2.5986296908176626000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.930962883888602 " " Order of pole = 5.625705785345726 " " x[1] = -0.9205000000000088 " " y[1] (analytic) = -1.2821198423824771 " " y[1] (numeric) = -1.2821198423825106 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 2.6151015088710844000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9308617582223033 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9204000000000088 " " y[1] (analytic) = -1.2825377886496592 " " y[1] (numeric) = -1.2825377886496927 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 2.6142493141649265000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9307606325560137 " " Order of pole = 5.625705785345605 " " x[1] = -0.9203000000000088 " " y[1] (analytic) = -1.282955916593113 " " y[1] (numeric) = -1.2829559165931463 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 2.596090037699857000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9306595068897143 " " Order of pole = 5.6257057853453745 " " x[1] = -0.9202000000000088 " " y[1] (analytic) = -1.2833742263115646 " " y[1] (numeric) = -1.2833742263115981 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 2.6125454802097575000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9305583812234235 " " Order of pole = 5.625705785345431 " " x[1] = -0.9201000000000088 " " y[1] (analytic) = -1.2837927179038053 " " y[1] (numeric) = -1.2837927179038389 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 2.611693840920512000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9304572555571359 " " Order of pole = 5.625705785345595 " " x[1] = -0.9200000000000088 " " y[1] (analytic) = -1.28421139146869 " " y[1] (numeric) = -1.2842113914687237 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.6281327336619900000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9303561298908307 " " Order of pole = 5.625705785345168 " " x[1] = -0.9199000000000088 " " y[1] (analytic) = -1.2846302471051385 " " y[1] (numeric) = -1.284630247105172 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 2.6099911176181130000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.930255004224543 " " Order of pole = 5.625705785345325 " " x[1] = -0.9198000000000088 " " y[1] (analytic) = -1.2850492849121344 " " y[1] (numeric) = -1.2850492849121684 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.6436981797046555000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9301538785582507 " " Order of pole = 5.625705785345332 " " x[1] = -0.9197000000000088 " " y[1] (analytic) = -1.2854685049887276 " " y[1] (numeric) = -1.2854685049887615 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.6428360105040230000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9300527528919612 " " Order of pole = 5.625705785345435 " " x[1] = -0.9196000000000089 " " y[1] (analytic) = -1.2858879074340308 " " y[1] (numeric) = -1.2858879074340648 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.64197402877223040000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9299516272256698 " " Order of pole = 5.625705785345467 " " x[1] = -0.9195000000000089 " " y[1] (analytic) = -1.2863074923472222 " " y[1] (numeric) = -1.2863074923472562 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.641112234488895000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9298505015593902 " " Order of pole = 5.6257057853459 " " x[1] = -0.9194000000000089 " " y[1] (analytic) = -1.286727259827545 " " y[1] (numeric) = -1.2867272598275787 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.622994087583739000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9297493758930941 " " Order of pole = 5.6257057853457795 " " x[1] = -0.9193000000000089 " " y[1] (analytic) = -1.287147209974306 " " y[1] (numeric) = -1.28714720997434 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.6393892081860590000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9296482502267976 " " Order of pole = 5.625705785345652 " " x[1] = -0.9192000000000089 " " y[1] (analytic) = -1.2875673428868784 " " y[1] (numeric) = -1.2875673428869123 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.638527976125792400000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9295471245605049 " " Order of pole = 5.625705785345637 " " x[1] = -0.9191000000000089 " " y[1] (analytic) = -1.2879876586646997 " " y[1] (numeric) = -1.2879876586647332 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 2.6031876251392110000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9294459988942121 " " Order of pole = 5.62570578534562 " " x[1] = -0.9190000000000089 " " y[1] (analytic) = -1.2884081574072712 " " y[1] (numeric) = -1.288408157407305 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.6195720474576284000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9293448732279108 " " Order of pole = 5.625705785345328 " " x[1] = -0.9189000000000089 " " y[1] (analytic) = -1.288828839214161 " " y[1] (numeric) = -1.2888288392141947 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.6187170027312284000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9292437475616221 " " Order of pole = 5.625705785345456 " " x[1] = -0.9188000000000089 " " y[1] (analytic) = -1.2892497041850008 " " y[1] (numeric) = -1.2892497041850346 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.6178621440863786000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9291426218953365 " " Order of pole = 5.6257057853456836 " " x[1] = -0.918700000000009 " " y[1] (analytic) = -1.2896707524194884 " " y[1] (numeric) = -1.2896707524195221 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.6170074715028285000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9290414962290439 " " Order of pole = 5.6257057853456836 " " x[1] = -0.918600000000009 " " y[1] (analytic) = -1.290091984017386 " " y[1] (numeric) = -1.2900919840174196 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.616152984960328000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9289403705627409 " " Order of pole = 5.625705785345332 " " x[1] = -0.918500000000009 " " y[1] (analytic) = -1.2905133990785211 " " y[1] (numeric) = -1.290513399078555 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 2.615298684438626000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9288392448964651 " " Order of pole = 5.625705785345886 " " x[1] = -0.918400000000009 " " y[1] (analytic) = -1.2909349977027869 " " y[1] (numeric) = -1.2909349977028208 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.6316448631406136000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9287381192301629 " " Order of pole = 5.625705785345563 " " x[1] = -0.918300000000009 " " y[1] (analytic) = -1.2913567799901413 " " y[1] (numeric) = -1.2913567799901753 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.630785316648831000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9286369935638671 " " Order of pole = 5.625705785345449 " " x[1] = -0.918200000000009 " " y[1] (analytic) = -1.291778746040608 " " y[1] (numeric) = -1.291778746040642 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.629925957340517000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9285358678975679 " " Order of pole = 5.625705785345225 " " x[1] = -0.918100000000009 " " y[1] (analytic) = -1.2922008959542755 " " y[1] (numeric) = -1.2922008959543096 " " absolute error = 3.41948691584548200000000000000E-14 " " relative error = 2.6462502282357814000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9284347422312891 " " Order of pole = 5.625705785345690 " " x[1] = -0.918000000000009 " " y[1] (analytic) = -1.2926232298312985 " " y[1] (numeric) = -1.2926232298313327 " " absolute error = 3.41948691584548200000000000000E-14 " " relative error = 2.645385628952191000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9283336165649976 " " Order of pole = 5.6257057853457155 " " x[1] = -0.917900000000009 " " y[1] (analytic) = -1.2930457477718966 " " y[1] (numeric) = -1.2930457477719306 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.627349002312551000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9282324908987118 " " Order of pole = 5.625705785345936 " " x[1] = -0.917800000000009 " " y[1] (analytic) = -1.2934684498763547 " " y[1] (numeric) = -1.2934684498763889 " " absolute error = 3.41948691584548200000000000000E-14 " " relative error = 2.6436569954005130000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9281313652324017 " " Order of pole = 5.62570578534535 " " x[1] = -0.9177000000000091 " " y[1] (analytic) = -1.2938913362450242 " " y[1] (numeric) = -1.2938913362450581 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.6256319678375495000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9280302395661216 " " Order of pole = 5.625705785345765 " " x[1] = -0.9176000000000091 " " y[1] (analytic) = -1.2943144069783208 " " y[1] (numeric) = -1.294314406978355 " " absolute error = 3.41948691584548200000000000000E-14 " " relative error = 2.641929115066056000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9279291138998251 " " Order of pole = 5.625705785345627 " " x[1] = -0.9175000000000091 " " y[1] (analytic) = -1.2947376621767275 " " y[1] (numeric) = -1.2947376621767617 " " absolute error = 3.41948691584548200000000000000E-14 " " relative error = 2.6410654573039930000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.927827988233521 " " Order of pole = 5.625705785345236 " " x[1] = -0.9174000000000091 " " y[1] (analytic) = -1.2951611019407918 " " y[1] (numeric) = -1.2951611019408258 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 2.623057819032837000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9277268625672359 " " Order of pole = 5.625705785345492 " " x[1] = -0.9173000000000091 " " y[1] (analytic) = -1.2955847263711269 " " y[1] (numeric) = -1.2955847263711613 " " absolute error = 3.44169137633798500000000000000E-14 " " relative error = 2.6564772695167566000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9276257369009404 " " Order of pole = 5.625705785345385 " " x[1] = -0.9172000000000091 " " y[1] (analytic) = -1.2960085355684128 " " y[1] (numeric) = -1.2960085355684474 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 2.67274153044930960000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9275246112346637 " " Order of pole = 5.6257057853459145 " " x[1] = -0.9171000000000091 " " y[1] (analytic) = -1.2964325296333947 " " y[1] (numeric) = -1.2964325296334296 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.6889947742276960000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9274234855683601 " " Order of pole = 5.625705785345538 " " x[1] = -0.9170000000000091 " " y[1] (analytic) = -1.2968567086668843 " " y[1] (numeric) = -1.296856708666919 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 2.6709934981106986000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9273223599020688 " " Order of pole = 5.6257057853455805 " " x[1] = -0.9169000000000092 " " y[1] (analytic) = -1.297281072769758 " " y[1] (numeric) = -1.2972810727697928 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.6872359201849744000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9272212342357877 " " Order of pole = 5.625705785345960 " " x[1] = -0.9168000000000092 " " y[1] (analytic) = -1.2977056220429597 " " y[1] (numeric) = -1.2977056220429943 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 2.6692462281062834000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9271201085694842 " " Order of pole = 5.625705785345591 " " x[1] = -0.9167000000000092 " " y[1] (analytic) = -1.2981303565874982 " " y[1] (numeric) = -1.298130356587533 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.6854778332795404000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9270189829031811 " " Order of pole = 5.625705785345232 " " x[1] = -0.9166000000000092 " " y[1] (analytic) = -1.2985552765044495 " " y[1] (numeric) = -1.2985552765044843 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.684599077451014000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9269178572368967 " " Order of pole = 5.625705785345502 " " x[1] = -0.9165000000000092 " " y[1] (analytic) = -1.2989803818949552 " " y[1] (numeric) = -1.2989803818949899 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 2.6666267521125686000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9268167315706077 " " Order of pole = 5.625705785345616 " " x[1] = -0.9164000000000092 " " y[1] (analytic) = -1.2994056728602226 " " y[1] (numeric) = -1.2994056728602574 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.682842140937761000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9267156059043167 " " Order of pole = 5.625705785345673 " " x[1] = -0.9163000000000092 " " y[1] (analytic) = -1.2998311495015265 " " y[1] (numeric) = -1.2998311495015613 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.681963960211201000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9266144802380253 " " Order of pole = 5.625705785345708 " " x[1] = -0.9162000000000092 " " y[1] (analytic) = -1.3002568119202071 " " y[1] (numeric) = -1.300256811920242 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.681085971143463000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9265133545717273 " " Order of pole = 5.62570578534552 " " x[1] = -0.9161000000000092 " " y[1] (analytic) = -1.300682660217671 " " y[1] (numeric) = -1.3006826602177062 " " absolute error = 3.508304757815494700000000000000E-14 " " relative error = 2.697279563355119000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9264122289054346 " " Order of pole = 5.625705785345517 " " x[1] = -0.9160000000000093 " " y[1] (analytic) = -1.3011086944953925 " " y[1] (numeric) = -1.3011086944954273 " " absolute error = 3.486100297322991500000000000000E-14 " " relative error = 2.679330567900787000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9263111032391472 " " Order of pole = 5.6257057853456836 " " x[1] = -0.9159000000000093 " " y[1] (analytic) = -1.30153491485491 " " y[1] (numeric) = -1.301534914854945 " " absolute error = 3.508304757815494700000000000000E-14 " " relative error = 2.6955133648539780000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.926209977572846 " " Order of pole = 5.625705785345385 " " x[1] = -0.9158000000000093 " " y[1] (analytic) = -1.3019613213978307 " " y[1] (numeric) = -1.3019613213978658 " " absolute error = 3.508304757815494700000000000000E-14 " " relative error = 2.6946305548070020000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9261088519065521 " " Order of pole = 5.625705785345335 " " x[1] = -0.9157000000000093 " " y[1] (analytic) = -1.3023879142258272 " " y[1] (numeric) = -1.3023879142258625 " " absolute error = 3.53050921830799800000000000000E-14 " " relative error = 2.710796975113688000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9260077262402678 " " Order of pole = 5.62570578534562 " " x[1] = -0.9156000000000093 " " y[1] (analytic) = -1.3028146934406393 " " y[1] (numeric) = -1.3028146934406746 " " absolute error = 3.53050921830799800000000000000E-14 " " relative error = 2.7099089656290093000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9259066005739761 " " Order of pole = 5.6257057853456445 " " x[1] = -0.9155000000000093 " " y[1] (analytic) = -1.3032416591440732 " " y[1] (numeric) = -1.3032416591441083 " " absolute error = 3.508304757815494700000000000000E-14 " " relative error = 2.691983281227854000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9258054749076815 " " Order of pole = 5.625705785345566 " " x[1] = -0.9154000000000093 " " y[1] (analytic) = -1.3036688114380013 " " y[1] (numeric) = -1.3036688114380366 " " absolute error = 3.53050921830799800000000000000E-14 " " relative error = 2.7081335284946323000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9257043492413993 " " Order of pole = 5.625705785345918 " " x[1] = -0.9153000000000093 " " y[1] (analytic) = -1.304096150424364 " " y[1] (numeric) = -1.304096150424399 " " absolute error = 3.508304757815494700000000000000E-14 " " relative error = 2.690219395766073000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9256032235750887 " " Order of pole = 5.625705785345307 " " x[1] = -0.9152000000000093 " " y[1] (analytic) = -1.3045236762051673 " " y[1] (numeric) = -1.3045236762052026 " " absolute error = 3.53050921830799800000000000000E-14 " " relative error = 2.7063588669990080000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.925502097908812 " " Order of pole = 5.625705785345836 " " x[1] = -0.9151000000000094 " " y[1] (analytic) = -1.304951388882485 " " y[1] (numeric) = -1.3049513888825204 " " absolute error = 3.53050921830799800000000000000E-14 " " relative error = 2.705471827062771500000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.925400972242516 " " Order of pole = 5.6257057853457155 " " x[1] = -0.9150000000000094 " " y[1] (analytic) = -1.3053792885584574 " " y[1] (numeric) = -1.305379288558493 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 2.721594949406464000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9252998465762176 " " Order of pole = 5.625705785345517 " " x[1] = -0.9149000000000094 " " y[1] (analytic) = -1.305807375335292 " " y[1] (numeric) = -1.3058073753353276 " " absolute error = 3.57491813929300400000000000000E-14 " " relative error = 2.7377071127164315000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9251987209099142 " " Order of pole = 5.6257057853451435 " " x[1] = -0.9148000000000094 " " y[1] (analytic) = -1.306235649315263 " " y[1] (numeric) = -1.306235649315299 " " absolute error = 3.59712259978550700000000000000E-14 " " relative error = 2.753808320628167000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9250975952436366 " " Order of pole = 5.625705785345648 " " x[1] = -0.9147000000000094 " " y[1] (analytic) = -1.3066641106007124 " " y[1] (numeric) = -1.3066641106007482 " " absolute error = 3.57491813929300400000000000000E-14 " " relative error = 2.7359120911720060000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.924996469577333 " " Order of pole = 5.625705785345275 " " x[1] = -0.9146000000000094 " " y[1] (analytic) = -1.3070927592940487 " " y[1] (numeric) = -1.3070927592940842 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 2.7180272046792575000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.924895343911044 " " Order of pole = 5.625705785345396 " " x[1] = -0.9145000000000094 " " y[1] (analytic) = -1.3075215954977473 " " y[1] (numeric) = -1.307521595497783 " " absolute error = 3.57491813929300400000000000000E-14 " " relative error = 2.734117854422209000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9247942182447577 " " Order of pole = 5.625705785345598 " " x[1] = -0.9144000000000094 " " y[1] (analytic) = -1.3079506193143517 " " y[1] (numeric) = -1.3079506193143877 " " absolute error = 3.59712259978550700000000000000E-14 " " relative error = 2.7501975584301300000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9246930925784617 " " Order of pole = 5.625705785345481 " " x[1] = -0.9143000000000094 " " y[1] (analytic) = -1.3083798308464727 " " y[1] (numeric) = -1.3083798308465084 " " absolute error = 3.57491813929300400000000000000E-14 " " relative error = 2.732324402295445000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9245919669121763 " " Order of pole = 5.6257057853457155 " " x[1] = -0.9142000000000094 " " y[1] (analytic) = -1.3088092301967873 " " y[1] (numeric) = -1.3088092301968233 " " absolute error = 3.59712259978550700000000000000E-14 " " relative error = 2.748393361532649000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9244908412458769 " " Order of pole = 5.625705785345485 " " x[1] = -0.9141000000000095 " " y[1] (analytic) = -1.3092388174680414 " " y[1] (numeric) = -1.3092388174680774 " " absolute error = 3.59712259978550700000000000000E-14 " " relative error = 2.747491559058753000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9243897155795866 " " Order of pole = 5.625705785345560 " " x[1] = -0.9140000000000095 " " y[1] (analytic) = -1.309668592763047 " " y[1] (numeric) = -1.3096685927630831 " " absolute error = 3.619327060278010300000000000000E-14 " " relative error = 2.763544212847166000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9242885899132944 " " Order of pole = 5.62570578534557 " " x[1] = -0.9139000000000095 " " y[1] (analytic) = -1.3100985561846847 " " y[1] (numeric) = -1.310098556184721 " " absolute error = 3.619327060278010300000000000000E-14 " " relative error = 2.7626372406808400000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9241874642469965 " " Order of pole = 5.625705785345389 " " x[1] = -0.9138000000000095 " " y[1] (analytic) = -1.3105287078359023 " " y[1] (numeric) = -1.3105287078359384 " " absolute error = 3.619327060278010300000000000000E-14 " " relative error = 2.7617304669766946000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9240863385807068 " " Order of pole = 5.6257057853454775 " " x[1] = -0.9137000000000095 " " y[1] (analytic) = -1.3109590478197146 " " y[1] (numeric) = -1.3109590478197508 " " absolute error = 3.619327060278010300000000000000E-14 " " relative error = 2.7608238917130130000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9239852129144203 " " Order of pole = 5.6257057853456764 " " x[1] = -0.9136000000000095 " " y[1] (analytic) = -1.311389576239205 " " y[1] (numeric) = -1.3113895762392411 " " absolute error = 3.619327060278010300000000000000E-14 " " relative error = 2.7599175148680793000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9238840872481165 " " Order of pole = 5.6257057853453 " " x[1] = -0.9135000000000095 " " y[1] (analytic) = -1.3118202931975238 " " y[1] (numeric) = -1.3118202931975602 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 2.7759377863368667000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.923782961581834 " " Order of pole = 5.62570578534563 " " x[1] = -0.9134000000000095 " " y[1] (analytic) = -1.3122511987978898 " " y[1] (numeric) = -1.3122511987979264 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.7919471398610607000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9236818359155364 " " Order of pole = 5.625705785345463 " " x[1] = -0.9133000000000095 " " y[1] (analytic) = -1.3126822931435893 " " y[1] (numeric) = -1.312682293143626 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.791030244255953000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9235807102492501 " " Order of pole = 5.625705785345673 " " x[1] = -0.9132000000000096 " " y[1] (analytic) = -1.3131135763379762 " " y[1] (numeric) = -1.3131135763380128 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.7901135494162500000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9234795845829563 " " Order of pole = 5.625705785345627 " " x[1] = -0.9131000000000096 " " y[1] (analytic) = -1.3135450484844728 " " y[1] (numeric) = -1.3135450484845093 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 2.7722928307422710000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9233784589166505 " " Order of pole = 5.6257057853451755 " " x[1] = -0.9130000000000096 " " y[1] (analytic) = -1.3139767096865687 " " y[1] (numeric) = -1.3139767096866053 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.788280761945127000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9232773332503722 " " Order of pole = 5.625705785345655 " " x[1] = -0.9129000000000096 " " y[1] (analytic) = -1.3144085600478224 " " y[1] (numeric) = -1.314408560047859 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.7873646692697424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9231762075840827 " " Order of pole = 5.625705785345755 " " x[1] = -0.9128000000000096 " " y[1] (analytic) = -1.31484059967186 " " y[1] (numeric) = -1.3148405996718966 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.786448777271832000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9230750819177834 " " Order of pole = 5.62570578534552 " " x[1] = -0.9127000000000096 " " y[1] (analytic) = -1.3152728286623754 " " y[1] (numeric) = -1.3152728286624122 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 2.802415104632016700000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9229739562514938 " " Order of pole = 5.625705785345616 " " x[1] = -0.9126000000000096 " " y[1] (analytic) = -1.3157052471231319 " " y[1] (numeric) = -1.3157052471231685 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.7846175952205054000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9228728305852105 " " Order of pole = 5.625705785345925 " " x[1] = -0.9125000000000096 " " y[1] (analytic) = -1.316137855157959 " " y[1] (numeric) = -1.3161378551579959 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 2.8005732281844775000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9227717049189039 " " Order of pole = 5.625705785345453 " " x[1] = -0.9124000000000096 " " y[1] (analytic) = -1.3165706528707568 " " y[1] (numeric) = -1.3165706528707934 " " absolute error = 3.663735981263016600000000000000E-14 " " relative error = 2.782787215615289000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9226705792526141 " " Order of pole = 5.625705785345538 " " x[1] = -0.9123000000000097 " " y[1] (analytic) = -1.3170036403654917 " " y[1] (numeric) = -1.3170036403655285 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 2.7987321589578950000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9225694535863252 " " Order of pole = 5.625705785345659 " " x[1] = -0.9122000000000097 " " y[1] (analytic) = -1.3174368177462 " " y[1] (numeric) = -1.3174368177462368 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 2.7978119269971735000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9224683279200322 " " Order of pole = 5.625705785345641 " " x[1] = -0.9121000000000097 " " y[1] (analytic) = -1.3178701851169856 " " y[1] (numeric) = -1.3178701851170225 " " absolute error = 3.6859404417555197000000000000E-14 " " relative error = 2.796891896775343700000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9223672022537216 " " Order of pole = 5.625705785345033 " " x[1] = -0.9120000000000097 " " y[1] (analytic) = -1.318303742582021 " " y[1] (numeric) = -1.318303742582058 " " absolute error = 3.70814490224802300000000000000E-14 " " relative error = 2.812815273500836000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9222660765874537 " " Order of pole = 5.625705785345865 " " x[1] = -0.9119000000000097 " " y[1] (analytic) = -1.3187374902455478 " " y[1] (numeric) = -1.3187374902455848 " " absolute error = 3.70814490224802300000000000000E-14 " " relative error = 2.8118901067699000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9221649509211591 " " Order of pole = 5.62570578534579 " " x[1] = -0.9118000000000097 " " y[1] (analytic) = -1.3191714282118756 " " y[1] (numeric) = -1.3191714282119127 " " absolute error = 3.70814490224802300000000000000E-14 " " relative error = 2.8109651429264030000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9220638252548637 " " Order of pole = 5.625705785345690 " " x[1] = -0.9117000000000097 " " y[1] (analytic) = -1.3196055565853828 " " y[1] (numeric) = -1.31960555658542 " " absolute error = 3.70814490224802300000000000000E-14 " " relative error = 2.810040381948099000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9219626995885674 " " Order of pole = 5.625705785345560 " " x[1] = -0.9116000000000097 " " y[1] (analytic) = -1.3200398754705165 " " y[1] (numeric) = -1.3200398754705538 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 2.825936876649939300000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9218615739222764 " " Order of pole = 5.625705785345616 " " x[1] = -0.9115000000000097 " " y[1] (analytic) = -1.320474384971793 " " y[1] (numeric) = -1.3204743849718301 " " absolute error = 3.70814490224802300000000000000E-14 " " relative error = 2.808191468498068000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9217604482559786 " " Order of pole = 5.625705785345435 " " x[1] = -0.9114000000000098 " " y[1] (analytic) = -1.3209090851937966 " " y[1] (numeric) = -1.3209090851938339 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 2.8240772999098795000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9216593225896758 " " Order of pole = 5.625705785345083 " " x[1] = -0.9113000000000098 " " y[1] (analytic) = -1.3213439762411812 " " y[1] (numeric) = -1.3213439762412185 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 2.8231478175366775000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9215581969234062 " " Order of pole = 5.625705785345858 " " x[1] = -0.9112000000000098 " " y[1] (analytic) = -1.321779058218669 " " y[1] (numeric) = -1.3217790582187066 " " absolute error = 3.75255382323302900000000000000E-14 " " relative error = 2.839017459007301000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9214570712570973 " " Order of pole = 5.6257057853453 " " x[1] = -0.9111000000000098 " " y[1] (analytic) = -1.3222143312310521 " " y[1] (numeric) = -1.3222143312310894 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 2.8212894646720180000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.921355945590812 " " Order of pole = 5.625705785345541 " " x[1] = -0.9110000000000098 " " y[1] (analytic) = -1.3226497953831902 " " y[1] (numeric) = -1.3226497953832277 " " absolute error = 3.75255382323302900000000000000E-14 " " relative error = 2.8371484548151776000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9212548199245245 " " Order of pole = 5.625705785345712 " " x[1] = -0.9109000000000098 " " y[1] (analytic) = -1.3230854507800136 " " y[1] (numeric) = -1.323085450780051 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 2.819431927500473000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.921153694258227 " " Order of pole = 5.625705785345538 " " x[1] = -0.9108000000000098 " " y[1] (analytic) = -1.3235212975265203 " " y[1] (numeric) = -1.323521297526558 " " absolute error = 3.77475828372553200000000000000E-14 " " relative error = 2.8520570774191830000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.921052568591937 " " Order of pole = 5.625705785345623 " " x[1] = -0.9107000000000098 " " y[1] (analytic) = -1.3239573357277792 " " y[1] (numeric) = -1.3239573357278167 " " absolute error = 3.75255382323302900000000000000E-14 " " relative error = 2.8343464868301443000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9209514429256493 " " Order of pole = 5.62570578534579 " " x[1] = -0.9106000000000098 " " y[1] (analytic) = -1.3243935654889265 " " y[1] (numeric) = -1.3243935654889643 " " absolute error = 3.77475828372553200000000000000E-14 " " relative error = 2.8501786644757704000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9208503172593437 " " Order of pole = 5.6257057853453425 " " x[1] = -0.9105000000000099 " " y[1] (analytic) = -1.3248299869151692 " " y[1] (numeric) = -1.324829986915207 " " absolute error = 3.77475828372553200000000000000E-14 " " relative error = 2.849239767371929000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9207491915930472 " " Order of pole = 5.6257057853452075 " " x[1] = -0.9104000000000099 " " y[1] (analytic) = -1.325266600111783 " " y[1] (numeric) = -1.3252666001118207 " " absolute error = 3.77475828372553200000000000000E-14 " " relative error = 2.848301076483132400000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9206480659267572 " " Order of pole = 5.625705785345293 " " x[1] = -0.9103000000000099 " " y[1] (analytic) = -1.325703405184113 " " y[1] (numeric) = -1.3257034051841508 " " absolute error = 3.77475828372553200000000000000E-14 " " relative error = 2.8473625917867323000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9205469402604739 " " Order of pole = 5.625705785345595 " " x[1] = -0.9102000000000099 " " y[1] (analytic) = -1.3261404022375736 " " y[1] (numeric) = -1.3261404022376115 " " absolute error = 3.796962744218035400000000000000E-14 " " relative error = 2.863167985691022000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9204458145941788 " " Order of pole = 5.625705785345513 " " x[1] = -0.9101000000000099 " " y[1] (analytic) = -1.3265775913776494 " " y[1] (numeric) = -1.3265775913776874 " " absolute error = 3.796962744218035400000000000000E-14 " " relative error = 2.8622243952386484000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9203446889278863 " " Order of pole = 5.625705785345513 " " x[1] = -0.9100000000000099 " " y[1] (analytic) = -1.3270149727098939 " " y[1] (numeric) = -1.3270149727099319 " " absolute error = 3.796962744218035400000000000000E-14 " " relative error = 2.8612810121232224000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.920243563261588 " " Order of pole = 5.625705785345314 " " x[1] = -0.9099000000000099 " " y[1] (analytic) = -1.3274525463399303 " " y[1] (numeric) = -1.3274525463399682 " " absolute error = 3.796962744218035400000000000000E-14 " " relative error = 2.860337836321962000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9201424375953045 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9098000000000099 " " y[1] (analytic) = -1.3278903123734513 " " y[1] (numeric) = -1.3278903123734895 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 2.8761164752261925000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9200413119290117 " " Order of pole = 5.625705785345602 " " x[1] = -0.90970000000001 " " y[1] (analytic) = -1.32832827091622 " " y[1] (numeric) = -1.3283282709162585 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.8918842949517580000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9199401862627297 " " Order of pole = 5.625705785345957 " " x[1] = -0.90960000000001 " " y[1] (analytic) = -1.3287664220740694 " " y[1] (numeric) = -1.3287664220741076 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 2.874220134754163000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9198390605964187 " " Order of pole = 5.625705785345335 " " x[1] = -0.90950000000001 " " y[1] (analytic) = -1.3292047659529007 " " y[1] (numeric) = -1.329204765952939 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 2.87327227718190970000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9197379349301344 " " Order of pole = 5.625705785345602 " " x[1] = -0.90940000000001 " " y[1] (analytic) = -1.3296433026586867 " " y[1] (numeric) = -1.3296433026587249 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 2.872324628021611000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.91963680926384 " " Order of pole = 5.625705785345541 " " x[1] = -0.90930000000001 " " y[1] (analytic) = -1.3300820322974694 " " y[1] (numeric) = -1.3300820322975075 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 2.8713771872503513000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9195356835975351 " " Order of pole = 5.625705785345122 " " x[1] = -0.90920000000001 " " y[1] (analytic) = -1.3305209549753605 " " y[1] (numeric) = -1.330520954975399 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.8871185010943170000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9194345579312445 " " Order of pole = 5.625705785345186 " " x[1] = -0.90910000000001 " " y[1] (analytic) = -1.3309600707985427 " " y[1] (numeric) = -1.3309600707985811 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.8861659710785426000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9193334322649632 " " Order of pole = 5.625705785345563 " " x[1] = -0.90900000000001 " " y[1] (analytic) = -1.331399379873268 " " y[1] (numeric) = -1.3313993798733064 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.885213650594227000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9192323065986638 " " Order of pole = 5.625705785345332 " " x[1] = -0.90890000000001 " " y[1] (analytic) = -1.3318388823058587 " " y[1] (numeric) = -1.331838882305897 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.8842615396183224000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9191311809323736 " " Order of pole = 5.625705785345400 " " x[1] = -0.90880000000001 " " y[1] (analytic) = -1.3322785782027073 " " y[1] (numeric) = -1.3322785782027458 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.8833096381277806000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.919030055266075 " " Order of pole = 5.625705785345193 " " x[1] = -0.90870000000001 " " y[1] (analytic) = -1.332718467670277 " " y[1] (numeric) = -1.3327184676703154 " " absolute error = 3.841371665203041600000000000000E-14 " " relative error = 2.8823579460995520000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9189289295998054 " " Order of pole = 5.625705785345975 " " x[1] = -0.9086000000000101 " " y[1] (analytic) = -1.3331585508151005 " " y[1] (numeric) = -1.3331585508151391 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 2.8980619922014020000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9188278039334918 " " Order of pole = 5.625705785345260 " " x[1] = -0.9085000000000101 " " y[1] (analytic) = -1.3335988277437816 " " y[1] (numeric) = -1.3335988277438202 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 2.897105220339798000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9187266782672109 " " Order of pole = 5.625705785345655 " " x[1] = -0.9084000000000101 " " y[1] (analytic) = -1.334039298562994 " " y[1] (numeric) = -1.3340392985630327 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 2.896148659081728000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9186255526009106 " " Order of pole = 5.625705785345382 " " x[1] = -0.9083000000000101 " " y[1] (analytic) = -1.3344799633794824 " " y[1] (numeric) = -1.334479963379521 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 2.8951923084040115000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9185244269346302 " " Order of pole = 5.625705785345794 " " x[1] = -0.9082000000000101 " " y[1] (analytic) = -1.3349208223000613 " " y[1] (numeric) = -1.3349208223001001 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9108697094804986000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9184233012683315 " " Order of pole = 5.625705785345577 " " x[1] = -0.9081000000000101 " " y[1] (analytic) = -1.3353618754316166 " " y[1] (numeric) = -1.3353618754316554 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9099082860457460000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9183221756020455 " " Order of pole = 5.625705785345804 " " x[1] = -0.9080000000000101 " " y[1] (analytic) = -1.3358031228811043 " " y[1] (numeric) = -1.3358031228811431 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9089470743316337000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9182210499357554 " " Order of pole = 5.6257057853458825 " " x[1] = -0.9079000000000101 " " y[1] (analytic) = -1.3362445647555512 " " y[1] (numeric) = -1.33624456475559 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.907986074314848000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9181199242694545 " " Order of pole = 5.625705785345595 " " x[1] = -0.9078000000000102 " " y[1] (analytic) = -1.3366862011620553 " " y[1] (numeric) = -1.336686201162094 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 2.8904137129093760000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9180187986031692 " " Order of pole = 5.625705785345836 " " x[1] = -0.9077000000000102 " " y[1] (analytic) = -1.337128032207784 " " y[1] (numeric) = -1.337128032207823 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9060647092799960000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9179176729368699 " " Order of pole = 5.625705785345609 " " x[1] = -0.9076000000000102 " " y[1] (analytic) = -1.3375700579999779 " " y[1] (numeric) = -1.3375700580000165 " " absolute error = 3.86357612569554500000000000000E-14 " " relative error = 2.8885037479626424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9178165472705749 " " Order of pole = 5.62570578534552 " " x[1] = -0.9075000000000102 " " y[1] (analytic) = -1.3380122786459459 " " y[1] (numeric) = -1.3380122786459847 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.904144190754674000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9177154216042905 " " Order of pole = 5.625705785345797 " " x[1] = -0.9074000000000102 " " y[1] (analytic) = -1.3384546942530697 " " y[1] (numeric) = -1.3384546942531086 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9031842488747994000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9176142959379975 " " Order of pole = 5.625705785345776 " " x[1] = -0.9073000000000102 " " y[1] (analytic) = -1.3388973049288015 " " y[1] (numeric) = -1.3388973049288404 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9022245185523630000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9175131702716979 " " Order of pole = 5.625705785345530 " " x[1] = -0.9072000000000102 " " y[1] (analytic) = -1.3393401107806644 " " y[1] (numeric) = -1.3393401107807033 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.9012649997640505000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9174120446054078 " " Order of pole = 5.6257057853456125 " " x[1] = -0.9071000000000102 " " y[1] (analytic) = -1.3397831119162527 " " y[1] (numeric) = -1.3397831119162915 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.900305692486547000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9173109189391104 " " Order of pole = 5.6257057853454455 " " x[1] = -0.9070000000000102 " " y[1] (analytic) = -1.3402263084432318 " " y[1] (numeric) = -1.3402263084432706 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.8993465966965370000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9172097932728139 " " Order of pole = 5.6257057853453105 " " x[1] = -0.9069000000000103 " " y[1] (analytic) = -1.3406697004693386 " " y[1] (numeric) = -1.3406697004693775 " " absolute error = 3.88578058618804800000000000000E-14 " " relative error = 2.8983877123707075000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9171086676065298 " " Order of pole = 5.625705785345591 " " x[1] = -0.9068000000000103 " " y[1] (analytic) = -1.341113288102381 " " y[1] (numeric) = -1.3411132881024201 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 2.9139857768542327000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9170075419402324 " " Order of pole = 5.625705785345428 " " x[1] = -0.9067000000000103 " " y[1] (analytic) = -1.341557071450239 " " y[1] (numeric) = -1.341557071450278 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 2.9130218384641465000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9169064162739398 " " Order of pole = 5.625705785345420 " " x[1] = -0.9066000000000103 " " y[1] (analytic) = -1.3420010506208626 " " y[1] (numeric) = -1.342001050620902 " " absolute error = 3.93018950717305400000000000000E-14 " " relative error = 2.9286038974073775000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9168052906076476 " " Order of pole = 5.625705785345431 " " x[1] = -0.9065000000000103 " " y[1] (analytic) = -1.3424452257222748 " " y[1] (numeric) = -1.3424452257223138 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 2.9110945994671333000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9167041649413548 " " Order of pole = 5.625705785345417 " " x[1] = -0.9064000000000103 " " y[1] (analytic) = -1.3428895968625687 " " y[1] (numeric) = -1.3428895968626078 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 2.9101312988133116000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9166030392750707 " " Order of pole = 5.625705785345705 " " x[1] = -0.9063000000000103 " " y[1] (analytic) = -1.3433341641499097 " " y[1] (numeric) = -1.3433341641499492 " " absolute error = 3.95239396766555730000000000000E-14 " " relative error = 2.9422269403582957000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.916501913608768 " " Order of pole = 5.625705785345364 " " x[1] = -0.9062000000000103 " " y[1] (analytic) = -1.3437789276925356 " " y[1] (numeric) = -1.343778927692575 " " absolute error = 3.93018950717305400000000000000E-14 " " relative error = 2.924729229027101000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9164007879424809 " " Order of pole = 5.625705785345545 " " x[1] = -0.9061000000000103 " " y[1] (analytic) = -1.344223887598754 " " y[1] (numeric) = -1.3442238875987935 " " absolute error = 3.95239396766555730000000000000E-14 " " relative error = 2.9402795204940835000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9162996622761814 " " Order of pole = 5.625705785345303 " " x[1] = -0.9060000000000104 " " y[1] (analytic) = -1.3446690439769464 " " y[1] (numeric) = -1.3446690439769855 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 2.9062802212821310000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9161985366098954 " " Order of pole = 5.62570578534552 " " x[1] = -0.9059000000000104 " " y[1] (analytic) = -1.3451143969355637 " " y[1] (numeric) = -1.3451143969356032 " " absolute error = 3.95239396766555730000000000000E-14 " " relative error = 2.9383329601332730000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9160974109435942 " " Order of pole = 5.625705785345225 " " x[1] = -0.9058000000000104 " " y[1] (analytic) = -1.345559946583131 " " y[1] (numeric) = -1.3455599465831705 " " absolute error = 3.95239396766555730000000000000E-14 " " relative error = 2.9373600022073576000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9159962852773103 " " Order of pole = 5.625705785345517 " " x[1] = -0.9057000000000104 " " y[1] (analytic) = -1.3460056930282436 " " y[1] (numeric) = -1.346005693028283 " " absolute error = 3.95239396766555730000000000000E-14 " " relative error = 2.9363872590861495000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9158951596110214 " " Order of pole = 5.625705785345641 " " x[1] = -0.9056000000000104 " " y[1] (analytic) = -1.3464516363795695 " " y[1] (numeric) = -1.3464516363796093 " " absolute error = 3.974598428158060400000000000000E-14 " " relative error = 2.9519058247388890000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9157940339447267 " " Order of pole = 5.625705785345563 " " x[1] = -0.9055000000000104 " " y[1] (analytic) = -1.346897776745849 " " y[1] (numeric) = -1.3468977767458887 " " absolute error = 3.974598428158060400000000000000E-14 " " relative error = 2.9509280487200934000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9156929082784394 " " Order of pole = 5.62570578534574 " " x[1] = -0.9054000000000104 " " y[1] (analytic) = -1.3473441142358937 " " y[1] (numeric) = -1.3473441142359335 " " absolute error = 3.974598428158060400000000000000E-14 " " relative error = 2.9499504886412303000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9155917826121326 " " Order of pole = 5.62570578534525 " " x[1] = -0.9053000000000104 " " y[1] (analytic) = -1.3477906489585876 " " y[1] (numeric) = -1.3477906489586275 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 2.9654478547828017000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9154906569458405 " " Order of pole = 5.625705785345268 " " x[1] = -0.9052000000000104 " " y[1] (analytic) = -1.3482373810228874 " " y[1] (numeric) = -1.3482373810229271 " " absolute error = 3.974598428158060400000000000000E-14 " " relative error = 2.947996016207911600000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9153895312795572 " " Order of pole = 5.625705785345577 " " x[1] = -0.9051000000000105 " " y[1] (analytic) = -1.3486843105378208 " " y[1] (numeric) = -1.348684310537861 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9799466915577816000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9152884056132692 " " Order of pole = 5.625705785345733 " " x[1] = -0.9050000000000105 " " y[1] (analytic) = -1.3491314376124897 " " y[1] (numeric) = -1.3491314376125298 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9789590821894735000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9151872799469732 " " Order of pole = 5.625705785345609 " " x[1] = -0.9049000000000105 " " y[1] (analytic) = -1.3495787623560664 " " y[1] (numeric) = -1.3495787623561066 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9779716910532644000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9150861542806877 " " Order of pole = 5.625705785345847 " " x[1] = -0.9048000000000105 " " y[1] (analytic) = -1.3500262848777969 " " y[1] (numeric) = -1.350026284877837 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9769845181250404000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9149850286143763 " " Order of pole = 5.6257057853452 " " x[1] = -0.9047000000000105 " " y[1] (analytic) = -1.3504740052869992 " " y[1] (numeric) = -1.3504740052870392 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 2.959555587892396000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9148839029480892 " " Order of pole = 5.625705785345385 " " x[1] = -0.9046000000000105 " " y[1] (analytic) = -1.3509219236930634 " " y[1] (numeric) = -1.3509219236931036 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9750108267960910000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9147827772817894 " " Order of pole = 5.625705785345133 " " x[1] = -0.9045000000000105 " " y[1] (analytic) = -1.3513700402054531 " " y[1] (numeric) = -1.3513700402054933 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9740243083471380000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9146816516155044 " " Order of pole = 5.625705785345389 " " x[1] = -0.9044000000000105 " " y[1] (analytic) = -1.351818354933704 " " y[1] (numeric) = -1.3518183549337441 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.973038008009713000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9145805259492148 " " Order of pole = 5.625705785345488 " " x[1] = -0.9043000000000105 " " y[1] (analytic) = -1.352266867987424 " " y[1] (numeric) = -1.3522668679874643 " " absolute error = 4.0412118096355700000000000000E-14 " " relative error = 2.988472102145117000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9144794002829223 " " Order of pole = 5.625705785345481 " " x[1] = -0.9042000000000106 " " y[1] (analytic) = -1.3527155794762948 " " y[1] (numeric) = -1.352715579476335 " " absolute error = 4.019007349143066700000000000000E-14 " " relative error = 2.9710660615729945000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9143782746166208 " " Order of pole = 5.6257057853451755 " " x[1] = -0.9041000000000106 " " y[1] (analytic) = -1.3531644895100698 " " y[1] (numeric) = -1.3531644895101103 " " absolute error = 4.0412118096355700000000000000E-14 " " relative error = 2.9864896994885975000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9142771489503296 " " Order of pole = 5.625705785345225 " " x[1] = -0.9040000000000106 " " y[1] (analytic) = -1.3536135981985764 " " y[1] (numeric) = -1.353613598198617 " " absolute error = 4.06341627012807300000000000000E-14 " " relative error = 3.0019026667106263000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9141760232840495 " " Order of pole = 5.625705785345641 " " x[1] = -0.9039000000000106 " " y[1] (analytic) = -1.3540629056517142 " " y[1] (numeric) = -1.3540629056517548 " " absolute error = 4.06341627012807300000000000000E-14 " " relative error = 3.0009065702692295000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9140748976177588 " " Order of pole = 5.625705785345698 " " x[1] = -0.9038000000000106 " " y[1] (analytic) = -1.3545124119794558 " " y[1] (numeric) = -1.3545124119794962 " " absolute error = 4.0412118096355700000000000000E-14 " " relative error = 2.9835177395900186000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9139737719514649 " " Order of pole = 5.625705785345659 " " x[1] = -0.9037000000000106 " " y[1] (analytic) = -1.3549621172918465 " " y[1] (numeric) = -1.3549621172918873 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 3.015302552359529000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9138726462851748 " " Order of pole = 5.625705785345733 " " x[1] = -0.9036000000000106 " " y[1] (analytic) = -1.355412021699006 " " y[1] (numeric) = -1.3554120216990466 " " absolute error = 4.06341627012807300000000000000E-14 " " relative error = 2.9979196030994250000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9137715206188769 " " Order of pole = 5.6257057853455485 " " x[1] = -0.9035000000000106 " " y[1] (analytic) = -1.3558621253111254 " " y[1] (numeric) = -1.355862125311166 " " absolute error = 4.06341627012807300000000000000E-14 " " relative error = 2.996924388013017000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9136703949525917 " " Order of pole = 5.625705785345797 " " x[1] = -0.9034000000000106 " " y[1] (analytic) = -1.3563124282384698 " " y[1] (numeric) = -1.3563124282385108 " " absolute error = 4.10782519111307900000000000000E-14 " " relative error = 3.0286717909443445000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9135692692862893 " " Order of pole = 5.625705785345456 " " x[1] = -0.9033000000000106 " " y[1] (analytic) = -1.3567629305913784 " " y[1] (numeric) = -1.3567629305914193 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 3.011300381592647000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9134681436199967 " " Order of pole = 5.62570578534546 " " x[1] = -0.9032000000000107 " " y[1] (analytic) = -1.3572136324802617 " " y[1] (numeric) = -1.357213632480303 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 3.043021048984082000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9133670179537048 " " Order of pole = 5.625705785345481 " " x[1] = -0.9031000000000107 " " y[1] (analytic) = -1.357664534015606 " " y[1] (numeric) = -1.357664534015647 " " absolute error = 4.10782519111307900000000000000E-14 " " relative error = 3.025655519602651000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.913265892287404 " " Order of pole = 5.625705785345197 " " x[1] = -0.9030000000000107 " " y[1] (analytic) = -1.3581156353079689 " " y[1] (numeric) = -1.35811563530801 " " absolute error = 4.10782519111307900000000000000E-14 " " relative error = 3.0246505410281804000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9131647666211242 " " Order of pole = 5.62570578534562 " " x[1] = -0.9029000000000107 " " y[1] (analytic) = -1.3585669364679824 " " y[1] (numeric) = -1.3585669364680235 " " absolute error = 4.10782519111307900000000000000E-14 " " relative error = 3.0236457850156795000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9130636409548335 " " Order of pole = 5.6257057853456836 " " x[1] = -0.9028000000000107 " " y[1] (analytic) = -1.3590184376063523 " " y[1] (numeric) = -1.3590184376063934 " " absolute error = 4.10782519111307900000000000000E-14 " " relative error = 3.0226412515404993000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9129625152885431 " " Order of pole = 5.625705785345755 " " x[1] = -0.9027000000000107 " " y[1] (analytic) = -1.3594701388338573 " " y[1] (numeric) = -1.3594701388338986 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 3.0379701132297680000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9128613896222494 " " Order of pole = 5.625705785345708 " " x[1] = -0.9026000000000107 " " y[1] (analytic) = -1.3599220402613503 " " y[1] (numeric) = -1.3599220402613916 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 3.0369605972500240000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9127602639559449 " " Order of pole = 5.625705785345307 " " x[1] = -0.9025000000000107 " " y[1] (analytic) = -1.360374141999758 " " y[1] (numeric) = -1.3603741419997992 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 3.035951304936166400000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9126591382896615 " " Order of pole = 5.625705785345602 " " x[1] = -0.9024000000000107 " " y[1] (analytic) = -1.36082644416008 " " y[1] (numeric) = -1.3608264441601212 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 3.0349422362634140000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9125580126233657 " " Order of pole = 5.625705785345495 " " x[1] = -0.9023000000000108 " " y[1] (analytic) = -1.3612789468533908 " " y[1] (numeric) = -1.3612789468534319 " " absolute error = 4.10782519111307900000000000000E-14 " " relative error = 3.017621921361787000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9124568869570743 " " Order of pole = 5.625705785345534 " " x[1] = -0.9022000000000108 " " y[1] (analytic) = -1.3617316501908376 " " y[1] (numeric) = -1.361731650190879 " " absolute error = 4.130029651605582300000000000000E-14 " " relative error = 3.0329247697421047000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.912355761290775 " " Order of pole = 5.625705785345296 " " x[1] = -0.9021000000000108 " " y[1] (analytic) = -1.3621845542836428 " " y[1] (numeric) = -1.3621845542836843 " " absolute error = 4.152234112098085500000000000000E-14 " " relative error = 3.0482169974990636000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.912254635624484 " " Order of pole = 5.62570578534535 " " x[1] = -0.9020000000000108 " " y[1] (analytic) = -1.3626376592431022 " " y[1] (numeric) = -1.3626376592431437 " " absolute error = 4.152234112098085500000000000000E-14 " " relative error = 3.047203402850694000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9121535099581991 " " Order of pole = 5.625705785345605 " " x[1] = -0.9019000000000108 " " y[1] (analytic) = -1.3630909651805854 " " y[1] (numeric) = -1.363090965180627 " " absolute error = 4.152234112098085500000000000000E-14 " " relative error = 3.046190032921235000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9120523842918962 " " Order of pole = 5.625705785345247 " " x[1] = -0.9018000000000108 " " y[1] (analytic) = -1.3635444722075365 " " y[1] (numeric) = -1.363544472207578 " " absolute error = 4.152234112098085500000000000000E-14 " " relative error = 3.0451768876857727000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9119512586256086 " " Order of pole = 5.625705785345417 " " x[1] = -0.9017000000000108 " " y[1] (analytic) = -1.3639981804354733 " " y[1] (numeric) = -1.363998180435515 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 3.0604429188152200000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9118501329593187 " " Order of pole = 5.6257057853455095 " " x[1] = -0.9016000000000108 " " y[1] (analytic) = -1.3644520899759887 " " y[1] (numeric) = -1.3644520899760302 " " absolute error = 4.152234112098085500000000000000E-14 " " relative error = 3.043151271197185000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9117490072930307 " " Order of pole = 5.625705785345655 " " x[1] = -0.9015000000000108 " " y[1] (analytic) = -1.3649062009407484 " " y[1] (numeric) = -1.3649062009407904 " " absolute error = 4.19664303308309200000000000000E-14 " " relative error = 3.0746750437433695000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9116478816267406 " " Order of pole = 5.625705785345744 " " x[1] = -0.9014000000000109 " " y[1] (analytic) = -1.3653605134414948 " " y[1] (numeric) = -1.3653605134415363 " " absolute error = 4.152234112098085500000000000000E-14 " " relative error = 3.041126553185623000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9115467559604445 " " Order of pole = 5.62570578534562 " " x[1] = -0.9013000000000109 " " y[1] (analytic) = -1.3658150275900416 " " y[1] (numeric) = -1.3658150275900836 " " absolute error = 4.19664303308309200000000000000E-14 " " relative error = 3.0726291249613790000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9114456302941493 " " Order of pole = 5.625705785345524 " " x[1] = -0.9012000000000109 " " y[1] (analytic) = -1.3662697434982798 " " y[1] (numeric) = -1.3662697434983218 " " absolute error = 4.19664303308309200000000000000E-14 " " relative error = 3.071606506002067000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9113445046278501 " " Order of pole = 5.625705785345290 " " x[1] = -0.9011000000000109 " " y[1] (analytic) = -1.3667246612781732 " " y[1] (numeric) = -1.3667246612782151 " " absolute error = 4.19664303308309200000000000000E-14 " " relative error = 3.0705841139636375000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9112433789615746 " " Order of pole = 5.625705785345879 " " x[1] = -0.9010000000000109 " " y[1] (analytic) = -1.367179781041761 " " y[1] (numeric) = -1.3671797810418027 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 3.0533208803086290000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9111422532952747 " " Order of pole = 5.62570578534562 " " x[1] = -0.9009000000000109 " " y[1] (analytic) = -1.367635102901156 " " y[1] (numeric) = -1.3676351029011982 " " absolute error = 4.21884749357559500000000000000E-14 " " relative error = 3.0847756719801794000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9110411276289807 " " Order of pole = 5.62570578534557 " " x[1] = -0.9008000000000109 " " y[1] (analytic) = -1.3680906269685473 " " y[1] (numeric) = -1.3680906269685893 " " absolute error = 4.19664303308309200000000000000E-14 " " relative error = 3.0675182991218414000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9109400019626763 " " Order of pole = 5.625705785345165 " " x[1] = -0.9007000000000109 " " y[1] (analytic) = -1.3685463533561972 " " y[1] (numeric) = -1.3685463533562394 " " absolute error = 4.21884749357559500000000000000E-14 " " relative error = 3.082721665385592000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.910838876296388 " " Order of pole = 5.625705785345307 " " x[1] = -0.900600000000011 " " y[1] (analytic) = -1.3690022821764438 " " y[1] (numeric) = -1.369002282176486 " " absolute error = 4.21884749357559500000000000000E-14 " " relative error = 3.081695004093389000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9107377506301095 " " Order of pole = 5.6257057853457795 " " x[1] = -0.900500000000011 " " y[1] (analytic) = -1.3694584135416994 " " y[1] (numeric) = -1.3694584135417418 " " absolute error = 4.24105195406809800000000000000E-14 " " relative error = 3.09688261588015000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.91063662496382 " " Order of pole = 5.625705785345886 " " x[1] = -0.900400000000011 " " y[1] (analytic) = -1.3699147475644518 " " y[1] (numeric) = -1.3699147475644942 " " absolute error = 4.24105195406809800000000000000E-14 " " relative error = 3.0958510094209823000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9105354992975163 " " Order of pole = 5.625705785345499 " " x[1] = -0.900300000000011 " " y[1] (analytic) = -1.370371284357263 " " y[1] (numeric) = -1.3703712843573057 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 3.1110228762274234000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9104343736312238 " " Order of pole = 5.625705785345492 " " x[1] = -0.900200000000011 " " y[1] (analytic) = -1.3708280240327713 " " y[1] (numeric) = -1.370828024032814 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 3.1099863292980673000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9103332479649314 " " Order of pole = 5.625705785345499 " " x[1] = -0.900100000000011 " " y[1] (analytic) = -1.3712849667036884 " " y[1] (numeric) = -1.3712849667037312 " " absolute error = 4.28546087505310400000000000000E-14 " " relative error = 3.1251424606181950000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Real estimate of pole used" Radius of convergence = 0.9102321222986353 " " Order of pole = 5.625705785345382 " " x[1] = -0.900000000000011 " " y[1] (analytic) = -1.371742112482803 " " y[1] (numeric) = -1.3717421124828455 " " absolute error = 4.24105195406809800000000000000E-14 " " relative error = 3.0917268745157567000000000000E-12 "%" h = 1.0000E-4 " " "Finished!" "Maximum Iterations Reached before Solution Completed!" "diff ( y , x , 1 ) = m1 * 3.0 / x / x / x / x ;" Iterations = 1000 "Total Elapsed Time "= 13 Minutes 56 Seconds "Elapsed Time(since restart) "= 13 Minutes 56 Seconds "Expected Time Remaining "= 27 Minutes 51 Seconds "Optimized Time Remaining "= 27 Minutes 50 Seconds "Time to Timeout "= 1 Minutes 3 Seconds Percent Done = 33.36666666666299 "%" (%o51) true (%o51) diffeq.max