|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc > # End Function number 4 > # Begin Function number 5 > test_suggested_h := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 0.125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 0.125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr > 0.0000000000000000000000000000000001) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if 0.1*10^(-33) < relerr then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > rad_c := glob_large_float; > ord_no := glob_large_float; > elif > (((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) or ((omniabs(array_y_higher[1,m]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-1]) <=(glob_small_float)) or (omniabs(array_y_higher[1,m-2]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-3]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-4]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-5]) <= (glob_small_float)))) then # if number 2 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then rad_c := glob_large_float; ord_no := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) or omniabs(array_y_higher[1, m]) <= glob_small_float or omniabs(array_y_higher[1, m - 1]) <= glob_small_float or omniabs(array_y_higher[1, m - 2]) <= glob_small_float or omniabs(array_y_higher[1, m - 3]) <= glob_small_float or omniabs(array_y_higher[1, m - 4]) <= glob_small_float or omniabs(array_y_higher[1, m - 5]) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > #END OUTFILE1 > #BEGIN ATOMHDR1 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 1 > array_tmp1[1] := array_const_2D0[1] * array_x[1]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 1 > array_tmp2[1] := array_tmp1[1] + array_const_3D0[1]; > #emit pre sqrt 1 $eq_no = 1 > array_tmp3[1] := sqrt(array_tmp2[1]); > omniout_str(ALWAYS,"WARNING: no analytic solution found for testing of tan of full series."); > array_tmp4_a1[1] := sin(array_tmp3[1]); > array_tmp4_a2[1] := cos(array_tmp3[1]); > array_tmp4[1] := (array_tmp4_a1[1] / array_tmp4_a2[1]); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp5[1] := array_const_0D0[1] + array_tmp4[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= glob_max_terms) then # if number 2 > temporary := array_tmp5[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h * (1.0); > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_const_2D0[1] * array_x[2]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre sqrt 2 $eq_no = 1 > array_tmp3[2] := array_tmp2[2] / array_tmp3[1]/2.0; > #emit pre tan $eq_no = 1 > array_tmp4_a1[2] := att(1,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[2] := -att(1,array_tmp4_a1,array_tmp3,1); > array_tmp4[2] := (array_tmp4_a1[2] - ats(2,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp5[2] := array_tmp4[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= glob_max_terms) then # if number 2 > temporary := array_tmp5[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre sqrt ID_LINEAR iii = 3 $eq_no = 1 > array_tmp3[3] := 0.0; > array_tmp3[3] := -ats(3,array_tmp3,array_tmp3,2) / array_tmp3[1] / 2.0; > #emit pre tan $eq_no = 1 > array_tmp4_a1[3] := att(2,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[3] := -att(2,array_tmp4_a1,array_tmp3,1); > array_tmp4[3] := (array_tmp4_a1[3] - ats(3,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp5[3] := array_tmp4[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= glob_max_terms) then # if number 2 > temporary := array_tmp5[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre sqrt ID_LINEAR iii = 4 $eq_no = 1 > array_tmp3[4] := 0.0; > array_tmp3[4] := -ats(4,array_tmp3,array_tmp3,2) / array_tmp3[1] / 2.0; > #emit pre tan $eq_no = 1 > array_tmp4_a1[4] := att(3,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[4] := -att(3,array_tmp4_a1,array_tmp3,1); > array_tmp4[4] := (array_tmp4_a1[4] - ats(4,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp5[4] := array_tmp4[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= glob_max_terms) then # if number 2 > temporary := array_tmp5[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre sqrt ID_LINEAR iii = 5 $eq_no = 1 > array_tmp3[5] := 0.0; > array_tmp3[5] := -ats(5,array_tmp3,array_tmp3,2) / array_tmp3[1] / 2.0; > #emit pre tan $eq_no = 1 > array_tmp4_a1[5] := att(4,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[5] := -att(4,array_tmp4_a1,array_tmp3,1); > array_tmp4[5] := (array_tmp4_a1[5] - ats(5,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp5[5] := array_tmp4[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= glob_max_terms) then # if number 2 > temporary := array_tmp5[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (5.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit sqrt LINEAR $eq_no = 1 > array_tmp3[kkk] := 0.0; > array_tmp3[kkk] := -ats(kkk,array_tmp3,array_tmp3,2) /array_tmp3[1] / 2.0; > array_tmp4_a1[kkk] := att(kkk-1 ,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[kkk] := -att(kkk-1,array_tmp4_a1,array_tmp3,1); > array_tmp4[kkk] := (array_tmp4_a1[kkk] - ats(kkk ,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp5[kkk] := array_tmp4[kkk]; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d + 1 <= glob_max_terms) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := array_tmp5[kkk] * expt(glob_h , (order_d)) * factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; array_tmp1[1] := array_const_2D0[1]*array_x[1]; array_tmp2[1] := array_tmp1[1] + array_const_3D0[1]; array_tmp3[1] := sqrt(array_tmp2[1]); omniout_str(ALWAYS, "WARNING: no analytic solution found for testing \ of tan of full series."); array_tmp4_a1[1] := sin(array_tmp3[1]); array_tmp4_a2[1] := cos(array_tmp3[1]); array_tmp4[1] := array_tmp4_a1[1]/array_tmp4_a2[1]; array_tmp5[1] := array_const_0D0[1] + array_tmp4[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp5[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary*1.0/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_const_2D0[1]*array_x[2]; array_tmp2[2] := array_tmp1[2]; array_tmp3[2] := array_tmp2[2]/(array_tmp3[1]*2.0); array_tmp4_a1[2] := att(1, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[2] := -att(1, array_tmp4_a1, array_tmp3, 1); array_tmp4[2] := ( array_tmp4_a1[2] - ats(2, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[2] := array_tmp4[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp5[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp3[3] := 0.; array_tmp3[3] := -ats(3, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0) ; array_tmp4_a1[3] := att(2, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[3] := -att(2, array_tmp4_a1, array_tmp3, 1); array_tmp4[3] := ( array_tmp4_a1[3] - ats(3, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[3] := array_tmp4[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp5[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp3[4] := 0.; array_tmp3[4] := -ats(4, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0) ; array_tmp4_a1[4] := att(3, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[4] := -att(3, array_tmp4_a1, array_tmp3, 1); array_tmp4[4] := ( array_tmp4_a1[4] - ats(4, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[4] := array_tmp4[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp5[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp3[5] := 0.; array_tmp3[5] := -ats(5, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0) ; array_tmp4_a1[5] := att(4, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[5] := -att(4, array_tmp4_a1, array_tmp3, 1); array_tmp4[5] := ( array_tmp4_a1[5] - ats(5, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[5] := array_tmp4[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp5[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*5.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp3[kkk] := 0.; array_tmp3[kkk] := -ats(kkk, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0); array_tmp4_a1[kkk] := att(kkk - 1, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[kkk] := -att(kkk - 1, array_tmp4_a1, array_tmp3, 1); array_tmp4[kkk] := ( array_tmp4_a1[kkk] - ats(kkk, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[kkk] := array_tmp4[kkk]; order_d := 1; if kkk + order_d + 1 <= glob_max_terms then if not array_y_set_initial[1, kkk + order_d] then temporary := array_tmp5[kkk]*expt(glob_h, order_d)* factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 1; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary end if; array_y_higher[adj3, term] := temporary end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc > # End Function number 12 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 0.; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 15 > # Begin Function number 16 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc > # End Function number 16 > # Begin Function number 17 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc > # End Function number 17 > # Begin Function number 18 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc > # End Function number 18 > # Begin Function number 19 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error > + 0.0000000000000000000000000000000001) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if 0.1*10^(-33) < rel_error then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(0.0); > end; exact_soln_y := proc(x) return 0. end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h,repeat_it; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > glob_last; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > glob_iolevel := INFO; > glob_max_terms := 30; > glob_iolevel := 5; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > MAX_UNCHANGED := 10; > glob_check_sign := 1.0; > glob_desired_digits_correct := 8.0; > glob_max_value3 := 0.0; > glob_ratio_of_radius := 0.01; > glob_percent_done := 0.0; > glob_subiter_method := 3; > glob_log10normmin := 0.1; > glob_total_exp_sec := 0.1; > glob_optimal_expect_sec := 0.1; > glob_html_log := true; > glob_good_digits := 0; > glob_max_opt_iter := 10; > glob_dump := false; > glob_djd_debug := true; > glob_display_flag := true; > glob_djd_debug2 := true; > glob_sec_in_minute := 60; > glob_min_in_hour := 60; > glob_hours_in_day := 24; > glob_days_in_year := 365; > glob_sec_in_hour := 3600; > glob_sec_in_day := 86400; > glob_sec_in_year := 31536000; > glob_almost_1 := 0.9990; > glob_clock_sec := 0.0; > glob_clock_start_sec := 0.0; > glob_not_yet_finished := true; > glob_initial_pass := true; > glob_not_yet_start_msg := true; > glob_reached_optimal_h := false; > glob_optimal_done := false; > glob_disp_incr := 0.1; > glob_h := 0.1; > glob_hmax := 1.0; > glob_hmin := 0.00000000001; > glob_hmin_init := 0.001; > glob_large_float := 9.0e100; > glob_last_good_h := 0.1; > glob_look_poles := false; > glob_neg_h := false; > glob_display_interval := 0.0; > glob_next_display := 0.0; > glob_dump_analytic := false; > glob_log10_abserr := 0.1e-10; > glob_log10_relerr := 0.1e-10; > glob_abserr := 0.1e-10; > glob_relerr := 0.1e-10; > glob_max_hours := 0.0; > glob_max_iter := 1000; > glob_max_rel_trunc_err := 0.1e-10; > glob_max_trunc_err := 0.1e-10; > glob_no_eqs := 0; > glob_optimal_clock_start_sec := 0.0; > glob_optimal_start := 0.0; > glob_small_float := 0.1e-50; > glob_smallish_float := 0.1e-100; > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_max_sec := 10000.0; > glob_orig_start_sec := 0.0; > glob_start := 0; > glob_curr_iter_when_opt := 0; > glob_current_iter := 0; > glob_iter := 0; > glob_normmax := 0.0; > glob_log10abserr := 0.0; > glob_log10relerr := 0.0; > glob_max_minutes := 0.0; > #Write Set Defaults > glob_orig_start_sec := elapsed_time_seconds(); > MAX_UNCHANGED := 10; > glob_curr_iter_when_opt := 0; > glob_display_flag := true; > glob_no_eqs := 1; > glob_iter := -1; > opt_iter := -1; > glob_max_iter := 50000; > glob_max_hours := 0.0; > glob_max_minutes := 15.0; > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/tan_sqrt_linpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0));"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.1;"); > omniout_str(ALWAYS,"x_end := 5.0 ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.05;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 1000000;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"glob_subiter_method:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(0.0);"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_tmp4_g:= Array(0..(max_terms + 1),[]); > array_tmp4_a1:= Array(0..(max_terms + 1),[]); > array_tmp4_a2:= Array(0..(max_terms + 1),[]); > array_tmp4:= Array(0..(max_terms + 1),[]); > array_tmp5:= Array(0..(max_terms + 1),[]); > array_m1:= Array(0..(max_terms + 1),[]); > array_y_higher := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work2 := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_set_initial := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_poles := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_real_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_complex_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_fact_2 := Array(0..(max_terms+ 1) ,(0..max_terms+ 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_y_init[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_norms[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_fact_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_1st_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_last_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_type_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_set_initial[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_poles[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_real_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_complex_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=max_terms) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_fact_2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > #BEGIN ARRAYS DEFINED AND INITIALIZATED > array_y := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_x := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4_g := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4_a1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4_a2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp5 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_2D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_2D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_2D0[1] := 2.0; > array_const_3D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_3D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_3D0[1] := 3.0; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.1; > x_end := 5.0 ; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.05; > glob_look_poles := true; > glob_max_iter := 1000000; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > glob_subiter_method:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > glob_abserr := expt(10.0 , (glob_log10_abserr)); > glob_relerr := expt(10.0 , (glob_log10_relerr)); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_log10normmin := -glob_large_float ; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 3 > tmp := omniabs(array_y_higher[1,1]); > log10norm := (log10(tmp)); > if (log10norm < glob_log10normmin) then # if number 4 > glob_log10normmin := log10norm; > fi;# end if 4 > fi;# end if 3; > display_alot(current_iter) > ; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > display_alot(current_iter); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y; > order_diff := 2; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0));"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2013-01-13T03:03:29-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"tan_sqrt_lin") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0));") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 156 ") > ; > logitem_str(html_log_file,"tan_sqrt_lin diffeq.mxt") > ; > logitem_str(html_log_file,"tan_sqrt_lin maple results") > ; > logitem_str(html_log_file,"Languages compared - single equations") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h, repeat_it; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; glob_last; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; glob_iolevel := INFO; glob_max_terms := 30; glob_iolevel := 5; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; MAX_UNCHANGED := 10; glob_check_sign := 1.0; glob_desired_digits_correct := 8.0; glob_max_value3 := 0.; glob_ratio_of_radius := 0.01; glob_percent_done := 0.; glob_subiter_method := 3; glob_log10normmin := 0.1; glob_total_exp_sec := 0.1; glob_optimal_expect_sec := 0.1; glob_html_log := true; glob_good_digits := 0; glob_max_opt_iter := 10; glob_dump := false; glob_djd_debug := true; glob_display_flag := true; glob_djd_debug2 := true; glob_sec_in_minute := 60; glob_min_in_hour := 60; glob_hours_in_day := 24; glob_days_in_year := 365; glob_sec_in_hour := 3600; glob_sec_in_day := 86400; glob_sec_in_year := 31536000; glob_almost_1 := 0.9990; glob_clock_sec := 0.; glob_clock_start_sec := 0.; glob_not_yet_finished := true; glob_initial_pass := true; glob_not_yet_start_msg := true; glob_reached_optimal_h := false; glob_optimal_done := false; glob_disp_incr := 0.1; glob_h := 0.1; glob_hmax := 1.0; glob_hmin := 0.1*10^(-10); glob_hmin_init := 0.001; glob_large_float := 0.90*10^101; glob_last_good_h := 0.1; glob_look_poles := false; glob_neg_h := false; glob_display_interval := 0.; glob_next_display := 0.; glob_dump_analytic := false; glob_log10_abserr := 0.1*10^(-10); glob_log10_relerr := 0.1*10^(-10); glob_abserr := 0.1*10^(-10); glob_relerr := 0.1*10^(-10); glob_max_hours := 0.; glob_max_iter := 1000; glob_max_rel_trunc_err := 0.1*10^(-10); glob_max_trunc_err := 0.1*10^(-10); glob_no_eqs := 0; glob_optimal_clock_start_sec := 0.; glob_optimal_start := 0.; glob_small_float := 0.1*10^(-50); glob_smallish_float := 0.1*10^(-100); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_max_sec := 10000.0; glob_orig_start_sec := 0.; glob_start := 0; glob_curr_iter_when_opt := 0; glob_current_iter := 0; glob_iter := 0; glob_normmax := 0.; glob_log10abserr := 0.; glob_log10relerr := 0.; glob_max_minutes := 0.; glob_orig_start_sec := elapsed_time_seconds(); MAX_UNCHANGED := 10; glob_curr_iter_when_opt := 0; glob_display_flag := true; glob_no_eqs := 1; glob_iter := -1; opt_iter := -1; glob_max_iter := 50000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/tan_sqrt_linpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0));"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.1;"); omniout_str(ALWAYS, "x_end := 5.0 ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.05;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 1000000;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "glob_subiter_method:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(0.0);"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_tmp4_g := Array(0 .. max_terms + 1, []); array_tmp4_a1 := Array(0 .. max_terms + 1, []); array_tmp4_a2 := Array(0 .. max_terms + 1, []); array_tmp4 := Array(0 .. max_terms + 1, []); array_tmp5 := Array(0 .. max_terms + 1, []); array_m1 := Array(0 .. max_terms + 1, []); array_y_higher := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work2 := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_set_initial := Array(0 .. 3, 0 .. max_terms + 1, []); array_poles := Array(0 .. 2, 0 .. 4, []); array_real_pole := Array(0 .. 2, 0 .. 4, []); array_complex_pole := Array(0 .. 2, 0 .. 4, []); array_fact_2 := Array(0 .. max_terms + 1, 0 .. max_terms + 1, []); term := 1; while term <= max_terms do array_y_init[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_norms[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_fact_1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_1st_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_last_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_type_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_y[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_x[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_tmp0[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4_g[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4_a1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4_a2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_set_initial[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_poles[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_real_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_complex_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= max_terms do term := 1; while term <= max_terms do array_fact_2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; array_y := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_y[term] := 0.; term := term + 1 end do; array_x := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_x[term] := 0.; term := term + 1 end do; array_tmp0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp0[term] := 0.; term := term + 1 end do; array_tmp1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1[term] := 0.; term := term + 1 end do; array_tmp2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_tmp4_g := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4_g[term] := 0.; term := term + 1 end do; array_tmp4_a1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4_a1[term] := 0.; term := term + 1 end do; array_tmp4_a2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4_a2[term] := 0.; term := term + 1 end do; array_tmp4 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4[term] := 0.; term := term + 1 end do; array_tmp5 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5[term] := 0.; term := term + 1 end do; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_2D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_2D0[term] := 0.; term := term + 1 end do; array_const_2D0[1] := 2.0; array_const_3D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_3D0[term] := 0.; term := term + 1 end do; array_const_3D0[1] := 3.0; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := 0.1; x_end := 5.0; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_subiter_method := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); glob_abserr := expt(10.0, glob_log10_abserr); glob_relerr := expt(10.0, glob_log10_relerr); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_log10normmin := -glob_large_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); log10norm := log10(tmp); if log10norm < glob_log10normmin then glob_log10normmin := log10norm end if end if; display_alot(current_iter); glob_clock_sec := elapsed_time_seconds(); glob_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); display_alot(current_iter); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 2; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0));"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2013-01-13T03:03:29-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "tan_sqrt_lin"); logitem_str(html_log_file, "diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0));"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 156 "); logitem_str(html_log_file, "tan_sqrt_lin diffeq.mxt"); logitem_str(html_log_file, "tan_sqrt_lin maple results"); logitem_str(html_log_file, "Languages compared - single equations"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/tan_sqrt_linpostode.ode################# diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0)); ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.1; x_end := 5.0 ; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; glob_subiter_method:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(0.0); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 WARNING: no analytic solution found for testing of tan of full series. glob_desired_digits_correct = 10 desired_abs_gbl_error = 1.0000000000000000000000000000000e-10 range = 4.9 estimated_steps = 4900 step_error = 2.0408163265306122448979591836735e-14 est_needed_step_err = 2.0408163265306122448979591836735e-14 hn_div_ho = 0.5 hn_div_ho_2 = 0.25 hn_div_ho_3 = 0.125 value3 = 1.3207880225296039107415499374770e-68 max_value3 = 1.3207880225296039107415499374770e-68 value3 = 1.3207880225296039107415499374770e-68 best_h = 0.001 START of Soultion x[1] = 0.1 y[1] (analytic) = 0 y[1] (numeric) = 0 absolute error = 0 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.1 y[1] (analytic) = 0 y[1] (numeric) = 0 absolute error = 0 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7932 Order of pole = 1.454e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=3.8MB, alloc=2.8MB, time=0.33 x[1] = 0.101 y[1] (analytic) = 0 y[1] (numeric) = -0.0045070555092925096088966444909173 absolute error = 0.0045070555092925096088966444909173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7946 Order of pole = 1.526e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.102 y[1] (analytic) = 0 y[1] (numeric) = -0.0090022300192764363809341399918296 absolute error = 0.0090022300192764363809341399918296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7959 Order of pole = 1.601e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.103 y[1] (analytic) = 0 y[1] (numeric) = -0.01348558675376649957577811242142 absolute error = 0.01348558675376649957577811242142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7972 Order of pole = 1.679e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.104 y[1] (analytic) = 0 y[1] (numeric) = -0.017957188424224004384815031497088 absolute error = 0.017957188424224004384815031497088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7985 Order of pole = 1.762e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=7.6MB, alloc=3.7MB, time=0.68 x[1] = 0.105 y[1] (analytic) = 0 y[1] (numeric) = -0.022417097235282879699736975852798 absolute error = 0.022417097235282879699736975852798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7999 Order of pole = 1.848e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.106 y[1] (analytic) = 0 y[1] (numeric) = -0.026865374890201402837027254076151 absolute error = 0.026865374890201402837027254076151 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8012 Order of pole = 1.938e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.107 y[1] (analytic) = 0 y[1] (numeric) = -0.031302082596240807245023149678618 absolute error = 0.031302082596240807245023149678618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8025 Order of pole = 2.032e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.108 y[1] (analytic) = 0 y[1] (numeric) = -0.035727281069971946822606543486544 absolute error = 0.035727281069971946822606543486544 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8039 Order of pole = 2.130e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.109 y[1] (analytic) = 0 y[1] (numeric) = -0.040141030542511168559021841878606 absolute error = 0.040141030542511168559021841878606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8052 Order of pole = 2.232e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=11.4MB, alloc=3.9MB, time=1.06 x[1] = 0.11 y[1] (analytic) = 0 y[1] (numeric) = -0.044543390764686523751394063642889 absolute error = 0.044543390764686523751394063642889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8065 Order of pole = 2.340e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.111 y[1] (analytic) = 0 y[1] (numeric) = -0.048934421012135427059072534233036 absolute error = 0.048934421012135427059072534233036 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8078 Order of pole = 2.451e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.112 y[1] (analytic) = 0 y[1] (numeric) = -0.053314180090334852101106841110981 absolute error = 0.053314180090334852101106841110981 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8092 Order of pole = 2.568e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.113 y[1] (analytic) = 0 y[1] (numeric) = -0.057682726339565132184407402875815 absolute error = 0.057682726339565132184407402875815 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8105 Order of pole = 2.690e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=15.2MB, alloc=4.0MB, time=1.45 x[1] = 0.114 y[1] (analytic) = 0 y[1] (numeric) = -0.062040117639808415055167234804459 absolute error = 0.062040117639808415055167234804459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8118 Order of pole = 2.818e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.115 y[1] (analytic) = 0 y[1] (numeric) = -0.066386411415582801284908407778599 absolute error = 0.066386411415582801284908407778599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8131 Order of pole = 2.951e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.116 y[1] (analytic) = 0 y[1] (numeric) = -0.070721664640713177025312784181116 absolute error = 0.070721664640713177025312784181116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8145 Order of pole = 3.090e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.117 y[1] (analytic) = 0 y[1] (numeric) = -0.075045933843039733383303156974989 absolute error = 0.075045933843039733383303156974989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8158 Order of pole = 3.234e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.118 y[1] (analytic) = 0 y[1] (numeric) = -0.079359275109065146570406693806139 absolute error = 0.079359275109065146570406693806139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8171 Order of pole = 3.386e-15 memory used=19.0MB, alloc=4.1MB, time=1.83 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.119 y[1] (analytic) = 0 y[1] (numeric) = -0.083661744088541375259246791826123 absolute error = 0.083661744088541375259246791826123 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8184 Order of pole = 3.543e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.12 y[1] (analytic) = 0 y[1] (numeric) = -0.087953395998997014226294839581 absolute error = 0.087953395998997014226294839581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8197 Order of pole = 3.708e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.121 y[1] (analytic) = 0 y[1] (numeric) = -0.092234285630206126365219639434107 absolute error = 0.092234285630206126365219639434107 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.821 Order of pole = 3.880e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.122 y[1] (analytic) = 0 y[1] (numeric) = -0.096504467348599458510969531662132 absolute error = 0.096504467348599458510969531662132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8224 Order of pole = 4.058e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=22.8MB, alloc=4.1MB, time=2.22 x[1] = 0.123 y[1] (analytic) = 0 y[1] (numeric) = -0.10076399510161893021299499003358 absolute error = 0.10076399510161893021299499003358 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8237 Order of pole = 4.245e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.124 y[1] (analytic) = 0 y[1] (numeric) = -0.10501292242201626862886023916754 absolute error = 0.10501292242201626862886023916754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.825 Order of pole = 4.440e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.125 y[1] (analytic) = 0 y[1] (numeric) = -0.10925130243209664706919622712831 absolute error = 0.10925130243209664706919622712831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8263 Order of pole = 4.642e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.126 y[1] (analytic) = 0 y[1] (numeric) = -0.11347918784790816940400568256405 absolute error = 0.11347918784790816940400568256405 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8276 Order of pole = 4.854e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.127 y[1] (analytic) = 0 y[1] (numeric) = -0.11769663098337802753142675614464 absolute error = 0.11769663098337802753142675614464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8289 Order of pole = 5.074e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=26.7MB, alloc=4.1MB, time=2.60 x[1] = 0.128 y[1] (analytic) = 0 y[1] (numeric) = -0.12190368375439614440606346538952 absolute error = 0.12190368375439614440606346538952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8302 Order of pole = 5.304e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.129 y[1] (analytic) = 0 y[1] (numeric) = -0.12610039768284710071794803970375 absolute error = 0.12610039768284710071794803970375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8316 Order of pole = 5.543e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.13 y[1] (analytic) = 0 y[1] (numeric) = -0.13028682390059112919833712305196 absolute error = 0.13028682390059112919833712305196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8329 Order of pole = 5.792e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.131 y[1] (analytic) = 0 y[1] (numeric) = -0.13446301315339494669825620628163 absolute error = 0.13446301315339494669825620628163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8342 Order of pole = 6.051e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=30.5MB, alloc=4.1MB, time=2.99 x[1] = 0.132 y[1] (analytic) = 0 y[1] (numeric) = -0.13862901580481318063355622579979 absolute error = 0.13862901580481318063355622579979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8355 Order of pole = 6.322e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.133 y[1] (analytic) = 0 y[1] (numeric) = -0.1427848818400211331099560218464 absolute error = 0.1427848818400211331099560218464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8368 Order of pole = 6.603e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.134 y[1] (analytic) = 0 y[1] (numeric) = -0.14693066086959961302699434331196 absolute error = 0.14693066086959961302699434331196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8381 Order of pole = 6.896e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.135 y[1] (analytic) = 0 y[1] (numeric) = -0.1510664021332725537050380568064 absolute error = 0.1510664021332725537050380568064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8394 Order of pole = 7.201e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.136 y[1] (analytic) = 0 y[1] (numeric) = -0.15519215450359812107867041963968 absolute error = 0.15519215450359812107867041963968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8407 Order of pole = 7.519e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=34.3MB, alloc=4.1MB, time=3.38 x[1] = 0.137 y[1] (analytic) = 0 y[1] (numeric) = -0.1593079664896140052472404221275 absolute error = 0.1593079664896140052472404221275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.842 Order of pole = 7.849e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.138 y[1] (analytic) = 0 y[1] (numeric) = -0.16341388624043757616355753000733 absolute error = 0.16341388624043757616355753000733 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8433 Order of pole = 8.193e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.139 y[1] (analytic) = 0 y[1] (numeric) = -0.16750996154882157246926860317939 absolute error = 0.16750996154882157246926860317939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8446 Order of pole = 8.551e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.14 y[1] (analytic) = 0 y[1] (numeric) = -0.17159623985466598094509127185893 absolute error = 0.17159623985466598094509127185893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8459 Order of pole = 8.924e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=38.1MB, alloc=4.2MB, time=3.77 x[1] = 0.141 y[1] (analytic) = 0 y[1] (numeric) = -0.17567276824848675273066595751138 absolute error = 0.17567276824848675273066595751138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8472 Order of pole = 9.311e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.142 y[1] (analytic) = 0 y[1] (numeric) = -0.17973959347484199137731828766517 absolute error = 0.17973959347484199137731828766517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8485 Order of pole = 9.714e-15 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.143 y[1] (analytic) = 0 y[1] (numeric) = -0.18379676193571623692260864886741 absolute error = 0.18379676193571623692260864886741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8498 Order of pole = 1.013e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.144 y[1] (analytic) = 0 y[1] (numeric) = -0.18784431969386345951341906380114 absolute error = 0.18784431969386345951341906380114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8511 Order of pole = 1.057e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.145 y[1] (analytic) = 0 y[1] (numeric) = -0.19188231247610936564983852239678 absolute error = 0.19188231247610936564983852239678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8524 Order of pole = 1.102e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=41.9MB, alloc=4.2MB, time=4.16 x[1] = 0.146 y[1] (analytic) = 0 y[1] (numeric) = -0.19591078567661360987071834071969 absolute error = 0.19591078567661360987071834071969 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8537 Order of pole = 1.149e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.147 y[1] (analytic) = 0 y[1] (numeric) = -0.19992978436009249464905099653553 absolute error = 0.19992978436009249464905099653553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.855 Order of pole = 1.198e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.148 y[1] (analytic) = 0 y[1] (numeric) = -0.20393935326500273140695813838477 absolute error = 0.20393935326500273140695813838477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8563 Order of pole = 1.249e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.149 y[1] (analytic) = 0 y[1] (numeric) = -0.20793953680668682589183920016737 absolute error = 0.20793953680668682589183920016737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8576 Order of pole = 1.302e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=45.7MB, alloc=4.2MB, time=4.55 x[1] = 0.15 y[1] (analytic) = 0 y[1] (numeric) = -0.21193037908048064167301580695381 absolute error = 0.21193037908048064167301580695381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8589 Order of pole = 1.357e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.151 y[1] (analytic) = 0 y[1] (numeric) = -0.21591192386478368621799220161502 absolute error = 0.21591192386478368621799220161502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8602 Order of pole = 1.414e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.152 y[1] (analytic) = 0 y[1] (numeric) = -0.21988421462409265488531766813155 absolute error = 0.21988421462409265488531766813155 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8615 Order of pole = 1.473e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.153 y[1] (analytic) = 0 y[1] (numeric) = -0.22384729451199875922315640374953 absolute error = 0.22384729451199875922315640374953 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8628 Order of pole = 1.535e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.154 y[1] (analytic) = 0 y[1] (numeric) = -0.22780120637414935718530768854222 absolute error = 0.22780120637414935718530768854222 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8641 Order of pole = 1.599e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=49.5MB, alloc=4.2MB, time=4.95 x[1] = 0.155 y[1] (analytic) = 0 y[1] (numeric) = -0.23174599275117439426592748678917 absolute error = 0.23174599275117439426592748678917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8654 Order of pole = 1.666e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.156 y[1] (analytic) = 0 y[1] (numeric) = -0.23568169588157815610702122334694 absolute error = 0.23568169588157815610702122334694 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8667 Order of pole = 1.735e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.157 y[1] (analytic) = 0 y[1] (numeric) = -0.23960835770459682484543005781289 absolute error = 0.23960835770459682484543005781289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.868 Order of pole = 1.806e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.158 y[1] (analytic) = 0 y[1] (numeric) = -0.24352601986302232333512520639331 absolute error = 0.24352601986302232333512520639331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8693 Order of pole = 1.881e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=53.4MB, alloc=4.2MB, time=5.33 x[1] = 0.159 y[1] (analytic) = 0 y[1] (numeric) = -0.24743472370599292340284231714016 absolute error = 0.24743472370599292340284231714016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8705 Order of pole = 1.958e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.16 y[1] (analytic) = 0 y[1] (numeric) = -0.25133451029175108646719401008155 absolute error = 0.25133451029175108646719401008155 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8718 Order of pole = 2.038e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.161 y[1] (analytic) = 0 y[1] (numeric) = -0.25522542039036899717023270529715 absolute error = 0.25522542039036899717023270529715 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8731 Order of pole = 2.121e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.162 y[1] (analytic) = 0 y[1] (numeric) = -0.2591074944864422431329109189014 absolute error = 0.2591074944864422431329109189014 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8744 Order of pole = 2.208e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.163 y[1] (analytic) = 0 y[1] (numeric) = -0.26298077278175208654898743771602 absolute error = 0.26298077278175208654898743771602 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8757 Order of pole = 2.297e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=57.2MB, alloc=4.3MB, time=5.72 x[1] = 0.164 y[1] (analytic) = 0 y[1] (numeric) = -0.26684529519789676607271046301575 absolute error = 0.26684529519789676607271046301575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.877 Order of pole = 2.390e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.165 y[1] (analytic) = 0 y[1] (numeric) = -0.27070110137889226033119657223219 absolute error = 0.27070110137889226033119657223219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8783 Order of pole = 2.487e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.166 y[1] (analytic) = 0 y[1] (numeric) = -0.2745482306937429374000074289032 absolute error = 0.2745482306937429374000074289032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8796 Order of pole = 2.587e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.167 y[1] (analytic) = 0 y[1] (numeric) = -0.27838672223898250771725974029282 absolute error = 0.27838672223898250771725974029282 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8808 Order of pole = 2.691e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.168 y[1] (analytic) = 0 y[1] (numeric) = -0.28221661484118569117500645840998 absolute error = 0.28221661484118569117500645840998 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8821 Order of pole = 2.798e-14 memory used=61.0MB, alloc=4.3MB, time=6.11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.169 y[1] (analytic) = 0 y[1] (numeric) = -0.28603794705945100251397875686124 absolute error = 0.28603794705945100251397875686124 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8834 Order of pole = 2.910e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.17 y[1] (analytic) = 0 y[1] (numeric) = -0.28985075718785505265651912341131 absolute error = 0.28985075718785505265651912341131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8847 Order of pole = 3.025e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.171 y[1] (analytic) = 0 y[1] (numeric) = -0.29365508325787875724016481976619 absolute error = 0.29365508325787875724016481976619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.886 Order of pole = 3.145e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.172 y[1] (analytic) = 0 y[1] (numeric) = -0.29745096304080583735841394010127 absolute error = 0.29745096304080583735841394010127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8873 Order of pole = 3.270e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=64.8MB, alloc=4.3MB, time=6.50 x[1] = 0.173 y[1] (analytic) = 0 y[1] (numeric) = -0.30123843405009399137333501090473 absolute error = 0.30123843405009399137333501090473 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8885 Order of pole = 3.398e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.174 y[1] (analytic) = 0 y[1] (numeric) = -0.30501753354371911063453148487353 absolute error = 0.30501753354371911063453148487353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8898 Order of pole = 3.532e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.175 y[1] (analytic) = 0 y[1] (numeric) = -0.30878829852649290601826350919015 absolute error = 0.30878829852649290601826350919015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8911 Order of pole = 3.670e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.176 y[1] (analytic) = 0 y[1] (numeric) = -0.31255076575235430638703154368038 absolute error = 0.31255076575235430638703154368038 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8924 Order of pole = 3.814e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.177 y[1] (analytic) = 0 y[1] (numeric) = -0.31630497172663498436146066647769 absolute error = 0.31630497172663498436146066647769 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8937 Order of pole = 3.962e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=68.6MB, alloc=4.3MB, time=6.90 x[1] = 0.178 y[1] (analytic) = 0 y[1] (numeric) = -0.3200509527082993591907607345189 absolute error = 0.3200509527082993591907607345189 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8949 Order of pole = 4.116e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.179 y[1] (analytic) = 0 y[1] (numeric) = -0.32378874471215942100329385105083 absolute error = 0.32378874471215942100329385105083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8962 Order of pole = 4.275e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.18 y[1] (analytic) = 0 y[1] (numeric) = -0.32751838351106471531282142527336 absolute error = 0.32751838351106471531282142527336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8975 Order of pole = 4.440e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.181 y[1] (analytic) = 0 y[1] (numeric) = -0.33123990463806782134683863869755 absolute error = 0.33123990463806782134683863869755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8988 Order of pole = 4.611e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=72.4MB, alloc=4.3MB, time=7.28 x[1] = 0.182 y[1] (analytic) = 0 y[1] (numeric) = -0.33495334338856565254908894360352 absolute error = 0.33495334338856565254908894360352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9 Order of pole = 4.788e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.183 y[1] (analytic) = 0 y[1] (numeric) = -0.33865873482241690248698324327661 absolute error = 0.33865873482241690248698324327661 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9013 Order of pole = 4.972e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.184 y[1] (analytic) = 0 y[1] (numeric) = -0.34235611376603595436436786083196 absolute error = 0.34235611376603595436436786083196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9026 Order of pole = 5.161e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.185 y[1] (analytic) = 0 y[1] (numeric) = -0.3460455148144635673990737681097 absolute error = 0.3460455148144635673990737681097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9039 Order of pole = 5.358e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.186 y[1] (analytic) = 0 y[1] (numeric) = -0.34972697233341464847115854394102 absolute error = 0.34972697233341464847115854394102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9051 Order of pole = 5.561e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=76.2MB, alloc=4.3MB, time=7.68 x[1] = 0.187 y[1] (analytic) = 0 y[1] (numeric) = -0.35340052046130341267998316072199 absolute error = 0.35340052046130341267998316072199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9064 Order of pole = 5.771e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.188 y[1] (analytic) = 0 y[1] (numeric) = -0.35706619311124623176454727945489 absolute error = 0.35706619311124623176454727945489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9077 Order of pole = 5.989e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.189 y[1] (analytic) = 0 y[1] (numeric) = -0.3607240239730424647401759802285 absolute error = 0.3607240239730424647401759802285 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.909 Order of pole = 6.215e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.19 y[1] (analytic) = 0 y[1] (numeric) = -0.36437404651513356058408097329396 absolute error = 0.36437404651513356058408097329396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9102 Order of pole = 6.448e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=80.1MB, alloc=4.3MB, time=8.06 x[1] = 0.191 y[1] (analytic) = 0 y[1] (numeric) = -0.3680162939865407183609191442687 absolute error = 0.3680162939865407183609191442687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9115 Order of pole = 6.689e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.192 y[1] (analytic) = 0 y[1] (numeric) = -0.3716507994187813858156843617047 absolute error = 0.3716507994187813858156843617047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9128 Order of pole = 6.939e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.193 y[1] (analytic) = 0 y[1] (numeric) = -0.37527759562776487317357231641356 absolute error = 0.37527759562776487317357231641356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.914 Order of pole = 7.197e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.194 y[1] (analytic) = 0 y[1] (numeric) = -0.37889671521566735467336338207714 absolute error = 0.37889671521566735467336338207714 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9153 Order of pole = 7.464e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.195 y[1] (analytic) = 0 y[1] (numeric) = -0.38250819057278652622091802027362 absolute error = 0.38250819057278652622091802027362 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9166 Order of pole = 7.740e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=83.9MB, alloc=4.3MB, time=8.45 x[1] = 0.196 y[1] (analytic) = 0 y[1] (numeric) = -0.38611205387937618348114758664459 absolute error = 0.38611205387937618348114758664459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9178 Order of pole = 8.025e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.197 y[1] (analytic) = 0 y[1] (numeric) = -0.3897083371074609807289158171533 absolute error = 0.3897083371074609807289158171533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9191 Order of pole = 8.320e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.198 y[1] (analytic) = 0 y[1] (numeric) = -0.39329707202263162685037814443083 absolute error = 0.39329707202263162685037814443083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9204 Order of pole = 8.626e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.199 y[1] (analytic) = 0 y[1] (numeric) = -0.39687829018582077102494203415038 absolute error = 0.39687829018582077102494203415038 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9216 Order of pole = 8.941e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.2 y[1] (analytic) = 0 y[1] (numeric) = -0.40045202295505982682302512681793 absolute error = 0.40045202295505982682302512681793 relative error = -1 % memory used=87.7MB, alloc=4.3MB, time=8.85 Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9229 Order of pole = 9.267e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.201 y[1] (analytic) = 0 y[1] (numeric) = -0.40401830148721697972482049894139 absolute error = 0.40401830148721697972482049894139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9242 Order of pole = 9.605e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.202 y[1] (analytic) = 0 y[1] (numeric) = -0.40757715673971661939909852967903 absolute error = 0.40757715673971661939909852967903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9254 Order of pole = 9.953e-14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.203 y[1] (analytic) = 0 y[1] (numeric) = -0.41112861947224043447745807668366 absolute error = 0.41112861947224043447745807668366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9267 Order of pole = 1.031e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.204 y[1] (analytic) = 0 y[1] (numeric) = -0.41467272024841040401718739637441 absolute error = 0.41467272024841040401718739637441 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.928 Order of pole = 1.069e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=91.5MB, alloc=4.3MB, time=9.24 x[1] = 0.205 y[1] (analytic) = 0 y[1] (numeric) = -0.41820948943745391636383441518 absolute error = 0.41820948943745391636383441518 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9292 Order of pole = 1.107e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.206 y[1] (analytic) = 0 y[1] (numeric) = -0.42173895721585124270156835923641 absolute error = 0.42173895721585124270156835923641 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9305 Order of pole = 1.147e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.207 y[1] (analytic) = 0 y[1] (numeric) = -0.42526115356896558921431645587027 absolute error = 0.42526115356896558921431645587027 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9317 Order of pole = 1.188e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.208 y[1] (analytic) = 0 y[1] (numeric) = -0.42877610829265594847238022786572 absolute error = 0.42877610829265594847238022786572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.933 Order of pole = 1.230e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.209 y[1] (analytic) = 0 y[1] (numeric) = -0.43228385099487296740669877995361 absolute error = 0.43228385099487296740669877995361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9343 Order of pole = 1.274e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=95.3MB, alloc=4.3MB, time=9.63 x[1] = 0.21 y[1] (analytic) = 0 y[1] (numeric) = -0.43578441109723804603507703146616 absolute error = 0.43578441109723804603507703146616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9355 Order of pole = 1.319e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.211 y[1] (analytic) = 0 y[1] (numeric) = -0.43927781783660587796050279905344 absolute error = 0.43927781783660587796050279905344 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9368 Order of pole = 1.366e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.212 y[1] (analytic) = 0 y[1] (numeric) = -0.44276410026661064057012730312681 absolute error = 0.44276410026661064057012730312681 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.938 Order of pole = 1.414e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.213 y[1] (analytic) = 0 y[1] (numeric) = -0.44624328725919603982358949426744 absolute error = 0.44624328725919603982358949426744 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9393 Order of pole = 1.464e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=99.1MB, alloc=4.3MB, time=10.03 x[1] = 0.214 y[1] (analytic) = 0 y[1] (numeric) = -0.44971540750612941153015662888306 absolute error = 0.44971540750612941153015662888306 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9406 Order of pole = 1.515e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.215 y[1] (analytic) = 0 y[1] (numeric) = -0.45318048952050007807468297739386 absolute error = 0.45318048952050007807468297739386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9418 Order of pole = 1.568e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.216 y[1] (analytic) = 0 y[1] (numeric) = -0.4566385616382021566617263263627 absolute error = 0.4566385616382021566617263263627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9431 Order of pole = 1.623e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.217 y[1] (analytic) = 0 y[1] (numeric) = -0.46008965201940201230439818546214 absolute error = 0.46008965201940201230439818546214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9443 Order of pole = 1.679e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.218 y[1] (analytic) = 0 y[1] (numeric) = -0.46353378864999054598876728467767 absolute error = 0.46353378864999054598876728467767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9456 Order of pole = 1.738e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=102.9MB, alloc=4.3MB, time=10.42 x[1] = 0.219 y[1] (analytic) = 0 y[1] (numeric) = -0.46697099934302050569501438012858 absolute error = 0.46697099934302050569501438012858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9468 Order of pole = 1.798e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.22 y[1] (analytic) = 0 y[1] (numeric) = -0.47040131174012900525219487537606 absolute error = 0.47040131174012900525219487537606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9481 Order of pole = 1.860e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.221 y[1] (analytic) = 0 y[1] (numeric) = -0.47382475331294543334356716377993 absolute error = 0.47382475331294543334356716377993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9493 Order of pole = 1.924e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.222 y[1] (analytic) = 0 y[1] (numeric) = -0.4772413513644849323631689227947 absolute error = 0.4772413513644849323631689227947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9506 Order of pole = 1.990e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=106.8MB, alloc=4.3MB, time=10.81 x[1] = 0.223 y[1] (analytic) = 0 y[1] (numeric) = -0.48065113303052762425086763502008 absolute error = 0.48065113303052762425086763502008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9519 Order of pole = 2.058e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.224 y[1] (analytic) = 0 y[1] (numeric) = -0.48405412528098375790168856407416 absolute error = 0.48405412528098375790168856407416 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9531 Order of pole = 2.129e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.225 y[1] (analytic) = 0 y[1] (numeric) = -0.48745035492124495025506249790945 absolute error = 0.48745035492124495025506249790945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9544 Order of pole = 2.201e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.226 y[1] (analytic) = 0 y[1] (numeric) = -0.4908398485935216907199816826817 absolute error = 0.4908398485935216907199816826817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9556 Order of pole = 2.276e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.227 y[1] (analytic) = 0 y[1] (numeric) = -0.49422263277816727618216572417713 absolute error = 0.49422263277816727618216572417713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9569 Order of pole = 2.353e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=110.6MB, alloc=4.3MB, time=11.20 x[1] = 0.228 y[1] (analytic) = 0 y[1] (numeric) = -0.49759873379498834146849503006701 absolute error = 0.49759873379498834146849503006701 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9581 Order of pole = 2.433e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.229 y[1] (analytic) = 0 y[1] (numeric) = -0.500968177804542147811457452285 absolute error = 0.500968177804542147811457452285 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9594 Order of pole = 2.515e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.23 y[1] (analytic) = 0 y[1] (numeric) = -0.50433099080942078956147833544695 absolute error = 0.50433099080942078956147833544695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9606 Order of pole = 2.599e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.231 y[1] (analytic) = 0 y[1] (numeric) = -0.50768719865552247713708336157822 absolute error = 0.50768719865552247713708336157822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9619 Order of pole = 2.687e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.232 y[1] (analytic) = 0 y[1] (numeric) = -0.51103682703331005198120927739386 absolute error = 0.51103682703331005198120927739386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9631 Order of pole = 2.777e-13 memory used=114.4MB, alloc=4.3MB, time=11.59 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.233 y[1] (analytic) = 0 y[1] (numeric) = -0.51437990147905688710597506663712 absolute error = 0.51437990147905688710597506663712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9644 Order of pole = 2.869e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.234 y[1] (analytic) = 0 y[1] (numeric) = -0.51771644737608032465721375509773 absolute error = 0.51771644737608032465721375509773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9656 Order of pole = 2.965e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.235 y[1] (analytic) = 0 y[1] (numeric) = -0.52104648995596279981341399066788 absolute error = 0.52104648995596279981341399066788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9669 Order of pole = 3.063e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.236 y[1] (analytic) = 0 y[1] (numeric) = -0.52437005429976079825081453724666 absolute error = 0.52437005429976079825081453724666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9681 Order of pole = 3.165e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=118.2MB, alloc=4.3MB, time=11.98 x[1] = 0.237 y[1] (analytic) = 0 y[1] (numeric) = -0.5276871653392017923566298287458 absolute error = 0.5276871653392017923566298287458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9693 Order of pole = 3.269e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.238 y[1] (analytic) = 0 y[1] (numeric) = -0.53099784785786929935516870670283 absolute error = 0.53099784785786929935516870670283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9706 Order of pole = 3.377e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.239 y[1] (analytic) = 0 y[1] (numeric) = -0.53430212649237620252636109918274 absolute error = 0.53430212649237620252636109918274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9718 Order of pole = 3.488e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.24 y[1] (analytic) = 0 y[1] (numeric) = -0.53760002573352647474235985007757 absolute error = 0.53760002573352647474235985007757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9731 Order of pole = 3.602e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.241 y[1] (analytic) = 0 y[1] (numeric) = -0.54089156992746544162487956112515 absolute error = 0.54089156992746544162487956112515 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9743 Order of pole = 3.720e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=122.0MB, alloc=4.3MB, time=12.37 x[1] = 0.242 y[1] (analytic) = 0 y[1] (numeric) = -0.54417678327681871973322452954857 absolute error = 0.54417678327681871973322452954857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9756 Order of pole = 3.841e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.243 y[1] (analytic) = 0 y[1] (numeric) = -0.54745568984181996333000776140306 absolute error = 0.54745568984181996333000776140306 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9768 Order of pole = 3.966e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.244 y[1] (analytic) = 0 y[1] (numeric) = -0.5507283135414275514378472355755 absolute error = 0.5507283135414275514378472355755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9781 Order of pole = 4.094e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.245 y[1] (analytic) = 0 y[1] (numeric) = -0.55399467815443034509532899244278 absolute error = 0.55399467815443034509532899244278 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9793 Order of pole = 4.227e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=125.8MB, alloc=4.3MB, time=12.78 x[1] = 0.246 y[1] (analytic) = 0 y[1] (numeric) = -0.5572548073205426429437441953841 absolute error = 0.5572548073205426429437441953841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9805 Order of pole = 4.363e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.247 y[1] (analytic) = 0 y[1] (numeric) = -0.56050872454148846152704388209064 absolute error = 0.56050872454148846152704388209064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9818 Order of pole = 4.504e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.248 y[1] (analytic) = 0 y[1] (numeric) = -0.56375645318207526496562514301147 absolute error = 0.56375645318207526496562514301147 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.983 Order of pole = 4.648e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.249 y[1] (analytic) = 0 y[1] (numeric) = -0.56699801647125726696948982512793 absolute error = 0.56699801647125726696948982512793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9843 Order of pole = 4.797e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.25 y[1] (analytic) = 0 y[1] (numeric) = -0.57023343750318842648753467995104 absolute error = 0.57023343750318842648753467995104 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9855 Order of pole = 4.950e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=129.7MB, alloc=4.3MB, time=13.14 x[1] = 0.251 y[1] (analytic) = 0 y[1] (numeric) = -0.57346273923826525664678230868668 absolute error = 0.57346273923826525664678230868668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9867 Order of pole = 5.108e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.252 y[1] (analytic) = 0 y[1] (numeric) = -0.57668594450415956501779630059865 absolute error = 0.57668594450415956501779630059865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.988 Order of pole = 5.270e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.253 y[1] (analytic) = 0 y[1] (numeric) = -0.57990307599684124164990126311712 absolute error = 0.57990307599684124164990126311712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9892 Order of pole = 5.437e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.254 y[1] (analytic) = 0 y[1] (numeric) = -0.58311415628159120975171712614338 absolute error = 0.58311415628159120975171712614338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9905 Order of pole = 5.609e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=133.5MB, alloc=4.3MB, time=13.51 x[1] = 0.255 y[1] (analytic) = 0 y[1] (numeric) = -0.58631920779400465234849358287031 absolute error = 0.58631920779400465234849358287031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9917 Order of pole = 5.786e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.256 y[1] (analytic) = 0 y[1] (numeric) = -0.58951825284098462672737933766106 absolute error = 0.58951825284098462672737933766106 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9929 Order of pole = 5.968e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.257 y[1] (analytic) = 0 y[1] (numeric) = -0.59271131360172617698467444749888 absolute error = 0.59271131360172617698467444749888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9942 Order of pole = 6.155e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.258 y[1] (analytic) = 0 y[1] (numeric) = -0.59589841212869105351489272674743 absolute error = 0.59589841212869105351489272674743 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9954 Order of pole = 6.348e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.259 y[1] (analytic) = 0 y[1] (numeric) = -0.59907957034857314682971281199026 absolute error = 0.59907957034857314682971281199026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9967 Order of pole = 6.546e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=137.3MB, alloc=4.3MB, time=13.88 x[1] = 0.26 y[1] (analytic) = 0 y[1] (numeric) = -0.60225481006325474166523638878376 absolute error = 0.60225481006325474166523638878376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9979 Order of pole = 6.750e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.261 y[1] (analytic) = 0 y[1] (numeric) = -0.60542415295075369592802290145695 absolute error = 0.60542415295075369592802290145695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9991 Order of pole = 6.960e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.262 y[1] (analytic) = 0 y[1] (numeric) = -0.60858762056616164764376158660102 absolute error = 0.60858762056616164764376158660102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7.175e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.263 y[1] (analytic) = 0 y[1] (numeric) = -0.6117452343425733517068106776405 absolute error = 0.6117452343425733517068106776405 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 7.397e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.264 y[1] (analytic) = 0 y[1] (numeric) = -0.61489701559200724688382376458664 absolute error = 0.61489701559200724688382376458664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 7.625e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=141.1MB, alloc=4.3MB, time=14.25 x[1] = 0.265 y[1] (analytic) = 0 y[1] (numeric) = -0.61804298550631735219994491607854 absolute error = 0.61804298550631735219994491607854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 7.860e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.266 y[1] (analytic) = 0 y[1] (numeric) = -0.62118316515809659053124421120519 absolute error = 0.62118316515809659053124421120519 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 8.101e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.267 y[1] (analytic) = 0 y[1] (numeric) = -0.62431757550157163594184715646555 absolute error = 0.62431757550157163594184715646555 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 8.349e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.268 y[1] (analytic) = 0 y[1] (numeric) = -0.62744623737348938003825475497752 absolute error = 0.62744623737348938003825475497752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 8.604e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=144.9MB, alloc=4.3MB, time=14.63 x[1] = 0.269 y[1] (analytic) = 0 y[1] (numeric) = -0.63056917149399511136633160371062 absolute error = 0.63056917149399511136633160371062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 8.866e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.27 y[1] (analytic) = 0 y[1] (numeric) = -0.63368639846750250064803922291354 absolute error = 0.63368639846750250064803922291354 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 9.135e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.271 y[1] (analytic) = 0 y[1] (numeric) = -0.63679793878355548344489869868615 absolute error = 0.63679793878355548344489869868615 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 9.412e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.272 y[1] (analytic) = 0 y[1] (numeric) = -0.63990381281768213064307427808035 absolute error = 0.63990381281768213064307427808035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 9.696e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.273 y[1] (analytic) = 0 y[1] (numeric) = -0.64300404083224059598057711559639 absolute error = 0.64300404083224059598057711559639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 9.989e-13 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=148.7MB, alloc=4.3MB, time=15.02 x[1] = 0.274 y[1] (analytic) = 0 y[1] (numeric) = -0.64609864297725722868010082010636 absolute error = 0.64609864297725722868010082010636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1.029e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.275 y[1] (analytic) = 0 y[1] (numeric) = -0.64918763929125693811112813866632 absolute error = 0.64918763929125693811112813866632 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1.060e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.276 y[1] (analytic) = 0 y[1] (numeric) = -0.65227104970208589628190673110685 absolute error = 0.65227104970208589628190673110685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1.092e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.277 y[1] (analytic) = 0 y[1] (numeric) = -0.65534889402772666285540246726498 absolute error = 0.65534889402772666285540246726498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1.124e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=152.5MB, alloc=4.3MB, time=15.41 x[1] = 0.278 y[1] (analytic) = 0 y[1] (numeric) = -0.65842119197710581629312707964554 absolute error = 0.65842119197710581629312707964554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1.158e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.279 y[1] (analytic) = 0 y[1] (numeric) = -0.66148796315089417365653441882683 absolute error = 0.66148796315089417365653441882683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1.192e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.28 y[1] (analytic) = 0 y[1] (numeric) = -0.66454922704229968053722200460877 absolute error = 0.66454922704229968053722200460877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1.227e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.281 y[1] (analytic) = 0 y[1] (numeric) = -0.66760500303785305154420288808447 absolute error = 0.66760500303785305154420288808447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1.264e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.282 y[1] (analytic) = 0 y[1] (numeric) = -0.67065531041818624074877261468689 absolute error = 0.67065531041818624074877261468689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.301e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=156.4MB, alloc=4.3MB, time=15.79 x[1] = 0.283 y[1] (analytic) = 0 y[1] (numeric) = -0.6737001683588038204747375180304 absolute error = 0.6737001683588038204747375180304 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1.339e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.284 y[1] (analytic) = 0 y[1] (numeric) = -0.67673959593084734582374843450716 absolute error = 0.67673959593084734582374843450716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1.379e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.285 y[1] (analytic) = 0 y[1] (numeric) = -0.67977361210185278134195741711957 absolute error = 0.67977361210185278134195741711957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1.419e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.286 y[1] (analytic) = 0 y[1] (numeric) = -0.68280223573650106526494771571127 absolute error = 0.68280223573650106526494771571127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1.460e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.287 y[1] (analytic) = 0 y[1] (numeric) = -0.6858254855973618858226470283194 absolute error = 0.6858254855973618858226470283194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1.503e-12 memory used=160.2MB, alloc=4.3MB, time=16.18 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.288 y[1] (analytic) = 0 y[1] (numeric) = -0.68884338034563074314449285551374 absolute error = 0.68884338034563074314449285551374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1.547e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.289 y[1] (analytic) = 0 y[1] (numeric) = -0.69185593854185936937725285588968 absolute error = 0.69185593854185936937725285588968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1.592e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.29 y[1] (analytic) = 0 y[1] (numeric) = -0.69486317864667957871339258346875 absolute error = 0.69486317864667957871339258346875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1.638e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.291 y[1] (analytic) = 0 y[1] (numeric) = -0.69786511902152061812651201174189 absolute error = 0.69786511902152061812651201174189 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1.685e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=164.0MB, alloc=4.3MB, time=16.59 x[1] = 0.292 y[1] (analytic) = 0 y[1] (numeric) = -0.70086177792932008872192880970606 absolute error = 0.70086177792932008872192880970606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1.733e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.293 y[1] (analytic) = 0 y[1] (numeric) = -0.70385317353522850673476222167411 absolute error = 0.70385317353522850673476222167411 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1.783e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.294 y[1] (analytic) = 0 y[1] (numeric) = -0.70683932390730757234466212345673 absolute error = 0.70683932390730757234466212345673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1.834e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.295 y[1] (analytic) = 0 y[1] (numeric) = -0.70982024701722221362543253773482 absolute error = 0.70982024701722221362543253773482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1.887e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.296 y[1] (analytic) = 0 y[1] (numeric) = -0.71279596074092647210902032111276 absolute error = 0.71279596074092647210902032111276 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1.941e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=167.8MB, alloc=4.3MB, time=16.99 x[1] = 0.297 y[1] (analytic) = 0 y[1] (numeric) = -0.71576648285934329561648411968434 absolute error = 0.71576648285934329561648411968434 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1.996e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.298 y[1] (analytic) = 0 y[1] (numeric) = -0.71873183105903830319343570094845 absolute error = 0.71873183105903830319343570094845 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.052e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.299 y[1] (analytic) = 0 y[1] (numeric) = -0.72169202293288758618386844941741 absolute error = 0.72169202293288758618386844941741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.111e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.3 y[1] (analytic) = 0 y[1] (numeric) = -0.7246470759807396086840725074323 absolute error = 0.7246470759807396086840725074323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.170e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=171.6MB, alloc=4.3MB, time=17.39 x[1] = 0.301 y[1] (analytic) = 0 y[1] (numeric) = -0.72759700761007126983730233790098 absolute error = 0.72759700761007126983730233790098 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.231e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.302 y[1] (analytic) = 0 y[1] (numeric) = -0.73054183513663818965983314569717 absolute error = 0.73054183513663818965983314569717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.294e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.303 y[1] (analytic) = 0 y[1] (numeric) = -0.73348157578511927932984349907334 absolute error = 0.73348157578511927932984349907334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.359e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.304 y[1] (analytic) = 0 y[1] (numeric) = -0.73641624668975565612202157724007 absolute error = 0.73641624668975565612202157724007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.425e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.305 y[1] (analytic) = 0 y[1] (numeric) = -0.73934586489498396243274366777941 absolute error = 0.73934586489498396243274366777941 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.492e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=175.4MB, alloc=4.3MB, time=17.79 x[1] = 0.306 y[1] (analytic) = 0 y[1] (numeric) = -0.74227044735606414761295071959995 absolute error = 0.74227044735606414761295071959995 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.562e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.307 y[1] (analytic) = 0 y[1] (numeric) = -0.74519001093970177060828967835101 absolute error = 0.74519001093970177060828967835101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.633e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.308 y[1] (analytic) = 0 y[1] (numeric) = -0.74810457242466488069853157380822 absolute error = 0.74810457242466488069853157380822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.706e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.309 y[1] (analytic) = 0 y[1] (numeric) = -0.75101414850239553293057124839477 absolute error = 0.75101414850239553293057124839477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.781e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=179.2MB, alloc=4.3MB, time=18.18 x[1] = 0.31 y[1] (analytic) = 0 y[1] (numeric) = -0.75391875577761599415130028885855 absolute error = 0.75391875577761599415130028885855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.858e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.311 y[1] (analytic) = 0 y[1] (numeric) = -0.7568184107689296948681738939243 absolute error = 0.7568184107689296948681738939243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.937e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.312 y[1] (analytic) = 0 y[1] (numeric) = -0.7597131299094169814962154420085 absolute error = 0.7597131299094169814962154420085 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 3.017e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.313 y[1] (analytic) = 0 y[1] (numeric) = -0.76260292954722572289037334538791 absolute error = 0.76260292954722572289037334538791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 3.100e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.314 y[1] (analytic) = 0 y[1] (numeric) = -0.76548782594615682441141984043103 absolute error = 0.76548782594615682441141984043103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 3.185e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=183.1MB, alloc=4.3MB, time=18.57 x[1] = 0.315 y[1] (analytic) = 0 y[1] (numeric) = -0.76836783528624470213181958911716 absolute error = 0.76836783528624470213181958911716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 3.272e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.316 y[1] (analytic) = 0 y[1] (numeric) = -0.77124297366433276915505870143472 absolute error = 0.77124297366433276915505870143472 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 3.361e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.317 y[1] (analytic) = 0 y[1] (numeric) = -0.77411325709464398539767575682546 absolute error = 0.77411325709464398539767575682546 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 3.452e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.318 y[1] (analytic) = 0 y[1] (numeric) = -0.77697870150934652156754166535646 absolute error = 0.77697870150934652156754166535646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 3.546e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.319 y[1] (analytic) = 0 y[1] (numeric) = -0.77983932275911458746466311585942 absolute error = 0.77983932275911458746466311585942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 3.642e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=186.9MB, alloc=4.3MB, time=18.96 x[1] = 0.32 y[1] (analytic) = 0 y[1] (numeric) = -0.78269513661368447413180550633619 absolute error = 0.78269513661368447413180550633619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 3.740e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.321 y[1] (analytic) = 0 y[1] (numeric) = -0.78554615876240585879141844418474 absolute error = 0.78554615876240585879141844418474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 3.841e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.322 y[1] (analytic) = 0 y[1] (numeric) = -0.78839240481478842092257510690533 absolute error = 0.78839240481478842092257510690533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 3.944e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.323 y[1] (analytic) = 0 y[1] (numeric) = -0.7912338903010438172567830580942 absolute error = 0.7912338903010438172567830580942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 4.049e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=190.7MB, alloc=4.3MB, time=19.35 x[1] = 0.324 y[1] (analytic) = 0 y[1] (numeric) = -0.79407063067262306290446769284331 absolute error = 0.79407063067262306290446769284331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 4.158e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.325 y[1] (analytic) = 0 y[1] (numeric) = -0.79690264130274936526455156039141 absolute error = 0.79690264130274936526455156039141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 4.269e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.326 y[1] (analytic) = 0 y[1] (numeric) = -0.7997299374869464568177366063821 absolute error = 0.7997299374869464568177366063821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 4.382e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.327 y[1] (analytic) = 0 y[1] (numeric) = -0.80255253444356247235972708861989 absolute error = 0.80255253444356247235972708861989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 4.499e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.328 y[1] (analytic) = 0 y[1] (numeric) = -0.80537044731428941569359567839604 absolute error = 0.80537044731428941569359567839604 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 4.618e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=194.5MB, alloc=4.3MB, time=19.75 x[1] = 0.329 y[1] (analytic) = 0 y[1] (numeric) = -0.80818369116467826027068309152951 absolute error = 0.80818369116467826027068309152951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 4.740e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.33 y[1] (analytic) = 0 y[1] (numeric) = -0.81099228098464972774672338907115 absolute error = 0.81099228098464972774672338907115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 4.865e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.331 y[1] (analytic) = 0 y[1] (numeric) = -0.81379623168900078790419556524813 absolute error = 0.81379623168900078790419556524813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 4.993e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.332 y[1] (analytic) = 0 y[1] (numeric) = -0.81659555811790692288311171239444 absolute error = 0.81659555811790692288311171239444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 5.124e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=198.3MB, alloc=4.3MB, time=20.14 x[1] = 0.333 y[1] (analytic) = 0 y[1] (numeric) = -0.81939027503742019816045919368716 absolute error = 0.81939027503742019816045919368716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 5.258e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.334 y[1] (analytic) = 0 y[1] (numeric) = -0.82218039713996318222321686819494 absolute error = 0.82218039713996318222321686819494 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 5.396e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.335 y[1] (analytic) = 0 y[1] (numeric) = -0.82496593904481875639116320043203 absolute error = 0.82496593904481875639116320043203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 5.537e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.336 y[1] (analytic) = 0 y[1] (numeric) = -0.82774691529861585576348841633564 absolute error = 0.82774691529861585576348841633564 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 5.681e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.337 y[1] (analytic) = 0 y[1] (numeric) = -0.83052334037581118178741674361863 absolute error = 0.83052334037581118178741674361863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 5.828e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=202.1MB, alloc=4.3MB, time=20.55 x[1] = 0.338 y[1] (analytic) = 0 y[1] (numeric) = -0.83329522867916692647754280749277 absolute error = 0.83329522867916692647754280749277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 5.979e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.339 y[1] (analytic) = 0 y[1] (numeric) = -0.83606259454022454785129463071839 absolute error = 0.83606259454022454785129463071839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 6.134e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.34 y[1] (analytic) = 0 y[1] (numeric) = -0.83882545221977463568876214629303 absolute error = 0.83882545221977463568876214629303 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 6.292e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.341 y[1] (analytic) = 0 y[1] (numeric) = -0.84158381590832290627398392882105 absolute error = 0.84158381590832290627398392882105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 6.454e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=206.0MB, alloc=4.3MB, time=20.95 x[1] = 0.342 y[1] (analytic) = 0 y[1] (numeric) = -0.84433769972655236432957673666513 absolute error = 0.84433769972655236432957673666513 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 6.620e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.343 y[1] (analytic) = 0 y[1] (numeric) = -0.84708711772578166991723464732896 absolute error = 0.84708711772578166991723464732896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 6.789e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.344 y[1] (analytic) = 0 y[1] (numeric) = -0.84983208388841974764303071867898 absolute error = 0.84983208388841974764303071867898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 6.963e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.345 y[1] (analytic) = 0 y[1] (numeric) = -0.85257261212841667507853928773439 absolute error = 0.85257261212841667507853928773439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 7.141e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.346 y[1] (analytic) = 0 y[1] (numeric) = -0.85530871629171088688647768420974 absolute error = 0.85530871629171088688647768420974 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 7.323e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=209.8MB, alloc=4.3MB, time=21.35 x[1] = 0.347 y[1] (analytic) = 0 y[1] (numeric) = -0.85804041015667273072276010845194 absolute error = 0.85804041015667273072276010845194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 7.509e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.348 y[1] (analytic) = 0 y[1] (numeric) = -0.86076770743454441057548286240692 absolute error = 0.86076770743454441057548286240692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 7.699e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.349 y[1] (analytic) = 0 y[1] (numeric) = -0.86349062176987635279533950222631 absolute error = 0.86349062176987635279533950222631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 7.894e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.35 y[1] (analytic) = 0 y[1] (numeric) = -0.86620916674096002967121856794861 absolute error = 0.86620916674096002967121856794861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 8.093e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.351 y[1] (analytic) = 0 y[1] (numeric) = -0.86892335586025727500918837362131 absolute error = 0.86892335586025727500918837362131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 8.297e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=213.6MB, alloc=4.3MB, time=21.75 x[1] = 0.352 y[1] (analytic) = 0 y[1] (numeric) = -0.87163320257482612578264719033688 absolute error = 0.87163320257482612578264719033688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 8.505e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.353 y[1] (analytic) = 0 y[1] (numeric) = -0.87433872026674322353603852866353 absolute error = 0.87433872026674322353603852866353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 8.718e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.354 y[1] (analytic) = 0 y[1] (numeric) = -0.87703992225352280884412683153377 absolute error = 0.87703992225352280884412683153377 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 8.936e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.355 y[1] (analytic) = 0 y[1] (numeric) = -0.87973682178853234175332661012778 absolute error = 0.87973682178853234175332661012778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 9.159e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=217.4MB, alloc=4.3MB, time=22.15 x[1] = 0.356 y[1] (analytic) = 0 y[1] (numeric) = -0.88242943206140478076090693973398 absolute error = 0.88242943206140478076090693973398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 9.388e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.357 y[1] (analytic) = 0 y[1] (numeric) = -0.88511776619844755252198346534124 absolute error = 0.88511776619844755252198346534124 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 9.621e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.358 y[1] (analytic) = 0 y[1] (numeric) = -0.8878018372630482441129929523575 absolute error = 0.8878018372630482441129929523575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 9.859e-12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.359 y[1] (analytic) = 0 y[1] (numeric) = -0.89048165825607704932375336038261 absolute error = 0.89048165825607704932375336038261 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1.010e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.36 y[1] (analytic) = 0 y[1] (numeric) = -0.89315724211628600009817890156984 absolute error = 0.89315724211628600009817890156984 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 1.035e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=221.2MB, alloc=4.3MB, time=22.55 x[1] = 0.361 y[1] (analytic) = 0 y[1] (numeric) = -0.89582860172070501389617911517085 absolute error = 0.89582860172070501389617911517085 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1.061e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.362 y[1] (analytic) = 0 y[1] (numeric) = -0.89849574988503478740615923435976 absolute error = 0.89849574988503478740615923435976 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 1.087e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.363 y[1] (analytic) = 0 y[1] (numeric) = -0.90115869936403656669879265272753 absolute error = 0.90115869936403656669879265272753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1.114e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.364 y[1] (analytic) = 0 y[1] (numeric) = -0.90381746285191882357829273475703 absolute error = 0.90381746285191882357829273475703 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 1.141e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=225.0MB, alloc=4.3MB, time=22.94 x[1] = 0.365 y[1] (analytic) = 0 y[1] (numeric) = -0.90647205298272086755720916488587 absolute error = 0.90647205298272086755720916488587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 1.169e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.366 y[1] (analytic) = 0 y[1] (numeric) = -0.90912248233069342255475307289914 absolute error = 0.90912248233069342255475307289914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 1.197e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.367 y[1] (analytic) = 0 y[1] (numeric) = -0.91176876341067619709675584364283 absolute error = 0.91176876341067619709675584364283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 1.226e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.368 y[1] (analytic) = 0 y[1] (numeric) = -0.91441090867847247647753028893094 absolute error = 0.91441090867847247647753028893094 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1.256e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.369 y[1] (analytic) = 0 y[1] (numeric) = -0.91704893053122076503007212354045 absolute error = 0.91704893053122076503007212354045 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 1.287e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=228.8MB, alloc=4.3MB, time=23.33 x[1] = 0.37 y[1] (analytic) = 0 y[1] (numeric) = -0.91968284130776350634115774588755 absolute error = 0.91968284130776350634115774588755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 1.318e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.371 y[1] (analytic) = 0 y[1] (numeric) = -0.92231265328901290894190536827949 absolute error = 0.92231265328901290894190536827949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1.349e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.372 y[1] (analytic) = 0 y[1] (numeric) = -0.92493837869831390470221563748903 absolute error = 0.92493837869831390470221563748903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1.382e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.373 y[1] (analytic) = 0 y[1] (numeric) = -0.92756002970180426685914095971252 absolute error = 0.92756002970180426685914095971252 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 1.415e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.374 y[1] (analytic) = 0 y[1] (numeric) = -0.93017761840877191431459656583181 absolute error = 0.93017761840877191431459656583181 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1.449e-11 memory used=232.7MB, alloc=4.3MB, time=23.72 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.375 y[1] (analytic) = 0 y[1] (numeric) = -0.9327911568720094285468685250547 absolute error = 0.9327911568720094285468685250547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1.484e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.376 y[1] (analytic) = 0 y[1] (numeric) = -0.93540065708816580919304285563588 absolute error = 0.93540065708816580919304285563588 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 1.519e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.377 y[1] (analytic) = 0 y[1] (numeric) = -0.93800613099809549407572481111727 absolute error = 0.93800613099809549407572481111727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1.555e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.378 y[1] (analytic) = 0 y[1] (numeric) = -0.94060759048720466916718834875489 absolute error = 0.94060759048720466916718834875489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1.592e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=236.5MB, alloc=4.3MB, time=24.11 x[1] = 0.379 y[1] (analytic) = 0 y[1] (numeric) = -0.94320504738579489370734349819256 absolute error = 0.94320504738579489370734349819256 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1.630e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.38 y[1] (analytic) = 0 y[1] (numeric) = -0.94579851346940406541858538975944 absolute error = 0.94579851346940406541858538975944 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1.668e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.381 y[1] (analytic) = 0 y[1] (numeric) = -0.94838800045914475049064536889146 absolute error = 0.94838800045914475049064536889146 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 1.708e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.382 y[1] (analytic) = 0 y[1] (numeric) = -0.95097352002203990274195494839305 absolute error = 0.95097352002203990274195494839305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1.748e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.383 y[1] (analytic) = 0 y[1] (numeric) = -0.95355508377135599610071108977105 absolute error = 0.95355508377135599610071108977105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 1.789e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=240.3MB, alloc=4.3MB, time=24.51 x[1] = 0.384 y[1] (analytic) = 0 y[1] (numeric) = -0.95613270326693359428875092655646 absolute error = 0.95613270326693359428875092655646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 1.831e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.385 y[1] (analytic) = 0 y[1] (numeric) = -0.95870639001551538133446071388662 absolute error = 0.95870639001551538133446071388662 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1.874e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.386 y[1] (analytic) = 0 y[1] (numeric) = -0.96127615547107167628721336498258 absolute error = 0.96127615547107167628721336498258 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1.918e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.387 y[1] (analytic) = 0 y[1] (numeric) = -0.96384201103512345525520794809401 absolute error = 0.96384201103512345525520794809401 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 1.963e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=244.1MB, alloc=4.3MB, time=24.91 x[1] = 0.388 y[1] (analytic) = 0 y[1] (numeric) = -0.96640396805706290364103016342671 absolute error = 0.96640396805706290364103016342671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 2.008e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.389 y[1] (analytic) = 0 y[1] (numeric) = -0.96896203783447152120472294863639 absolute error = 0.96896203783447152120472294863639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 2.055e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.39 y[1] (analytic) = 0 y[1] (numeric) = -0.97151623161343580234260946651441 absolute error = 0.97151623161343580234260946651441 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 2.103e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.391 y[1] (analytic) = 0 y[1] (numeric) = -0.97406656058886051373150593431477 absolute error = 0.97406656058886051373150593431477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 2.151e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.392 y[1] (analytic) = 0 y[1] (numeric) = -0.97661303590477959125225880698137 absolute error = 0.97661303590477959125225880698137 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 2.201e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=247.9MB, alloc=4.3MB, time=25.31 x[1] = 0.393 y[1] (analytic) = 0 y[1] (numeric) = -0.97915566865466467787370008355017 absolute error = 0.97915566865466467787370008355017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 2.252e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.394 y[1] (analytic) = 0 y[1] (numeric) = -0.98169446988173132394809692527775 absolute error = 0.98169446988173132394809692527775 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 2.303e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.395 y[1] (analytic) = 0 y[1] (numeric) = -0.98422945057924287114193890446755 absolute error = 0.98422945057924287114193890446755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 2.356e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.396 y[1] (analytic) = 0 y[1] (numeric) = -0.98676062169081204100142017442206 absolute error = 0.98676062169081204100142017442206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 2.410e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=251.7MB, alloc=4.3MB, time=25.71 x[1] = 0.397 y[1] (analytic) = 0 y[1] (numeric) = -0.98928799411070024893019736470272 absolute error = 0.98928799411070024893019736470272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 2.465e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.398 y[1] (analytic) = 0 y[1] (numeric) = -0.99181157868411466413790032508818 absolute error = 0.99181157868411466413790032508818 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 2.521e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.399 y[1] (analytic) = 0 y[1] (numeric) = -0.9943313862075030359014057820459 absolute error = 0.9943313862075030359014057820459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.579e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.4 y[1] (analytic) = 0 y[1] (numeric) = -0.99684742742884630626701789240306 absolute error = 0.99684742742884630626701789240306 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.637e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.401 y[1] (analytic) = 0 y[1] (numeric) = -0.99935971304794902911039947395824 absolute error = 0.99935971304794902911039947395824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 2.697e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=255.5MB, alloc=4.3MB, time=26.11 x[1] = 0.402 y[1] (analytic) = 0 y[1] (numeric) = -1.0018682537167276152623287814537 absolute error = 1.0018682537167276152623287814537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 2.758e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.403 y[1] (analytic) = 0 y[1] (numeric) = -1.0043730600394964232020850151243 absolute error = 1.0043730600394964232020850151243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.820e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.404 y[1] (analytic) = 0 y[1] (numeric) = -1.0068741425732517146164577430093 absolute error = 1.0068741425732517146164577430093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 2.884e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.405 y[1] (analytic) = 0 y[1] (numeric) = -1.0093715118279534939209980326425 absolute error = 1.0093715118279534939209980326425 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.949e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.406 y[1] (analytic) = 0 y[1] (numeric) = -1.0118651782668052506411497599331 absolute error = 1.0118651782668052506411497599331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 3.015e-11 memory used=259.4MB, alloc=4.3MB, time=26.51 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.407 y[1] (analytic) = 0 y[1] (numeric) = -1.0143551523065316233542862143279 absolute error = 1.0143551523065316233542862143279 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 3.082e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.408 y[1] (analytic) = 0 y[1] (numeric) = -1.016841444317654003699398147084 absolute error = 1.016841444317654003699398147084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 3.151e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.409 y[1] (analytic) = 0 y[1] (numeric) = -1.0193240646247640987692036794103 absolute error = 1.0193240646247640987692036794103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 3.221e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.41 y[1] (analytic) = 0 y[1] (numeric) = -1.0218030235067954700097473257682 absolute error = 1.0218030235067954700097473257682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 3.293e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=263.2MB, alloc=4.3MB, time=26.90 x[1] = 0.411 y[1] (analytic) = 0 y[1] (numeric) = -1.0242783311972930665650945743983 absolute error = 1.0242783311972930665650945743983 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 3.366e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.412 y[1] (analytic) = 0 y[1] (numeric) = -1.0267499978846807708194802276607 absolute error = 1.0267499978846807708194802276607 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 3.441e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.413 y[1] (analytic) = 0 y[1] (numeric) = -1.0292180337125269737062037031709 absolute error = 1.0292180337125269737062037031709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.183 Order of pole = 3.517e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.414 y[1] (analytic) = 0 y[1] (numeric) = -1.0316824487798081971716538286553 absolute error = 1.0316824487798081971716538286553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 3.595e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.415 y[1] (analytic) = 0 y[1] (numeric) = -1.0341432531411707810040608491772 absolute error = 1.0341432531411707810040608491772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 3.674e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=267.0MB, alloc=4.3MB, time=27.29 x[1] = 0.416 y[1] (analytic) = 0 y[1] (numeric) = -1.0366004568071906510598863428458 absolute error = 1.0366004568071906510598863428458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 3.754e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.417 y[1] (analytic) = 0 y[1] (numeric) = -1.0390540697446311857461448592552 absolute error = 1.0390540697446311857461448592552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 3.837e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.418 y[1] (analytic) = 0 y[1] (numeric) = -1.0415041018766991974443771070214 absolute error = 1.0415041018766991974443771070214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 3.921e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.419 y[1] (analytic) = 0 y[1] (numeric) = -1.043950563083299045391436574082 absolute error = 1.043950563083299045391436574082 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 4.006e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=270.8MB, alloc=4.3MB, time=27.68 x[1] = 0.42 y[1] (analytic) = 0 y[1] (numeric) = -1.0463934632012848963636831095848 absolute error = 1.0463934632012848963636831095848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 4.094e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.421 y[1] (analytic) = 0 y[1] (numeric) = -1.0488328120247111493445721571334 absolute error = 1.0488328120247111493445721571334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 4.183e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.422 y[1] (analytic) = 0 y[1] (numeric) = -1.0512686193050810401909613128581 absolute error = 1.0512686193050810401909613128581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 4.274e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.423 y[1] (analytic) = 0 y[1] (numeric) = -1.0537008947515934421507013682378 absolute error = 1.0537008947515934421507013682378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 4.366e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.424 y[1] (analytic) = 0 y[1] (numeric) = -1.0561296480313878779232120338596 absolute error = 1.0561296480313878779232120338596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 4.461e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=274.6MB, alloc=4.3MB, time=28.08 x[1] = 0.425 y[1] (analytic) = 0 y[1] (numeric) = -1.0585548887697877587957385346564 absolute error = 1.0585548887697877587957385346564 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 4.557e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.426 y[1] (analytic) = 0 y[1] (numeric) = -1.0609766265505418662308199833471 absolute error = 1.0609766265505418662308199833471 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 4.655e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.427 y[1] (analytic) = 0 y[1] (numeric) = -1.0633948709160640911251499904091 absolute error = 1.0633948709160640911251499904091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 4.756e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.428 y[1] (analytic) = 0 y[1] (numeric) = -1.0658096313676714458064508138019 absolute error = 1.0658096313676714458064508138019 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 4.858e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=278.4MB, alloc=4.3MB, time=28.47 x[1] = 0.429 y[1] (analytic) = 0 y[1] (numeric) = -1.0682209173658203636831912865366 absolute error = 1.0682209173658203636831912865366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 4.962e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.43 y[1] (analytic) = 0 y[1] (numeric) = -1.070628738330341301311932915223 absolute error = 1.070628738330341301311932915223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 5.068e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.431 y[1] (analytic) = 0 y[1] (numeric) = -1.0730331036406716574987653763198 absolute error = 1.0730331036406716574987653763198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 5.176e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.432 y[1] (analytic) = 0 y[1] (numeric) = -1.0754340226360870239046699303887 absolute error = 1.0754340226360870239046699303887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 5.286e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.433 y[1] (analytic) = 0 y[1] (numeric) = -1.0778315046159307814797051275989 absolute error = 1.0778315046159307814797051275989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 5.399e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=282.2MB, alloc=4.3MB, time=28.86 x[1] = 0.434 y[1] (analytic) = 0 y[1] (numeric) = -1.0802255588398420569076220023768 absolute error = 1.0802255588398420569076220023768 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 5.513e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.435 y[1] (analytic) = 0 y[1] (numeric) = -1.0826161945279820531008644718402 absolute error = 1.0826161945279820531008644718402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 5.630e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.436 y[1] (analytic) = 0 y[1] (numeric) = -1.0850034208612587676458738850857 absolute error = 1.0850034208612587676458738850857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 5.749e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.437 y[1] (analytic) = 0 y[1] (numeric) = -1.0873872469815501129601739405863 absolute error = 1.0873872469815501129601739405863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 5.870e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.438 y[1] (analytic) = 0 y[1] (numeric) = -1.0897676819919254517858431127773 absolute error = 1.0897676819919254517858431127773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 5.994e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=286.1MB, alloc=4.3MB, time=29.26 x[1] = 0.439 y[1] (analytic) = 0 y[1] (numeric) = -1.0921447349568655615086662114507 absolute error = 1.0921447349568655615086662114507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 6.119e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.44 y[1] (analytic) = 0 y[1] (numeric) = -1.0945184149024810406584749286482 absolute error = 1.0945184149024810406584749286482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 6.248e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.441 y[1] (analytic) = 0 y[1] (numeric) = -1.0968887308167291708139196774272 absolute error = 1.0968887308167291708139196774272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 6.378e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.442 y[1] (analytic) = 0 y[1] (numeric) = -1.0992556916496292470041424411754 absolute error = 1.0992556916496292470041424411754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 6.512e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=289.9MB, alloc=4.3MB, time=29.65 x[1] = 0.443 y[1] (analytic) = 0 y[1] (numeric) = -1.1016193063134763895705237487293 absolute error = 1.1016193063134763895705237487293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 6.647e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.444 y[1] (analytic) = 0 y[1] (numeric) = -1.1039795836830538503238375544862 absolute error = 1.1039795836830538503238375544862 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 6.786e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.445 y[1] (analytic) = 0 y[1] (numeric) = -1.1063365325958438257057472823725 absolute error = 1.1063365325958438257057472823725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 6.927e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.446 y[1] (analytic) = 0 y[1] (numeric) = -1.1086901618522367895385963955481 absolute error = 1.1086901618522367895385963955481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 7.070e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.447 y[1] (analytic) = 0 y[1] (numeric) = -1.1110404802157393578238696429117 absolute error = 1.1110404802157393578238696429117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 7.216e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=293.7MB, alloc=4.3MB, time=30.04 x[1] = 0.448 y[1] (analytic) = 0 y[1] (numeric) = -1.1133874964131806979275089229516 absolute error = 1.1133874964131806979275089229516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 7.365e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.449 y[1] (analytic) = 0 y[1] (numeric) = -1.1157312191349174943694430568053 absolute error = 1.1157312191349174943694430568053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 7.517e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.45 y[1] (analytic) = 0 y[1] (numeric) = -1.1180716570350374833152164807134 absolute error = 1.1180716570350374833152164807134 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 7.672e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.451 y[1] (analytic) = 0 y[1] (numeric) = -1.1204088187315615677494609984375 absolute error = 1.1204088187315615677494609984375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 7.829e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=297.5MB, alloc=4.3MB, time=30.44 x[1] = 0.452 y[1] (analytic) = 0 y[1] (numeric) = -1.1227427128066445251941305579099 absolute error = 1.1227427128066445251941305579099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 7.990e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.453 y[1] (analytic) = 0 y[1] (numeric) = -1.1250733478067743197188950472544 absolute error = 1.1250733478067743197188950472544 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 8.153e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.454 y[1] (analytic) = 0 y[1] (numeric) = -1.1274007322429700298768490862465 absolute error = 1.1274007322429700298768490862465 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 8.319e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.455 y[1] (analytic) = 0 y[1] (numeric) = -1.1297248745909784040857196887072 absolute error = 1.1297248745909784040857196887072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 8.489e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.456 y[1] (analytic) = 0 y[1] (numeric) = -1.1320457832914690548630366797807 absolute error = 1.1320457832914690548630366797807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 8.661e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=301.3MB, alloc=4.3MB, time=30.84 x[1] = 0.457 y[1] (analytic) = 0 y[1] (numeric) = -1.1343634667502283032132462788039 absolute error = 1.1343634667502283032132462788039 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 8.837e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.458 y[1] (analytic) = 0 y[1] (numeric) = -1.136677933338351684355485928197 absolute error = 1.136677933338351684355485928197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 9.016e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.459 y[1] (analytic) = 0 y[1] (numeric) = -1.1389891913924351258726820982887 absolute error = 1.1389891913924351258726820982887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 9.198e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.46 y[1] (analytic) = 0 y[1] (numeric) = -1.1412972492147648092557674729573 absolute error = 1.1412972492147648092557674729573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 9.384e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.461 y[1] (analytic) = 0 y[1] (numeric) = -1.1436021150735057257111248728858 absolute error = 1.1436021150735057257111248728858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 9.573e-11 memory used=305.1MB, alloc=4.3MB, time=31.23 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.462 y[1] (analytic) = 0 y[1] (numeric) = -1.1459037972028889369948379562192 absolute error = 1.1459037972028889369948379562192 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 9.765e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.463 y[1] (analytic) = 0 y[1] (numeric) = -1.1482023038033975519339488041745 absolute error = 1.1482023038033975519339488041745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 9.961e-11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.464 y[1] (analytic) = 0 y[1] (numeric) = -1.150497643041951429192675801979 absolute error = 1.150497643041951429192675801979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 1.016e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.465 y[1] (analytic) = 0 y[1] (numeric) = -1.1527898230520906167404178072938 absolute error = 1.1527898230520906167404178072938 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 1.036e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=309.0MB, alloc=4.3MB, time=31.63 x[1] = 0.466 y[1] (analytic) = 0 y[1] (numeric) = -1.1550788519341575383783486936417 absolute error = 1.1550788519341575383783486936417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1.057e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.467 y[1] (analytic) = 0 y[1] (numeric) = -1.1573647377554779375824763877522 absolute error = 1.1573647377554779375824763877522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1.078e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.468 y[1] (analytic) = 0 y[1] (numeric) = -1.1596474885505405888231890946566 absolute error = 1.1596474885505405888231890946566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 1.100e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.469 y[1] (analytic) = 0 y[1] (numeric) = -1.1619271123211757864245253125622 absolute error = 1.1619271123211757864245253125622 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 1.121e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.47 y[1] (analytic) = 0 y[1] (numeric) = -1.1642036170367326209306704502984 absolute error = 1.1642036170367326209306704502984 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.25 Order of pole = 1.144e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=312.8MB, alloc=4.3MB, time=32.03 x[1] = 0.471 y[1] (analytic) = 0 y[1] (numeric) = -1.1664770106342550528524885195947 absolute error = 1.1664770106342550528524885195947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1.166e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.472 y[1] (analytic) = 0 y[1] (numeric) = -1.1687473010186567935732298029921 absolute error = 1.1687473010186567935732298029921 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 1.189e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.473 y[1] (analytic) = 0 y[1] (numeric) = -1.1710144960628950030999020877868 absolute error = 1.1710144960628950030999020877868 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.253 Order of pole = 1.213e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.474 y[1] (analytic) = 0 y[1] (numeric) = -1.1732786036081428142551416681237 absolute error = 1.1732786036081428142551416681237 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1.236e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=316.6MB, alloc=4.3MB, time=32.42 x[1] = 0.475 y[1] (analytic) = 0 y[1] (numeric) = -1.1755396314639606928137586788128 absolute error = 1.1755396314639606928137586788128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 1.261e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.476 y[1] (analytic) = 0 y[1] (numeric) = -1.1777975874084666429984474273621 absolute error = 1.1777975874084666429984474273621 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1.285e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.477 y[1] (analytic) = 0 y[1] (numeric) = -1.1800524791885052676604343884711 absolute error = 1.1800524791885052676604343884711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1.310e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.478 y[1] (analytic) = 0 y[1] (numeric) = -1.1823043145198156923830727304714 absolute error = 1.1823043145198156923830727304714 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.259 Order of pole = 1.336e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.479 y[1] (analytic) = 0 y[1] (numeric) = -1.1845531010871983626595711254974 absolute error = 1.1845531010871983626595711254974 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 1.362e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=320.4MB, alloc=4.3MB, time=32.81 x[1] = 0.48 y[1] (analytic) = 0 y[1] (numeric) = -1.1867988465446807232101547787018 absolute error = 1.1867988465446807232101547787018 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 1.388e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.481 y[1] (analytic) = 0 y[1] (numeric) = -1.1890415585156817884189868730951 absolute error = 1.1890415585156817884189868730951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1.415e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.482 y[1] (analytic) = 0 y[1] (numeric) = -1.1912812445931756127871178921786 absolute error = 1.1912812445931756127871178921786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 1.443e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.483 y[1] (analytic) = 0 y[1] (numeric) = -1.1935179123398536702145676269318 absolute error = 1.1935179123398536702145676269318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 1.471e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=324.2MB, alloc=4.3MB, time=33.20 x[1] = 0.484 y[1] (analytic) = 0 y[1] (numeric) = -1.1957515692882861508423693170844 absolute error = 1.1957515692882861508423693170844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 1.499e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.485 y[1] (analytic) = 0 y[1] (numeric) = -1.1979822229410821841040066827225 absolute error = 1.1979822229410821841040066827225 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.267 Order of pole = 1.528e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.486 y[1] (analytic) = 0 y[1] (numeric) = -1.2002098807710489965551420763832 absolute error = 1.2002098807710489965551420763832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1.557e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.487 y[1] (analytic) = 0 y[1] (numeric) = -1.2024345502213500129708572725324 absolute error = 1.2024345502213500129708572725324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.27 Order of pole = 1.587e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.488 y[1] (analytic) = 0 y[1] (numeric) = -1.2046562387056619091207972927246 absolute error = 1.2046562387056619091207972927246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 1.617e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=328.0MB, alloc=4.3MB, time=33.60 x[1] = 0.489 y[1] (analytic) = 0 y[1] (numeric) = -1.2068749536083306245546120582075 absolute error = 1.2068749536083306245546120582075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 1.648e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.49 y[1] (analytic) = 0 y[1] (numeric) = -1.2090907022845263436529206180625 absolute error = 1.2090907022845263436529206180625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 1.680e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.491 y[1] (analytic) = 0 y[1] (numeric) = -1.2113034920603974531226684024319 absolute error = 1.2113034920603974531226684024319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 1.712e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.492 y[1] (analytic) = 0 y[1] (numeric) = -1.213513330233223484040199708793 absolute error = 1.213513330233223484040199708793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 1.744e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.493 y[1] (analytic) = 0 y[1] (numeric) = -1.2157202240715670464706158841046 absolute error = 1.2157202240715670464706158841046 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 1.777e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=331.8MB, alloc=4.3MB, time=34.02 x[1] = 0.494 y[1] (analytic) = 0 y[1] (numeric) = -1.2179241808154247646180249822976 absolute error = 1.2179241808154247646180249822976 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1.811e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.495 y[1] (analytic) = 0 y[1] (numeric) = -1.2201252076763772203881017443497 absolute error = 1.2201252076763772203881017443497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 1.845e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.496 y[1] (analytic) = 0 y[1] (numeric) = -1.2223233118377379131719583786343 absolute error = 1.2223233118377379131719583786343 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 1.880e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.497 y[1] (analytic) = 0 y[1] (numeric) = -1.2245185004547012435886677443805 absolute error = 1.2245185004547012435886677443805 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 1.916e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=335.7MB, alloc=4.3MB, time=34.42 x[1] = 0.498 y[1] (analytic) = 0 y[1] (numeric) = -1.2267107806544895288528722116627 absolute error = 1.2267107806544895288528722116627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 1.952e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.499 y[1] (analytic) = 0 y[1] (numeric) = -1.2289001595364990573637448551079 absolute error = 1.2289001595364990573637448551079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 1.988e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.5 y[1] (analytic) = 0 y[1] (numeric) = -1.2310866441724451900421360185529 absolute error = 1.2310866441724451900421360185529 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 2.025e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.501 y[1] (analytic) = 0 y[1] (numeric) = -1.2332702416065065158740290609658 absolute error = 1.2332702416065065158740290609658 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 2.063e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.502 y[1] (analytic) = 0 y[1] (numeric) = -1.2354509588554680690504357688864 absolute error = 1.2354509588554680690504357688864 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.287 Order of pole = 2.102e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=339.5MB, alloc=4.3MB, time=34.80 x[1] = 0.503 y[1] (analytic) = 0 y[1] (numeric) = -1.2376288029088636150265761166991 absolute error = 1.2376288029088636150265761166991 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 2.141e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.504 y[1] (analytic) = 0 y[1] (numeric) = -1.2398037807291170127566005013608 absolute error = 1.2398037807291170127566005013608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 2.181e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.505 y[1] (analytic) = 0 y[1] (numeric) = -1.2419758992516826602942171082204 absolute error = 1.2419758992516826602942171082204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 2.221e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.506 y[1] (analytic) = 0 y[1] (numeric) = -1.2441451653851850308843746205103 absolute error = 1.2441451653851850308843746205103 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 2.263e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=343.3MB, alloc=4.3MB, time=35.19 x[1] = 0.507 y[1] (analytic) = 0 y[1] (numeric) = -1.2463115860115573066066131124871 absolute error = 1.2463115860115573066066131124871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 2.304e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.508 y[1] (analytic) = 0 y[1] (numeric) = -1.2484751679861791165668258133543 absolute error = 1.2484751679861791165668258133543 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 2.347e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.509 y[1] (analytic) = 0 y[1] (numeric) = -1.2506359181380133865709637456682 absolute error = 1.2506359181380133865709637456682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 2.390e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.51 y[1] (analytic) = 0 y[1] (numeric) = -1.2527938432697423071516563774618 absolute error = 1.2527938432697423071516563774618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.434e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.511 y[1] (analytic) = 0 y[1] (numeric) = -1.2549489501579024267568068298562 absolute error = 1.2549489501579024267568068298562 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 2.479e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=347.1MB, alloc=4.3MB, time=35.58 x[1] = 0.512 y[1] (analytic) = 0 y[1] (numeric) = -1.2571012455530188768479423966004 absolute error = 1.2571012455530188768479423966004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.299 Order of pole = 2.524e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.513 y[1] (analytic) = 0 y[1] (numeric) = -1.2592507361797387355954527996443 absolute error = 1.2592507361797387355954527996443 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 2.570e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.514 y[1] (analytic) = 0 y[1] (numeric) = -1.2613974287369635367978224607318 absolute error = 1.2613974287369635367978224607318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 2.617e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.515 y[1] (analytic) = 0 y[1] (numeric) = -1.2635413298979809305925519413721 absolute error = 1.2635413298979809305925519413721 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 2.665e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.516 y[1] (analytic) = 0 y[1] (numeric) = -1.2656824463105955024676605124148 absolute error = 1.2656824463105955024676605124148 relative error = -1 % Correct digits = -1 h = 0.001 memory used=350.9MB, alloc=4.3MB, time=35.97 Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 2.714e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.517 y[1] (analytic) = 0 y[1] (numeric) = -1.2678207845972587570244595702638 absolute error = 1.2678207845972587570244595702638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 2.763e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.518 y[1] (analytic) = 0 y[1] (numeric) = -1.2699563513551982728846784191406 absolute error = 1.2699563513551982728846784191406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 2.813e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.519 y[1] (analytic) = 0 y[1] (numeric) = -1.2720891531565460350780029753015 absolute error = 1.2720891531565460350780029753015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 2.864e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.52 y[1] (analytic) = 0 y[1] (numeric) = -1.2742191965484659511896474939669 absolute error = 1.2742191965484659511896474939669 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 2.916e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=354.7MB, alloc=4.3MB, time=36.36 x[1] = 0.521 y[1] (analytic) = 0 y[1] (numeric) = -1.2763464880532805574917128326619 absolute error = 1.2763464880532805574917128326619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 2.968e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.522 y[1] (analytic) = 0 y[1] (numeric) = -1.278471034168596921226785489712 absolute error = 1.278471034168596921226785489712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 3.022e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.523 y[1] (analytic) = 0 y[1] (numeric) = -1.2805928413674317451574932209119 absolute error = 1.2805928413674317451574932209119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 3.076e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.524 y[1] (analytic) = 0 y[1] (numeric) = -1.2827119160983356804415490499787 absolute error = 1.2827119160983356804415490499787 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 3.131e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.525 y[1] (analytic) = 0 y[1] (numeric) = -1.2848282647855168538381796392101 absolute error = 1.2848282647855168538381796392101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 3.187e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=358.5MB, alloc=4.3MB, time=36.75 x[1] = 0.526 y[1] (analytic) = 0 y[1] (numeric) = -1.2869418938289636151987400453869 absolute error = 1.2869418938289636151987400453869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 3.244e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.527 y[1] (analytic) = 0 y[1] (numeric) = -1.2890528096045665111417587005745 absolute error = 1.2890528096045665111417587005745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 3.302e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.528 y[1] (analytic) = 0 y[1] (numeric) = -1.2911610184642394907606279537616 absolute error = 1.2911610184642394907606279537616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 3.361e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.529 y[1] (analytic) = 0 y[1] (numeric) = -1.2932665267360403491606506893377 absolute error = 1.2932665267360403491606506893377 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 3.421e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=362.4MB, alloc=4.3MB, time=37.13 x[1] = 0.53 y[1] (analytic) = 0 y[1] (numeric) = -1.295369340724290414571166479727 absolute error = 1.295369340724290414571166479727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 3.482e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.531 y[1] (analytic) = 0 y[1] (numeric) = -1.2974694667096934847280055838696 absolute error = 1.2974694667096934847280055838696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 3.543e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.532 y[1] (analytic) = 0 y[1] (numeric) = -1.2995669109494540181715500957772 absolute error = 1.2995669109494540181715500957772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 3.606e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.533 y[1] (analytic) = 0 y[1] (numeric) = -1.3016616796773945860562129754973 absolute error = 1.3016616796773945860562129754973 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 3.670e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.534 y[1] (analytic) = 0 y[1] (numeric) = -1.3037537791040725900181719271956 absolute error = 1.3037537791040725900181719271956 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 3.735e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=366.2MB, alloc=4.3MB, time=37.51 x[1] = 0.535 y[1] (analytic) = 0 y[1] (numeric) = -1.3058432154168962515997105647366 absolute error = 1.3058432154168962515997105647366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 3.800e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.536 y[1] (analytic) = 0 y[1] (numeric) = -1.3079299947802398786805185324888 absolute error = 1.3079299947802398786805185324888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 3.867e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.537 y[1] (analytic) = 0 y[1] (numeric) = -1.3100141233355584143187798048885 absolute error = 1.3100141233355584143187798048885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 3.935e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.538 y[1] (analytic) = 0 y[1] (numeric) = -1.3120956072015012733578289168181 absolute error = 1.3120956072015012733578289168181 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 4.004e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=370.0MB, alloc=4.3MB, time=37.87 x[1] = 0.539 y[1] (analytic) = 0 y[1] (numeric) = -1.3141744524740254721075730889017 absolute error = 1.3141744524740254721075730889017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 4.074e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.54 y[1] (analytic) = 0 y[1] (numeric) = -1.3162506652265080563637588838262 absolute error = 1.3162506652265080563637588838262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 4.145e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.541 y[1] (analytic) = 0 y[1] (numeric) = -1.3183242515098578329825000029535 absolute error = 1.3183242515098578329825000029535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 4.217e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.542 y[1] (analytic) = 0 y[1] (numeric) = -1.3203952173526264101822730118455 absolute error = 1.3203952173526264101822730118455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 4.290e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.543 y[1] (analytic) = 0 y[1] (numeric) = -1.322463568761118551700825136921 absolute error = 1.322463568761118551700825136921 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 4.365e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=373.8MB, alloc=4.3MB, time=38.24 x[1] = 0.544 y[1] (analytic) = 0 y[1] (numeric) = -1.3245293117195018498901178334866 absolute error = 1.3245293117195018498901178334866 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 4.440e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.545 y[1] (analytic) = 0 y[1] (numeric) = -1.3265924521899157227885466793041 absolute error = 1.3265924521899157227885466793041 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 4.517e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.546 y[1] (analytic) = 0 y[1] (numeric) = -1.3286529961125797401662274496241 absolute error = 1.3286529961125797401662274496241 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 4.595e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.547 y[1] (analytic) = 0 y[1] (numeric) = -1.3307109494059012834961151908084 absolute error = 1.3307109494059012834961151908084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 4.675e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.548 y[1] (analytic) = 0 y[1] (numeric) = -1.3327663179665825447611230007184 absolute error = 1.3327663179665825447611230007184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 4.755e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=377.6MB, alloc=4.3MB, time=38.61 x[1] = 0.549 y[1] (analytic) = 0 y[1] (numeric) = -1.3348191076697268689652253734328 absolute error = 1.3348191076697268689652253734328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 4.837e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.55 y[1] (analytic) = 0 y[1] (numeric) = -1.3368693243689444451747627593124 absolute error = 1.3368693243689444451747627593124 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 4.920e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.551 y[1] (analytic) = 0 y[1] (numeric) = -1.338916973896457350874804871186 absolute error = 1.338916973896457350874804871186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 5.004e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.552 y[1] (analytic) = 0 y[1] (numeric) = -1.3409620620632039543844757314453 absolute error = 1.3409620620632039543844757314453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 5.089e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=381.4MB, alloc=4.3MB, time=38.98 x[1] = 0.553 y[1] (analytic) = 0 y[1] (numeric) = -1.3430045946589426800345890560571 absolute error = 1.3430045946589426800345890560571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 5.176e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.554 y[1] (analytic) = 0 y[1] (numeric) = -1.3450445774523551407707839171156 absolute error = 1.3450445774523551407707839171156 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 5.264e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.555 y[1] (analytic) = 0 y[1] (numeric) = -1.3470820161911486428055833762778 absolute error = 1.3470820161911486428055833762778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 5.354e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.556 y[1] (analytic) = 0 y[1] (numeric) = -1.3491169166021580669034186507601 absolute error = 1.3491169166021580669034186507601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 5.445e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.557 y[1] (analytic) = 0 y[1] (numeric) = -1.3511492843914471308436641271325 absolute error = 1.3511492843914471308436641271325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 5.537e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=385.2MB, alloc=4.3MB, time=39.34 x[1] = 0.558 y[1] (analytic) = 0 y[1] (numeric) = -1.3531791252444090375681099929378 absolute error = 1.3531791252444090375681099929378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 5.631e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.559 y[1] (analytic) = 0 y[1] (numeric) = -1.3552064448258665134810552799084 absolute error = 1.3552064448258665134810552799084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 5.726e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.56 y[1] (analytic) = 0 y[1] (numeric) = -1.3572312487801712413323306230194 absolute error = 1.3572312487801712413323306230194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 5.822e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.561 y[1] (analytic) = 0 y[1] (numeric) = -1.359253542731302692076053003937 absolute error = 1.359253542731302692076053003937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 5.920e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=389.1MB, alloc=4.3MB, time=39.72 x[1] = 0.562 y[1] (analytic) = 0 y[1] (numeric) = -1.3612733322829663600607701814552 absolute error = 1.3612733322829663600607701814552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 6.020e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.563 y[1] (analytic) = 0 y[1] (numeric) = -1.3632906230186914058698664791837 absolute error = 1.3632906230186914058698664791837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 6.121e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.564 y[1] (analytic) = 0 y[1] (numeric) = -1.36530542050192771109467021342 absolute error = 1.36530542050192771109467021342 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 6.223e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.565 y[1] (analytic) = 0 y[1] (numeric) = -1.3673177302761423492866224599732 absolute error = 1.3673177302761423492866224599732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 6.327e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.566 y[1] (analytic) = 0 y[1] (numeric) = -1.3693275578649154772991332820597 absolute error = 1.3693275578649154772991332820597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 6.433e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=392.9MB, alloc=4.3MB, time=40.09 x[1] = 0.567 y[1] (analytic) = 0 y[1] (numeric) = -1.3713349087720356511943612221927 absolute error = 1.3713349087720356511943612221927 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 6.540e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.568 y[1] (analytic) = 0 y[1] (numeric) = -1.3733397884815945708551010941454 absolute error = 1.3733397884815945708551010941454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 6.649e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.569 y[1] (analytic) = 0 y[1] (numeric) = -1.3753422024580812574072502358671 absolute error = 1.3753422024580812574072502358671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 6.759e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.57 y[1] (analytic) = 0 y[1] (numeric) = -1.3773421561464756675239407837656 absolute error = 1.3773421561464756675239407837656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 6.871e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.571 y[1] (analytic) = 0 y[1] (numeric) = -1.3793396549723417486483716293455 absolute error = 1.3793396549723417486483716293455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.367 Order of pole = 6.985e-10 memory used=396.7MB, alloc=4.3MB, time=40.47 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.572 y[1] (analytic) = 0 y[1] (numeric) = -1.3813347043419199391386449897779 absolute error = 1.3813347043419199391386449897779 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 7.100e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.573 y[1] (analytic) = 0 y[1] (numeric) = -1.3833273096422191173045054756368 absolute error = 1.3833273096422191173045054756368 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 7.218e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.574 y[1] (analytic) = 0 y[1] (numeric) = -1.3853174762411080032727907243784 absolute error = 1.3853174762411080032727907243784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 7.336e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.575 y[1] (analytic) = 0 y[1] (numeric) = -1.3873052094874060175856286807686 absolute error = 1.3873052094874060175856286807686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 7.457e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=400.5MB, alloc=4.3MB, time=40.85 x[1] = 0.576 y[1] (analytic) = 0 y[1] (numeric) = -1.389290514710973600402954079462 absolute error = 1.389290514710973600402954079462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.373 Order of pole = 7.579e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.577 y[1] (analytic) = 0 y[1] (numeric) = -1.3912733972228019951487622943069 absolute error = 1.3912733972228019951487622943069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 7.704e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.578 y[1] (analytic) = 0 y[1] (numeric) = -1.3932538623151025004086691771314 absolute error = 1.3932538623151025004086691771314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 7.830e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.579 y[1] (analytic) = 0 y[1] (numeric) = -1.3952319152613951938547975680831 absolute error = 1.3952319152613951938547975680831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 7.957e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.58 y[1] (analytic) = 0 y[1] (numeric) = -1.3972075613165971319427616107829 absolute error = 1.3972075613165971319427616107829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 8.087e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=404.3MB, alloc=4.3MB, time=41.23 x[1] = 0.581 y[1] (analytic) = 0 y[1] (numeric) = -1.3991808057171100290945656772389 absolute error = 1.3991808057171100290945656772389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 8.219e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.582 y[1] (analytic) = 0 y[1] (numeric) = -1.4011516536809074200505724656837 absolute error = 1.4011516536809074200505724656837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 8.352e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.583 y[1] (analytic) = 0 y[1] (numeric) = -1.4031201104076213090433215822135 absolute error = 1.4031201104076213090433215822135 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 8.488e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.584 y[1] (analytic) = 0 y[1] (numeric) = -1.4050861810786283094158925937098 absolute error = 1.4050861810786283094158925937098 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.382 Order of pole = 8.625e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=408.1MB, alloc=4.3MB, time=41.61 x[1] = 0.585 y[1] (analytic) = 0 y[1] (numeric) = -1.4070498708571352772777021204053 absolute error = 1.4070498708571352772777021204053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 8.765e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.586 y[1] (analytic) = 0 y[1] (numeric) = -1.4090111848882644427611000324859 absolute error = 1.4090111848882644427611000324859 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 8.906e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.587 y[1] (analytic) = 0 y[1] (numeric) = -1.4109701282991380424128822722442 absolute error = 1.4109701282991380424128822722442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 9.050e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.588 y[1] (analytic) = 0 y[1] (numeric) = -1.412926706198962456225864322047 absolute error = 1.412926706198962456225864322047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 9.195e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.589 y[1] (analytic) = 0 y[1] (numeric) = -1.4148809236791118527869569934391 absolute error = 1.4148809236791118527869569934391 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 9.343e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=412.0MB, alloc=4.3MB, time=41.98 x[1] = 0.59 y[1] (analytic) = 0 y[1] (numeric) = -1.4168327858132113459897521724788 absolute error = 1.4168327858132113459897521724788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 9.493e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.591 y[1] (analytic) = 0 y[1] (numeric) = -1.4187822976572196667314576025755 absolute error = 1.4187822976572196667314576025755 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 9.645e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.592 y[1] (analytic) = 0 y[1] (numeric) = -1.4207294642495113529861139332117 absolute error = 1.4207294642495113529861139332117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 9.799e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.593 y[1] (analytic) = 0 y[1] (numeric) = -1.4226742906109584616183813579594 absolute error = 1.4226742906109584616183813579594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.393 Order of pole = 9.955e-10 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=415.8MB, alloc=4.3MB, time=42.36 x[1] = 0.594 y[1] (analytic) = 0 y[1] (numeric) = -1.4246167817450118052747944871318 absolute error = 1.4246167817450118052747944871318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 1.011e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.595 y[1] (analytic) = 0 y[1] (numeric) = -1.4265569426377817176622499598571 absolute error = 1.4265569426377817176622499598571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 1.027e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.596 y[1] (analytic) = 0 y[1] (numeric) = -1.4284947782581183504966090391235 absolute error = 1.4284947782581183504966090391235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 1.044e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.597 y[1] (analytic) = 0 y[1] (numeric) = -1.4304302935576915053776644240504 absolute error = 1.4304302935576915053776644240504 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 1.060e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.598 y[1] (analytic) = 0 y[1] (numeric) = -1.4323634934710700038203341593195 absolute error = 1.4323634934710700038203341593195 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 1.077e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=419.6MB, alloc=4.3MB, time=42.75 x[1] = 0.599 y[1] (analytic) = 0 y[1] (numeric) = -1.4342943829158005986458032554221 absolute error = 1.4342943829158005986458032554221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 1.094e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.6 y[1] (analytic) = 0 y[1] (numeric) = -1.4362229667924864299104329178548 absolute error = 1.4362229667924864299104329178548 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.401 Order of pole = 1.111e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.601 y[1] (analytic) = 0 y[1] (numeric) = -1.4381492499848650285245956106112 absolute error = 1.4381492499848650285245956106112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1.129e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.602 y[1] (analytic) = 0 y[1] (numeric) = -1.4400732373598858706881690701618 absolute error = 1.4400732373598858706881690701618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 1.147e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.603 y[1] (analytic) = 0 y[1] (numeric) = -1.4419949337677874862442313900035 absolute error = 1.4419949337677874862442313900035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 1.165e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=423.4MB, alloc=4.3MB, time=43.14 x[1] = 0.604 y[1] (analytic) = 0 y[1] (numeric) = -1.4439143440421741240275399903925 absolute error = 1.4439143440421741240275399903925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 1.183e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.605 y[1] (analytic) = 0 y[1] (numeric) = -1.4458314730000919772596472784665 absolute error = 1.4458314730000919772596472784665 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 1.201e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.606 y[1] (analytic) = 0 y[1] (numeric) = -1.4477463254421049720180027234843 absolute error = 1.4477463254421049720180027234843 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 1.220e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.607 y[1] (analytic) = 0 y[1] (numeric) = -1.4496589061523701217821125803773 absolute error = 1.4496589061523701217821125803773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1.239e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=427.2MB, alloc=4.3MB, time=43.54 x[1] = 0.608 y[1] (analytic) = 0 y[1] (numeric) = -1.4515692198987124510357722789894 absolute error = 1.4515692198987124510357722789894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 1.258e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.609 y[1] (analytic) = 0 y[1] (numeric) = -1.4534772714326994908805502695069 absolute error = 1.4534772714326994908805502695069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 1.278e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.61 y[1] (analytic) = 0 y[1] (numeric) = -1.4553830654897153495920836159844 absolute error = 1.4553830654897153495920836159844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 1.298e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.611 y[1] (analytic) = 0 y[1] (numeric) = -1.4572866067890343610273426246689 absolute error = 1.4572866067890343610273426246689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.413 Order of pole = 1.318e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.612 y[1] (analytic) = 0 y[1] (numeric) = -1.4591879000338943137678320725968 absolute error = 1.4591879000338943137678320725968 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 1.338e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=431.0MB, alloc=4.3MB, time=43.94 x[1] = 0.613 y[1] (analytic) = 0 y[1] (numeric) = -1.4610869499115692638607179803994 absolute error = 1.4610869499115692638607179803994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 1.359e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.614 y[1] (analytic) = 0 y[1] (numeric) = -1.4629837610934419339970991919538 absolute error = 1.4629837610934419339970991919538 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 1.380e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.615 y[1] (analytic) = 0 y[1] (numeric) = -1.4648783382350757019440801475162 absolute error = 1.4648783382350757019440801475162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 1.401e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.616 y[1] (analytic) = 0 y[1] (numeric) = -1.4667706859762861810249430555501 absolute error = 1.4667706859762861810249430555501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.419 Order of pole = 1.423e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=434.8MB, alloc=4.3MB, time=44.33 x[1] = 0.617 y[1] (analytic) = 0 y[1] (numeric) = -1.4686608089412123954195620947963 absolute error = 1.4686608089412123954195620947963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.42 Order of pole = 1.445e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.618 y[1] (analytic) = 0 y[1] (numeric) = -1.470548711738387553035247249019 absolute error = 1.470548711738387553035247249019 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 1.467e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.619 y[1] (analytic) = 0 y[1] (numeric) = -1.4724343989608094186764488524162 absolute error = 1.4724343989608094186764488524162 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.422 Order of pole = 1.489e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.62 y[1] (analytic) = 0 y[1] (numeric) = -1.4743178751860102902201938870483 absolute error = 1.4743178751860102902201938870483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.424 Order of pole = 1.512e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.621 y[1] (analytic) = 0 y[1] (numeric) = -1.4761991449761265804827595306979 absolute error = 1.4761991449761265804827595306979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.425 Order of pole = 1.535e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=438.7MB, alloc=4.3MB, time=44.73 x[1] = 0.622 y[1] (analytic) = 0 y[1] (numeric) = -1.4780782128779680074419164326753 absolute error = 1.4780782128779680074419164326753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.426 Order of pole = 1.558e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.623 y[1] (analytic) = 0 y[1] (numeric) = -1.4799550834230863954580917467573 absolute error = 1.4799550834230863954580917467573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.427 Order of pole = 1.582e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.624 y[1] (analytic) = 0 y[1] (numeric) = -1.4818297611278440901170081471335 absolute error = 1.4818297611278440901170081471335 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 1.606e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.625 y[1] (analytic) = 0 y[1] (numeric) = -1.4837022504934819892957479890044 absolute error = 1.4837022504934819892957479890044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.429 Order of pole = 1.630e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.626 y[1] (analytic) = 0 y[1] (numeric) = -1.485572556006187193033769565791 absolute error = 1.485572556006187193033769565791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.43 Order of pole = 1.655e-09 memory used=442.5MB, alloc=4.3MB, time=45.12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.627 y[1] (analytic) = 0 y[1] (numeric) = -1.4874406821371602747701631963186 absolute error = 1.4874406821371602747701631963186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.432 Order of pole = 1.680e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.628 y[1] (analytic) = 0 y[1] (numeric) = -1.4893066333426821764883768052497 absolute error = 1.4893066333426821764883768052497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 1.705e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.629 y[1] (analytic) = 0 y[1] (numeric) = -1.491170414064180730289761916447 absolute error = 1.491170414064180730289761916447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.434 Order of pole = 1.731e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.63 y[1] (analytic) = 0 y[1] (numeric) = -1.4930320287282968088975897601948 absolute error = 1.4930320287282968088975897601948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.435 Order of pole = 1.757e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=446.3MB, alloc=4.3MB, time=45.53 x[1] = 0.631 y[1] (analytic) = 0 y[1] (numeric) = -1.494891481746950107573661719719 absolute error = 1.494891481746950107573661719719 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 1.783e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.632 y[1] (analytic) = 0 y[1] (numeric) = -1.496748777517404559910286848493 absolute error = 1.496748777517404559910286848493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.437 Order of pole = 1.810e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.633 y[1] (analytic) = 0 y[1] (numeric) = -1.4986039204223333899412199352735 absolute error = 1.4986039204223333899412199352735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.438 Order of pole = 1.837e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.634 y[1] (analytic) = 0 y[1] (numeric) = -1.5004569148298838029961448559099 absolute error = 1.5004569148298838029961448559099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.44 Order of pole = 1.865e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.635 y[1] (analytic) = 0 y[1] (numeric) = -1.5023077650937413177044480260692 absolute error = 1.5023077650937413177044480260692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.441 Order of pole = 1.892e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=450.1MB, alloc=4.3MB, time=45.93 x[1] = 0.636 y[1] (analytic) = 0 y[1] (numeric) = -1.5041564755531937415353539723676 absolute error = 1.5041564755531937415353539723676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.442 Order of pole = 1.920e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.637 y[1] (analytic) = 0 y[1] (numeric) = -1.5060030505331947922429877049112 absolute error = 1.5060030505331947922429877049112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.443 Order of pole = 1.949e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.638 y[1] (analytic) = 0 y[1] (numeric) = -1.5078474943444273675665850542654 absolute error = 1.5078474943444273675665850542654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.444 Order of pole = 1.978e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.639 y[1] (analytic) = 0 y[1] (numeric) = -1.5096898112833664655178908009522 absolute error = 1.5096898112833664655178908009522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.445 Order of pole = 2.007e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=453.9MB, alloc=4.3MB, time=46.32 x[1] = 0.64 y[1] (analytic) = 0 y[1] (numeric) = -1.5115300056323417575697636642619 absolute error = 1.5115300056323417575697636642619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.446 Order of pole = 2.037e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.641 y[1] (analytic) = 0 y[1] (numeric) = -1.5133680816595998170421454357739 absolute error = 1.5133680816595998170421454357739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.448 Order of pole = 2.067e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.642 y[1] (analytic) = 0 y[1] (numeric) = -1.5152040436193660049638471653844 absolute error = 1.5152040436193660049638471653844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.449 Order of pole = 2.098e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.643 y[1] (analytic) = 0 y[1] (numeric) = -1.5170378957519060156710567750461 absolute error = 1.5170378957519060156710567750461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.45 Order of pole = 2.128e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.644 y[1] (analytic) = 0 y[1] (numeric) = -1.5188696422835870843860782461889 absolute error = 1.5188696422835870843860782461889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 2.160e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=457.7MB, alloc=4.3MB, time=46.72 x[1] = 0.645 y[1] (analytic) = 0 y[1] (numeric) = -1.520699287426938859002571076179 absolute error = 1.520699287426938859002571076179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.452 Order of pole = 2.191e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.646 y[1] (analytic) = 0 y[1] (numeric) = -1.5225268353807139382864685191861 absolute error = 1.5225268353807139382864685191861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.453 Order of pole = 2.224e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.647 y[1] (analytic) = 0 y[1] (numeric) = -1.5243522903299480786848127259797 absolute error = 1.5243522903299480786848127259797 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.454 Order of pole = 2.256e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.648 y[1] (analytic) = 0 y[1] (numeric) = -1.5261756564460200719179528003003 absolute error = 1.5261756564460200719179528003003 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.456 Order of pole = 2.289e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=461.5MB, alloc=4.3MB, time=47.10 x[1] = 0.649 y[1] (analytic) = 0 y[1] (numeric) = -1.527996937886711295513906537521 absolute error = 1.527996937886711295513906537521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.457 Order of pole = 2.322e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.65 y[1] (analytic) = 0 y[1] (numeric) = -1.5298161387962649384271867612144 absolute error = 1.5298161387962649384271867612144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.458 Order of pole = 2.356e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.651 y[1] (analytic) = 0 y[1] (numeric) = -1.5316332633054449038680372976127 absolute error = 1.5316332633054449038680372976127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 2.390e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.652 y[1] (analytic) = 0 y[1] (numeric) = -1.5334483155315943914518103149802 absolute error = 1.5334483155315943914518103149802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.46 Order of pole = 2.425e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.653 y[1] (analytic) = 0 y[1] (numeric) = -1.5352612995786941607621446081596 absolute error = 1.5352612995786941607621446081596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.461 Order of pole = 2.460e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=465.4MB, alloc=4.4MB, time=47.50 x[1] = 0.654 y[1] (analytic) = 0 y[1] (numeric) = -1.5370722195374204784056720467455 absolute error = 1.5370722195374204784056720467455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 2.496e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.655 y[1] (analytic) = 0 y[1] (numeric) = -1.5388810794852027506201854622109 absolute error = 1.5388810794852027506201854622109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.464 Order of pole = 2.532e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.656 y[1] (analytic) = 0 y[1] (numeric) = -1.5406878834862808434825443734323 absolute error = 1.5406878834862808434825443734323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 2.569e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.657 y[1] (analytic) = 0 y[1] (numeric) = -1.5424926355917620927470738046185 absolute error = 1.5424926355917620927470738046185 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.466 Order of pole = 2.606e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.658 y[1] (analytic) = 0 y[1] (numeric) = -1.5442953398396780053298247123295 absolute error = 1.5442953398396780053298247123295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 2.643e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=469.2MB, alloc=4.4MB, time=47.89 x[1] = 0.659 y[1] (analytic) = 0 y[1] (numeric) = -1.546096000255040654438810901044 absolute error = 1.546096000255040654438810901044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.468 Order of pole = 2.681e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.66 y[1] (analytic) = 0 y[1] (numeric) = -1.5478946208498987703352154756948 absolute error = 1.5478946208498987703352154756948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.469 Order of pole = 2.719e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.661 y[1] (analytic) = 0 y[1] (numeric) = -1.5496912056233935286955685748086 absolute error = 1.5496912056233935286955685748086 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 2.758e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.662 y[1] (analytic) = 0 y[1] (numeric) = -1.5514857585618140385300360832119 absolute error = 1.5514857585618140385300360832119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.471 Order of pole = 2.798e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=473.0MB, alloc=4.4MB, time=48.29 x[1] = 0.663 y[1] (analytic) = 0 y[1] (numeric) = -1.5532782836386525315972249861887 absolute error = 1.5532782836386525315972249861887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 2.838e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.664 y[1] (analytic) = 0 y[1] (numeric) = -1.5550687848146592552413037584605 absolute error = 1.5550687848146592552413037584605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.474 Order of pole = 2.878e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.665 y[1] (analytic) = 0 y[1] (numeric) = -1.5568572660378970705627544556705 absolute error = 1.5568572660378970705627544556705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.475 Order of pole = 2.919e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.666 y[1] (analytic) = 0 y[1] (numeric) = -1.5586437312437957578197157806252 absolute error = 1.5586437312437957578197157806252 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.476 Order of pole = 2.961e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.667 y[1] (analytic) = 0 y[1] (numeric) = -1.560428184355206030942642131794 absolute error = 1.560428184355206030942642131794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.477 Order of pole = 3.003e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=476.8MB, alloc=4.4MB, time=48.69 x[1] = 0.668 y[1] (analytic) = 0 y[1] (numeric) = -1.5622106292824532630308913207711 absolute error = 1.5622106292824532630308913207711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.478 Order of pole = 3.045e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.669 y[1] (analytic) = 0 y[1] (numeric) = -1.5639910699233909246858620945211 absolute error = 1.5639910699233909246858620945211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.479 Order of pole = 3.088e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.67 y[1] (analytic) = 0 y[1] (numeric) = -1.5657695101634537370214306557798 absolute error = 1.5657695101634537370214306557798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.481 Order of pole = 3.132e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.671 y[1] (analytic) = 0 y[1] (numeric) = -1.5675459538757105411786818918697 absolute error = 1.5675459538757105411786818918697 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.482 Order of pole = 3.176e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=480.6MB, alloc=4.4MB, time=49.10 x[1] = 0.672 y[1] (analytic) = 0 y[1] (numeric) = -1.5693204049209168861582948615822 absolute error = 1.5693204049209168861582948615822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.483 Order of pole = 3.221e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.673 y[1] (analytic) = 0 y[1] (numeric) = -1.5710928671475673367704221269447 absolute error = 1.5710928671475673367704221269447 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.484 Order of pole = 3.266e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.674 y[1] (analytic) = 0 y[1] (numeric) = -1.5728633443919475034884976388772 absolute error = 1.5728633443919475034884976388772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.485 Order of pole = 3.312e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.675 y[1] (analytic) = 0 y[1] (numeric) = -1.5746318404781857959801169920087 absolute error = 1.5746318404781857959801169920087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.486 Order of pole = 3.358e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.676 y[1] (analytic) = 0 y[1] (numeric) = -1.5763983592183049020749558650367 absolute error = 1.5763983592183049020749558650367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.487 Order of pole = 3.405e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=484.4MB, alloc=4.4MB, time=49.49 x[1] = 0.677 y[1] (analytic) = 0 y[1] (numeric) = -1.5781629044122729939166262812763 absolute error = 1.5781629044122729939166262812763 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.489 Order of pole = 3.453e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.678 y[1] (analytic) = 0 y[1] (numeric) = -1.5799254798480546630324148931939 absolute error = 1.5799254798480546630324148931939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.49 Order of pole = 3.501e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.679 y[1] (analytic) = 0 y[1] (numeric) = -1.5816860893016615860420017597645 absolute error = 1.5816860893016615860420017597645 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.491 Order of pole = 3.550e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.68 y[1] (analytic) = 0 y[1] (numeric) = -1.5834447365372029227135210026084 absolute error = 1.5834447365372029227135210026084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.492 Order of pole = 3.599e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.681 y[1] (analytic) = 0 memory used=488.2MB, alloc=4.4MB, time=49.88 y[1] (numeric) = -1.5852014253069354480626952632371 absolute error = 1.5852014253069354480626952632371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.493 Order of pole = 3.649e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.682 y[1] (analytic) = 0 y[1] (numeric) = -1.5869561593513134201782530174717 absolute error = 1.5869561593513134201782530174717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.494 Order of pole = 3.700e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.683 y[1] (analytic) = 0 y[1] (numeric) = -1.5887089423990381854444205230423 absolute error = 1.5887089423990381854444205230423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.495 Order of pole = 3.751e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.684 y[1] (analytic) = 0 y[1] (numeric) = -1.5904597781671075228189674820476 absolute error = 1.5904597781671075228189674820476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.497 Order of pole = 3.803e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.685 y[1] (analytic) = 0 y[1] (numeric) = -1.5922086703608647288130764013799 absolute error = 1.5922086703608647288130764013799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 3.855e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=492.1MB, alloc=4.4MB, time=50.27 x[1] = 0.686 y[1] (analytic) = 0 y[1] (numeric) = -1.593955622674047444807199151828 absolute error = 1.593955622674047444807199151828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.499 Order of pole = 3.908e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.687 y[1] (analytic) = 0 y[1] (numeric) = -1.5957006387888362283250593910801 absolute error = 1.5957006387888362283250593910801 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.5 Order of pole = 3.962e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.688 y[1] (analytic) = 0 y[1] (numeric) = -1.597443722375902869876055368126 absolute error = 1.597443722375902869876055368126 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 4.017e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.689 y[1] (analytic) = 0 y[1] (numeric) = -1.59918487709445845696451321753 absolute error = 1.59918487709445845696451321753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.502 Order of pole = 4.072e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.69 y[1] (analytic) = 0 y[1] (numeric) = -1.6009241065923011868525352425574 absolute error = 1.6009241065923011868525352425574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.503 Order of pole = 4.128e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=495.9MB, alloc=4.4MB, time=50.66 x[1] = 0.691 y[1] (analytic) = 0 y[1] (numeric) = -1.6026614145058639296515799468573 absolute error = 1.6026614145058639296515799468573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.504 Order of pole = 4.184e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.692 y[1] (analytic) = 0 y[1] (numeric) = -1.6043968044602615433063997856959 absolute error = 1.6043968044602615433063997856959 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.506 Order of pole = 4.241e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.693 y[1] (analytic) = 0 y[1] (numeric) = -1.6061302800693379420235478595622 absolute error = 1.6061302800693379420235478595622 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.507 Order of pole = 4.299e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.694 y[1] (analytic) = 0 y[1] (numeric) = -1.6078618449357129196853451647676 absolute error = 1.6078618449357129196853451647676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.508 Order of pole = 4.358e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=499.7MB, alloc=4.4MB, time=51.05 x[1] = 0.695 y[1] (analytic) = 0 y[1] (numeric) = -1.6095915026508287297789746562502 absolute error = 1.6095915026508287297789746562502 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.509 Order of pole = 4.417e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.696 y[1] (analytic) = 0 y[1] (numeric) = -1.6113192567949964233592363852514 absolute error = 1.6113192567949964233592363852514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.51 Order of pole = 4.477e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.697 y[1] (analytic) = 0 y[1] (numeric) = -1.6130451109374419465524584760957 absolute error = 1.6130451109374419465524584760957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.511 Order of pole = 4.538e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.698 y[1] (analytic) = 0 y[1] (numeric) = -1.6147690686363519990981108382707 absolute error = 1.6147690686363519990981108382707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.512 Order of pole = 4.599e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.699 y[1] (analytic) = 0 y[1] (numeric) = -1.6164911334389196554138114176198 absolute error = 1.6164911334389196554138114176198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.514 Order of pole = 4.661e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=503.5MB, alloc=4.4MB, time=51.45 x[1] = 0.7 y[1] (analytic) = 0 y[1] (numeric) = -1.6182113088813897496586476278221 absolute error = 1.6182113088813897496586476278221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.515 Order of pole = 4.724e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.701 y[1] (analytic) = 0 y[1] (numeric) = -1.6199295984891040262590575332884 absolute error = 1.6199295984891040262590575332884 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.516 Order of pole = 4.788e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.702 y[1] (analytic) = 0 y[1] (numeric) = -1.6216460057765460573509255486484 absolute error = 1.6216460057765460573509255486484 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.517 Order of pole = 4.852e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.703 y[1] (analytic) = 0 y[1] (numeric) = -1.6233605342473859285810450581864 absolute error = 1.6233605342473859285810450581864 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.518 Order of pole = 4.917e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=507.3MB, alloc=4.4MB, time=51.84 x[1] = 0.704 y[1] (analytic) = 0 y[1] (numeric) = -1.6250731873945246947006846294117 absolute error = 1.6250731873945246947006846294117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.519 Order of pole = 4.983e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.705 y[1] (analytic) = 0 y[1] (numeric) = -1.6267839687001386063736645952766 absolute error = 1.6267839687001386063736645952766 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.52 Order of pole = 5.050e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.706 y[1] (analytic) = 0 y[1] (numeric) = -1.6284928816357231096111059145207 absolute error = 1.6284928816357231096111059145207 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.522 Order of pole = 5.118e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.707 y[1] (analytic) = 0 y[1] (numeric) = -1.6301999296621366192348526025087 absolute error = 1.6301999296621366192348526025087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.523 Order of pole = 5.186e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.708 y[1] (analytic) = 0 y[1] (numeric) = -1.6319051162296440677614918771281 absolute error = 1.6319051162296440677614918771281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.524 Order of pole = 5.255e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=511.1MB, alloc=4.4MB, time=52.24 x[1] = 0.709 y[1] (analytic) = 0 y[1] (numeric) = -1.6336084447779602310889017151787 absolute error = 1.6336084447779602310889017151787 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 5.325e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.71 y[1] (analytic) = 0 y[1] (numeric) = -1.6353099187362928323573430014847 absolute error = 1.6353099187362928323573430014847 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.526 Order of pole = 5.396e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.711 y[1] (analytic) = 0 y[1] (numeric) = -1.6370095415233854253472821207599 absolute error = 1.6370095415233854253472821207599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.527 Order of pole = 5.468e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.712 y[1] (analytic) = 0 y[1] (numeric) = -1.6387073165475600587663789438473 absolute error = 1.6387073165475600587663789438473 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.528 Order of pole = 5.540e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.713 y[1] (analytic) = 0 y[1] (numeric) = -1.640403247206759722768403955762 absolute error = 1.640403247206759722768403955762 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 5.614e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=515.0MB, alloc=4.4MB, time=52.62 x[1] = 0.714 y[1] (analytic) = 0 y[1] (numeric) = -1.6420973368885905790372560309643 absolute error = 1.6420973368885905790372560309643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.531 Order of pole = 5.688e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.715 y[1] (analytic) = 0 y[1] (numeric) = -1.6437895889703639757597383569114 absolute error = 1.6437895889703639757597383569114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.532 Order of pole = 5.763e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.716 y[1] (analytic) = 0 y[1] (numeric) = -1.6454800068191382488013135230001 absolute error = 1.6454800068191382488013135230001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.533 Order of pole = 5.839e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.717 y[1] (analytic) = 0 y[1] (numeric) = -1.6471685937917603103896991186342 absolute error = 1.6471685937917603103896991186342 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.534 Order of pole = 5.916e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=518.8MB, alloc=4.4MB, time=53.02 x[1] = 0.718 y[1] (analytic) = 0 y[1] (numeric) = -1.6488553532349070266018816186527 absolute error = 1.6488553532349070266018816186527 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.535 Order of pole = 5.993e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.719 y[1] (analytic) = 0 y[1] (numeric) = -1.6505402884851263849409181812089 absolute error = 1.6505402884851263849409181812089 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.536 Order of pole = 6.072e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.72 y[1] (analytic) = 0 y[1] (numeric) = -1.6522234028688784532797625539136 absolute error = 1.6522234028688784532797625539136 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.537 Order of pole = 6.152e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.721 y[1] (analytic) = 0 y[1] (numeric) = -1.6539046997025761314402918971431 absolute error = 1.6539046997025761314402918971431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.539 Order of pole = 6.232e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.722 y[1] (analytic) = 0 y[1] (numeric) = -1.6555841822926256966667253142635 absolute error = 1.6555841822926256966667253142635 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.54 Order of pole = 6.314e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=522.6MB, alloc=4.4MB, time=53.41 x[1] = 0.723 y[1] (analytic) = 0 y[1] (numeric) = -1.6572618539354671442437115593535 absolute error = 1.6572618539354671442437115593535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.541 Order of pole = 6.396e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.724 y[1] (analytic) = 0 y[1] (numeric) = -1.6589377179176143245005221127844 absolute error = 1.6589377179176143245005221127844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.542 Order of pole = 6.479e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.725 y[1] (analytic) = 0 y[1] (numeric) = -1.6606117775156948774340159193734 absolute error = 1.6606117775156948774340159193734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.543 Order of pole = 6.564e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.726 y[1] (analytic) = 0 y[1] (numeric) = -1.6622840359964899661743429250033 absolute error = 1.6622840359964899661743429250033 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 6.649e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=526.4MB, alloc=4.4MB, time=53.81 x[1] = 0.727 y[1] (analytic) = 0 y[1] (numeric) = -1.6639544966169738105087244843514 absolute error = 1.6639544966169738105087244843514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.545 Order of pole = 6.735e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.728 y[1] (analytic) = 0 y[1] (numeric) = -1.6656231626243530216700891099092 absolute error = 1.6656231626243530216700891099092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.546 Order of pole = 6.822e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.729 y[1] (analytic) = 0 y[1] (numeric) = -1.6672900372561057395888512623923 absolute error = 1.6672900372561057395888512623923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.548 Order of pole = 6.911e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.73 y[1] (analytic) = 0 y[1] (numeric) = -1.6689551237400205737976983228427 absolute error = 1.6689551237400205737976983228427 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.549 Order of pole = 7.000e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.731 y[1] (analytic) = 0 y[1] (numeric) = -1.670618425294235349170895921351 absolute error = 1.670618425294235349170895921351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.55 Order of pole = 7.090e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=530.2MB, alloc=4.4MB, time=54.20 x[1] = 0.732 y[1] (analytic) = 0 y[1] (numeric) = -1.6722799451272756576713338166997 absolute error = 1.6722799451272756576713338166997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 7.181e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.733 y[1] (analytic) = 0 y[1] (numeric) = -1.6739396864380932172703129217621 absolute error = 1.6739396864380932172703129217621 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.552 Order of pole = 7.274e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.734 y[1] (analytic) = 0 y[1] (numeric) = -1.6755976524161040391969182536464 absolute error = 1.6755976524161040391969182536464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.553 Order of pole = 7.367e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.735 y[1] (analytic) = 0 y[1] (numeric) = -1.6772538462412264046657319637782 absolute error = 1.6772538462412264046657319637782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.554 Order of pole = 7.462e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.736 y[1] (analytic) = 0 y[1] (numeric) = -1.6789082710839186522236145856996 absolute error = 1.6789082710839186522236145856996 relative error = -1 % Correct digits = -1 h = 0.001 memory used=534.0MB, alloc=4.4MB, time=54.60 Complex estimate of poles used Radius of convergence = 1.556 Order of pole = 7.557e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.737 y[1] (analytic) = 0 y[1] (numeric) = -1.6805609301052167768483206475029 absolute error = 1.6805609301052167768483206475029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.557 Order of pole = 7.654e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.738 y[1] (analytic) = 0 y[1] (numeric) = -1.6822118264567718419238162574597 absolute error = 1.6822118264567718419238162574597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.558 Order of pole = 7.752e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.739 y[1] (analytic) = 0 y[1] (numeric) = -1.6838609632808872052093306172181 absolute error = 1.6838609632808872052093306172181 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.559 Order of pole = 7.850e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.74 y[1] (analytic) = 0 y[1] (numeric) = -1.6855083437105555599114000842295 absolute error = 1.6855083437105555599114000842295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.56 Order of pole = 7.950e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=537.8MB, alloc=4.4MB, time=55.00 x[1] = 0.741 y[1] (analytic) = 0 y[1] (numeric) = -1.6871539708694957919604518367409 absolute error = 1.6871539708694957919604518367409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 8.051e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.742 y[1] (analytic) = 0 y[1] (numeric) = -1.688797847872189654585823839171 absolute error = 1.688797847872189654585823839171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.562 Order of pole = 8.154e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.743 y[1] (analytic) = 0 y[1] (numeric) = -1.6904399778239182612755281168832 absolute error = 1.6904399778239182612755281168832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.563 Order of pole = 8.257e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.744 y[1] (analytic) = 0 y[1] (numeric) = -1.692080363820798398199534786577 absolute error = 1.692080363820798398199534786577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.565 Order of pole = 8.361e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.745 y[1] (analytic) = 0 y[1] (numeric) = -1.6937190089498186571678843163955 absolute error = 1.6937190089498186571678843163955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.566 Order of pole = 8.467e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=541.7MB, alloc=4.4MB, time=55.40 x[1] = 0.746 y[1] (analytic) = 0 y[1] (numeric) = -1.6953559162888753901875245783406 absolute error = 1.6953559162888753901875245783406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.567 Order of pole = 8.574e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.747 y[1] (analytic) = 0 y[1] (numeric) = -1.6969910889068084866744168798741 absolute error = 1.6969910889068084866744168798741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.568 Order of pole = 8.682e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.748 y[1] (analytic) = 0 y[1] (numeric) = -1.6986245298634369743701608020172 absolute error = 1.6986245298634369743701608020172 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.569 Order of pole = 8.791e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.749 y[1] (analytic) = 0 y[1] (numeric) = -1.7002562422095944450051508133264 absolute error = 1.7002562422095944450051508133264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.57 Order of pole = 8.902e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=545.5MB, alloc=4.4MB, time=55.80 x[1] = 0.75 y[1] (analytic) = 0 y[1] (numeric) = -1.7018862289871643057430977633522 absolute error = 1.7018862289871643057430977633522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 9.014e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.751 y[1] (analytic) = 0 y[1] (numeric) = -1.7035144932291148574346249811396 absolute error = 1.7035144932291148574346249811396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.572 Order of pole = 9.127e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.752 y[1] (analytic) = 0 y[1] (numeric) = -1.7051410379595342007005813145081 absolute error = 1.7051410379595342007005813145081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 9.241e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.753 y[1] (analytic) = 0 y[1] (numeric) = -1.7067658661936649708587015496665 absolute error = 1.7067658661936649708587015496665 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.575 Order of pole = 9.356e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.754 y[1] (analytic) = 0 y[1] (numeric) = -1.7083889809379389027002877584402 absolute error = 1.7083889809379389027002877584402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.576 Order of pole = 9.473e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=549.3MB, alloc=4.4MB, time=56.20 x[1] = 0.755 y[1] (analytic) = 0 y[1] (numeric) = -1.7100103851900112261166827470631 absolute error = 1.7100103851900112261166827470631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 9.591e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.756 y[1] (analytic) = 0 y[1] (numeric) = -1.7116300819387948935684584459296 absolute error = 1.7116300819387948935684584459296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.578 Order of pole = 9.710e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.757 y[1] (analytic) = 0 y[1] (numeric) = -1.7132480741644946403834473084055 absolute error = 1.7132480741644946403834473084055 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.579 Order of pole = 9.831e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.758 y[1] (analytic) = 0 y[1] (numeric) = -1.7148643648386408788630031079065 absolute error = 1.7148643648386408788630031079065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.58 Order of pole = 9.953e-09 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=553.1MB, alloc=4.4MB, time=56.59 x[1] = 0.759 y[1] (analytic) = 0 y[1] (numeric) = -1.7164789569241234271691884697069 absolute error = 1.7164789569241234271691884697069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.581 Order of pole = 1.008e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.76 y[1] (analytic) = 0 y[1] (numeric) = -1.7180918533752250739589495856245 absolute error = 1.7180918533752250739589495856245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.583 Order of pole = 1.020e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.761 y[1] (analytic) = 0 y[1] (numeric) = -1.7197030571376549797247533786191 absolute error = 1.7197030571376549797247533786191 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.584 Order of pole = 1.033e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.762 y[1] (analytic) = 0 y[1] (numeric) = -1.7213125711485819157946284576694 absolute error = 1.7213125711485819157946284576694 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.585 Order of pole = 1.045e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.763 y[1] (analytic) = 0 y[1] (numeric) = -1.7229203983366673419380680826897 absolute error = 1.7229203983366673419380680826897 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.586 Order of pole = 1.058e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=556.9MB, alloc=4.4MB, time=56.99 x[1] = 0.764 y[1] (analytic) = 0 y[1] (numeric) = -1.724526541622098323517820600693 absolute error = 1.724526541622098323517820600693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.587 Order of pole = 1.071e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.765 y[1] (analytic) = 0 y[1] (numeric) = -1.7261310039166202891212099781964 absolute error = 1.7261310039166202891212099781964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.588 Order of pole = 1.085e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.766 y[1] (analytic) = 0 y[1] (numeric) = -1.7277337881235696295982957055454 absolute error = 1.7277337881235696295982957055454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.589 Order of pole = 1.098e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.767 y[1] (analytic) = 0 y[1] (numeric) = -1.7293348971379061394278970551817 absolute error = 1.7293348971379061394278970551817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.591 Order of pole = 1.111e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.768 y[1] (analytic) = 0 y[1] (numeric) = -1.7309343338462453013262710108274 absolute error = 1.7309343338462453013262710108274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.592 Order of pole = 1.125e-08 memory used=560.7MB, alloc=4.4MB, time=57.37 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.769 y[1] (analytic) = 0 y[1] (numeric) = -1.7325321011268904150070457251784 absolute error = 1.7325321011268904150070457251784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.593 Order of pole = 1.139e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.77 y[1] (analytic) = 0 y[1] (numeric) = -1.7341282018498645709948716911419 absolute error = 1.7341282018498645709948716911419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.594 Order of pole = 1.153e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.771 y[1] (analytic) = 0 y[1] (numeric) = -1.7357226388769424703891605111047 absolute error = 1.7357226388769424703891605111047 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 1.167e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.772 y[1] (analytic) = 0 y[1] (numeric) = -1.7373154150616820914682358093681 absolute error = 1.7373154150616820914682358093681 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.596 Order of pole = 1.181e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=564.5MB, alloc=4.4MB, time=57.76 x[1] = 0.773 y[1] (analytic) = 0 y[1] (numeric) = -1.7389065332494562040182220478772 absolute error = 1.7389065332494562040182220478772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.597 Order of pole = 1.195e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.774 y[1] (analytic) = 0 y[1] (numeric) = -1.740495996277483732265044371754 absolute error = 1.740495996277483732265044371754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.598 Order of pole = 1.210e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.775 y[1] (analytic) = 0 y[1] (numeric) = -1.7420838069748609672820057298505 absolute error = 1.7420838069748609672820057298505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.6 Order of pole = 1.224e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.776 y[1] (analytic) = 0 y[1] (numeric) = -1.743669968162592629739545991319 absolute error = 1.743669968162592629739545991319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.601 Order of pole = 1.239e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.777 y[1] (analytic) = 0 y[1] (numeric) = -1.7452544826536227838579712206007 absolute error = 1.7452544826536227838579712206007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.602 Order of pole = 1.254e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=568.4MB, alloc=4.4MB, time=58.16 x[1] = 0.778 y[1] (analytic) = 0 y[1] (numeric) = -1.7468373532528656034181692925626 absolute error = 1.7468373532528656034181692925626 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.603 Order of pole = 1.269e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.779 y[1] (analytic) = 0 y[1] (numeric) = -1.7484185827572359906796002427655 absolute error = 1.7484185827572359906796002427655 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.604 Order of pole = 1.284e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.78 y[1] (analytic) = 0 y[1] (numeric) = -1.7499981739556800490491657747102 absolute error = 1.7499981739556800490491657747102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.605 Order of pole = 1.300e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.781 y[1] (analytic) = 0 y[1] (numeric) = -1.7515761296292054103389218096938 absolute error = 1.7515761296292054103389218096938 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.606 Order of pole = 1.316e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=572.2MB, alloc=4.4MB, time=58.55 x[1] = 0.782 y[1] (analytic) = 0 y[1] (numeric) = -1.7531524525509114174450004925201 absolute error = 1.7531524525509114174450004925201 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.607 Order of pole = 1.331e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.783 y[1] (analytic) = 0 y[1] (numeric) = -1.7547271454860191632745532882161 absolute error = 1.7547271454860191632745532882161 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 1.347e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.784 y[1] (analytic) = 0 y[1] (numeric) = -1.7563002111919013867420143550926 absolute error = 1.7563002111919013867420143550926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.61 Order of pole = 1.363e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.785 y[1] (analytic) = 0 y[1] (numeric) = -1.7578716524181122266505128954193 absolute error = 1.7578716524181122266505128954193 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.611 Order of pole = 1.380e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.786 y[1] (analytic) = 0 y[1] (numeric) = -1.7594414719064168342688343075807 absolute error = 1.7594414719064168342688343075807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.612 Order of pole = 1.396e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=576.0MB, alloc=4.4MB, time=58.95 x[1] = 0.787 y[1] (analytic) = 0 y[1] (numeric) = -1.7610096723908208454089423371636 absolute error = 1.7610096723908208454089423371636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.613 Order of pole = 1.413e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.788 y[1] (analytic) = 0 y[1] (numeric) = -1.7625762565975997128037276966967 absolute error = 1.7625762565975997128037276966967 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.614 Order of pole = 1.430e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.789 y[1] (analytic) = 0 y[1] (numeric) = -1.7641412272453278995793424457679 absolute error = 1.7641412272453278995793424457679 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.615 Order of pole = 1.447e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.79 y[1] (analytic) = 0 y[1] (numeric) = -1.7657045870449079346112134493207 absolute error = 1.7657045870449079346112134493207 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.616 Order of pole = 1.464e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=579.8MB, alloc=4.4MB, time=59.34 x[1] = 0.791 y[1] (analytic) = 0 y[1] (numeric) = -1.7672663386995993305476021197016 absolute error = 1.7672663386995993305476021197016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.618 Order of pole = 1.481e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.792 y[1] (analytic) = 0 y[1] (numeric) = -1.7688264849050473652793910583474 absolute error = 1.7688264849050473652793910583474 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.619 Order of pole = 1.499e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.793 y[1] (analytic) = 0 y[1] (numeric) = -1.77038502834931172762963080992 absolute error = 1.77038502834931172762963080992 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.62 Order of pole = 1.516e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.794 y[1] (analytic) = 0 y[1] (numeric) = -1.7719419717128950280312713924426 absolute error = 1.7719419717128950280312713924426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.621 Order of pole = 1.534e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.795 y[1] (analytic) = 0 y[1] (numeric) = -1.7734973176687711749564332419328 absolute error = 1.7734973176687711749564332419328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.622 Order of pole = 1.552e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=583.6MB, alloc=4.4MB, time=59.73 x[1] = 0.796 y[1] (analytic) = 0 y[1] (numeric) = -1.7750510688824136178555403826279 absolute error = 1.7750510688824136178555403826279 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.623 Order of pole = 1.571e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.797 y[1] (analytic) = 0 y[1] (numeric) = -1.7766032280118234573596446806979 absolute error = 1.7766032280118234573596446806979 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.624 Order of pole = 1.589e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.798 y[1] (analytic) = 0 y[1] (numeric) = -1.7781537977075574234943136399244 absolute error = 1.7781537977075574234943136399244 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.625 Order of pole = 1.608e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.799 y[1] (analytic) = 0 y[1] (numeric) = -1.7797027806127557226485350347777 absolute error = 1.7797027806127557226485350347777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.627 Order of pole = 1.627e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.8 y[1] (analytic) = 0 y[1] (numeric) = -1.7812501793631697540372094352154 absolute error = 1.7812501793631697540372094352154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.628 Order of pole = 1.646e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=587.4MB, alloc=4.4MB, time=60.13 x[1] = 0.801 y[1] (analytic) = 0 y[1] (numeric) = -1.782795996587189696390956046877 absolute error = 1.782795996587189696390956046877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.629 Order of pole = 1.665e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.802 y[1] (analytic) = 0 y[1] (numeric) = -1.7843402349058719656021479615822 absolute error = 1.7843402349058719656021479615822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.63 Order of pole = 1.684e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.803 y[1] (analytic) = 0 y[1] (numeric) = -1.7858828969329665440513195804857 absolute error = 1.7858828969329665440513195804857 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.631 Order of pole = 1.704e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.804 y[1] (analytic) = 0 y[1] (numeric) = -1.7874239852749441823333513330673 absolute error = 1.7874239852749441823333513330673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.632 Order of pole = 1.724e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=591.3MB, alloc=4.4MB, time=60.52 x[1] = 0.805 y[1] (analytic) = 0 y[1] (numeric) = -1.788963502531023474098134569355 absolute error = 1.788963502531023474098134569355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.633 Order of pole = 1.744e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.806 y[1] (analytic) = 0 y[1] (numeric) = -1.7905014512931978047157523531863 absolute error = 1.7905014512931978047157523531863 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.634 Order of pole = 1.764e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.807 y[1] (analytic) = 0 y[1] (numeric) = -1.7920378341462621744715795364931 absolute error = 1.7920378341462621744715795364931 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.636 Order of pole = 1.784e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.808 y[1] (analytic) = 0 y[1] (numeric) = -1.7935726536678398969921076568553 absolute error = 1.7935726536678398969921076568553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.637 Order of pole = 1.805e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.809 y[1] (analytic) = 0 y[1] (numeric) = -1.7951059124284091735977365839417 absolute error = 1.7951059124284091735977365839417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.638 Order of pole = 1.826e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=595.1MB, alloc=4.4MB, time=60.94 x[1] = 0.81 y[1] (analytic) = 0 y[1] (numeric) = -1.7966376129913295442742451586638 absolute error = 1.7966376129913295442742451586638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.639 Order of pole = 1.847e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.811 y[1] (analytic) = 0 y[1] (numeric) = -1.7981677579128682159501570382726 absolute error = 1.7981677579128682159501570382726 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.64 Order of pole = 1.868e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.812 y[1] (analytic) = 0 y[1] (numeric) = -1.7996963497422262687627553002495 absolute error = 1.7996963497422262687627553002495 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.641 Order of pole = 1.890e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.813 y[1] (analytic) = 0 y[1] (numeric) = -1.8012233910215647409910697892802 absolute error = 1.8012233910215647409910697892802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.642 Order of pole = 1.912e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=598.9MB, alloc=4.4MB, time=61.32 x[1] = 0.814 y[1] (analytic) = 0 y[1] (numeric) = -1.8027488842860305933297644390497 absolute error = 1.8027488842860305933297644390497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.643 Order of pole = 1.934e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.815 y[1] (analytic) = 0 y[1] (numeric) = -1.8042728320637825531734875907977 absolute error = 1.8042728320637825531734875907977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.645 Order of pole = 1.956e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.816 y[1] (analytic) = 0 y[1] (numeric) = -1.8057952368760168395769163927896 absolute error = 1.8057952368760168395769163927896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.646 Order of pole = 1.978e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.817 y[1] (analytic) = 0 y[1] (numeric) = -1.8073161012369927695514264308623 absolute error = 1.8073161012369927695514264308623 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.647 Order of pole = 2.001e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.818 y[1] (analytic) = 0 y[1] (numeric) = -1.8088354276540582463550495442315 absolute error = 1.8088354276540582463550495442315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.648 Order of pole = 2.024e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=602.7MB, alloc=4.4MB, time=61.70 x[1] = 0.819 y[1] (analytic) = 0 y[1] (numeric) = -1.8103532186276751304281460594963 absolute error = 1.8103532186276751304281460594963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.649 Order of pole = 2.047e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.82 y[1] (analytic) = 0 y[1] (numeric) = -1.8118694766514444936230121683578 absolute error = 1.8118694766514444936230121683578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 2.070e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.821 y[1] (analytic) = 0 y[1] (numeric) = -1.813384204212131757371468622506 absolute error = 1.813384204212131757371468622506 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.651 Order of pole = 2.094e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.822 y[1] (analytic) = 0 y[1] (numeric) = -1.8148974037896917154303330663083 absolute error = 1.8148974037896917154303330663083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.652 Order of pole = 2.117e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=606.5MB, alloc=4.4MB, time=62.07 x[1] = 0.823 y[1] (analytic) = 0 y[1] (numeric) = -1.8164090778572934418405649206086 absolute error = 1.8164090778572934418405649206086 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.654 Order of pole = 2.141e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.824 y[1] (analytic) = 0 y[1] (numeric) = -1.8179192288813450847317885176831 absolute error = 1.8179192288813450847317885176831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.655 Order of pole = 2.166e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.825 y[1] (analytic) = 0 y[1] (numeric) = -1.8194278593215185465998469190826 absolute error = 1.8194278593215185465998469190826 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.656 Order of pole = 2.190e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.826 y[1] (analytic) = 0 y[1] (numeric) = -1.8209349716307740516810152778811 absolute error = 1.8209349716307740516810152778811 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.657 Order of pole = 2.215e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.827 y[1] (analytic) = 0 y[1] (numeric) = -1.8224405682553846010425084901638 absolute error = 1.8224405682553846010425084901638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.658 Order of pole = 2.240e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=610.3MB, alloc=4.4MB, time=62.43 x[1] = 0.828 y[1] (analytic) = 0 y[1] (numeric) = -1.8239446516349603160049529750822 absolute error = 1.8239446516349603160049529750822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.659 Order of pole = 2.265e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.829 y[1] (analytic) = 0 y[1] (numeric) = -1.8254472242024726705085564883484 absolute error = 1.8254472242024726705085564883484 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.66 Order of pole = 2.291e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.83 y[1] (analytic) = 0 y[1] (numeric) = -1.8269482883842786130308026726955 absolute error = 1.8269482883842786130308026726955 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.661 Order of pole = 2.316e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.831 y[1] (analytic) = 0 y[1] (numeric) = -1.8284478466001445786596183448236 absolute error = 1.8284478466001445786596183448236 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.663 Order of pole = 2.342e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.832 y[1] (analytic) = 0 y[1] (numeric) = -1.8299459012632703919221110780657 absolute error = 1.8299459012632703919221110780657 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.664 Order of pole = 2.369e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=614.1MB, alloc=4.4MB, time=62.81 x[1] = 0.833 y[1] (analytic) = 0 y[1] (numeric) = -1.8314424547803130609651522319376 absolute error = 1.8314424547803130609651522319376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.665 Order of pole = 2.395e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.834 y[1] (analytic) = 0 y[1] (numeric) = -1.8329375095514104636802859745011 absolute error = 1.8329375095514104636802859745011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.666 Order of pole = 2.422e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.835 y[1] (analytic) = 0 y[1] (numeric) = -1.8344310679702049263616778137538 absolute error = 1.8344310679702049263616778137538 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.667 Order of pole = 2.449e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.836 y[1] (analytic) = 0 y[1] (numeric) = -1.8359231324238666954820764748203 absolute error = 1.8359231324238666954820764748203 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.668 Order of pole = 2.476e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=618.0MB, alloc=4.4MB, time=63.21 x[1] = 0.837 y[1] (analytic) = 0 y[1] (numeric) = -1.8374137052931173031680504073592 absolute error = 1.8374137052931173031680504073592 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.669 Order of pole = 2.504e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.838 y[1] (analytic) = 0 y[1] (numeric) = -1.8389027889522528269520745611314 absolute error = 1.8389027889522528269520745611314 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.67 Order of pole = 2.532e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.839 y[1] (analytic) = 0 y[1] (numeric) = -1.8403903857691670443753841079278 absolute error = 1.8403903857691670443753841079278 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.671 Order of pole = 2.560e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.84 y[1] (analytic) = 0 y[1] (numeric) = -1.841876498105374483011879297824 absolute error = 1.841876498105374483011879297824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.673 Order of pole = 2.588e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.841 y[1] (analytic) = 0 y[1] (numeric) = -1.8433611283160333664797594017921 absolute error = 1.8433611283160333664797594017921 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.674 Order of pole = 2.617e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=621.8MB, alloc=4.4MB, time=63.60 x[1] = 0.842 y[1] (analytic) = 0 y[1] (numeric) = -1.844844278749968457003983497754 absolute error = 1.844844278749968457003983497754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.675 Order of pole = 2.646e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.843 y[1] (analytic) = 0 y[1] (numeric) = -1.8463259517496937950891014918482 absolute error = 1.8463259517496937950891014918482 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.676 Order of pole = 2.675e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.844 y[1] (analytic) = 0 y[1] (numeric) = -1.8478061496514353368584700215374 absolute error = 1.8478061496514353368584700215374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.677 Order of pole = 2.705e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.845 y[1] (analytic) = 0 y[1] (numeric) = -1.8492848747851534896123645546265 absolute error = 1.8492848747851534896123645546265 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.678 Order of pole = 2.734e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=625.6MB, alloc=4.4MB, time=63.99 x[1] = 0.846 y[1] (analytic) = 0 y[1] (numeric) = -1.8507621294745655461540208725871 absolute error = 1.8507621294745655461540208725871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.679 Order of pole = 2.764e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.847 y[1] (analytic) = 0 y[1] (numeric) = -1.8522379160371680184291860039283 absolute error = 1.8522379160371680184291860039283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.68 Order of pole = 2.795e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.848 y[1] (analytic) = 0 y[1] (numeric) = -1.853712236784258871021330351687 absolute error = 1.853712236784258871021330351687 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 2.825e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.849 y[1] (analytic) = 0 y[1] (numeric) = -1.8551850940209596550412690382108 absolute error = 1.8551850940209596550412690382108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.683 Order of pole = 2.856e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.85 y[1] (analytic) = 0 y[1] (numeric) = -1.8566564900462375429465611718557 absolute error = 1.8566564900462375429465611718557 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.684 Order of pole = 2.888e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=629.4MB, alloc=4.4MB, time=64.39 x[1] = 0.851 y[1] (analytic) = 0 y[1] (numeric) = -1.8581264271529272648227006273635 absolute error = 1.8581264271529272648227006273635 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.685 Order of pole = 2.919e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.852 y[1] (analytic) = 0 y[1] (numeric) = -1.8595949076277529466547808296378 absolute error = 1.8595949076277529466547808296378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.686 Order of pole = 2.951e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.853 y[1] (analytic) = 0 y[1] (numeric) = -1.8610619337513498511150087462526 absolute error = 1.8610619337513498511150087462526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.687 Order of pole = 2.983e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.854 y[1] (analytic) = 0 y[1] (numeric) = -1.8625275077982860213881596358834 absolute error = 1.8625275077982860213881596358834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.688 Order of pole = 3.016e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.855 memory used=633.2MB, alloc=4.4MB, time=64.78 y[1] (analytic) = 0 y[1] (numeric) = -1.8639916320370838285538038782342 absolute error = 1.8639916320370838285538038782342 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.689 Order of pole = 3.049e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.856 y[1] (analytic) = 0 y[1] (numeric) = -1.8654543087302414230409002379207 absolute error = 1.8654543087302414230409002379207 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.691 Order of pole = 3.082e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.857 y[1] (analytic) = 0 y[1] (numeric) = -1.8669155401342540906671360038122 absolute error = 1.8669155401342540906671360038122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.692 Order of pole = 3.115e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.858 y[1] (analytic) = 0 y[1] (numeric) = -1.8683753284996355137722034118452 absolute error = 1.8683753284996355137722034118452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.693 Order of pole = 3.149e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.859 y[1] (analytic) = 0 y[1] (numeric) = -1.8698336760709389379510334202479 absolute error = 1.8698336760709389379510334202479 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.694 Order of pole = 3.183e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=637.0MB, alloc=4.4MB, time=65.19 x[1] = 0.86 y[1] (analytic) = 0 y[1] (numeric) = -1.8712905850867782448898620800386 absolute error = 1.8712905850867782448898620800386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.695 Order of pole = 3.217e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.861 y[1] (analytic) = 0 y[1] (numeric) = -1.8727460577798489318048812507678 absolute error = 1.8727460577798489318048812507678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.696 Order of pole = 3.252e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.862 y[1] (analytic) = 0 y[1] (numeric) = -1.874200096376948997980124073548 absolute error = 1.874200096376948997980124073548 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.697 Order of pole = 3.287e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.863 y[1] (analytic) = 0 y[1] (numeric) = -1.875652703098999738898156253817 absolute error = 1.875652703098999738898156253817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.698 Order of pole = 3.322e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.864 y[1] (analytic) = 0 y[1] (numeric) = -1.8771038801610664484540866499331 absolute error = 1.8771038801610664484540866499331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.7 Order of pole = 3.358e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=640.8MB, alloc=4.4MB, time=65.60 x[1] = 0.865 y[1] (analytic) = 0 y[1] (numeric) = -1.8785536297723790297403747370791 absolute error = 1.8785536297723790297403747370791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.701 Order of pole = 3.394e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.866 y[1] (analytic) = 0 y[1] (numeric) = -1.8800019541363525148868980470634 absolute error = 1.8800019541363525148868980470634 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.702 Order of pole = 3.431e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.867 y[1] (analytic) = 0 y[1] (numeric) = -1.8814488554506074944377495029688 absolute error = 1.8814488554506074944377495029688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.703 Order of pole = 3.467e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.868 y[1] (analytic) = 0 y[1] (numeric) = -1.8828943359069904567432625042497 absolute error = 1.8828943359069904567432625042497 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.704 Order of pole = 3.504e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=644.7MB, alloc=4.4MB, time=65.99 x[1] = 0.869 y[1] (analytic) = 0 y[1] (numeric) = -1.8843383976915940378428105053259 absolute error = 1.8843383976915940378428105053259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.705 Order of pole = 3.542e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.87 y[1] (analytic) = 0 y[1] (numeric) = -1.8857810429847771823109975029608 absolute error = 1.8857810429847771823109975029608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.706 Order of pole = 3.580e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.871 y[1] (analytic) = 0 y[1] (numeric) = -1.8872222739611852155369461401952 absolute error = 1.8872222739611852155369461401952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 3.618e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.872 y[1] (analytic) = 0 y[1] (numeric) = -1.8886620927897698279035008842318 absolute error = 1.8886620927897698279035008842318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.708 Order of pole = 3.656e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.873 y[1] (analytic) = 0 y[1] (numeric) = -1.8901005016338089713302947807603 absolute error = 1.8901005016338089713302947807603 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.71 Order of pole = 3.695e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=648.5MB, alloc=4.4MB, time=66.39 x[1] = 0.874 y[1] (analytic) = 0 y[1] (numeric) = -1.8915375026509266686417794675295 absolute error = 1.8915375026509266686417794675295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.711 Order of pole = 3.734e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.875 y[1] (analytic) = 0 y[1] (numeric) = -1.8929730979931127362184892866599 absolute error = 1.8929730979931127362184892866599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 3.774e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.876 y[1] (analytic) = 0 y[1] (numeric) = -1.8944072898067424203870013107965 absolute error = 1.8944072898067424203870013107965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.713 Order of pole = 3.814e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.877 y[1] (analytic) = 0 y[1] (numeric) = -1.8958400802325959480012637366471 absolute error = 1.8958400802325959480012637366471 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.714 Order of pole = 3.854e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=652.3MB, alloc=4.4MB, time=66.78 x[1] = 0.878 y[1] (analytic) = 0 y[1] (numeric) = -1.8972714714058779916651952460228 absolute error = 1.8972714714058779916651952460228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.715 Order of pole = 3.895e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.879 y[1] (analytic) = 0 y[1] (numeric) = -1.8987014654562370500437074358338 absolute error = 1.8987014654562370500437074358338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.716 Order of pole = 3.936e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.88 y[1] (analytic) = 0 y[1] (numeric) = -1.9001300645077847437065711225722 absolute error = 1.9001300645077847437065711225722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.717 Order of pole = 3.977e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.881 y[1] (analytic) = 0 y[1] (numeric) = -1.9015572706791150269468350829335 absolute error = 1.9015572706791150269468350829335 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.719 Order of pole = 4.019e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.882 y[1] (analytic) = 0 y[1] (numeric) = -1.9029830860833233160128124510097 absolute error = 1.9029830860833233160128124510097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.72 Order of pole = 4.061e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=656.1MB, alloc=4.4MB, time=67.18 x[1] = 0.883 y[1] (analytic) = 0 y[1] (numeric) = -1.9044075128280255341899754058395 absolute error = 1.9044075128280255341899754058395 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.721 Order of pole = 4.104e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.884 y[1] (analytic) = 0 y[1] (numeric) = -1.9058305530153770741664428042346 absolute error = 1.9058305530153770741664428042346 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.722 Order of pole = 4.147e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.885 y[1] (analytic) = 0 y[1] (numeric) = -1.9072522087420916781131078971883 absolute error = 1.9072522087420916781131078971883 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.723 Order of pole = 4.190e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.886 y[1] (analytic) = 0 y[1] (numeric) = -1.9086724820994602359068340695603 absolute error = 1.9086724820994602359068340695603 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.724 Order of pole = 4.234e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.887 y[1] (analytic) = 0 y[1] (numeric) = -1.9100913751733695019225455191122 absolute error = 1.9100913751733695019225455191122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 4.278e-08 memory used=659.9MB, alloc=4.4MB, time=67.58 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.888 y[1] (analytic) = 0 y[1] (numeric) = -1.9115088900443207308174568005741 absolute error = 1.9115088900443207308174568005741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.726 Order of pole = 4.323e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.889 y[1] (analytic) = 0 y[1] (numeric) = -1.9129250287874482327281200627165 absolute error = 1.9129250287874482327281200627165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.727 Order of pole = 4.368e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.89 y[1] (analytic) = 0 y[1] (numeric) = -1.914339793472537848298421462057 absolute error = 1.914339793472537848298421462057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.729 Order of pole = 4.413e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.891 y[1] (analytic) = 0 y[1] (numeric) = -1.9157531861640453439541285077353 absolute error = 1.9157531861640453439541285077353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.73 Order of pole = 4.459e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=663.7MB, alloc=4.4MB, time=67.97 x[1] = 0.892 y[1] (analytic) = 0 y[1] (numeric) = -1.9171652089211147278370778413069 absolute error = 1.9171652089211147278370778413069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.731 Order of pole = 4.505e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.893 y[1] (analytic) = 0 y[1] (numeric) = -1.9185758637975964868095980470037 absolute error = 1.9185758637975964868095980470037 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.732 Order of pole = 4.552e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.894 y[1] (analytic) = 0 y[1] (numeric) = -1.9199851528420657449372843878026 absolute error = 1.9199851528420657449372843878026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.733 Order of pole = 4.599e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.895 y[1] (analytic) = 0 y[1] (numeric) = -1.9213930780978403438557817370254 absolute error = 1.9213930780978403438557817370254 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.734 Order of pole = 4.646e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.896 y[1] (analytic) = 0 y[1] (numeric) = -1.9227996416029988454247882918932 absolute error = 1.9227996416029988454247882918932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.735 Order of pole = 4.694e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=667.5MB, alloc=4.4MB, time=68.38 x[1] = 0.897 y[1] (analytic) = 0 y[1] (numeric) = -1.9242048453903984570700657833503 absolute error = 1.9242048453903984570700657833503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.736 Order of pole = 4.743e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.898 y[1] (analytic) = 0 y[1] (numeric) = -1.9256086914876928802118317055516 absolute error = 1.9256086914876928802118317055516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.738 Order of pole = 4.792e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.899 y[1] (analytic) = 0 y[1] (numeric) = -1.9270111819173500821755154497911 absolute error = 1.9270111819173500821755154497911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.739 Order of pole = 4.841e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.9 y[1] (analytic) = 0 y[1] (numeric) = -1.9284123186966699919784830135521 absolute error = 1.9284123186966699919784830135521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.74 Order of pole = 4.890e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=671.4MB, alloc=4.4MB, time=68.78 x[1] = 0.901 y[1] (analytic) = 0 y[1] (numeric) = -1.9298121038378021203839740391022 absolute error = 1.9298121038378021203839740391022 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.741 Order of pole = 4.941e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.902 y[1] (analytic) = 0 y[1] (numeric) = -1.9312105393477631046111501920331 absolute error = 1.9312105393477631046111501920331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.742 Order of pole = 4.991e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.903 y[1] (analytic) = 0 y[1] (numeric) = -1.932607627228454178087825193832 absolute error = 1.932607627228454178087825193832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.743 Order of pole = 5.042e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.904 y[1] (analytic) = 0 y[1] (numeric) = -1.9340033694766785656301340505093 absolute error = 1.9340033694766785656301340505093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.744 Order of pole = 5.094e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.905 y[1] (analytic) = 0 y[1] (numeric) = -1.935397768084158804431102049083 absolute error = 1.935397768084158804431102049083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.745 Order of pole = 5.146e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=675.2MB, alloc=4.4MB, time=69.18 x[1] = 0.906 y[1] (analytic) = 0 y[1] (numeric) = -1.9367908250375539912377928039799 absolute error = 1.9367908250375539912377928039799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.746 Order of pole = 5.198e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.907 y[1] (analytic) = 0 y[1] (numeric) = -1.9381825423184769560944489058213 absolute error = 1.9381825423184769560944489058213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.748 Order of pole = 5.251e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.908 y[1] (analytic) = 0 y[1] (numeric) = -1.9395729219035113630267884363205 absolute error = 1.9395729219035113630267884363205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.749 Order of pole = 5.304e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.909 y[1] (analytic) = 0 y[1] (numeric) = -1.9409619657642287380403856468388 absolute error = 1.9409619657642287380403856468388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.75 Order of pole = 5.358e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=679.0MB, alloc=4.4MB, time=69.57 x[1] = 0.91 y[1] (analytic) = 0 y[1] (numeric) = -1.9423496758672054248038443372505 absolute error = 1.9423496758672054248038443372505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.751 Order of pole = 5.412e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.911 y[1] (analytic) = 0 y[1] (numeric) = -1.943736054174039468385267799866 absolute error = 1.943736054174039468385267799866 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.752 Order of pole = 5.467e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.912 y[1] (analytic) = 0 y[1] (numeric) = -1.9451211026413674274083394949606 absolute error = 1.9451211026413674274083394949606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.753 Order of pole = 5.522e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.913 y[1] (analytic) = 0 y[1] (numeric) = -1.9465048232208811149921537856376 absolute error = 1.9465048232208811149921537856376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.754 Order of pole = 5.578e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.914 y[1] (analytic) = 0 y[1] (numeric) = -1.9478872178593442688367759669643 absolute error = 1.9478872178593442688367759669643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.755 Order of pole = 5.634e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=682.8MB, alloc=4.4MB, time=69.97 x[1] = 0.915 y[1] (analytic) = 0 y[1] (numeric) = -1.9492682884986091508143653651718 absolute error = 1.9492682884986091508143653651718 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.757 Order of pole = 5.691e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.916 y[1] (analytic) = 0 y[1] (numeric) = -1.9506480370756330764235643457617 absolute error = 1.9506480370756330764235643457617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.758 Order of pole = 5.748e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.917 y[1] (analytic) = 0 y[1] (numeric) = -1.9520264655224948744627395441217 absolute error = 1.9520264655224948744627395441217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.759 Order of pole = 5.806e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.918 y[1] (analytic) = 0 y[1] (numeric) = -1.95340357576641127727555940915 absolute error = 1.95340357576641127727555940915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.76 Order of pole = 5.864e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.919 y[1] (analytic) = 0 y[1] (numeric) = -1.9547793697297532419203041207894 absolute error = 1.9547793697297532419203041207894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 5.923e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=686.6MB, alloc=4.4MB, time=70.37 x[1] = 0.92 y[1] (analytic) = 0 y[1] (numeric) = -1.9561538493300622026122299985535 absolute error = 1.9561538493300622026122299985535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.762 Order of pole = 5.982e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.921 y[1] (analytic) = 0 y[1] (numeric) = -1.9575270164800662547862505532709 absolute error = 1.9575270164800662547862505532709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.763 Order of pole = 6.042e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.922 y[1] (analytic) = 0 y[1] (numeric) = -1.9588988730876962711251502424683 absolute error = 1.9588988730876962711251502424683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.764 Order of pole = 6.103e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.923 y[1] (analytic) = 0 y[1] (numeric) = -1.9602694210561019498965146660307 absolute error = 1.9602694210561019498965146660307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.765 Order of pole = 6.163e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=690.4MB, alloc=4.4MB, time=70.76 x[1] = 0.924 y[1] (analytic) = 0 y[1] (numeric) = -1.9616386622836677959395422788747 absolute error = 1.9616386622836677959395422788747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.767 Order of pole = 6.225e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.925 y[1] (analytic) = 0 y[1] (numeric) = -1.9630065986640290346408975980879 absolute error = 1.9630065986640290346408975980879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.768 Order of pole = 6.287e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.926 y[1] (analytic) = 0 y[1] (numeric) = -1.9643732320860874592367742409096 absolute error = 1.9643732320860874592367742409096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.769 Order of pole = 6.349e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.927 y[1] (analytic) = 0 y[1] (numeric) = -1.9657385644340272117763578455283 absolute error = 1.9657385644340272117763578455283 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.77 Order of pole = 6.412e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.928 y[1] (analytic) = 0 y[1] (numeric) = -1.9671025975873304980799138982456 absolute error = 1.9671025975873304980799138982456 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.771 Order of pole = 6.476e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=694.3MB, alloc=4.4MB, time=71.17 x[1] = 0.929 y[1] (analytic) = 0 y[1] (numeric) = -1.9684653334207932370227736182597 absolute error = 1.9684653334207932370227736182597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.772 Order of pole = 6.540e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.93 y[1] (analytic) = 0 y[1] (numeric) = -1.9698267738045406444745522361422 absolute error = 1.9698267738045406444745522361422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.773 Order of pole = 6.605e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.931 y[1] (analytic) = 0 y[1] (numeric) = -1.9711869206040427522210081458277 absolute error = 1.9711869206040427522210081458277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.774 Order of pole = 6.670e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.932 y[1] (analytic) = 0 y[1] (numeric) = -1.9725457756801298621940384152426 absolute error = 1.9725457756801298621940384152426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.775 Order of pole = 6.735e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=698.1MB, alloc=4.4MB, time=71.56 x[1] = 0.933 y[1] (analytic) = 0 y[1] (numeric) = -1.9739033408890079363334059110128 absolute error = 1.9739033408890079363334059110128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.777 Order of pole = 6.802e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.934 y[1] (analytic) = 0 y[1] (numeric) = -1.9752596180822739224019057322566 absolute error = 1.9752596180822739224019057322566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.778 Order of pole = 6.869e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.935 y[1] (analytic) = 0 y[1] (numeric) = -1.9766146091069310160738036623387 absolute error = 1.9766146091069310160738036623387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.779 Order of pole = 6.936e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.936 y[1] (analytic) = 0 y[1] (numeric) = -1.9779683158054038596145168414695 absolute error = 1.9779683158054038596145168414695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.78 Order of pole = 7.004e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.937 y[1] (analytic) = 0 y[1] (numeric) = -1.9793207400155536774676567438016 absolute error = 1.9793207400155536774676567438016 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.781 Order of pole = 7.073e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=701.9MB, alloc=4.4MB, time=71.97 x[1] = 0.938 y[1] (analytic) = 0 y[1] (numeric) = -1.9806718835706933490637167175967 absolute error = 1.9806718835706933490637167175967 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.782 Order of pole = 7.142e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.939 y[1] (analytic) = 0 y[1] (numeric) = -1.9820217482996024191628607242782 absolute error = 1.9820217482996024191628607242782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.783 Order of pole = 7.212e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.94 y[1] (analytic) = 0 y[1] (numeric) = -1.9833703360265420460424564006702 absolute error = 1.9833703360265420460424564006702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.784 Order of pole = 7.282e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.941 y[1] (analytic) = 0 y[1] (numeric) = -1.9847176485712698878381940781348 absolute error = 1.9847176485712698878381940781348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 7.353e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.942 y[1] (analytic) = 0 y[1] (numeric) = -1.9860636877490549273458438330849 absolute error = 1.9860636877490549273458438330849 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.787 Order of pole = 7.425e-08 memory used=705.7MB, alloc=4.4MB, time=72.36 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.943 y[1] (analytic) = 0 y[1] (numeric) = -1.9874084553706922355889249266381 absolute error = 1.9874084553706922355889249266381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.788 Order of pole = 7.497e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.944 y[1] (analytic) = 0 y[1] (numeric) = -1.9887519532425176744557960288909 absolute error = 1.9887519532425176744557960288909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.789 Order of pole = 7.570e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.945 y[1] (analytic) = 0 y[1] (numeric) = -1.9900941831664225387079203280671 absolute error = 1.9900941831664225387079203280671 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.79 Order of pole = 7.644e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.946 y[1] (analytic) = 0 y[1] (numeric) = -1.9914351469398681376593169099745 absolute error = 1.9914351469398681376593169099745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.791 Order of pole = 7.718e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=709.5MB, alloc=4.4MB, time=72.76 x[1] = 0.947 y[1] (analytic) = 0 y[1] (numeric) = -1.9927748463559003168254785728646 absolute error = 1.9927748463559003168254785728646 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.792 Order of pole = 7.792e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.948 y[1] (analytic) = 0 y[1] (numeric) = -1.994113283203163919838316431699 absolute error = 1.994113283203163919838316431699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.793 Order of pole = 7.868e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.949 y[1] (analytic) = 0 y[1] (numeric) = -1.9954504592659171909219831794645 absolute error = 1.9954504592659171909219831794645 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.794 Order of pole = 7.944e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.95 y[1] (analytic) = 0 y[1] (numeric) = -1.9967863763240461182227296277127 absolute error = 1.9967863763240461182227296277127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.796 Order of pole = 8.020e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.951 y[1] (analytic) = 0 y[1] (numeric) = -1.9981210361530787182842630607954 absolute error = 1.9981210361530787182842630607954 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.797 Order of pole = 8.098e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=713.3MB, alloc=4.4MB, time=73.16 x[1] = 0.952 y[1] (analytic) = 0 y[1] (numeric) = -1.9994544405241992619584009258619 absolute error = 1.9994544405241992619584009258619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.798 Order of pole = 8.176e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.953 y[1] (analytic) = 0 y[1] (numeric) = -2.0007865912042624420391493618002 absolute error = 2.0007865912042624420391493618002 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.799 Order of pole = 8.254e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.954 y[1] (analytic) = 0 y[1] (numeric) = -2.0021174899558074829066829638325 absolute error = 2.0021174899558074829066829638325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.8 Order of pole = 8.333e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.955 y[1] (analytic) = 0 y[1] (numeric) = -2.0034471385370721924660599059656 absolute error = 2.0034471385370721924660599059656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.801 Order of pole = 8.413e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=717.1MB, alloc=4.4MB, time=73.55 x[1] = 0.956 y[1] (analytic) = 0 y[1] (numeric) = -2.0047755387020069566638750211686 absolute error = 2.0047755387020069566638750211686 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.802 Order of pole = 8.494e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.957 y[1] (analytic) = 0 y[1] (numeric) = -2.0061026922002886768644325898599 absolute error = 2.0061026922002886768644325898599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.803 Order of pole = 8.575e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.958 y[1] (analytic) = 0 y[1] (numeric) = -2.0074286007773346503654103325559 absolute error = 2.0074286007773346503654103325559 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 8.657e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.959 y[1] (analytic) = 0 y[1] (numeric) = -2.008753266174316394331386364505 absolute error = 2.008753266174316394331386364505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.806 Order of pole = 8.739e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.96 y[1] (analytic) = 0 y[1] (numeric) = -2.0100766901281734134220115716011 absolute error = 2.0100766901281734134220115716011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.807 Order of pole = 8.823e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=721.0MB, alloc=4.4MB, time=73.95 x[1] = 0.961 y[1] (analytic) = 0 y[1] (numeric) = -2.0113988743716269113900309312503 absolute error = 2.0113988743716269113900309312503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.808 Order of pole = 8.907e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.962 y[1] (analytic) = 0 y[1] (numeric) = -2.0127198206331934469227886531993 absolute error = 2.0127198206331934469227886531993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 8.991e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.963 y[1] (analytic) = 0 y[1] (numeric) = -2.0140395306371985339992935782773 absolute error = 2.0140395306371985339992935782773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.81 Order of pole = 9.077e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.964 y[1] (analytic) = 0 y[1] (numeric) = -2.0153580061037901870333729728309 absolute error = 2.0153580061037901870333729728309 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.811 Order of pole = 9.163e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=724.8MB, alloc=4.4MB, time=74.35 x[1] = 0.965 y[1] (analytic) = 0 y[1] (numeric) = -2.0166752487489524110719046192225 absolute error = 2.0166752487489524110719046192225 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.812 Order of pole = 9.250e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.966 y[1] (analytic) = 0 y[1] (numeric) = -2.0179912602845186373155888545917 absolute error = 2.0179912602845186373155888545917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.813 Order of pole = 9.337e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.967 y[1] (analytic) = 0 y[1] (numeric) = -2.019306042418185104228203878231 absolute error = 2.019306042418185104228203878231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.814 Order of pole = 9.425e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.968 y[1] (analytic) = 0 y[1] (numeric) = -2.0206195968535241844987791600633 absolute error = 2.0206195968535241844987791600633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.816 Order of pole = 9.514e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.969 y[1] (analytic) = 0 y[1] (numeric) = -2.0219319252899976581196230670854 absolute error = 2.0219319252899976581196230670854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.817 Order of pole = 9.604e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=728.6MB, alloc=4.4MB, time=74.75 x[1] = 0.97 y[1] (analytic) = 0 y[1] (numeric) = -2.0232430294229699318416518100922 absolute error = 2.0232430294229699318416518100922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.818 Order of pole = 9.694e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.971 y[1] (analytic) = 0 y[1] (numeric) = -2.0245529109437212052669874289326 absolute error = 2.0245529109437212052669874289326 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 9.786e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.972 y[1] (analytic) = 0 y[1] (numeric) = -2.0258615715394605838373227109437 absolute error = 2.0258615715394605838373227109437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.82 Order of pole = 9.877e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.973 y[1] (analytic) = 0 y[1] (numeric) = -2.0271690128933391389750906046199 absolute error = 2.0271690128933391389750906046199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.821 Order of pole = 9.970e-08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.974 y[1] (analytic) = 0 y[1] (numeric) = -2.0284752366844629156330247800901 absolute error = 2.0284752366844629156330247800901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.822 Order of pole = 1.006e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=732.4MB, alloc=4.4MB, time=75.14 x[1] = 0.975 y[1] (analytic) = 0 y[1] (numeric) = -2.0297802445879058875062564312747 absolute error = 2.0297802445879058875062564312747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.823 Order of pole = 1.016e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.976 y[1] (analytic) = 0 y[1] (numeric) = -2.03108403827472286015966014387 absolute error = 2.03108403827472286015966014387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.824 Order of pole = 1.025e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.977 y[1] (analytic) = 0 y[1] (numeric) = -2.0323866194119623223217386013306 absolute error = 2.0323866194119623223217386013306 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.826 Order of pole = 1.035e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.978 y[1] (analytic) = 0 y[1] (numeric) = -2.0336879896626792455949220010778 absolute error = 2.0336879896626792455949220010778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.827 Order of pole = 1.044e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=736.2MB, alloc=4.4MB, time=75.54 x[1] = 0.979 y[1] (analytic) = 0 y[1] (numeric) = -2.034988150685947832830753239091 absolute error = 2.034988150685947832830753239091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.828 Order of pole = 1.054e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.98 y[1] (analytic) = 0 y[1] (numeric) = -2.0362871041368742154170341272035 absolute error = 2.0362871041368742154170341272035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.829 Order of pole = 1.064e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.981 y[1] (analytic) = 0 y[1] (numeric) = -2.037584851666609099722621068711 absolute error = 2.037584851666609099722621068711 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.83 Order of pole = 1.074e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.982 y[1] (analytic) = 0 y[1] (numeric) = -2.0388813949223603629441806697264 absolute error = 2.0388813949223603629441806697264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.831 Order of pole = 1.084e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.983 y[1] (analytic) = 0 y[1] (numeric) = -2.0401767355474055985978466420059 absolute error = 2.0401767355474055985978466420059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.832 Order of pole = 1.094e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=740.0MB, alloc=4.4MB, time=75.94 x[1] = 0.984 y[1] (analytic) = 0 y[1] (numeric) = -2.0414708751811046118973589941675 absolute error = 2.0414708751811046118973589941675 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.833 Order of pole = 1.104e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.985 y[1] (analytic) = 0 y[1] (numeric) = -2.042763815458911865258914849281 absolute error = 2.042763815458911865258914849281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.834 Order of pole = 1.114e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.986 y[1] (analytic) = 0 y[1] (numeric) = -2.0440555580123888741716172051747 absolute error = 2.0440555580123888741716172051747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.836 Order of pole = 1.125e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.987 y[1] (analytic) = 0 y[1] (numeric) = -2.0453461044692165536710735074347 absolute error = 2.0453461044692165536710735074347 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.837 Order of pole = 1.135e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=743.8MB, alloc=4.4MB, time=76.33 x[1] = 0.988 y[1] (analytic) = 0 y[1] (numeric) = -2.0466354564532075156523699724169 absolute error = 2.0466354564532075156523699724169 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.838 Order of pole = 1.145e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.989 y[1] (analytic) = 0 y[1] (numeric) = -2.0479236155843183172573301175847 absolute error = 2.0479236155843183172573301175847 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.839 Order of pole = 1.156e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.99 y[1] (analytic) = 0 y[1] (numeric) = -2.049210583478661660569656868553 absolute error = 2.049210583478661660569656868553 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.84 Order of pole = 1.167e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.991 y[1] (analytic) = 0 y[1] (numeric) = -2.0504963617485185438502568562683 absolute error = 2.0504963617485185438502568562683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.841 Order of pole = 1.177e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.992 y[1] (analytic) = 0 y[1] (numeric) = -2.0517809520023503645437530341696 absolute error = 2.0517809520023503645437530341696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.842 Order of pole = 1.188e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=747.7MB, alloc=4.4MB, time=76.73 x[1] = 0.993 y[1] (analytic) = 0 y[1] (numeric) = -2.0530643558448109742859074748118 absolute error = 2.0530643558448109742859074748118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.843 Order of pole = 1.199e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.994 y[1] (analytic) = 0 y[1] (numeric) = -2.0543465748767586861404000896213 absolute error = 2.0543465748767586861404000896213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.844 Order of pole = 1.210e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.995 y[1] (analytic) = 0 y[1] (numeric) = -2.0556276106952682342921409959858 absolute error = 2.0556276106952682342921409959858 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.846 Order of pole = 1.221e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.996 y[1] (analytic) = 0 y[1] (numeric) = -2.0569074648936426864230342750066 absolute error = 2.0569074648936426864230342750066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.847 Order of pole = 1.232e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.997 y[1] (analytic) = 0 y[1] (numeric) = -2.0581861390614253089948588636795 absolute error = 2.0581861390614253089948588636795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.848 Order of pole = 1.243e-07 memory used=751.5MB, alloc=4.4MB, time=77.12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.998 y[1] (analytic) = 0 y[1] (numeric) = -2.0594636347844113856626882501785 absolute error = 2.0594636347844113856626882501785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.849 Order of pole = 1.255e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 0.999 y[1] (analytic) = 0 y[1] (numeric) = -2.0607399536446599890410344339123 absolute error = 2.0607399536446599890410344339123 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.85 Order of pole = 1.266e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1 y[1] (analytic) = 0 y[1] (numeric) = -2.0620150972205057060436732171645 absolute error = 2.0620150972205057060436732171645 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.851 Order of pole = 1.278e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.001 y[1] (analytic) = 0 y[1] (numeric) = -2.0632890670865703170168872569171 absolute error = 2.0632890670865703170168872569171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.852 Order of pole = 1.289e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=755.3MB, alloc=4.4MB, time=77.52 x[1] = 1.002 y[1] (analytic) = 0 y[1] (numeric) = -2.0645618648137744288846503688293 absolute error = 2.0645618648137744288846503688293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.853 Order of pole = 1.301e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.003 y[1] (analytic) = 0 y[1] (numeric) = -2.0658334919693490625230712856751 absolute error = 2.0658334919693490625230712856751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.854 Order of pole = 1.313e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.004 y[1] (analytic) = 0 y[1] (numeric) = -2.0671039501168471945802173756356 absolute error = 2.0671039501168471945802173756356 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.856 Order of pole = 1.325e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.005 y[1] (analytic) = 0 y[1] (numeric) = -2.0683732408161552539562486679223 absolute error = 2.0683732408161552539562486679223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.857 Order of pole = 1.336e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.006 y[1] (analytic) = 0 y[1] (numeric) = -2.0696413656235045731576098609336 absolute error = 2.0696413656235045731576098609336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.858 Order of pole = 1.349e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=759.1MB, alloc=4.4MB, time=77.91 x[1] = 1.007 y[1] (analytic) = 0 y[1] (numeric) = -2.0709083260914827947378527485816 absolute error = 2.0709083260914827947378527485816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.859 Order of pole = 1.361e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.008 y[1] (analytic) = 0 y[1] (numeric) = -2.0721741237690452330364936410645 absolute error = 2.0721741237690452330364936410645 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.86 Order of pole = 1.373e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.009 y[1] (analytic) = 0 y[1] (numeric) = -2.0734387602015261914261498250946 absolute error = 2.0734387602015261914261498250946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 1.385e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.01 y[1] (analytic) = 0 y[1] (numeric) = -2.0747022369306502352770458537328 absolute error = 2.0747022369306502352770458537328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.862 Order of pole = 1.398e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=762.9MB, alloc=4.4MB, time=78.31 x[1] = 1.011 y[1] (analytic) = 0 y[1] (numeric) = -2.0759645554945434208468344262386 absolute error = 2.0759645554945434208468344262386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.863 Order of pole = 1.410e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.012 y[1] (analytic) = 0 y[1] (numeric) = -2.0772257174277444803025377628333 absolute error = 2.0772257174277444803025377628333 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.864 Order of pole = 1.423e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.013 y[1] (analytic) = 0 y[1] (numeric) = -2.0784857242612159630802836475035 absolute error = 2.0784857242612159630802836475035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 1.436e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.014 y[1] (analytic) = 0 y[1] (numeric) = -2.0797445775223553337873856538508 absolute error = 2.0797445775223553337873856538508 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.867 Order of pole = 1.448e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.015 y[1] (analytic) = 0 y[1] (numeric) = -2.0810022787350060268501994348134 absolute error = 2.0810022787350060268501994348134 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.868 Order of pole = 1.461e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=766.7MB, alloc=4.4MB, time=78.70 x[1] = 1.016 y[1] (analytic) = 0 y[1] (numeric) = -2.0822588294194684581100762975373 absolute error = 2.0822588294194684581100762975373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.869 Order of pole = 1.474e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.017 y[1] (analytic) = 0 y[1] (numeric) = -2.0835142310925109935686315508205 absolute error = 2.0835142310925109935686315508205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.87 Order of pole = 1.488e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.018 y[1] (analytic) = 0 y[1] (numeric) = -2.0847684852673808754824482558488 absolute error = 2.0847684852673808754824482558488 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.871 Order of pole = 1.501e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.019 y[1] (analytic) = 0 y[1] (numeric) = -2.086021593453815106006246983213 absolute error = 2.086021593453815106006246983213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.872 Order of pole = 1.514e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=770.5MB, alloc=4.4MB, time=79.10 x[1] = 1.02 y[1] (analytic) = 0 y[1] (numeric) = -2.0872735571580512885824689326452 absolute error = 2.0872735571580512885824689326452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 1.528e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.021 y[1] (analytic) = 0 y[1] (numeric) = -2.0885243778828384272741432591114 absolute error = 2.0885243778828384272741432591114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.874 Order of pole = 1.541e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.022 y[1] (analytic) = 0 y[1] (numeric) = -2.0897740571274476842368396227934 absolute error = 2.0897740571274476842368396227934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.876 Order of pole = 1.555e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.023 y[1] (analytic) = 0 y[1] (numeric) = -2.0910225963876830955244437943888 absolute error = 2.0910225963876830955244437943888 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 1.568e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.024 y[1] (analytic) = 0 y[1] (numeric) = -2.0922699971558922454224375547245 absolute error = 2.0922699971558922454224375547245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.878 Order of pole = 1.582e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=774.4MB, alloc=4.4MB, time=79.50 x[1] = 1.025 y[1] (analytic) = 0 y[1] (numeric) = -2.0935162609209768995013140829475 absolute error = 2.0935162609209768995013140829475 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 1.596e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.026 y[1] (analytic) = 0 y[1] (numeric) = -2.0947613891684035965817164849053 absolute error = 2.0947613891684035965817164849053 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.88 Order of pole = 1.610e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.027 y[1] (analytic) = 0 y[1] (numeric) = -2.0960053833802141998018500275 absolute error = 2.0960053833802141998018500275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.881 Order of pole = 1.625e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.028 y[1] (analytic) = 0 y[1] (numeric) = -2.0972482450350364069766879708787 absolute error = 2.0972482450350364069766879708787 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.882 Order of pole = 1.639e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.029 y[1] (analytic) = 0 y[1] (numeric) = -2.0984899756080942204374665837423 absolute error = 2.0984899756080942204374665837423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.883 Order of pole = 1.653e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=778.2MB, alloc=4.4MB, time=79.89 x[1] = 1.03 y[1] (analytic) = 0 y[1] (numeric) = -2.0997305765712183765389469435922 absolute error = 2.0997305765712183765389469435922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.884 Order of pole = 1.668e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.031 y[1] (analytic) = 0 y[1] (numeric) = -2.1009700493928567350209094195122 absolute error = 2.1009700493928567350209094195122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.885 Order of pole = 1.682e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.032 y[1] (analytic) = 0 y[1] (numeric) = -2.1022083955380846284093412665514 absolute error = 2.1022083955380846284093412665514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.887 Order of pole = 1.697e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.033 y[1] (analytic) = 0 y[1] (numeric) = -2.1034456164686151716417784847317 absolute error = 2.1034456164686151716417784847317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 1.712e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=782.0MB, alloc=4.4MB, time=80.28 x[1] = 1.034 y[1] (analytic) = 0 y[1] (numeric) = -2.1046817136428095321002699692694 absolute error = 2.1046817136428095321002699692694 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.889 Order of pole = 1.727e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.035 y[1] (analytic) = 0 y[1] (numeric) = -2.1059166885156871602344449592342 absolute error = 2.1059166885156871602344449592342 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.89 Order of pole = 1.742e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.036 y[1] (analytic) = 0 y[1] (numeric) = -2.1071505425389359809561838373448 absolute error = 2.1071505425389359809561838373448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.891 Order of pole = 1.757e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.037 y[1] (analytic) = 0 y[1] (numeric) = -2.1083832771609225459864174020298 absolute error = 2.1083832771609225459864174020298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.892 Order of pole = 1.772e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.038 y[1] (analytic) = 0 y[1] (numeric) = -2.1096148938267021473336107826868 absolute error = 2.1096148938267021473336107826868 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.893 Order of pole = 1.788e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=785.8MB, alloc=4.4MB, time=80.70 x[1] = 1.039 y[1] (analytic) = 0 y[1] (numeric) = -2.1108453939780288920825251589998 absolute error = 2.1108453939780288920825251589998 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 1.803e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.04 y[1] (analytic) = 0 y[1] (numeric) = -2.1120747790533657386708933342835 absolute error = 2.1120747790533657386708933342835 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.895 Order of pole = 1.819e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.041 y[1] (analytic) = 0 y[1] (numeric) = -2.1133030504878944948306939604891 absolute error = 2.1133030504878944948306939604891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.897 Order of pole = 1.835e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.042 y[1] (analytic) = 0 y[1] (numeric) = -2.1145302097135257773697637784128 absolute error = 2.1145302097135257773697637784128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.898 Order of pole = 1.851e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=789.6MB, alloc=4.4MB, time=81.10 x[1] = 1.043 y[1] (analytic) = 0 y[1] (numeric) = -2.1157562581589089339685475807881 absolute error = 2.1157562581589089339685475807881 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.899 Order of pole = 1.867e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.044 y[1] (analytic) = 0 y[1] (numeric) = -2.1169811972494419271658516886165 absolute error = 2.1169811972494419271658516886165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.9 Order of pole = 1.883e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.045 y[1] (analytic) = 0 y[1] (numeric) = -2.1182050284072811807065385128969 absolute error = 2.1182050284072811807065385128969 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.901 Order of pole = 1.899e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.046 y[1] (analytic) = 0 y[1] (numeric) = -2.1194277530513513884231772157524 absolute error = 2.1194277530513513884231772157524 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.902 Order of pole = 1.915e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.047 y[1] (analytic) = 0 y[1] (numeric) = -2.1206493725973552858227485480297 absolute error = 2.1206493725973552858227485480297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.903 Order of pole = 1.932e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=793.4MB, alloc=4.4MB, time=81.48 x[1] = 1.048 y[1] (analytic) = 0 y[1] (numeric) = -2.1218698884577833845485905862453 absolute error = 2.1218698884577833845485905862453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.904 Order of pole = 1.948e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.049 y[1] (analytic) = 0 y[1] (numeric) = -2.1230893020419236698868662820726 absolute error = 2.1230893020419236698868662820726 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 1.965e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.05 y[1] (analytic) = 0 y[1] (numeric) = -2.1243076147558712614859334344726 absolute error = 2.1243076147558712614859334344726 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.907 Order of pole = 1.982e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.051 y[1] (analytic) = 0 y[1] (numeric) = -2.1255248280025380374561028604419 absolute error = 2.1255248280025380374561028604419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.908 Order of pole = 1.999e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.052 y[1] (analytic) = 0 y[1] (numeric) = -2.1267409431816622220163811378317 absolute error = 2.1267409431816622220163811378317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.909 Order of pole = 2.016e-07 memory used=797.2MB, alloc=4.4MB, time=81.88 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.053 y[1] (analytic) = 0 y[1] (numeric) = -2.1279559616898179368539102857154 absolute error = 2.1279559616898179368539102857154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.91 Order of pole = 2.033e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.054 y[1] (analytic) = 0 y[1] (numeric) = -2.1291698849204247163609380975692 absolute error = 2.1291698849204247163609380975692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.911 Order of pole = 2.051e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.055 y[1] (analytic) = 0 y[1] (numeric) = -2.1303827142637569869132795135689 absolute error = 2.1303827142637569869132795135689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.912 Order of pole = 2.068e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.056 y[1] (analytic) = 0 y[1] (numeric) = -2.1315944511069535103533613743692 absolute error = 2.1315944511069535103533613743692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.913 Order of pole = 2.086e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=801.1MB, alloc=4.4MB, time=82.28 x[1] = 1.057 y[1] (analytic) = 0 y[1] (numeric) = -2.1328050968340267918400801038649 absolute error = 2.1328050968340267918400801038649 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.914 Order of pole = 2.103e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.058 y[1] (analytic) = 0 y[1] (numeric) = -2.134014652825872452226844286947 absolute error = 2.134014652825872452226844286947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.915 Order of pole = 2.121e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.059 y[1] (analytic) = 0 y[1] (numeric) = -2.1352231204602785651283217047525 absolute error = 2.1352231204602785651283217047525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.917 Order of pole = 2.139e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.06 y[1] (analytic) = 0 y[1] (numeric) = -2.1364305011119349588355631292099 absolute error = 2.1364305011119349588355631292099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.918 Order of pole = 2.157e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.061 y[1] (analytic) = 0 y[1] (numeric) = -2.1376367961524424832383330259248 absolute error = 2.1376367961524424832383330259248 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.919 Order of pole = 2.176e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=804.9MB, alloc=4.4MB, time=82.68 x[1] = 1.062 y[1] (analytic) = 0 y[1] (numeric) = -2.1388420069503222419126402350091 absolute error = 2.1388420069503222419126402350091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.92 Order of pole = 2.194e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.063 y[1] (analytic) = 0 y[1] (numeric) = -2.1400461348710247895306296589728 absolute error = 2.1400461348710247895306296589728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 2.213e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.064 y[1] (analytic) = 0 y[1] (numeric) = -2.1412491812769392947491689511702 absolute error = 2.1412491812769392947491689511702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.922 Order of pole = 2.231e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.065 y[1] (analytic) = 0 y[1] (numeric) = -2.1424511475274026687326421336733 absolute error = 2.1424511475274026687326421336733 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.923 Order of pole = 2.250e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=808.7MB, alloc=4.4MB, time=83.08 x[1] = 1.066 y[1] (analytic) = 0 y[1] (numeric) = -2.1436520349787086594646449462483 absolute error = 2.1436520349787086594646449462483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.924 Order of pole = 2.269e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.067 y[1] (analytic) = 0 y[1] (numeric) = -2.1448518449841169120024645049918 absolute error = 2.1448518449841169120024645049918 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.925 Order of pole = 2.288e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.068 y[1] (analytic) = 0 y[1] (numeric) = -2.1460505788938619948274184970572 absolute error = 2.1460505788938619948274184970572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.926 Order of pole = 2.307e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.069 y[1] (analytic) = 0 y[1] (numeric) = -2.1472482380551623924433266239243 absolute error = 2.1472482380551623924433266239243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.928 Order of pole = 2.327e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.07 y[1] (analytic) = 0 y[1] (numeric) = -2.1484448238122294643745892972419 absolute error = 2.1484448238122294643745892972419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.929 Order of pole = 2.346e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=812.5MB, alloc=4.4MB, time=83.46 x[1] = 1.071 y[1] (analytic) = 0 y[1] (numeric) = -2.1496403375062763707145556560552 absolute error = 2.1496403375062763707145556560552 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.93 Order of pole = 2.366e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.072 y[1] (analytic) = 0 y[1] (numeric) = -2.1508347804755269643740747801015 absolute error = 2.1508347804755269643740747801015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.931 Order of pole = 2.386e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.073 y[1] (analytic) = 0 y[1] (numeric) = -2.1520281540552246501793404889559 absolute error = 2.1520281540552246501793404889559 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 2.406e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.074 y[1] (analytic) = 0 y[1] (numeric) = -2.1532204595776412109673613094947 absolute error = 2.1532204595776412109673613094947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.933 Order of pole = 2.426e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.075 y[1] (analytic) = 0 y[1] (numeric) = -2.1544116983720856008266130330299 absolute error = 2.1544116983720856008266130330299 relative error = -1 % Correct digits = -1 h = 0.001 memory used=816.3MB, alloc=4.4MB, time=83.85 Complex estimate of poles used Radius of convergence = 1.934 Order of pole = 2.446e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.076 y[1] (analytic) = 0 y[1] (numeric) = -2.1556018717649127056296617373817 absolute error = 2.1556018717649127056296617373817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 2.466e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.077 y[1] (analytic) = 0 y[1] (numeric) = -2.1567909810795320710037801871756 absolute error = 2.1567909810795320710037801871756 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.936 Order of pole = 2.487e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.078 y[1] (analytic) = 0 y[1] (numeric) = -2.1579790276364165978848201170726 absolute error = 2.1579790276364165978848201170726 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 2.507e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.079 y[1] (analytic) = 0 y[1] (numeric) = -2.1591660127531112057988470169927 absolute error = 2.1591660127531112057988470169927 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.939 Order of pole = 2.528e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=820.1MB, alloc=4.4MB, time=84.22 x[1] = 1.08 y[1] (analytic) = 0 y[1] (numeric) = -2.1603519377442414640152926454321 absolute error = 2.1603519377442414640152926454321 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.94 Order of pole = 2.549e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.081 y[1] (analytic) = 0 y[1] (numeric) = -2.1615368039215221907146335666775 absolute error = 2.1615368039215221907146335666775 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 2.570e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.082 y[1] (analytic) = 0 y[1] (numeric) = -2.1627206125937660203128615102922 absolute error = 2.1627206125937660203128615102922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.942 Order of pole = 2.591e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.083 y[1] (analytic) = 0 y[1] (numeric) = -2.1639033650668919390842732571121 absolute error = 2.1639033650668919390842732571121 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.943 Order of pole = 2.613e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.084 y[1] (analytic) = 0 y[1] (numeric) = -2.1650850626439337892233740357821 absolute error = 2.1650850626439337892233740357821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.944 Order of pole = 2.634e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=824.0MB, alloc=4.4MB, time=84.60 x[1] = 1.085 y[1] (analytic) = 0 y[1] (numeric) = -2.1662657066250487414859590384504 absolute error = 2.1662657066250487414859590384504 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.945 Order of pole = 2.656e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.086 y[1] (analytic) = 0 y[1] (numeric) = -2.1674452983075257365487126046916 absolute error = 2.1674452983075257365487126046916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.946 Order of pole = 2.678e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.087 y[1] (analytic) = 0 y[1] (numeric) = -2.168623838985793895225943850337 absolute error = 2.168623838985793895225943850337 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 2.700e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.088 y[1] (analytic) = 0 y[1] (numeric) = -2.1698013299514308976813610041568 absolute error = 2.1698013299514308976813610041568 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.949 Order of pole = 2.722e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=827.8MB, alloc=4.4MB, time=84.96 x[1] = 1.089 y[1] (analytic) = 0 y[1] (numeric) = -2.1709777724931713317720744319717 absolute error = 2.1709777724931713317720744319717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.95 Order of pole = 2.745e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.09 y[1] (analytic) = 0 y[1] (numeric) = -2.1721531678969150106613102466906 absolute error = 2.1721531678969150106613102466906 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.951 Order of pole = 2.767e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.091 y[1] (analytic) = 0 y[1] (numeric) = -2.1733275174457352598356124961083 absolute error = 2.1733275174457352598356124961083 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.952 Order of pole = 2.790e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.092 y[1] (analytic) = 0 y[1] (numeric) = -2.174500822419887173661612160377 absolute error = 2.174500822419887173661612160377 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.953 Order of pole = 2.813e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.093 y[1] (analytic) = 0 y[1] (numeric) = -2.1756730840968158416167455504297 absolute error = 2.1756730840968158416167455504297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.954 Order of pole = 2.836e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=831.6MB, alloc=4.4MB, time=85.33 x[1] = 1.094 y[1] (analytic) = 0 y[1] (numeric) = -2.1768443037511645443276131500173 absolute error = 2.1768443037511645443276131500173 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.955 Order of pole = 2.859e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.095 y[1] (analytic) = 0 y[1] (numeric) = -2.1780144826547829195489824603632 absolute error = 2.1780144826547829195489824603632 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.956 Order of pole = 2.882e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.096 y[1] (analytic) = 0 y[1] (numeric) = -2.1791836220767350982157549608753 absolute error = 2.1791836220767350982157549608753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.957 Order of pole = 2.905e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.097 y[1] (analytic) = 0 y[1] (numeric) = -2.1803517232833078106995378652196 absolute error = 2.1803517232833078106995378652196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.959 Order of pole = 2.929e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=835.4MB, alloc=4.4MB, time=85.70 x[1] = 1.098 y[1] (analytic) = 0 y[1] (numeric) = -2.1815187875380184634007859028837 absolute error = 2.1815187875380184634007859028837 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.96 Order of pole = 2.953e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.099 y[1] (analytic) = 0 y[1] (numeric) = -2.1826848161016231858068068658617 absolute error = 2.1826848161016231858068068658617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.961 Order of pole = 2.977e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.1 y[1] (analytic) = 0 y[1] (numeric) = -2.1838498102321248481452571021925 absolute error = 2.1838498102321248481452571021925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.962 Order of pole = 3.001e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.101 y[1] (analytic) = 0 y[1] (numeric) = -2.1850137711847810497620894868885 absolute error = 2.1850137711847810497620894868885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.963 Order of pole = 3.025e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.102 y[1] (analytic) = 0 y[1] (numeric) = -2.1861767002121120783522566305962 absolute error = 2.1861767002121120783522566305962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.964 Order of pole = 3.050e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=839.2MB, alloc=4.4MB, time=86.07 x[1] = 1.103 y[1] (analytic) = 0 y[1] (numeric) = -2.187338598563908840170816171614 absolute error = 2.187338598563908840170816171614 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 3.074e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.104 y[1] (analytic) = 0 y[1] (numeric) = -2.1884994674872407613514329123357 absolute error = 2.1884994674872407613514329123357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.966 Order of pole = 3.099e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.105 y[1] (analytic) = 0 y[1] (numeric) = -2.189659308226463660458624281631 absolute error = 2.189659308226463660458624281631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.967 Order of pole = 3.124e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.106 y[1] (analytic) = 0 y[1] (numeric) = -2.1908181220232275923994511051703 absolute error = 2.1908181220232275923994511051703 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.968 Order of pole = 3.149e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.107 y[1] (analytic) = 0 y[1] (numeric) = -2.1919759101164846638197149214562 absolute error = 2.1919759101164846638197149214562 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.97 Order of pole = 3.175e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=843.0MB, alloc=4.4MB, time=86.44 x[1] = 1.108 y[1] (analytic) = 0 y[1] (numeric) = -2.1931326737424968201090860677477 absolute error = 2.1931326737424968201090860677477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 3.200e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.109 y[1] (analytic) = 0 y[1] (numeric) = -2.1942884141348436041389534527313 absolute error = 2.1942884141348436041389534527313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.972 Order of pole = 3.226e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.11 y[1] (analytic) = 0 y[1] (numeric) = -2.1954431325244298868561573074605 absolute error = 2.1954431325244298868561573074605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.973 Order of pole = 3.252e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.111 y[1] (analytic) = 0 y[1] (numeric) = -2.196596830139493569855140238689 absolute error = 2.196596830139493569855140238689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.974 Order of pole = 3.278e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=846.8MB, alloc=4.4MB, time=86.81 x[1] = 1.112 y[1] (analytic) = 0 y[1] (numeric) = -2.1977495082056132600504295753652 absolute error = 2.1977495082056132600504295753652 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.975 Order of pole = 3.304e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.113 y[1] (analytic) = 0 y[1] (numeric) = -2.1989011679457159165707452760214 absolute error = 2.1989011679457159165707452760214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.976 Order of pole = 3.330e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.114 y[1] (analytic) = 0 y[1] (numeric) = -2.2000518105800844699954125285311 absolute error = 2.2000518105800844699954125285311 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.977 Order of pole = 3.357e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.115 y[1] (analytic) = 0 y[1] (numeric) = -2.2012014373263654140531466008434 absolute error = 2.2012014373263654140531466008434 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.978 Order of pole = 3.384e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.116 y[1] (analytic) = 0 y[1] (numeric) = -2.2023500493995763699026694686323 absolute error = 2.2023500493995763699026694686323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.98 Order of pole = 3.411e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=850.7MB, alloc=4.4MB, time=87.20 x[1] = 1.117 y[1] (analytic) = 0 y[1] (numeric) = -2.2034976480121136231140132302718 absolute error = 2.2034976480121136231140132302718 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.981 Order of pole = 3.438e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.118 y[1] (analytic) = 0 y[1] (numeric) = -2.2046442343737596334687642983039 absolute error = 2.2046442343737596334687642983039 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.982 Order of pole = 3.465e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.119 y[1] (analytic) = 0 y[1] (numeric) = -2.2057898096916905176969048068827 absolute error = 2.2057898096916905176969048068827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.983 Order of pole = 3.493e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.12 y[1] (analytic) = 0 y[1] (numeric) = -2.2069343751704835052673135740259 absolute error = 2.2069343751704835052673135740259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.984 Order of pole = 3.520e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=854.5MB, alloc=4.4MB, time=87.57 x[1] = 1.121 y[1] (analytic) = 0 y[1] (numeric) = -2.2080779320121243673483982834873 absolute error = 2.2080779320121243673483982834873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.985 Order of pole = 3.548e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.122 y[1] (analytic) = 0 y[1] (numeric) = -2.209220481416014819054743281472 absolute error = 2.209220481416014819054743281472 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.986 Order of pole = 3.576e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.123 y[1] (analytic) = 0 y[1] (numeric) = -2.2103620245789798950950734961832 absolute error = 2.2103620245789798950950734961832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.987 Order of pole = 3.605e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.124 y[1] (analytic) = 0 y[1] (numeric) = -2.2115025626952752989362544614145 absolute error = 2.2115025626952752989362544614145 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.988 Order of pole = 3.633e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.125 y[1] (analytic) = 0 y[1] (numeric) = -2.2126420969565947255974712373421 absolute error = 2.2126420969565947255974712373421 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.989 Order of pole = 3.662e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=858.3MB, alloc=4.4MB, time=87.97 x[1] = 1.126 y[1] (analytic) = 0 y[1] (numeric) = -2.2137806285520771581881551507372 absolute error = 2.2137806285520771581881551507372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.991 Order of pole = 3.691e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.127 y[1] (analytic) = 0 y[1] (numeric) = -2.2149181586683141383026567015777 absolute error = 2.2149181586683141383026567015777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.992 Order of pole = 3.720e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.128 y[1] (analytic) = 0 y[1] (numeric) = -2.2160546884893570103840956822108 absolute error = 2.2160546884893570103840956822108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.993 Order of pole = 3.749e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.129 y[1] (analytic) = 0 y[1] (numeric) = -2.2171902191967241401692555076773 absolute error = 2.2171902191967241401692555076773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.994 Order of pole = 3.778e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.13 y[1] (analytic) = 0 y[1] (numeric) = -2.2183247519694081073258279405785 absolute error = 2.2183247519694081073258279405785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.995 Order of pole = 3.808e-07 memory used=862.1MB, alloc=4.4MB, time=88.34 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.131 y[1] (analytic) = 0 y[1] (numeric) = -2.2194582879838828723927567901223 absolute error = 2.2194582879838828723927567901223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 3.838e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.132 y[1] (analytic) = 0 y[1] (numeric) = -2.2205908284141109181338747520517 absolute error = 2.2205908284141109181338747520517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.997 Order of pole = 3.868e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.133 y[1] (analytic) = 0 y[1] (numeric) = -2.2217223744315503654144763135039 absolute error = 2.2217223744315503654144763135039 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.998 Order of pole = 3.898e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.134 y[1] (analytic) = 0 y[1] (numeric) = -2.2228529272051620637099215540957 absolute error = 2.2228529272051620637099215540957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1.999 Order of pole = 3.929e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=865.9MB, alloc=4.4MB, time=88.71 x[1] = 1.135 y[1] (analytic) = 0 y[1] (numeric) = -2.2239824879014166563548207114373 absolute error = 2.2239824879014166563548207114373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.001 Order of pole = 3.959e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.136 y[1] (analytic) = 0 y[1] (numeric) = -2.2251110576843016206408075257572 absolute error = 2.2251110576843016206408075257572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.002 Order of pole = 3.990e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.137 y[1] (analytic) = 0 y[1] (numeric) = -2.2262386377153282828703706144205 absolute error = 2.2262386377153282828703706144205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.003 Order of pole = 4.021e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.138 y[1] (analytic) = 0 y[1] (numeric) = -2.22736522915353880847367643304 absolute error = 2.22736522915353880847367643304 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.004 Order of pole = 4.053e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.139 y[1] (analytic) = 0 y[1] (numeric) = -2.2284908331555131672947847359439 absolute error = 2.2284908331555131672947847359439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.005 Order of pole = 4.084e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=869.7MB, alloc=4.4MB, time=89.10 x[1] = 1.14 y[1] (analytic) = 0 y[1] (numeric) = -2.2296154508753760741531278354541 absolute error = 2.2296154508753760741531278354541 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.006 Order of pole = 4.116e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.141 y[1] (analytic) = 0 y[1] (numeric) = -2.2307390834648039047855983573534 absolute error = 2.2307390834648039047855983573534 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.007 Order of pole = 4.148e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.142 y[1] (analytic) = 0 y[1] (numeric) = -2.2318617320730315872740665798344 absolute error = 2.2318617320730315872740665798344 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.008 Order of pole = 4.180e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.143 y[1] (analytic) = 0 y[1] (numeric) = -2.2329833978468594690626278060087 absolute error = 2.2329833978468594690626278060087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.009 Order of pole = 4.212e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=873.5MB, alloc=4.4MB, time=89.48 x[1] = 1.144 y[1] (analytic) = 0 y[1] (numeric) = -2.2341040819306601596683625367413 absolute error = 2.2341040819306601596683625367413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.01 Order of pole = 4.245e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.145 y[1] (analytic) = 0 y[1] (numeric) = -2.235223785466385349188877462313 absolute error = 2.235223785466385349188877462313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.012 Order of pole = 4.277e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.146 y[1] (analytic) = 0 y[1] (numeric) = -2.2363425095935726027093834595013 absolute error = 2.2363425095935726027093834595013 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.013 Order of pole = 4.310e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.147 y[1] (analytic) = 0 y[1] (numeric) = -2.2374602554493521307115578465218 absolute error = 2.2374602554493521307115578465218 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.014 Order of pole = 4.344e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.148 y[1] (analytic) = 0 y[1] (numeric) = -2.2385770241684535355859320934514 absolute error = 2.2385770241684535355859320934514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.015 Order of pole = 4.377e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=877.4MB, alloc=4.4MB, time=89.84 x[1] = 1.149 y[1] (analytic) = 0 y[1] (numeric) = -2.2396928168832125343490429919405 absolute error = 2.2396928168832125343490429919405 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 4.411e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.15 y[1] (analytic) = 0 y[1] (numeric) = -2.2408076347235776576660849370302 absolute error = 2.2408076347235776576660849370302 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.017 Order of pole = 4.445e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.151 y[1] (analytic) = 0 y[1] (numeric) = -2.2419214788171169252793034476656 absolute error = 2.2419214788171169252793034476656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.018 Order of pole = 4.479e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.152 y[1] (analytic) = 0 y[1] (numeric) = -2.2430343502890244979418753331063 absolute error = 2.2430343502890244979418753331063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.019 Order of pole = 4.513e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=881.2MB, alloc=4.4MB, time=90.21 x[1] = 1.153 y[1] (analytic) = 0 y[1] (numeric) = -2.2441462502621273059565289820794 absolute error = 2.2441462502621273059565289820794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.02 Order of pole = 4.548e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.154 y[1] (analytic) = 0 y[1] (numeric) = -2.2452571798568916544176690925147 absolute error = 2.2452571798568916544176690925147 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.021 Order of pole = 4.582e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.155 y[1] (analytic) = 0 y[1] (numeric) = -2.2463671401914298052552837545011 absolute error = 2.2463671401914298052552837545011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.023 Order of pole = 4.617e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.156 y[1] (analytic) = 0 y[1] (numeric) = -2.2474761323815065361784281302697 absolute error = 2.2474761323815065361784281302697 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.024 Order of pole = 4.653e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.157 y[1] (analytic) = 0 y[1] (numeric) = -2.248584157540545676615598025237 absolute error = 2.248584157540545676615598025237 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.025 Order of pole = 4.688e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=885.0MB, alloc=4.4MB, time=90.57 x[1] = 1.158 y[1] (analytic) = 0 y[1] (numeric) = -2.24969121677963662074882839625 absolute error = 2.24969121677963662074882839625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.026 Order of pole = 4.724e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.159 y[1] (analytic) = 0 y[1] (numeric) = -2.2507973112075408177378762800881 absolute error = 2.2507973112075408177378762800881 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.027 Order of pole = 4.760e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.16 y[1] (analytic) = 0 y[1] (numeric) = -2.2519024419306982392303747300585 absolute error = 2.2519024419306982392303747300585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.028 Order of pole = 4.796e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.161 y[1] (analytic) = 0 y[1] (numeric) = -2.2530066100532338242533741043398 absolute error = 2.2530066100532338242533741043398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 4.832e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.162 y[1] (analytic) = 0 y[1] (numeric) = -2.2541098166769639015812194398741 absolute error = 2.2541098166769639015812194398741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.03 Order of pole = 4.869e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=888.8MB, alloc=4.4MB, time=90.94 x[1] = 1.163 y[1] (analytic) = 0 y[1] (numeric) = -2.2552120629014025896742476534889 absolute error = 2.2552120629014025896742476534889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.031 Order of pole = 4.906e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.164 y[1] (analytic) = 0 y[1] (numeric) = -2.2563133498237681742823259210725 absolute error = 2.2563133498237681742823259210725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.032 Order of pole = 4.943e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.165 y[1] (analytic) = 0 y[1] (numeric) = -2.2574136785389894638067927796656 absolute error = 2.2574136785389894638067927796656 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.034 Order of pole = 4.980e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.166 y[1] (analytic) = 0 y[1] (numeric) = -2.2585130501397121225139062600212 absolute error = 2.2585130501397121225139062600212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.035 Order of pole = 5.018e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=892.6MB, alloc=4.4MB, time=91.31 x[1] = 1.167 y[1] (analytic) = 0 y[1] (numeric) = -2.2596114657163049816924486723965 absolute error = 2.2596114657163049816924486723965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.036 Order of pole = 5.056e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.168 y[1] (analytic) = 0 y[1] (numeric) = -2.2607089263568663288476855200422 absolute error = 2.2607089263568663288476855200422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.037 Order of pole = 5.094e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.169 y[1] (analytic) = 0 y[1] (numeric) = -2.2618054331472301750234263871511 absolute error = 2.2618054331472301750234263871511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.038 Order of pole = 5.132e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.17 y[1] (analytic) = 0 y[1] (numeric) = -2.2629009871709725003434885251081 absolute error = 2.2629009871709725003434885251081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.039 Order of pole = 5.171e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.171 y[1] (analytic) = 0 y[1] (numeric) = -2.2639955895094174778634192270663 absolute error = 2.2639955895094174778634192270663 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.04 Order of pole = 5.209e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=896.4MB, alloc=4.4MB, time=91.67 x[1] = 1.172 y[1] (analytic) = 0 y[1] (numeric) = -2.2650892412416436758228909205784 absolute error = 2.2650892412416436758228909205784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.041 Order of pole = 5.249e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.173 y[1] (analytic) = 0 y[1] (numeric) = -2.266181943444490238388743205765 absolute error = 2.266181943444490238388743205765 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.042 Order of pole = 5.288e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.174 y[1] (analytic) = 0 y[1] (numeric) = -2.2672736971925630449782088069405 absolute error = 2.2672736971925630449782088069405 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.044 Order of pole = 5.327e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.175 y[1] (analytic) = 0 y[1] (numeric) = -2.2683645035582408482514255734871 absolute error = 2.2683645035582408482514255734871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.045 Order of pole = 5.367e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=900.3MB, alloc=4.4MB, time=92.04 x[1] = 1.176 y[1] (analytic) = 0 y[1] (numeric) = -2.2694543636116813908619042459113 absolute error = 2.2694543636116813908619042459113 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.046 Order of pole = 5.407e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.177 y[1] (analytic) = 0 y[1] (numeric) = -2.270543278420827501053191680396 absolute error = 2.270543278420827501053191680396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.047 Order of pole = 5.448e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.178 y[1] (analytic) = 0 y[1] (numeric) = -2.2716312490514131671895415848274 absolute error = 2.2716312490514131671895415848274 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.048 Order of pole = 5.488e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.179 y[1] (analytic) = 0 y[1] (numeric) = -2.2727182765669695913079795463926 absolute error = 2.2727182765669695913079795463926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.049 Order of pole = 5.529e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.18 y[1] (analytic) = 0 y[1] (numeric) = -2.273804362028831221778726210677 absolute error = 2.273804362028831221778726210677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.05 Order of pole = 5.570e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=904.1MB, alloc=4.4MB, time=92.40 x[1] = 1.181 y[1] (analytic) = 0 y[1] (numeric) = -2.2748895064961417651605218901006 absolute error = 2.2748895064961417651605218901006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.051 Order of pole = 5.612e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.182 y[1] (analytic) = 0 y[1] (numeric) = -2.2759737110258601773369776209937 absolute error = 2.2759737110258601773369776209937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.052 Order of pole = 5.653e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.183 y[1] (analytic) = 0 y[1] (numeric) = -2.2770569766727666340196617391859 absolute error = 2.2770569766727666340196617391859 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.053 Order of pole = 5.695e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.184 y[1] (analytic) = 0 y[1] (numeric) = -2.2781393044894684807032173893367 absolute error = 2.2781393044894684807032173893367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.055 Order of pole = 5.738e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.185 y[1] (analytic) = 0 y[1] (numeric) = -2.2792206955264061621573950091395 absolute error = 2.2792206955264061621573950091395 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.056 Order of pole = 5.780e-07 memory used=907.9MB, alloc=4.4MB, time=92.77 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.186 y[1] (analytic) = 0 y[1] (numeric) = -2.2803011508318591315404747218422 absolute error = 2.2803011508318591315404747218422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.057 Order of pole = 5.823e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.187 y[1] (analytic) = 0 y[1] (numeric) = -2.281380671451951739218146715211 absolute error = 2.281380671451951739218146715211 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.058 Order of pole = 5.866e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.188 y[1] (analytic) = 0 y[1] (numeric) = -2.2824592584306591013715130681784 absolute error = 2.2824592584306591013715130681784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.059 Order of pole = 5.909e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.189 y[1] (analytic) = 0 y[1] (numeric) = -2.2835369128098129484774720941075 absolute error = 2.2835369128098129484774720941075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.06 Order of pole = 5.953e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=911.7MB, alloc=4.4MB, time=93.13 x[1] = 1.19 y[1] (analytic) = 0 y[1] (numeric) = -2.284613635629107453744346088133 absolute error = 2.284613635629107453744346088133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.061 Order of pole = 5.996e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.191 y[1] (analytic) = 0 y[1] (numeric) = -2.2856894279261050415852153817342 absolute error = 2.2856894279261050415852153817342 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.062 Order of pole = 6.041e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.192 y[1] (analytic) = 0 y[1] (numeric) = -2.2867642907362421762110258070058 absolute error = 2.2867642907362421762110258070058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.063 Order of pole = 6.085e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.193 y[1] (analytic) = 0 y[1] (numeric) = -2.2878382250928351304251430425358 absolute error = 2.2878382250928351304251430425358 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.064 Order of pole = 6.130e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.194 y[1] (analytic) = 0 y[1] (numeric) = -2.2889112320270857347006358390105 absolute error = 2.2889112320270857347006358390105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.066 Order of pole = 6.175e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=915.5MB, alloc=4.4MB, time=93.49 x[1] = 1.195 y[1] (analytic) = 0 y[1] (numeric) = -2.2899833125680871066211807923461 absolute error = 2.2899833125680871066211807923461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.067 Order of pole = 6.220e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.196 y[1] (analytic) = 0 y[1] (numeric) = -2.2910544677428293607660941321063 absolute error = 2.2910544677428293607660941321063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.068 Order of pole = 6.265e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.197 y[1] (analytic) = 0 y[1] (numeric) = -2.2921246985762052991196109100997 absolute error = 2.2921246985762052991196109100997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.069 Order of pole = 6.311e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.198 y[1] (analytic) = 0 y[1] (numeric) = -2.2931940060910160820841489953374 absolute error = 2.2931940060910160820841489953374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.07 Order of pole = 6.357e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=919.3MB, alloc=4.4MB, time=93.86 x[1] = 1.199 y[1] (analytic) = 0 y[1] (numeric) = -2.2942623913079768801769143940515 absolute error = 2.2942623913079768801769143940515 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.071 Order of pole = 6.403e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.2 y[1] (analytic) = 0 y[1] (numeric) = -2.2953298552457225064888256043832 absolute error = 2.2953298552457225064888256043832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.072 Order of pole = 6.450e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.201 y[1] (analytic) = 0 y[1] (numeric) = -2.2963963989208130299843579718972 absolute error = 2.2963963989208130299843579718972 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.073 Order of pole = 6.497e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.202 y[1] (analytic) = 0 y[1] (numeric) = -2.2974620233477393697205343215998 absolute error = 2.2974620233477393697205343215998 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.074 Order of pole = 6.544e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.203 y[1] (analytic) = 0 y[1] (numeric) = -2.2985267295389288700629154920574 absolute error = 2.2985267295389288700629154920574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.075 Order of pole = 6.592e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=923.1MB, alloc=4.4MB, time=94.22 x[1] = 1.204 y[1] (analytic) = 0 y[1] (numeric) = -2.2995905185047508569760737750309 absolute error = 2.2995905185047508569760737750309 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.077 Order of pole = 6.640e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.205 y[1] (analytic) = 0 y[1] (numeric) = -2.3006533912535221754656636573569 absolute error = 2.3006533912535221754656636573569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.078 Order of pole = 6.688e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.206 y[1] (analytic) = 0 y[1] (numeric) = -2.3017153487915127082488376582949 absolute error = 2.3017153487915127082488376582949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.079 Order of pole = 6.736e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.207 y[1] (analytic) = 0 y[1] (numeric) = -2.3027763921229508757293904429761 absolute error = 2.3027763921229508757293904429761 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.08 Order of pole = 6.785e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=927.0MB, alloc=4.4MB, time=94.59 x[1] = 1.208 y[1] (analytic) = 0 y[1] (numeric) = -2.3038365222500291173536517587831 absolute error = 2.3038365222500291173536517587831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.081 Order of pole = 6.834e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.209 y[1] (analytic) = 0 y[1] (numeric) = -2.3048957401729093544227880743822 absolute error = 2.3048957401729093544227880743822 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.082 Order of pole = 6.883e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.21 y[1] (analytic) = 0 y[1] (numeric) = -2.3059540468897284344368140887312 absolute error = 2.3059540468897284344368140887312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.083 Order of pole = 6.933e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.211 y[1] (analytic) = 0 y[1] (numeric) = -2.3070114433966035570452585077804 absolute error = 2.3070114433966035570452585077804 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.084 Order of pole = 6.983e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.212 y[1] (analytic) = 0 y[1] (numeric) = -2.3080679306876376816790736479477 absolute error = 2.3080679306876376816790736479477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.085 Order of pole = 7.033e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=930.8MB, alloc=4.4MB, time=94.95 x[1] = 1.213 y[1] (analytic) = 0 y[1] (numeric) = -2.3091235097549249169380255060227 absolute error = 2.3091235097549249169380255060227 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.086 Order of pole = 7.084e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.214 y[1] (analytic) = 0 y[1] (numeric) = -2.3101781815885558918074499232749 absolute error = 2.3101781815885558918074499232749 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.088 Order of pole = 7.135e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.215 y[1] (analytic) = 0 y[1] (numeric) = -2.3112319471766231087779113556093 absolute error = 2.3112319471766231087779113556093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.089 Order of pole = 7.186e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.216 y[1] (analytic) = 0 y[1] (numeric) = -2.3122848075052262789409535301171 absolute error = 2.3122848075052262789409535301171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.09 Order of pole = 7.237e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.217 y[1] (analytic) = 0 y[1] (numeric) = -2.3133367635584776391337859098744 absolute error = 2.3133367635584776391337859098744 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.091 Order of pole = 7.289e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=934.6MB, alloc=4.4MB, time=95.31 x[1] = 1.218 y[1] (analytic) = 0 y[1] (numeric) = -2.314387816318507251205406391983 absolute error = 2.314387816318507251205406391983 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.092 Order of pole = 7.341e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.219 y[1] (analytic) = 0 y[1] (numeric) = -2.3154379667654682834763190173495 absolute error = 2.3154379667654682834763190173495 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.093 Order of pole = 7.394e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.22 y[1] (analytic) = 0 y[1] (numeric) = -2.316487215877542274463665663345 absolute error = 2.316487215877542274463665663345 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.094 Order of pole = 7.447e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.221 y[1] (analytic) = 0 y[1] (numeric) = -2.3175355646309443789432527111563 absolute error = 2.3175355646309443789432527111563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.095 Order of pole = 7.500e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=938.4MB, alloc=4.4MB, time=95.67 x[1] = 1.222 y[1] (analytic) = 0 y[1] (numeric) = -2.3185830139999285964196175172624 absolute error = 2.3185830139999285964196175172624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.096 Order of pole = 7.553e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.223 y[1] (analytic) = 0 y[1] (numeric) = -2.3196295649567929820749451620759 absolute error = 2.3196295649567929820749451620759 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.097 Order of pole = 7.607e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.224 y[1] (analytic) = 0 y[1] (numeric) = -2.3206752184718848402673133874596 absolute error = 2.3206752184718848402673133874596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.099 Order of pole = 7.661e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.225 y[1] (analytic) = 0 y[1] (numeric) = -2.3217199755136059006484128577329 absolute error = 2.3217199755136059006484128577329 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.1 Order of pole = 7.715e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.226 y[1] (analytic) = 0 y[1] (numeric) = -2.3227638370484174769705608751551 absolute error = 2.3227638370484174769705608751551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.101 Order of pole = 7.770e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=942.2MB, alloc=4.4MB, time=96.04 x[1] = 1.227 y[1] (analytic) = 0 y[1] (numeric) = -2.3238068040408456086524994400257 absolute error = 2.3238068040408456086524994400257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.102 Order of pole = 7.825e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.228 y[1] (analytic) = 0 y[1] (numeric) = -2.32484887745348618517314305685 absolute error = 2.32484887745348618517314305685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.103 Order of pole = 7.881e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.229 y[1] (analytic) = 0 y[1] (numeric) = -2.3258900582470100533621179409388 absolute error = 2.3258900582470100533621179409388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.104 Order of pole = 7.936e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.23 y[1] (analytic) = 0 y[1] (numeric) = -2.3269303473801681076556122638628 absolute error = 2.3269303473801681076556122638628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.105 Order of pole = 7.992e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=946.0MB, alloc=4.4MB, time=96.41 x[1] = 1.231 y[1] (analytic) = 0 y[1] (numeric) = -2.3279697458097963633857367809565 absolute error = 2.3279697458097963633857367809565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.106 Order of pole = 8.049e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.232 y[1] (analytic) = 0 y[1] (numeric) = -2.3290082544908210131712765992291 absolute error = 2.3290082544908210131712765992291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.107 Order of pole = 8.106e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.233 y[1] (analytic) = 0 y[1] (numeric) = -2.3300458743762634664773979593145 absolute error = 2.3300458743762634664773979593145 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.108 Order of pole = 8.163e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.234 y[1] (analytic) = 0 y[1] (numeric) = -2.3310826064172453724115587102852 absolute error = 2.3310826064172453724115587102852 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.11 Order of pole = 8.220e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.235 y[1] (analytic) = 0 y[1] (numeric) = -2.3321184515629936258225576411261 absolute error = 2.3321184515629936258225576411261 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.111 Order of pole = 8.278e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=949.8MB, alloc=4.4MB, time=96.77 x[1] = 1.236 y[1] (analytic) = 0 y[1] (numeric) = -2.3331534107608453567693459873543 absolute error = 2.3331534107608453567693459873543 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.112 Order of pole = 8.336e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.237 y[1] (analytic) = 0 y[1] (numeric) = -2.3341874849562529034259142456758 absolute error = 2.3341874849562529034259142456758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.113 Order of pole = 8.394e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.238 y[1] (analytic) = 0 y[1] (numeric) = -2.3352206750927887684882588937608 absolute error = 2.3352206750927887684882588937608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.114 Order of pole = 8.453e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.239 y[1] (analytic) = 0 y[1] (numeric) = -2.3362529821121505591491267163296 absolute error = 2.3362529821121505591491267163296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.115 Order of pole = 8.512e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.24 y[1] (analytic) = 0 y[1] (numeric) = -2.3372844069541659107059291729677 absolute error = 2.3372844069541659107059291729677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.116 Order of pole = 8.572e-07 memory used=953.7MB, alloc=4.4MB, time=97.14 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.241 y[1] (analytic) = 0 y[1] (numeric) = -2.3383149505567973938669155977 absolute error = 2.3383149505567973938669155977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.117 Order of pole = 8.632e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.242 y[1] (analytic) = 0 y[1] (numeric) = -2.3393446138561474058203919856745 absolute error = 2.3393446138561474058203919856745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.118 Order of pole = 8.692e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.243 y[1] (analytic) = 0 y[1] (numeric) = -2.3403733977864630451314716887336 absolute error = 2.3403733977864630451314716887336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.119 Order of pole = 8.753e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.244 y[1] (analytic) = 0 y[1] (numeric) = -2.3414013032801409705305454996361 absolute error = 2.3414013032801409705305454996361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.121 Order of pole = 8.814e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=957.5MB, alloc=4.4MB, time=97.50 x[1] = 1.245 y[1] (analytic) = 0 y[1] (numeric) = -2.3424283312677322436573613447636 absolute error = 2.3424283312677322436573613447636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.122 Order of pole = 8.875e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.246 y[1] (analytic) = 0 y[1] (numeric) = -2.343454482677947155824308117874 absolute error = 2.343454482677947155824308117874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.123 Order of pole = 8.937e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.247 y[1] (analytic) = 0 y[1] (numeric) = -2.3444797584376600388622040635071 absolute error = 2.3444797584376600388622040635071 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.124 Order of pole = 8.999e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.248 y[1] (analytic) = 0 y[1] (numeric) = -2.3455041594719140601115975487001 absolute error = 2.3455041594719140601115975487001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.125 Order of pole = 9.061e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.249 y[1] (analytic) = 0 y[1] (numeric) = -2.3465276867039260016222970365085 absolute error = 2.3465276867039260016222970365085 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.126 Order of pole = 9.124e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=961.3MB, alloc=4.4MB, time=97.87 x[1] = 1.25 y[1] (analytic) = 0 y[1] (numeric) = -2.3475503410550910236235575852776 absolute error = 2.3475503410550910236235575852776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.127 Order of pole = 9.187e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.251 y[1] (analytic) = 0 y[1] (numeric) = -2.3485721234449874123270632345582 absolute error = 2.3485721234449874123270632345582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.128 Order of pole = 9.251e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.252 y[1] (analytic) = 0 y[1] (numeric) = -2.3495930347913813121245581929607 absolute error = 2.3495930347913813121245581929607 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.129 Order of pole = 9.315e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.253 y[1] (analytic) = 0 y[1] (numeric) = -2.3506130760102314422416948061004 absolute error = 2.3506130760102314422416948061004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.13 Order of pole = 9.379e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=965.1MB, alloc=4.4MB, time=98.23 x[1] = 1.254 y[1] (analytic) = 0 y[1] (numeric) = -2.3516322480156937979093828451725 absolute error = 2.3516322480156937979093828451725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.132 Order of pole = 9.444e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.255 y[1] (analytic) = 0 y[1] (numeric) = -2.352650551720126336113642709735 absolute error = 2.352650551720126336113642709735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.133 Order of pole = 9.509e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.256 y[1] (analytic) = 0 y[1] (numeric) = -2.3536679880340936459846846731563 absolute error = 2.3536679880340936459846846731563 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.134 Order of pole = 9.574e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.257 y[1] (analytic) = 0 y[1] (numeric) = -2.3546845578663716038856573071452 absolute error = 2.3546845578663716038856573071452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.135 Order of pole = 9.640e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.258 y[1] (analytic) = 0 y[1] (numeric) = -2.3557002621239520132612306941232 absolute error = 2.3557002621239520132612306941232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.136 Order of pole = 9.706e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=968.9MB, alloc=4.4MB, time=98.60 x[1] = 1.259 y[1] (analytic) = 0 y[1] (numeric) = -2.3567151017120472293059039642817 absolute error = 2.3567151017120472293059039642817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.137 Order of pole = 9.773e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.26 y[1] (analytic) = 0 y[1] (numeric) = -2.3577290775340947685116520694044 absolute error = 2.3577290775340947685116520694044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.138 Order of pole = 9.840e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.261 y[1] (analytic) = 0 y[1] (numeric) = -2.3587421904917619031542535193936 absolute error = 2.3587421904917619031542535193936 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.139 Order of pole = 9.907e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.262 y[1] (analytic) = 0 y[1] (numeric) = -2.3597544414849502407773690514537 absolute error = 2.3597544414849502407773690514537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.14 Order of pole = 9.975e-07 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=972.7MB, alloc=4.4MB, time=98.97 x[1] = 1.263 y[1] (analytic) = 0 y[1] (numeric) = -2.3607658314118002887331708676259 absolute error = 2.3607658314118002887331708676259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.141 Order of pole = 1.004e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.264 y[1] (analytic) = 0 y[1] (numeric) = -2.3617763611686960038380531554811 absolute error = 2.3617763611686960038380531554811 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.143 Order of pole = 1.011e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.265 y[1] (analytic) = 0 y[1] (numeric) = -2.3627860316502693272016870909509 absolute error = 2.3627860316502693272016870909509 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.144 Order of pole = 1.018e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.266 y[1] (analytic) = 0 y[1] (numeric) = -2.3637948437494047042874174032531 absolute error = 2.3637948437494047042874174032531 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.145 Order of pole = 1.025e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.267 y[1] (analytic) = 0 y[1] (numeric) = -2.3648027983572435902617328514514 absolute error = 2.3648027983572435902617328514514 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.146 Order of pole = 1.032e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=976.5MB, alloc=4.4MB, time=99.34 x[1] = 1.268 y[1] (analytic) = 0 y[1] (numeric) = -2.365809896363188940690279612228 absolute error = 2.365809896363188940690279612228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.147 Order of pole = 1.039e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.269 y[1] (analytic) = 0 y[1] (numeric) = -2.3668161386549096876376246008529 absolute error = 2.3668161386549096876376246008529 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.148 Order of pole = 1.046e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.27 y[1] (analytic) = 0 y[1] (numeric) = -2.3678215261183452012277151340587 absolute error = 2.3678215261183452012277151340587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.149 Order of pole = 1.053e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.271 y[1] (analytic) = 0 y[1] (numeric) = -2.3688260596377097367217220865883 absolute error = 2.3688260596377097367217220865883 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.15 Order of pole = 1.060e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.272 y[1] (analytic) = 0 y[1] (numeric) = -2.3698297400954968671696957846387 absolute error = 2.3698297400954968671696957846387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.151 Order of pole = 1.068e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=980.4MB, alloc=4.4MB, time=99.72 x[1] = 1.273 y[1] (analytic) = 0 y[1] (numeric) = -2.3708325683724839016922073113884 absolute error = 2.3708325683724839016922073113884 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.152 Order of pole = 1.075e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.274 y[1] (analytic) = 0 y[1] (numeric) = -2.3718345453477362894478926644386 absolute error = 2.3718345453477362894478926644386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.154 Order of pole = 1.082e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.275 y[1] (analytic) = 0 y[1] (numeric) = -2.3728356718986120093425632945301 absolute error = 2.3728356718986120093425632945301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.155 Order of pole = 1.089e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.276 y[1] (analytic) = 0 y[1] (numeric) = -2.3738359489007659455352939615939 absolute error = 2.3738359489007659455352939615939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.156 Order of pole = 1.097e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=984.2MB, alloc=4.4MB, time=100.09 x[1] = 1.277 y[1] (analytic) = 0 y[1] (numeric) = -2.3748353772281542487966475603614 absolute error = 2.3748353772281542487966475603614 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.157 Order of pole = 1.104e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.278 y[1] (analytic) = 0 y[1] (numeric) = -2.3758339577530386837739465857746 absolute error = 2.3758339577530386837739465857746 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.158 Order of pole = 1.111e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.279 y[1] (analytic) = 0 y[1] (numeric) = -2.3768316913459909622182522207106 absolute error = 2.3768316913459909622182522207106 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 1.119e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.28 y[1] (analytic) = 0 y[1] (numeric) = -2.3778285788758970622274646275323 absolute error = 2.3778285788758970622274646275323 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.16 Order of pole = 1.126e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.281 y[1] (analytic) = 0 y[1] (numeric) = -2.3788246212099615335597119032148 absolute error = 2.3788246212099615335597119032148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.161 Order of pole = 1.134e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=988.0MB, alloc=4.4MB, time=100.47 x[1] = 1.282 y[1] (analytic) = 0 y[1] (numeric) = -2.3798198192137117890709503078376 absolute error = 2.3798198192137117890709503078376 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.162 Order of pole = 1.142e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.283 y[1] (analytic) = 0 y[1] (numeric) = -2.3808141737510023823304547906825 absolute error = 2.3808141737510023823304547906825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.163 Order of pole = 1.149e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.284 y[1] (analytic) = 0 y[1] (numeric) = -2.3818076856840192714676365096988 absolute error = 2.3818076856840192714676365096988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.165 Order of pole = 1.157e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.285 y[1] (analytic) = 0 y[1] (numeric) = -2.3828003558732840693033829613946 absolute error = 2.3828003558732840693033829613946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.166 Order of pole = 1.165e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=991.8MB, alloc=4.4MB, time=100.84 x[1] = 1.286 y[1] (analytic) = 0 y[1] (numeric) = -2.383792185177658279818876502038 absolute error = 2.383792185177658279818876502038 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 1.173e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.287 y[1] (analytic) = 0 y[1] (numeric) = -2.3847831744543475210146084402031 absolute error = 2.3847831744543475210146084402031 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.168 Order of pole = 1.180e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.288 y[1] (analytic) = 0 y[1] (numeric) = -2.3857733245589057342120685080212 absolute error = 2.3857733245589057342120685080212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.169 Order of pole = 1.188e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.289 y[1] (analytic) = 0 y[1] (numeric) = -2.3867626363452393798503533668853 absolute error = 2.3867626363452393798503533668853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.17 Order of pole = 1.196e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.29 y[1] (analytic) = 0 y[1] (numeric) = -2.3877511106656116198297028657468 absolute error = 2.3877511106656116198297028657468 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.171 Order of pole = 1.204e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=995.6MB, alloc=4.4MB, time=101.22 x[1] = 1.291 y[1] (analytic) = 0 y[1] (numeric) = -2.3887387483706464864537390395155 absolute error = 2.3887387483706464864537390395155 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.172 Order of pole = 1.212e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.292 y[1] (analytic) = 0 y[1] (numeric) = -2.3897255503093330380219503044601 absolute error = 2.3897255503093330380219503044601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.173 Order of pole = 1.220e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.293 y[1] (analytic) = 0 y[1] (numeric) = -2.3907115173290295011237319699737 absolute error = 2.3907115173290295011237319699737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.174 Order of pole = 1.228e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.294 y[1] (analytic) = 0 y[1] (numeric) = -2.3916966502754673996850640347382 absolute error = 2.3916966502754673996850640347382 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.175 Order of pole = 1.236e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.295 y[1] (analytic) = 0 y[1] (numeric) = -2.3926809499927556708186782633509 absolute error = 2.3926809499927556708186782633509 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.177 Order of pole = 1.245e-06 memory used=999.4MB, alloc=4.4MB, time=101.61 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.296 y[1] (analytic) = 0 y[1] (numeric) = -2.3936644173233847675283387400728 absolute error = 2.3936644173233847675283387400728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.178 Order of pole = 1.253e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.297 y[1] (analytic) = 0 y[1] (numeric) = -2.3946470531082307483176334627664 absolute error = 2.3946470531082307483176334627664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.179 Order of pole = 1.261e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.298 y[1] (analytic) = 0 y[1] (numeric) = -2.3956288581865593537534490656059 absolute error = 2.3956288581865593537534490656059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.18 Order of pole = 1.269e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.299 y[1] (analytic) = 0 y[1] (numeric) = -2.3966098333960300700340764370961 absolute error = 2.3966098333960300700340764370961 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.181 Order of pole = 1.278e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1003.3MB, alloc=4.4MB, time=101.99 x[1] = 1.3 y[1] (analytic) = 0 y[1] (numeric) = -2.3975899795727001796116718237057 absolute error = 2.3975899795727001796116718237057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.182 Order of pole = 1.286e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.301 y[1] (analytic) = 0 y[1] (numeric) = -2.3985692975510287989185759724251 absolute error = 2.3985692975510287989185759724251 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.183 Order of pole = 1.295e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.302 y[1] (analytic) = 0 y[1] (numeric) = -2.3995477881638809032467729612582 absolute error = 2.3995477881638809032467729612582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.184 Order of pole = 1.303e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.303 y[1] (analytic) = 0 y[1] (numeric) = -2.4005254522425313388295505885566 absolute error = 2.4005254522425313388295505885566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.185 Order of pole = 1.312e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.304 y[1] (analytic) = 0 y[1] (numeric) = -2.4015022906166688221742055337454 absolute error = 2.4015022906166688221742055337454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.186 Order of pole = 1.320e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1007.1MB, alloc=4.4MB, time=102.37 x[1] = 1.305 y[1] (analytic) = 0 y[1] (numeric) = -2.4024783041143999266944189569577 absolute error = 2.4024783041143999266944189569577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.188 Order of pole = 1.329e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.306 y[1] (analytic) = 0 y[1] (numeric) = -2.4034534935622530566907117670164 absolute error = 2.4034534935622530566907117670164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.189 Order of pole = 1.338e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.307 y[1] (analytic) = 0 y[1] (numeric) = -2.404427859785182408727173449744 absolute error = 2.404427859785182408727173449744 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.19 Order of pole = 1.347e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.308 y[1] (analytic) = 0 y[1] (numeric) = -2.4054014036065719204524441054486 absolute error = 2.4054014036065719204524441054486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.191 Order of pole = 1.355e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1010.9MB, alloc=4.4MB, time=102.73 x[1] = 1.309 y[1] (analytic) = 0 y[1] (numeric) = -2.4063741258482392069127161893749 absolute error = 2.4063741258482392069127161893749 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.192 Order of pole = 1.364e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.31 y[1] (analytic) = 0 y[1] (numeric) = -2.4073460273304394844043103757107 absolute error = 2.4073460273304394844043103757107 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.193 Order of pole = 1.373e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.311 y[1] (analytic) = 0 y[1] (numeric) = -2.4083171088718694819131689682242 absolute error = 2.4083171088718694819131689682242 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.194 Order of pole = 1.382e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.312 y[1] (analytic) = 0 y[1] (numeric) = -2.4092873712896713401884003526438 absolute error = 2.4092873712896713401884003526438 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.195 Order of pole = 1.391e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.313 y[1] (analytic) = 0 y[1] (numeric) = -2.410256815399436498496799121381 absolute error = 2.410256815399436498496799121381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.196 Order of pole = 1.400e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1014.7MB, alloc=4.4MB, time=103.10 x[1] = 1.314 y[1] (analytic) = 0 y[1] (numeric) = -2.4112254420152095691050586940832 absolute error = 2.4112254420152095691050586940832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.197 Order of pole = 1.409e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.315 y[1] (analytic) = 0 y[1] (numeric) = -2.4121932519494921995361865017658 absolute error = 2.4121932519494921995361865017658 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.199 Order of pole = 1.418e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.316 y[1] (analytic) = 0 y[1] (numeric) = -2.4131602460132469226464260919289 absolute error = 2.4131602460132469226464260919289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.2 Order of pole = 1.428e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.317 y[1] (analytic) = 0 y[1] (numeric) = -2.4141264250159009945687858411753 absolute error = 2.4141264250159009945687858411753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.201 Order of pole = 1.437e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1018.5MB, alloc=4.4MB, time=103.46 x[1] = 1.318 y[1] (analytic) = 0 y[1] (numeric) = -2.4150917897653502205690703245015 absolute error = 2.4150917897653502205690703245015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.202 Order of pole = 1.446e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.319 y[1] (analytic) = 0 y[1] (numeric) = -2.4160563410679627688601077807632 absolute error = 2.4160563410679627688601077807632 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.203 Order of pole = 1.455e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.32 y[1] (analytic) = 0 y[1] (numeric) = -2.4170200797285829724196655259985 absolute error = 2.4170200797285829724196655259985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.204 Order of pole = 1.465e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.321 y[1] (analytic) = 0 y[1] (numeric) = -2.4179830065505351188573445945152 absolute error = 2.4179830065505351188573445945152 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.205 Order of pole = 1.474e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.322 y[1] (analytic) = 0 y[1] (numeric) = -2.4189451223356272283755453261719 absolute error = 2.4189451223356272283755453261719 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.206 Order of pole = 1.484e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1022.3MB, alloc=4.4MB, time=103.83 x[1] = 1.323 y[1] (analytic) = 0 y[1] (numeric) = -2.4199064278841548198693970613697 absolute error = 2.4199064278841548198693970613697 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.207 Order of pole = 1.493e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.324 y[1] (analytic) = 0 y[1] (numeric) = -2.4208669239949046652103475472439 absolute error = 2.4208669239949046652103475472439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.208 Order of pole = 1.503e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.325 y[1] (analytic) = 0 y[1] (numeric) = -2.4218266114651585317579110937505 absolute error = 2.4218266114651585317579110937505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.21 Order of pole = 1.513e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.326 y[1] (analytic) = 0 y[1] (numeric) = -2.4227854910906969131438789411647 absolute error = 2.4227854910906969131438789411647 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.211 Order of pole = 1.522e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.327 y[1] (analytic) = 0 y[1] (numeric) = -2.42374356366580274837310070537 absolute error = 2.42374356366580274837310070537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.212 Order of pole = 1.532e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1026.1MB, alloc=4.4MB, time=104.19 x[1] = 1.328 y[1] (analytic) = 0 y[1] (numeric) = -2.4247008299832651292847521486684 absolute error = 2.4247008299832651292847521486684 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.213 Order of pole = 1.542e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.329 y[1] (analytic) = 0 y[1] (numeric) = -2.425657290834382996417811876182 absolute error = 2.425657290834382996417811876182 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.214 Order of pole = 1.552e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.33 y[1] (analytic) = 0 y[1] (numeric) = -2.4266129470089688233242778757574 absolute error = 2.4266129470089688233242778757574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.215 Order of pole = 1.562e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.331 y[1] (analytic) = 0 y[1] (numeric) = -2.4275677992953522893734640971986 absolute error = 2.4275677992953522893734640971986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.216 Order of pole = 1.572e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1030.0MB, alloc=4.4MB, time=104.55 x[1] = 1.332 y[1] (analytic) = 0 y[1] (numeric) = -2.4285218484803839410905274992222 absolute error = 2.4285218484803839410905274992222 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.217 Order of pole = 1.582e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.333 y[1] (analytic) = 0 y[1] (numeric) = -2.4294750953494388420721871743853 absolute error = 2.4294750953494388420721871743853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.218 Order of pole = 1.592e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.334 y[1] (analytic) = 0 y[1] (numeric) = -2.4304275406864202115224092880398 absolute error = 2.4304275406864202115224092880398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.219 Order of pole = 1.602e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.335 y[1] (analytic) = 0 y[1] (numeric) = -2.4313791852737630514506446318093 absolute error = 2.4313791852737630514506446318093 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.22 Order of pole = 1.612e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.336 y[1] (analytic) = 0 y[1] (numeric) = -2.4323300298924377625750195898917 absolute error = 2.4323300298924377625750195898917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.222 Order of pole = 1.623e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1033.8MB, alloc=4.4MB, time=104.91 x[1] = 1.337 y[1] (analytic) = 0 y[1] (numeric) = -2.4332800753219537489726962424292 absolute error = 2.4332800753219537489726962424292 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.223 Order of pole = 1.633e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.338 y[1] (analytic) = 0 y[1] (numeric) = -2.4342293223403630115194331790385 absolute error = 2.4342293223403630115194331790385 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.224 Order of pole = 1.643e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.339 y[1] (analytic) = 0 y[1] (numeric) = -2.4351777717242637301601953621919 absolute error = 2.4351777717242637301601953621919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.225 Order of pole = 1.654e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.34 y[1] (analytic) = 0 y[1] (numeric) = -2.4361254242488038350524790593383 absolute error = 2.4361254242488038350524790593383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.226 Order of pole = 1.664e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1037.6MB, alloc=4.4MB, time=105.28 x[1] = 1.341 y[1] (analytic) = 0 y[1] (numeric) = -2.4370722806876845666238364493386 absolute error = 2.4370722806876845666238364493386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.227 Order of pole = 1.675e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.342 y[1] (analytic) = 0 y[1] (numeric) = -2.4380183418131640245849039978882 absolute error = 2.4380183418131640245849039978882 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.228 Order of pole = 1.685e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.343 y[1] (analytic) = 0 y[1] (numeric) = -2.4389636083960607059390590830569 absolute error = 2.4389636083960607059390590830569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.229 Order of pole = 1.696e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.344 y[1] (analytic) = 0 y[1] (numeric) = -2.4399080812057570320296506308839 absolute error = 2.4399080812057570320296506308839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.23 Order of pole = 1.707e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.345 y[1] (analytic) = 0 y[1] (numeric) = -2.4408517610102028646655716871302 absolute error = 2.4408517610102028646655716871302 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.231 Order of pole = 1.718e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1041.4MB, alloc=4.4MB, time=105.65 x[1] = 1.346 y[1] (analytic) = 0 y[1] (numeric) = -2.4417946485759190113657648998654 absolute error = 2.4417946485759190113657648998654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.233 Order of pole = 1.728e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.347 y[1] (analytic) = 0 y[1] (numeric) = -2.4427367446680007197630758136215 absolute error = 2.4427367446680007197630758136215 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.234 Order of pole = 1.739e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.348 y[1] (analytic) = 0 y[1] (numeric) = -2.443678050050121161207693674493 absolute error = 2.443678050050121161207693674493 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.235 Order of pole = 1.750e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.349 y[1] (analytic) = 0 y[1] (numeric) = -2.4446185654845349036102451119374 absolute error = 2.4446185654845349036102451119374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.236 Order of pole = 1.761e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.35 y[1] (analytic) = 0 y[1] (numeric) = -2.445558291732081373564432592299 absolute error = 2.445558291732081373564432592299 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.237 Order of pole = 1.772e-06 memory used=1045.2MB, alloc=4.4MB, time=106.02 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.351 y[1] (analytic) = 0 y[1] (numeric) = -2.4464972295521883077889369264398 absolute error = 2.4464972295521883077889369264398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.238 Order of pole = 1.783e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.352 y[1] (analytic) = 0 y[1] (numeric) = -2.4474353797028751939281313545436 absolute error = 2.4474353797028751939281313545436 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.239 Order of pole = 1.795e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.353 y[1] (analytic) = 0 y[1] (numeric) = -2.4483727429407567007509838204125 absolute error = 2.4483727429407567007509838204125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.24 Order of pole = 1.806e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.354 y[1] (analytic) = 0 y[1] (numeric) = -2.4493093200210460977873539806962 absolute error = 2.4493093200210460977873539806962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.241 Order of pole = 1.817e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1049.0MB, alloc=4.4MB, time=106.38 x[1] = 1.355 y[1] (analytic) = 0 y[1] (numeric) = -2.4502451116975586644407222667848 absolute error = 2.4502451116975586644407222667848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.242 Order of pole = 1.828e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.356 y[1] (analytic) = 0 y[1] (numeric) = -2.4511801187227150886162199239116 absolute error = 2.4511801187227150886162199239116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.244 Order of pole = 1.840e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.357 y[1] (analytic) = 0 y[1] (numeric) = -2.4521143418475448549026613887165 absolute error = 2.4521143418475448549026613887165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.245 Order of pole = 1.851e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.358 y[1] (analytic) = 0 y[1] (numeric) = -2.4530477818216896223471136285208 absolute error = 2.4530477818216896223471136285208 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.246 Order of pole = 1.863e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.359 y[1] (analytic) = 0 y[1] (numeric) = -2.453980439393406591860371148284 absolute error = 2.453980439393406591860371148284 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.247 Order of pole = 1.874e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1052.8MB, alloc=4.4MB, time=106.75 x[1] = 1.36 y[1] (analytic) = 0 y[1] (numeric) = -2.4549123153095718632915402701153 absolute error = 2.4549123153095718632915402701153 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.248 Order of pole = 1.886e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.361 y[1] (analytic) = 0 y[1] (numeric) = -2.4558434103156837822097720007767 absolute error = 2.4558434103156837822097720007767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.249 Order of pole = 1.898e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.362 y[1] (analytic) = 0 y[1] (numeric) = -2.4567737251558662764310193203587 absolute error = 2.4567737251558662764310193203587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.25 Order of pole = 1.910e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.363 y[1] (analytic) = 0 y[1] (numeric) = -2.4577032605728721823275320457717 absolute error = 2.4577032605728721823275320457717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.251 Order of pole = 1.922e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1056.7MB, alloc=4.4MB, time=107.12 x[1] = 1.364 y[1] (analytic) = 0 y[1] (numeric) = -2.4586320173080865609576405414427 absolute error = 2.4586320173080865609576405414427 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.252 Order of pole = 1.933e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.365 y[1] (analytic) = 0 y[1] (numeric) = -2.4595599961015300040532184622371 absolute error = 2.4595599961015300040532184622371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.253 Order of pole = 1.945e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.366 y[1] (analytic) = 0 y[1] (numeric) = -2.4604871976918619299020544157572 absolute error = 2.4604871976918619299020544157572 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.254 Order of pole = 1.957e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.367 y[1] (analytic) = 0 y[1] (numeric) = -2.4614136228163838691622029184533 absolute error = 2.4614136228163838691622029184533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.256 Order of pole = 1.970e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.368 y[1] (analytic) = 0 y[1] (numeric) = -2.4623392722110427406452262880945 absolute error = 2.4623392722110427406452262880945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.257 Order of pole = 1.982e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1060.5MB, alloc=4.4MB, time=107.49 x[1] = 1.369 y[1] (analytic) = 0 y[1] (numeric) = -2.4632641466104341171050811597899 absolute error = 2.4632641466104341171050811597899 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.258 Order of pole = 1.994e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.37 y[1] (analytic) = 0 y[1] (numeric) = -2.4641882467478054810692461296465 absolute error = 2.4641882467478054810692461296465 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.259 Order of pole = 2.006e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.371 y[1] (analytic) = 0 y[1] (numeric) = -2.4651115733550594707485306150643 absolute error = 2.4651115733550594707485306150643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.26 Order of pole = 2.019e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.372 y[1] (analytic) = 0 y[1] (numeric) = -2.4660341271627571160618493693703 absolute error = 2.4660341271627571160618493693703 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.261 Order of pole = 2.031e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1064.3MB, alloc=4.4MB, time=107.86 x[1] = 1.373 y[1] (analytic) = 0 y[1] (numeric) = -2.4669559089001210648120921967953 absolute error = 2.4669559089001210648120921967953 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.262 Order of pole = 2.044e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.374 y[1] (analytic) = 0 y[1] (numeric) = -2.4678769192950387990490642775279 absolute error = 2.4678769192950387990490642775279 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.263 Order of pole = 2.056e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.375 y[1] (analytic) = 0 y[1] (numeric) = -2.4687971590740658416553191275985 absolute error = 2.4687971590740658416553191275985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.264 Order of pole = 2.069e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.376 y[1] (analytic) = 0 y[1] (numeric) = -2.4697166289624289531905535805315 absolute error = 2.4697166289624289531905535805315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.265 Order of pole = 2.081e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.377 y[1] (analytic) = 0 y[1] (numeric) = -2.4706353296840293190300822829681 absolute error = 2.4706353296840293190300822829681 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.267 Order of pole = 2.094e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1068.1MB, alloc=4.4MB, time=108.24 x[1] = 1.378 y[1] (analytic) = 0 y[1] (numeric) = -2.4715532619614457268327580407305 absolute error = 2.4715532619614457268327580407305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.268 Order of pole = 2.107e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.379 y[1] (analytic) = 0 y[1] (numeric) = -2.4724704265159377343735539310366 absolute error = 2.4724704265159377343735539310366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.269 Order of pole = 2.120e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.38 y[1] (analytic) = 0 y[1] (numeric) = -2.4733868240674488277758734067545 absolute error = 2.4733868240674488277758734067545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.27 Order of pole = 2.133e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.381 y[1] (analytic) = 0 y[1] (numeric) = -2.4743024553346095701785056557218 absolute error = 2.4743024553346095701785056557218 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.271 Order of pole = 2.146e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.382 y[1] (analytic) = 0 y[1] (numeric) = -2.4752173210347407408719952382718 absolute error = 2.4752173210347407408719952382718 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.272 Order of pole = 2.159e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1071.9MB, alloc=4.4MB, time=108.62 x[1] = 1.383 y[1] (analytic) = 0 y[1] (numeric) = -2.4761314218838564649390475052609 absolute error = 2.4761314218838564649390475052609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.273 Order of pole = 2.172e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.384 y[1] (analytic) = 0 y[1] (numeric) = -2.4770447585966673334334444931619 absolute error = 2.4770447585966673334334444931619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.274 Order of pole = 2.185e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.385 y[1] (analytic) = 0 y[1] (numeric) = -2.4779573318865835141317998982699 absolute error = 2.4779573318865835141317998982699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.275 Order of pole = 2.198e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.386 y[1] (analytic) = 0 y[1] (numeric) = -2.4788691424657178528923363448952 absolute error = 2.4788691424657178528923363448952 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.276 Order of pole = 2.212e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1075.7MB, alloc=4.4MB, time=108.99 x[1] = 1.387 y[1] (analytic) = 0 y[1] (numeric) = -2.4797801910448889656547234787355 absolute error = 2.4797801910448889656547234787355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.277 Order of pole = 2.225e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.388 y[1] (analytic) = 0 y[1] (numeric) = -2.4806904783336243211148714325971 absolute error = 2.4806904783336243211148714325971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.279 Order of pole = 2.239e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.389 y[1] (analytic) = 0 y[1] (numeric) = -2.4816000050401633141084309234753 absolute error = 2.4816000050401633141084309234753 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.28 Order of pole = 2.252e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.39 y[1] (analytic) = 0 y[1] (numeric) = -2.482508771871460329736608643917 absolute error = 2.482508771871460329736608643917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.281 Order of pole = 2.266e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.391 y[1] (analytic) = 0 y[1] (numeric) = -2.483416779533187798267764702821 absolute error = 2.483416779533187798267764702821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.282 Order of pole = 2.280e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1079.5MB, alloc=4.4MB, time=109.36 x[1] = 1.392 y[1] (analytic) = 0 y[1] (numeric) = -2.4843240287297392408481176476434 absolute error = 2.4843240287297392408481176476434 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.283 Order of pole = 2.293e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.393 y[1] (analytic) = 0 y[1] (numeric) = -2.4852305201642323060547420576578 absolute error = 2.4852305201642323060547420576578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.284 Order of pole = 2.307e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.394 y[1] (analytic) = 0 y[1] (numeric) = -2.4861362545385117973239038327735 absolute error = 2.4861362545385117973239038327735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.285 Order of pole = 2.321e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.395 y[1] (analytic) = 0 y[1] (numeric) = -2.487041232553152691287639110782 absolute error = 2.487041232553152691287639110782 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.286 Order of pole = 2.335e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1083.4MB, alloc=4.4MB, time=109.74 x[1] = 1.396 y[1] (analytic) = 0 y[1] (numeric) = -2.4879454549074631470513442241209 absolute error = 2.4879454549074631470513442241209 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.287 Order of pole = 2.349e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.397 y[1] (analytic) = 0 y[1] (numeric) = -2.4888489222994875064450062517068 absolute error = 2.4888489222994875064450062517068 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.288 Order of pole = 2.363e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.398 y[1] (analytic) = 0 y[1] (numeric) = -2.4897516354260092852805665284743 absolute error = 2.4897516354260092852805665284743 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.29 Order of pole = 2.378e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.399 y[1] (analytic) = 0 y[1] (numeric) = -2.4906535949825541556477729414007 absolute error = 2.4906535949825541556477729414007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.291 Order of pole = 2.392e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.4 y[1] (analytic) = 0 y[1] (numeric) = -2.4915548016633929192807409624212 absolute error = 2.4915548016633929192807409624212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.292 Order of pole = 2.406e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1087.2MB, alloc=4.4MB, time=110.13 x[1] = 1.401 y[1] (analytic) = 0 y[1] (numeric) = -2.4924552561615444720273081422222 absolute error = 2.4924552561615444720273081422222 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.293 Order of pole = 2.421e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.402 y[1] (analytic) = 0 y[1] (numeric) = -2.4933549591687787594531322109101 absolute error = 2.4933549591687787594531322109101 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.294 Order of pole = 2.435e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.403 y[1] (analytic) = 0 y[1] (numeric) = -2.494253911375619723612348998503 absolute error = 2.494253911375619723612348998503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.295 Order of pole = 2.450e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.404 y[1] (analytic) = 0 y[1] (numeric) = -2.4951521134713482410164730966026 absolute error = 2.4951521134713482410164730966026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.296 Order of pole = 2.464e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.405 y[1] (analytic) = 0 y[1] (numeric) = -2.4960495661440050518330915290188 absolute error = 2.4960495661440050518330915290188 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.297 Order of pole = 2.479e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1091.0MB, alloc=4.4MB, time=110.51 x[1] = 1.406 y[1] (analytic) = 0 y[1] (numeric) = -2.4969462700803936803457686801088 absolute error = 2.4969462700803936803457686801088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.298 Order of pole = 2.494e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.407 y[1] (analytic) = 0 y[1] (numeric) = -2.4978422259660833467064493417368 absolute error = 2.4978422259660833467064493417368 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.299 Order of pole = 2.509e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.408 y[1] (analytic) = 0 y[1] (numeric) = -2.4987374344854118700115159796736 absolute error = 2.4987374344854118700115159796736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.3 Order of pole = 2.524e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.409 y[1] (analytic) = 0 y[1] (numeric) = -2.4996318963214885627325261845577 absolute error = 2.4996318963214885627325261845577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.302 Order of pole = 2.539e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1094.8MB, alloc=4.4MB, time=110.89 x[1] = 1.41 y[1] (analytic) = 0 y[1] (numeric) = -2.5005256121561971165325267578834 absolute error = 2.5005256121561971165325267578834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.303 Order of pole = 2.554e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.411 y[1] (analytic) = 0 y[1] (numeric) = -2.5014185826701984794987119865293 absolute error = 2.5014185826701984794987119865293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.304 Order of pole = 2.569e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.412 y[1] (analytic) = 0 y[1] (numeric) = -2.5023108085429337248220653767856 absolute error = 2.5023108085429337248220653767856 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.305 Order of pole = 2.584e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.413 y[1] (analytic) = 0 y[1] (numeric) = -2.5032022904526269109544964473796 absolute error = 2.5032022904526269109544964473796 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.306 Order of pole = 2.599e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.414 y[1] (analytic) = 0 y[1] (numeric) = -2.5040930290762879332738571173702 absolute error = 2.5040930290762879332738571173702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.307 Order of pole = 2.615e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1098.6MB, alloc=4.4MB, time=111.27 x[1] = 1.415 y[1] (analytic) = 0 y[1] (numeric) = -2.5049830250897153672870957657229 absolute error = 2.5049830250897153672870957657229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.308 Order of pole = 2.630e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.416 y[1] (analytic) = 0 y[1] (numeric) = -2.5058722791674993034016811816588 absolute error = 2.5058722791674993034016811816588 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.309 Order of pole = 2.646e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.417 y[1] (analytic) = 0 y[1] (numeric) = -2.5067607919830241732953033652701 absolute error = 2.5067607919830241732953033652701 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.31 Order of pole = 2.661e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.418 y[1] (analytic) = 0 y[1] (numeric) = -2.5076485642084715679137334732255 absolute error = 2.5076485642084715679137334732255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.311 Order of pole = 2.677e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1102.4MB, alloc=4.4MB, time=111.63 x[1] = 1.419 y[1] (analytic) = 0 y[1] (numeric) = -2.5085355965148230471266011314605 absolute error = 2.5085355965148230471266011314605 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.313 Order of pole = 2.693e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.42 y[1] (analytic) = 0 y[1] (numeric) = -2.5094218895718629410707238524158 absolute error = 2.5094218895718629410707238524158 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.314 Order of pole = 2.709e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.421 y[1] (analytic) = 0 y[1] (numeric) = -2.510307444048181143210500395499 absolute error = 2.510307444048181143210500395499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.315 Order of pole = 2.725e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.422 y[1] (analytic) = 0 y[1] (numeric) = -2.5111922606111758951447575928873 absolute error = 2.5111922606111758951447575928873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.316 Order of pole = 2.741e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.423 y[1] (analytic) = 0 y[1] (numeric) = -2.5120763399270565631893184254569 absolute error = 2.5120763399270565631893184254569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.317 Order of pole = 2.757e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1106.3MB, alloc=4.4MB, time=112.00 x[1] = 1.424 y[1] (analytic) = 0 y[1] (numeric) = -2.5129596826608464067644379724317 absolute error = 2.5129596826608464067644379724317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.318 Order of pole = 2.773e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.425 y[1] (analytic) = 0 y[1] (numeric) = -2.5138422894763853386161332702263 absolute error = 2.5138422894763853386161332702263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.319 Order of pole = 2.789e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.426 y[1] (analytic) = 0 y[1] (numeric) = -2.5147241610363326769003130978673 absolute error = 2.5147241610363326769003130978673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.32 Order of pole = 2.805e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.427 y[1] (analytic) = 0 y[1] (numeric) = -2.5156052980021698891584942552802 absolute error = 2.5156052980021698891584942552802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.321 Order of pole = 2.822e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.428 y[1] (analytic) = 0 y[1] (numeric) = -2.5164857010342033282137720136186 absolute error = 2.5164857010342033282137720136186 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.322 Order of pole = 2.838e-06 memory used=1110.1MB, alloc=4.4MB, time=112.36 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.429 y[1] (analytic) = 0 y[1] (numeric) = -2.5173653707915669600155940906885 absolute error = 2.5173653707915669600155940906885 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.323 Order of pole = 2.855e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.43 y[1] (analytic) = 0 y[1] (numeric) = -2.518244307932225083461769736412 absolute error = 2.518244307932225083461769736412 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.325 Order of pole = 2.872e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.431 y[1] (analytic) = 0 y[1] (numeric) = -2.5191225131129750422260283002164 absolute error = 2.5191225131129750422260283002164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.326 Order of pole = 2.888e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.432 y[1] (analytic) = 0 y[1] (numeric) = -2.5199999869894499286193249912902 absolute error = 2.5199999869894499286193249912902 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.327 Order of pole = 2.905e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1113.9MB, alloc=4.4MB, time=112.72 x[1] = 1.433 y[1] (analytic) = 0 y[1] (numeric) = -2.5208767302161212795129754308879 absolute error = 2.5208767302161212795129754308879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.328 Order of pole = 2.922e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.434 y[1] (analytic) = 0 y[1] (numeric) = -2.5217527434463017643515850303869 absolute error = 2.5217527434463017643515850303869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.329 Order of pole = 2.939e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.435 y[1] (analytic) = 0 y[1] (numeric) = -2.5226280273321478652836242067095 absolute error = 2.5226280273321478652836242067095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.33 Order of pole = 2.956e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.436 y[1] (analytic) = 0 y[1] (numeric) = -2.5235025825246625494373859651485 absolute error = 2.5235025825246625494373859651485 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.331 Order of pole = 2.973e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.437 y[1] (analytic) = 0 y[1] (numeric) = -2.5243764096736979333699484357205 absolute error = 2.5243764096736979333699484357205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.332 Order of pole = 2.991e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1117.7MB, alloc=4.4MB, time=113.08 x[1] = 1.438 y[1] (analytic) = 0 y[1] (numeric) = -2.5252495094279579397166515400764 absolute error = 2.5252495094279579397166515400764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.333 Order of pole = 3.008e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.439 y[1] (analytic) = 0 y[1] (numeric) = -2.5261218824350009460684840889009 absolute error = 2.5261218824350009460684840889009 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.334 Order of pole = 3.025e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.44 y[1] (analytic) = 0 y[1] (numeric) = -2.5269935293412424261046652618256 absolute error = 2.5269935293412424261046652618256 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.336 Order of pole = 3.043e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.441 y[1] (analytic) = 0 y[1] (numeric) = -2.5278644507919575830075926003728 absolute error = 2.5278644507919575830075926003728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.337 Order of pole = 3.060e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1121.5MB, alloc=4.4MB, time=113.44 x[1] = 1.442 y[1] (analytic) = 0 y[1] (numeric) = -2.5287346474312839751872173465689 absolute error = 2.5287346474312839751872173465689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.338 Order of pole = 3.078e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.443 y[1] (analytic) = 0 y[1] (numeric) = -2.5296041199022241343417971828547 absolute error = 2.5296041199022241343417971828547 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.339 Order of pole = 3.096e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.444 y[1] (analytic) = 0 y[1] (numeric) = -2.5304728688466481758818661700383 absolute error = 2.5304728688466481758818661700383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.34 Order of pole = 3.114e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.445 y[1] (analytic) = 0 y[1] (numeric) = -2.5313408949052964017441519365574 absolute error = 2.5313408949052964017441519365574 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.341 Order of pole = 3.132e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.446 y[1] (analytic) = 0 y[1] (numeric) = -2.5322081987177818956220609415315 absolute error = 2.5322081987177818956220609415315 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.342 Order of pole = 3.150e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1125.3MB, alloc=4.4MB, time=113.81 x[1] = 1.447 y[1] (analytic) = 0 y[1] (numeric) = -2.5330747809225931106392439132997 absolute error = 2.5330747809225931106392439132997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.343 Order of pole = 3.168e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.448 y[1] (analytic) = 0 y[1] (numeric) = -2.533940642157096449492645351676 absolute error = 2.533940642157096449492645351676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.344 Order of pole = 3.186e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.449 y[1] (analytic) = 0 y[1] (numeric) = -2.534805783057538837091333273351 absolute error = 2.534805783057538837091333273351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.345 Order of pole = 3.204e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.45 y[1] (analytic) = 0 y[1] (numeric) = -2.5356702042590502857172981730783 absolute error = 2.5356702042590502857172981730783 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.346 Order of pole = 3.223e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.451 memory used=1129.1MB, alloc=4.4MB, time=114.17 y[1] (analytic) = 0 y[1] (numeric) = -2.5365339063956464527343034658775 absolute error = 2.5365339063956464527343034658775 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.348 Order of pole = 3.241e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.452 y[1] (analytic) = 0 y[1] (numeric) = -2.5373968901002311908707634648414 absolute error = 2.5373968901002311908707634648414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.349 Order of pole = 3.260e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.453 y[1] (analytic) = 0 y[1] (numeric) = -2.5382591560045990911025192326616 absolute error = 2.5382591560045990911025192326616 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.35 Order of pole = 3.278e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.454 y[1] (analytic) = 0 y[1] (numeric) = -2.5391207047394380181612774200873 absolute error = 2.5391207047394380181612774200873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.351 Order of pole = 3.297e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.455 y[1] (analytic) = 0 y[1] (numeric) = -2.5399815369343316386943724686464 absolute error = 2.5399815369343316386943724686464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.352 Order of pole = 3.316e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1133.0MB, alloc=4.4MB, time=114.53 x[1] = 1.456 y[1] (analytic) = 0 y[1] (numeric) = -2.5408416532177619421014083055227 absolute error = 2.5408416532177619421014083055227 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.353 Order of pole = 3.335e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.457 y[1] (analytic) = 0 y[1] (numeric) = -2.5417010542171117540732318929631 absolute error = 2.5417010542171117540732318929631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.354 Order of pole = 3.354e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.458 y[1] (analytic) = 0 y[1] (numeric) = -2.5425597405586672428585877104522 absolute error = 2.5425597405586672428585877104522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.355 Order of pole = 3.373e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.459 y[1] (analytic) = 0 y[1] (numeric) = -2.5434177128676204182836994426333 absolute error = 2.5434177128676204182836994426333 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.356 Order of pole = 3.392e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.46 y[1] (analytic) = 0 y[1] (numeric) = -2.5442749717680716235499228170727 absolute error = 2.5442749717680716235499228170727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.357 Order of pole = 3.411e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1136.8MB, alloc=4.4MB, time=114.89 x[1] = 1.461 y[1] (analytic) = 0 y[1] (numeric) = -2.5451315178830320198345116809793 absolute error = 2.5451315178830320198345116809793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.358 Order of pole = 3.431e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.462 y[1] (analytic) = 0 y[1] (numeric) = -2.545987351834426063719438022432 absolute error = 2.545987351834426063719438022432 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.36 Order of pole = 3.450e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.463 y[1] (analytic) = 0 y[1] (numeric) = -2.5468424742430939774731057270852 absolute error = 2.5468424742430939774731057270852 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.361 Order of pole = 3.470e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.464 y[1] (analytic) = 0 y[1] (numeric) = -2.5476968857287942122096974132718 absolute error = 2.5476968857287942122096974132718 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.362 Order of pole = 3.489e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1140.6MB, alloc=4.4MB, time=115.26 x[1] = 1.465 y[1] (analytic) = 0 y[1] (numeric) = -2.5485505869102059039507937044828 absolute error = 2.5485505869102059039507937044828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.363 Order of pole = 3.509e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.466 y[1] (analytic) = 0 y[1] (numeric) = -2.5494035784049313226138047759581 absolute error = 2.5494035784049313226138047759581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.364 Order of pole = 3.529e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.467 y[1] (analytic) = 0 y[1] (numeric) = -2.5502558608294983139516549491801 absolute error = 2.5502558608294983139516549491801 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.365 Order of pole = 3.549e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.468 y[1] (analytic) = 0 y[1] (numeric) = -2.5511074347993627344680625020327 absolute error = 2.5511074347993627344680625020327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.366 Order of pole = 3.569e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.469 y[1] (analytic) = 0 y[1] (numeric) = -2.5519583009289108793326587109071 absolute error = 2.5519583009289108793326587109071 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.367 Order of pole = 3.589e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1144.4MB, alloc=4.4MB, time=115.62 x[1] = 1.47 y[1] (analytic) = 0 y[1] (numeric) = -2.5528084598314619033200924417421 absolute error = 2.5528084598314619033200924417421 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.368 Order of pole = 3.609e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.471 y[1] (analytic) = 0 y[1] (numeric) = -2.5536579121192702347971693575408 absolute error = 2.5536579121192702347971693575408 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.369 Order of pole = 3.629e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.472 y[1] (analytic) = 0 y[1] (numeric) = -2.5545066584035279827819780079773 absolute error = 2.5545066584035279827819780079773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.371 Order of pole = 3.650e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.473 y[1] (analytic) = 0 y[1] (numeric) = -2.5553546992943673370988587099795 absolute error = 2.5553546992943673370988587099795 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.372 Order of pole = 3.670e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1148.2MB, alloc=4.4MB, time=115.98 x[1] = 1.474 y[1] (analytic) = 0 y[1] (numeric) = -2.5562020354008629616529752143448 absolute error = 2.5562020354008629616529752143448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.373 Order of pole = 3.691e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.475 y[1] (analytic) = 0 y[1] (numeric) = -2.5570486673310343808481536802282 absolute error = 2.5570486673310343808481536802282 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.374 Order of pole = 3.712e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.476 y[1] (analytic) = 0 y[1] (numeric) = -2.5578945956918483591715584444543 absolute error = 2.5578945956918483591715584444543 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.375 Order of pole = 3.732e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.477 y[1] (analytic) = 0 y[1] (numeric) = -2.5587398210892212739686794737897 absolute error = 2.5587398210892212739686794737897 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.376 Order of pole = 3.753e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.478 y[1] (analytic) = 0 y[1] (numeric) = -2.5595843441280214814320122233155 absolute error = 2.5595843441280214814320122233155 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.377 Order of pole = 3.774e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1152.0MB, alloc=4.4MB, time=116.34 x[1] = 1.479 y[1] (analytic) = 0 y[1] (numeric) = -2.5604281654120716758267168906266 absolute error = 2.5604281654120716758267168906266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.378 Order of pole = 3.795e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.48 y[1] (analytic) = 0 y[1] (numeric) = -2.5612712855441512419764507515264 absolute error = 2.5612712855441512419764507515264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.379 Order of pole = 3.816e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.481 y[1] (analytic) = 0 y[1] (numeric) = -2.5621137051259986010324743859773 absolute error = 2.5621137051259986010324743859773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.38 Order of pole = 3.838e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.482 y[1] (analytic) = 0 y[1] (numeric) = -2.5629554247583135495490401511037 absolute error = 2.5629554247583135495490401511037 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.381 Order of pole = 3.859e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.483 y[1] (analytic) = 0 y[1] (numeric) = -2.5637964450407595918879792288409 absolute error = 2.5637964450407595918879792288409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.383 Order of pole = 3.881e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1155.8MB, alloc=4.4MB, time=116.70 x[1] = 1.484 y[1] (analytic) = 0 y[1] (numeric) = -2.5646367665719662659753119672084 absolute error = 2.5646367665719662659753119672084 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.384 Order of pole = 3.902e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.485 y[1] (analytic) = 0 y[1] (numeric) = -2.5654763899495314624326150439925 absolute error = 2.5654763899495314624326150439925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.385 Order of pole = 3.924e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.486 y[1] (analytic) = 0 y[1] (numeric) = -2.5663153157700237371057882077096 absolute error = 2.5663153157700237371057882077096 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.386 Order of pole = 3.946e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.487 y[1] (analytic) = 0 y[1] (numeric) = -2.5671535446289846170137729909409 absolute error = 2.5671535446289846170137729909409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.387 Order of pole = 3.968e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1159.7MB, alloc=4.4MB, time=117.06 x[1] = 1.488 y[1] (analytic) = 0 y[1] (numeric) = -2.5679910771209308997396858433677 absolute error = 2.5679910771209308997396858433677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.388 Order of pole = 3.990e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.489 y[1] (analytic) = 0 y[1] (numeric) = -2.5688279138393569462867385939707 absolute error = 2.5688279138393569462867385939707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.389 Order of pole = 4.012e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.49 y[1] (analytic) = 0 y[1] (numeric) = -2.5696640553767369674212300217948 absolute error = 2.5696640553767369674212300217948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.39 Order of pole = 4.034e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.491 y[1] (analytic) = 0 y[1] (numeric) = -2.5704995023245273035248035903287 absolute error = 2.5704995023245273035248035903287 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.391 Order of pole = 4.056e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.492 y[1] (analytic) = 0 y[1] (numeric) = -2.5713342552731686979780780798298 absolute error = 2.5713342552731686979780780798298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.392 Order of pole = 4.079e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1163.5MB, alloc=4.4MB, time=117.42 x[1] = 1.493 y[1] (analytic) = 0 y[1] (numeric) = -2.572168314812088564097669932778 absolute error = 2.572168314812088564097669932778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.393 Order of pole = 4.101e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.494 y[1] (analytic) = 0 y[1] (numeric) = -2.5730016815297032456485386080089 absolute error = 2.5730016815297032456485386080089 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.395 Order of pole = 4.124e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.495 y[1] (analytic) = 0 y[1] (numeric) = -2.5738343560134202709534991169188 absolute error = 2.5738343560134202709534991169188 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.396 Order of pole = 4.147e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.496 y[1] (analytic) = 0 y[1] (numeric) = -2.5746663388496406006216591884213 absolute error = 2.5746663388496406006216591884213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.397 Order of pole = 4.169e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1167.3MB, alloc=4.4MB, time=117.78 x[1] = 1.497 y[1] (analytic) = 0 y[1] (numeric) = -2.5754976306237608689174521760456 absolute error = 2.5754976306237608689174521760456 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.398 Order of pole = 4.192e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.498 y[1] (analytic) = 0 y[1] (numeric) = -2.5763282319201756187918508786988 absolute error = 2.5763282319201756187918508786988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.399 Order of pole = 4.215e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.499 y[1] (analytic) = 0 y[1] (numeric) = -2.5771581433222795305972618941673 absolute error = 2.5771581433222795305972618941673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.4 Order of pole = 4.238e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.5 y[1] (analytic) = 0 y[1] (numeric) = -2.5779873654124696445075149594226 absolute error = 2.5779873654124696445075149594226 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.401 Order of pole = 4.262e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.501 y[1] (analytic) = 0 y[1] (numeric) = -2.5788158987721475766642769522566 absolute error = 2.5788158987721475766642769522566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.402 Order of pole = 4.285e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1171.1MB, alloc=4.4MB, time=118.15 x[1] = 1.502 y[1] (analytic) = 0 y[1] (numeric) = -2.5796437439817217290711358327287 absolute error = 2.5796437439817217290711358327287 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.403 Order of pole = 4.309e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.503 y[1] (analytic) = 0 y[1] (numeric) = -2.5804709016206094932565157884198 absolute error = 2.5804709016206094932565157884198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.404 Order of pole = 4.332e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.504 y[1] (analytic) = 0 y[1] (numeric) = -2.5812973722672394477265012126125 absolute error = 2.5812973722672394477265012126125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.405 Order of pole = 4.356e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.505 y[1] (analytic) = 0 y[1] (numeric) = -2.5821231564990535492285638873244 absolute error = 2.5821231564990535492285638873244 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.407 Order of pole = 4.380e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.506 y[1] (analytic) = 0 y[1] (numeric) = -2.582948254892509317847104861692 absolute error = 2.582948254892509317847104861692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.408 Order of pole = 4.404e-06 memory used=1174.9MB, alloc=4.4MB, time=118.51 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.507 y[1] (analytic) = 0 y[1] (numeric) = -2.5837726680230820159516400086345 absolute error = 2.5837726680230820159516400086345 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.409 Order of pole = 4.428e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.508 y[1] (analytic) = 0 y[1] (numeric) = -2.5845963964652668210183761071167 absolute error = 2.5845963964652668210183761071167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.41 Order of pole = 4.452e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.509 y[1] (analytic) = 0 y[1] (numeric) = -2.5854194407925809923458425317965 absolute error = 2.5854194407925809923458425317965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.411 Order of pole = 4.476e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.51 y[1] (analytic) = 0 y[1] (numeric) = -2.5862418015775660316851622345099 absolute error = 2.5862418015775660316851622345099 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.412 Order of pole = 4.500e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1178.7MB, alloc=4.4MB, time=118.87 x[1] = 1.511 y[1] (analytic) = 0 y[1] (numeric) = -2.5870634793917898378054646710481 absolute error = 2.5870634793917898378054646710481 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.413 Order of pole = 4.525e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.512 y[1] (analytic) = 0 y[1] (numeric) = -2.5878844748058488550148626601629 absolute error = 2.5878844748058488550148626601629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.414 Order of pole = 4.549e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.513 y[1] (analytic) = 0 y[1] (numeric) = -2.5887047883893702156573348578601 absolute error = 2.5887047883893702156573348578601 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.415 Order of pole = 4.574e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.514 y[1] (analytic) = 0 y[1] (numeric) = -2.5895244207110138766057755869618 absolute error = 2.5895244207110138766057755869618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.416 Order of pole = 4.599e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.515 y[1] (analytic) = 0 y[1] (numeric) = -2.590343372338474749771394177827 absolute error = 2.590343372338474749771394177827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.418 Order of pole = 4.624e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1182.5MB, alloc=4.4MB, time=119.23 x[1] = 1.516 y[1] (analytic) = 0 y[1] (numeric) = -2.5911616438384848266495667491911 absolute error = 2.5911616438384848266495667491911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.419 Order of pole = 4.649e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.517 y[1] (analytic) = 0 y[1] (numeric) = -2.5919792357768152969221644865254 absolute error = 2.5919792357768152969221644865254 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.42 Order of pole = 4.674e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.518 y[1] (analytic) = 0 y[1] (numeric) = -2.592796148718278661136303957328 absolute error = 2.592796148718278661136303957328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.421 Order of pole = 4.699e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.519 y[1] (analytic) = 0 y[1] (numeric) = -2.5936123832267308374793868365594 absolute error = 2.5936123832267308374793868365594 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.422 Order of pole = 4.725e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1186.4MB, alloc=4.4MB, time=119.60 x[1] = 1.52 y[1] (analytic) = 0 y[1] (numeric) = -2.5944279398650732626702185992557 absolute error = 2.5944279398650732626702185992557 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.423 Order of pole = 4.750e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.521 y[1] (analytic) = 0 y[1] (numeric) = -2.5952428191952549869859182694255 absolute error = 2.5952428191952549869859182694255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.424 Order of pole = 4.776e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.522 y[1] (analytic) = 0 y[1] (numeric) = -2.596057021778274763444254192913 absolute error = 2.596057021778274763444254192913 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.425 Order of pole = 4.801e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.523 y[1] (analytic) = 0 y[1] (numeric) = -2.5968705481741831311609640252442 absolute error = 2.5968705481741831311609640252442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.426 Order of pole = 4.827e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.524 y[1] (analytic) = 0 y[1] (numeric) = -2.5976833989420844929015406918348 absolute error = 2.5976833989420844929015406918348 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.427 Order of pole = 4.853e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1190.2MB, alloc=4.4MB, time=119.96 x[1] = 1.525 y[1] (analytic) = 0 y[1] (numeric) = -2.5984955746401391868468899856001 absolute error = 2.5984955746401391868468899856001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.428 Order of pole = 4.879e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.526 y[1] (analytic) = 0 y[1] (numeric) = -2.5993070758255655525921897142586 absolute error = 2.5993070758255655525921897142586 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.43 Order of pole = 4.906e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.527 y[1] (analytic) = 0 y[1] (numeric) = -2.6001179030546419913982048947558 absolute error = 2.6001179030546419913982048947558 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.431 Order of pole = 4.932e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.528 y[1] (analytic) = 0 y[1] (numeric) = -2.6009280568827090207142384135578 absolute error = 2.6009280568827090207142384135578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.432 Order of pole = 4.958e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1194.0MB, alloc=4.4MB, time=120.33 x[1] = 1.529 y[1] (analytic) = 0 y[1] (numeric) = -2.6017375378641713229918218273916 absolute error = 2.6017375378641713229918218273916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.433 Order of pole = 4.985e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.53 y[1] (analytic) = 0 y[1] (numeric) = -2.6025463465524997888081765676619 absolute error = 2.6025463465524997888081765676619 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.434 Order of pole = 5.011e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.531 y[1] (analytic) = 0 y[1] (numeric) = -2.6033544835002335543184017315904 absolute error = 2.6033544835002335543184017315904 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.435 Order of pole = 5.038e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.532 y[1] (analytic) = 0 y[1] (numeric) = -2.6041619492589820330552708924388 absolute error = 2.6041619492589820330552708924388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.436 Order of pole = 5.065e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.533 y[1] (analytic) = 0 y[1] (numeric) = -2.6049687443794269420954469383507 absolute error = 2.6049687443794269420954469383507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.437 Order of pole = 5.092e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1197.8MB, alloc=4.4MB, time=120.69 x[1] = 1.534 y[1] (analytic) = 0 y[1] (numeric) = -2.6057748694113243226108508527341 absolute error = 2.6057748694113243226108508527341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.438 Order of pole = 5.119e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.535 y[1] (analytic) = 0 y[1] (numeric) = -2.6065803249035065548238475770793 absolute error = 2.6065803249035065548238475770793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.439 Order of pole = 5.147e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.536 y[1] (analytic) = 0 y[1] (numeric) = -2.6073851114038843673848396480454 absolute error = 2.6073851114038843673848396480454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.44 Order of pole = 5.174e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.537 y[1] (analytic) = 0 y[1] (numeric) = -2.6081892294594488411907871729378 absolute error = 2.6081892294594488411907871729378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.442 Order of pole = 5.202e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.538 y[1] (analytic) = 0 y[1] (numeric) = -2.6089926796162734076631008997396 absolute error = 2.6089926796162734076631008997396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.443 Order of pole = 5.229e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1201.6MB, alloc=4.4MB, time=121.06 x[1] = 1.539 y[1] (analytic) = 0 y[1] (numeric) = -2.6097954624195158415032836480541 absolute error = 2.6097954624195158415032836480541 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.444 Order of pole = 5.257e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.54 y[1] (analytic) = 0 y[1] (numeric) = -2.6105975784134202479446241940812 absolute error = 2.6105975784134202479446241940812 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.445 Order of pole = 5.285e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.541 y[1] (analytic) = 0 y[1] (numeric) = -2.6113990281413190445181768445081 absolute error = 2.6113990281413190445181768445081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.446 Order of pole = 5.313e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.542 y[1] (analytic) = 0 y[1] (numeric) = -2.6121998121456349373511893893798 absolute error = 2.6121998121456349373511893893798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.447 Order of pole = 5.341e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1205.4MB, alloc=4.4MB, time=121.42 x[1] = 1.543 y[1] (analytic) = 0 y[1] (numeric) = -2.6129999309678828920160718910632 absolute error = 2.6129999309678828920160718910632 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.448 Order of pole = 5.369e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.544 y[1] (analytic) = 0 y[1] (numeric) = -2.6137993851486720989479288437871 absolute error = 2.6137993851486720989479288437871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.449 Order of pole = 5.398e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.545 y[1] (analytic) = 0 y[1] (numeric) = -2.6145981752277079334486076243778 absolute error = 2.6145981752277079334486076243778 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.45 Order of pole = 5.426e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.546 y[1] (analytic) = 0 y[1] (numeric) = -2.6153963017437939102951468481924 absolute error = 2.6153963017437939102951468481924 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.451 Order of pole = 5.455e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.547 y[1] (analytic) = 0 y[1] (numeric) = -2.6161937652348336329704392433449 absolute error = 2.6161937652348336329704392433449 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.452 Order of pole = 5.484e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1209.3MB, alloc=4.4MB, time=121.78 x[1] = 1.548 y[1] (analytic) = 0 y[1] (numeric) = -2.6169905662378327375338549596165 absolute error = 2.6169905662378327375338549596165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.454 Order of pole = 5.513e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.549 y[1] (analytic) = 0 y[1] (numeric) = -2.6177867052889008311495028344238 absolute error = 2.6177867052889008311495028344238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.455 Order of pole = 5.542e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.55 y[1] (analytic) = 0 y[1] (numeric) = -2.6185821829232534252897390453945 absolute error = 2.6185821829232534252897390453945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.456 Order of pole = 5.571e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.551 y[1] (analytic) = 0 y[1] (numeric) = -2.6193769996752138636314647859732 absolute error = 2.6193769996752138636314647859732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.457 Order of pole = 5.600e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1213.1MB, alloc=4.4MB, time=122.14 x[1] = 1.552 y[1] (analytic) = 0 y[1] (numeric) = -2.6201711560782152446626871055676 absolute error = 2.6201711560782152446626871055676 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.458 Order of pole = 5.630e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.553 y[1] (analytic) = 0 y[1] (numeric) = -2.6209646526648023390167498575752 absolute error = 2.6209646526648023390167498575752 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.459 Order of pole = 5.659e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.554 y[1] (analytic) = 0 y[1] (numeric) = -2.6217574899666335015515747957289 absolute error = 2.6217574899666335015515747957289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.46 Order of pole = 5.689e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.555 y[1] (analytic) = 0 y[1] (numeric) = -2.6225496685144825781911862501169 absolute error = 2.6225496685144825781911862501169 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.461 Order of pole = 5.719e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.556 y[1] (analytic) = 0 y[1] (numeric) = -2.6233411888382408075467264975056 absolute error = 2.6233411888382408075467264975056 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.462 Order of pole = 5.749e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1216.9MB, alloc=4.4MB, time=122.50 x[1] = 1.557 y[1] (analytic) = 0 y[1] (numeric) = -2.6241320514669187173341029147916 absolute error = 2.6241320514669187173341029147916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.463 Order of pole = 5.779e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.558 y[1] (analytic) = 0 y[1] (numeric) = -2.624922256928648015605342268086 absolute error = 2.624922256928648015605342268086 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.464 Order of pole = 5.809e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.559 y[1] (analytic) = 0 y[1] (numeric) = -2.6257118057506834768106620416706 absolute error = 2.6257118057506834768106620416706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.466 Order of pole = 5.839e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.56 y[1] (analytic) = 0 y[1] (numeric) = -2.6265006984594048227082035494351 absolute error = 2.6265006984594048227082035494351 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.467 Order of pole = 5.870e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.561 y[1] (analytic) = 0 y[1] (numeric) = -2.6272889355803185981383066950032 absolute error = 2.6272889355803185981383066950032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.468 Order of pole = 5.900e-06 memory used=1220.7MB, alloc=4.4MB, time=122.87 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.562 y[1] (analytic) = 0 y[1] (numeric) = -2.6280765176380600416791416541695 absolute error = 2.6280765176380600416791416541695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.469 Order of pole = 5.931e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.563 y[1] (analytic) = 0 y[1] (numeric) = -2.6288634451563949512004484431114 absolute error = 2.6288634451563949512004484431114 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.47 Order of pole = 5.962e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.564 y[1] (analytic) = 0 y[1] (numeric) = -2.629649718658221544332071306716 absolute error = 2.629649718658221544332071306716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.471 Order of pole = 5.993e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.565 y[1] (analytic) = 0 y[1] (numeric) = -2.6304353386655723138639111118923 absolute error = 2.6304353386655723138639111118923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.472 Order of pole = 6.024e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1224.5MB, alloc=4.4MB, time=123.24 x[1] = 1.566 y[1] (analytic) = 0 y[1] (numeric) = -2.6312203056996158780938554595484 absolute error = 2.6312203056996158780938554595484 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.473 Order of pole = 6.055e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.567 y[1] (analytic) = 0 y[1] (numeric) = -2.6320046202806588261401830346388 absolute error = 2.6320046202806588261401830346388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.474 Order of pole = 6.087e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.568 y[1] (analytic) = 0 y[1] (numeric) = -2.632788282928147558234875794967 absolute error = 2.632788282928147558234875794967 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.475 Order of pole = 6.118e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.569 y[1] (analytic) = 0 y[1] (numeric) = -2.6335712941606701210142099549115 absolute error = 2.6335712941606701210142099549115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.477 Order of pole = 6.150e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.57 y[1] (analytic) = 0 y[1] (numeric) = -2.6343536544959580378229343485877 absolute error = 2.6343536544959580378229343485877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.478 Order of pole = 6.182e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1228.3MB, alloc=4.4MB, time=123.60 x[1] = 1.571 y[1] (analytic) = 0 y[1] (numeric) = -2.6351353644508881340482826568258 absolute error = 2.6351353644508881340482826568258 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.479 Order of pole = 6.214e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.572 y[1] (analytic) = 0 y[1] (numeric) = -2.6359164245414843575000041524048 absolute error = 2.6359164245414843575000041524048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.48 Order of pole = 6.246e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.573 y[1] (analytic) = 0 y[1] (numeric) = -2.6366968352829195938525360569169 absolute error = 2.6366968352829195938525360569169 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.481 Order of pole = 6.278e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.574 y[1] (analytic) = 0 y[1] (numeric) = -2.6374765971895174771653793091255 absolute error = 2.6374765971895174771653793091255 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.482 Order of pole = 6.311e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1232.1MB, alloc=4.4MB, time=123.96 x[1] = 1.575 y[1] (analytic) = 0 y[1] (numeric) = -2.6382557107747541954976785174184 absolute error = 2.6382557107747541954976785174184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.483 Order of pole = 6.343e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.576 y[1] (analytic) = 0 y[1] (numeric) = -2.639034176551260291632946106645 absolute error = 2.639034176551260291632946106645 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.484 Order of pole = 6.376e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.577 y[1] (analytic) = 0 y[1] (numeric) = -2.6398119950308224589298101709672 absolute error = 2.6398119950308224589298101709672 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.485 Order of pole = 6.409e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.578 y[1] (analytic) = 0 y[1] (numeric) = -2.640589166724385332314605308063 absolute error = 2.640589166724385332314605308063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.486 Order of pole = 6.442e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.579 y[1] (analytic) = 0 y[1] (numeric) = -2.6413656921420532744315657348184 absolute error = 2.6413656921420532744315657348184 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.487 Order of pole = 6.475e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1236.0MB, alloc=4.4MB, time=124.33 x[1] = 1.58 y[1] (analytic) = 0 y[1] (numeric) = -2.6421415717930921569663202692557 absolute error = 2.6421415717930921569663202692557 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.489 Order of pole = 6.508e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.581 y[1] (analytic) = 0 y[1] (numeric) = -2.6429168061859311371583293066091 absolute error = 2.6429168061859311371583293066091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.49 Order of pole = 6.542e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.582 y[1] (analytic) = 0 y[1] (numeric) = -2.6436913958281644295178447179092 absolute error = 2.6436913958281644295178447179092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.491 Order of pole = 6.575e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.583 y[1] (analytic) = 0 y[1] (numeric) = -2.6444653412265530727629146559302 absolute error = 2.6444653412265530727629146559302 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.492 Order of pole = 6.609e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.584 y[1] (analytic) = 0 y[1] (numeric) = -2.6452386428870266919918965646357 absolute error = 2.6452386428870266919918965646357 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1239.8MB, alloc=4.4MB, time=124.69 Complex estimate of poles used Radius of convergence = 2.493 Order of pole = 6.643e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.585 y[1] (analytic) = 0 y[1] (numeric) = -2.6460113013146852561068832530964 absolute error = 2.6460113013146852561068832530964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.494 Order of pole = 6.677e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.586 y[1] (analytic) = 0 y[1] (numeric) = -2.6467833170138008305033887120134 absolute error = 2.6467833170138008305033887120134 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.495 Order of pole = 6.711e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.587 y[1] (analytic) = 0 y[1] (numeric) = -2.6475546904878193250415824192357 absolute error = 2.6475546904878193250415824192357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.496 Order of pole = 6.745e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.588 y[1] (analytic) = 0 y[1] (numeric) = -2.648325422239362237314303198794 absolute error = 2.648325422239362237314303198794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.497 Order of pole = 6.780e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1243.6MB, alloc=4.4MB, time=125.05 x[1] = 1.589 y[1] (analytic) = 0 y[1] (numeric) = -2.6490955127702283912270262647741 absolute error = 2.6490955127702283912270262647741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.498 Order of pole = 6.814e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.59 y[1] (analytic) = 0 y[1] (numeric) = -2.6498649625813956709048998956105 absolute error = 2.6498649625813956709048998956105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.499 Order of pole = 6.849e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.591 y[1] (analytic) = 0 y[1] (numeric) = -2.6506337721730227499419112449029 absolute error = 2.6506337721730227499419112449029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.501 Order of pole = 6.884e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.592 y[1] (analytic) = 0 y[1] (numeric) = -2.6514019420444508160071841004448 absolute error = 2.6514019420444508160071841004448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.502 Order of pole = 6.919e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.593 y[1] (analytic) = 0 y[1] (numeric) = -2.6521694726942052908233549526251 absolute error = 2.6521694726942052908233549526251 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.503 Order of pole = 6.954e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1247.4MB, alloc=4.4MB, time=125.42 x[1] = 1.594 y[1] (analytic) = 0 y[1] (numeric) = -2.6529363646199975455319175255345 absolute error = 2.6529363646199975455319175255345 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.504 Order of pole = 6.990e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.595 y[1] (analytic) = 0 y[1] (numeric) = -2.6537026183187266114603699578088 absolute error = 2.6537026183187266114603699578088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.505 Order of pole = 7.025e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.596 y[1] (analytic) = 0 y[1] (numeric) = -2.6544682342864808863059430943022 absolute error = 2.6544682342864808863059430943022 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.506 Order of pole = 7.061e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.597 y[1] (analytic) = 0 y[1] (numeric) = -2.655233213018539835750632862945 absolute error = 2.655233213018539835750632862945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.507 Order of pole = 7.097e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1251.2MB, alloc=4.4MB, time=125.78 x[1] = 1.598 y[1] (analytic) = 0 y[1] (numeric) = -2.6559975550093756905222044624457 absolute error = 2.6559975550093756905222044624457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.508 Order of pole = 7.132e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.599 y[1] (analytic) = 0 y[1] (numeric) = -2.6567612607526551389157810747007 absolute error = 2.6567612607526551389157810747007 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.509 Order of pole = 7.169e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.6 y[1] (analytic) = 0 y[1] (numeric) = -2.6575243307412410147905750397307 absolute error = 2.6575243307412410147905750397307 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.51 Order of pole = 7.205e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.601 y[1] (analytic) = 0 y[1] (numeric) = -2.658286765467193981056264889538 absolute error = 2.658286765467193981056264889538 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.511 Order of pole = 7.241e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.602 y[1] (analytic) = 0 y[1] (numeric) = -2.6590485654217742086634673293407 absolute error = 2.6590485654217742086634673293407 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.513 Order of pole = 7.278e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1255.0MB, alloc=4.4MB, time=126.14 x[1] = 1.603 y[1] (analytic) = 0 y[1] (numeric) = -2.6598097310954430511126991790648 absolute error = 2.6598097310954430511126991790648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.514 Order of pole = 7.315e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.604 y[1] (analytic) = 0 y[1] (numeric) = -2.6605702629778647144961704436455 absolute error = 2.6605702629778647144961704436455 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.515 Order of pole = 7.351e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.605 y[1] (analytic) = 0 y[1] (numeric) = -2.6613301615579079230866960664926 absolute error = 2.6613301615579079230866960664926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.516 Order of pole = 7.389e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.606 y[1] (analytic) = 0 y[1] (numeric) = -2.6620894273236475804879605353045 absolute error = 2.6620894273236475804879605353045 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.517 Order of pole = 7.426e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1258.8MB, alloc=4.4MB, time=126.50 x[1] = 1.607 y[1] (analytic) = 0 y[1] (numeric) = -2.6628480607623664263603163521714 absolute error = 2.6628480607623664263603163521714 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.518 Order of pole = 7.463e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.608 y[1] (analytic) = 0 y[1] (numeric) = -2.6636060623605566887362444494962 absolute error = 2.6636060623605566887362444494962 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.519 Order of pole = 7.501e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.609 y[1] (analytic) = 0 y[1] (numeric) = -2.6643634326039217319395519285932 absolute error = 2.6643634326039217319395519285932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.52 Order of pole = 7.538e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.61 y[1] (analytic) = 0 y[1] (numeric) = -2.6651201719773777001223300178148 absolute error = 2.6651201719773777001223300178148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.521 Order of pole = 7.576e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.611 y[1] (analytic) = 0 y[1] (numeric) = -2.6658762809650551564336428906325 absolute error = 2.6658762809650551564336428906325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.522 Order of pole = 7.614e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1262.7MB, alloc=4.4MB, time=126.87 x[1] = 1.612 y[1] (analytic) = 0 y[1] (numeric) = -2.6666317600503007178338659501828 absolute error = 2.6666317600503007178338659501828 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.523 Order of pole = 7.652e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.613 y[1] (analytic) = 0 y[1] (numeric) = -2.6673866097156786855685403743235 absolute error = 2.6673866097156786855685403743235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.525 Order of pole = 7.691e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.614 y[1] (analytic) = 0 y[1] (numeric) = -2.6681408304429726713155591231625 absolute error = 2.6681408304429726713155591231625 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.526 Order of pole = 7.729e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.615 y[1] (analytic) = 0 y[1] (numeric) = -2.6688944227131872190194482382734 absolute error = 2.6688944227131872190194482382734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.527 Order of pole = 7.768e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.616 y[1] (analytic) = 0 y[1] (numeric) = -2.6696473870065494224264561083446 absolute error = 2.6696473870065494224264561083446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.528 Order of pole = 7.807e-06 TOP MAIN SOLVE Loop memory used=1266.5MB, alloc=4.4MB, time=127.23 WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.617 y[1] (analytic) = 0 y[1] (numeric) = -2.6703997238025105383341124387839 absolute error = 2.6703997238025105383341124387839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.529 Order of pole = 7.846e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.618 y[1] (analytic) = 0 y[1] (numeric) = -2.6711514335797475955688679417746 absolute error = 2.6711514335797475955688679417746 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.53 Order of pole = 7.885e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.619 y[1] (analytic) = 0 y[1] (numeric) = -2.671902516816164999705375257428 absolute error = 2.671902516816164999705375257428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.531 Order of pole = 7.924e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.62 y[1] (analytic) = 0 y[1] (numeric) = -2.672652973988896133540921324964 absolute error = 2.672652973988896133540921324964 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.532 Order of pole = 7.964e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1270.3MB, alloc=4.4MB, time=127.60 x[1] = 1.621 y[1] (analytic) = 0 y[1] (numeric) = -2.6734028055743049533384713442661 absolute error = 2.6734028055743049533384713442661 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.533 Order of pole = 8.003e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.622 y[1] (analytic) = 0 y[1] (numeric) = -2.6741520120479875808517346016745 absolute error = 2.6741520120479875808517346016745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.534 Order of pole = 8.043e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.623 y[1] (analytic) = 0 y[1] (numeric) = -2.6749005938847738911456127784958 absolute error = 2.6749005938847738911456127784958 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.535 Order of pole = 8.083e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.624 y[1] (analytic) = 0 y[1] (numeric) = -2.675648551558729096225341915414 absolute error = 2.675648551558729096225341915414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.537 Order of pole = 8.123e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.625 y[1] (analytic) = 0 y[1] (numeric) = -2.676395885543155324487589969784 absolute error = 2.676395885543155324487589969784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.538 Order of pole = 8.164e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1274.1MB, alloc=4.4MB, time=127.96 x[1] = 1.626 y[1] (analytic) = 0 y[1] (numeric) = -2.6771425963105931960067228746829 absolute error = 2.6771425963105931960067228746829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.539 Order of pole = 8.204e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.627 y[1] (analytic) = 0 y[1] (numeric) = -2.6778886843328233936694031875951 absolute error = 2.6778886843328233936694031875951 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.54 Order of pole = 8.245e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.628 y[1] (analytic) = 0 y[1] (numeric) = -2.6786341500808682301706368017327 absolute error = 2.6786341500808682301706368017327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.541 Order of pole = 8.286e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.629 y[1] (analytic) = 0 y[1] (numeric) = -2.6793789940249932108843347832617 absolute error = 2.6793789940249932108843347832617 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.542 Order of pole = 8.327e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1277.9MB, alloc=4.4MB, time=128.32 x[1] = 1.63 y[1] (analytic) = 0 y[1] (numeric) = -2.6801232166347085926214091921446 absolute error = 2.6801232166347085926214091921446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.543 Order of pole = 8.368e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.631 y[1] (analytic) = 0 y[1] (numeric) = -2.680866818378770938288373741954 absolute error = 2.680866818378770938288373741954 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.544 Order of pole = 8.409e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.632 y[1] (analytic) = 0 y[1] (numeric) = -2.6816097997251846674593723538928 absolute error = 2.6816097997251846674593723538928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.545 Order of pole = 8.451e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.633 y[1] (analytic) = 0 y[1] (numeric) = -2.6823521611412036028745110614205 absolute error = 2.6823521611412036028745110614205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.546 Order of pole = 8.492e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.634 y[1] (analytic) = 0 y[1] (numeric) = -2.6830939030933325128773213233747 absolute error = 2.6830939030933325128773213233747 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.547 Order of pole = 8.534e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1281.7MB, alloc=4.4MB, time=128.69 x[1] = 1.635 y[1] (analytic) = 0 y[1] (numeric) = -2.6838350260473286498041356043463 absolute error = 2.6838350260473286498041356043463 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.549 Order of pole = 8.576e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.636 y[1] (analytic) = 0 y[1] (numeric) = -2.6845755304682032843381090803728 absolute error = 2.6845755304682032843381090803728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.55 Order of pole = 8.619e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.637 y[1] (analytic) = 0 y[1] (numeric) = -2.685315416820223235840574524817 absolute error = 2.685315416820223235840574524817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.551 Order of pole = 8.661e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.638 y[1] (analytic) = 0 y[1] (numeric) = -2.686054685566912398672370822664 absolute error = 2.686054685566912398672370822664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.552 Order of pole = 8.704e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.639 y[1] (analytic) = 0 y[1] (numeric) = -2.6867933371710532645177391504745 absolute error = 2.6867933371710532645177391504745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.553 Order of pole = 8.746e-06 memory used=1285.5MB, alloc=4.4MB, time=129.06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.64 y[1] (analytic) = 0 y[1] (numeric) = -2.6875313720946884407233346429436 absolute error = 2.6875313720946884407233346429436 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.554 Order of pole = 8.789e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.641 y[1] (analytic) = 0 y[1] (numeric) = -2.6882687907991221646648553445256 absolute error = 2.6882687907991221646648553445256 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.555 Order of pole = 8.833e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.642 y[1] (analytic) = 0 y[1] (numeric) = -2.6890055937449218141537444149685 absolute error = 2.6890055937449218141537444149685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.556 Order of pole = 8.876e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.643 y[1] (analytic) = 0 y[1] (numeric) = -2.6897417813919194138963759199611 absolute error = 2.6897417813919194138963759199611 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.557 Order of pole = 8.919e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1289.4MB, alloc=4.4MB, time=129.43 x[1] = 1.644 y[1] (analytic) = 0 y[1] (numeric) = -2.6904773541992131380180890915172 absolute error = 2.6904773541992131380180890915172 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.558 Order of pole = 8.963e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.645 y[1] (analytic) = 0 y[1] (numeric) = -2.6912123126251688086643906863092 absolute error = 2.6912123126251688086643906863092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.559 Order of pole = 9.007e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.646 y[1] (analytic) = 0 y[1] (numeric) = -2.6919466571274213906916000030214 absolute error = 2.6919466571274213906916000030214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.561 Order of pole = 9.051e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.647 y[1] (analytic) = 0 y[1] (numeric) = -2.6926803881628764824591662410355 absolute error = 2.6926803881628764824591662410355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.562 Order of pole = 9.095e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.648 y[1] (analytic) = 0 y[1] (numeric) = -2.6934135061877118027358431914909 absolute error = 2.6934135061877118027358431914909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.563 Order of pole = 9.140e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1293.2MB, alloc=4.4MB, time=129.79 x[1] = 1.649 y[1] (analytic) = 0 y[1] (numeric) = -2.6941460116573786737318617471141 absolute error = 2.6941460116573786737318617471141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.564 Order of pole = 9.184e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.65 y[1] (analytic) = 0 y[1] (numeric) = -2.694877905026603500269196398294 absolute error = 2.694877905026603500269196398294 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.565 Order of pole = 9.229e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.651 y[1] (analytic) = 0 y[1] (numeric) = -2.6956091867493892451019777488324 absolute error = 2.6956091867493892451019777488324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.566 Order of pole = 9.274e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.652 y[1] (analytic) = 0 y[1] (numeric) = -2.6963398572790169003990591347464 absolute error = 2.6963398572790169003990591347464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.567 Order of pole = 9.319e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1297.0MB, alloc=4.4MB, time=130.15 x[1] = 1.653 y[1] (analytic) = 0 y[1] (numeric) = -2.6970699170680469554007016625848 absolute error = 2.6970699170680469554007016625848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.568 Order of pole = 9.364e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.654 y[1] (analytic) = 0 y[1] (numeric) = -2.6977993665683208602612983990798 absolute error = 2.6977993665683208602612983990798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.569 Order of pole = 9.410e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.655 y[1] (analytic) = 0 y[1] (numeric) = -2.6985282062309624860900150407421 absolute error = 2.6985282062309624860900150407421 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.57 Order of pole = 9.456e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.656 y[1] (analytic) = 0 y[1] (numeric) = -2.6992564365063795812011811693628 absolute error = 2.6992564365063795812011811693628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.571 Order of pole = 9.502e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.657 y[1] (analytic) = 0 y[1] (numeric) = -2.6999840578442652235862231564741 absolute error = 2.6999840578442652235862231564741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.573 Order of pole = 9.548e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1300.8MB, alloc=4.4MB, time=130.51 x[1] = 1.658 y[1] (analytic) = 0 y[1] (numeric) = -2.7007110706935992696188869157941 absolute error = 2.7007110706935992696188869157941 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.574 Order of pole = 9.594e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.659 y[1] (analytic) = 0 y[1] (numeric) = -2.7014374755026497990054560167088 absolute error = 2.7014374755026497990054560167088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.575 Order of pole = 9.641e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.66 y[1] (analytic) = 0 y[1] (numeric) = -2.7021632727189745559916281630909 absolute error = 2.7021632727189745559916281630909 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.576 Order of pole = 9.687e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.661 y[1] (analytic) = 0 y[1] (numeric) = -2.7028884627894223868376707093932 absolute error = 2.7028884627894223868376707093932 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.577 Order of pole = 9.734e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1304.6MB, alloc=4.4MB, time=130.88 x[1] = 1.662 y[1] (analytic) = 0 y[1] (numeric) = -2.7036130461601346735734337291642 absolute error = 2.7036130461601346735734337291642 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.578 Order of pole = 9.781e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.663 y[1] (analytic) = 0 y[1] (numeric) = -2.7043370232765467640447571690907 absolute error = 2.7043370232765467640447571690907 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.579 Order of pole = 9.829e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.664 y[1] (analytic) = 0 y[1] (numeric) = -2.7050603945833893982627668135663 absolute error = 2.7050603945833893982627668135663 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.58 Order of pole = 9.876e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.665 y[1] (analytic) = 0 y[1] (numeric) = -2.7057831605246901310675121498044 absolute error = 2.7057831605246901310675121498044 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.581 Order of pole = 9.924e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.666 y[1] (analytic) = 0 y[1] (numeric) = -2.7065053215437747511173577608492 absolute error = 2.7065053215437747511173577608492 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.582 Order of pole = 9.972e-06 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1308.4MB, alloc=4.4MB, time=131.25 x[1] = 1.667 y[1] (analytic) = 0 y[1] (numeric) = -2.7072268780832686962154985826942 absolute error = 2.7072268780832686962154985826942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.583 Order of pole = 1.002e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.668 y[1] (analytic) = 0 y[1] (numeric) = -2.7079478305850984649849282412873 absolute error = 2.7079478305850984649849282412873 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.585 Order of pole = 1.007e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.669 y[1] (analytic) = 0 y[1] (numeric) = -2.7086681794904930249031487346985 absolute error = 2.7086681794904930249031487346985 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.586 Order of pole = 1.012e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.67 y[1] (analytic) = 0 y[1] (numeric) = -2.7093879252399852167078689443565 absolute error = 2.7093879252399852167078689443565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.587 Order of pole = 1.017e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.671 y[1] (analytic) = 0 y[1] (numeric) = -2.7101070682734131551848988462398 absolute error = 2.7101070682734131551848988462398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.588 Order of pole = 1.021e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1312.3MB, alloc=4.4MB, time=131.40 x[1] = 1.672 y[1] (analytic) = 0 y[1] (numeric) = -2.7108256090299216263494058474546 absolute error = 2.7108256090299216263494058474546 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.589 Order of pole = 1.026e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.673 y[1] (analytic) = 0 y[1] (numeric) = -2.7115435479479634810316593949669 absolute error = 2.7115435479479634810316593949669 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.59 Order of pole = 1.031e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.674 y[1] (analytic) = 0 y[1] (numeric) = -2.7122608854653010248783498906085 absolute error = 2.7122608854653010248783498906085 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.591 Order of pole = 1.036e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.675 y[1] (analytic) = 0 y[1] (numeric) = -2.7129776220190074047805279990744 absolute error = 2.7129776220190074047805279990744 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.592 Order of pole = 1.041e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1316.1MB, alloc=4.4MB, time=131.55 x[1] = 1.676 y[1] (analytic) = 0 y[1] (numeric) = -2.7136937580454679917391706527072 absolute error = 2.7136937580454679917391706527072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.593 Order of pole = 1.046e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.677 y[1] (analytic) = 0 y[1] (numeric) = -2.7144092939803817601793404376606 absolute error = 2.7144092939803817601793404376606 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.594 Order of pole = 1.051e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.678 y[1] (analytic) = 0 y[1] (numeric) = -2.7151242302587626637238655897939 absolute error = 2.7151242302587626637238655897939 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.595 Order of pole = 1.056e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.679 y[1] (analytic) = 0 y[1] (numeric) = -2.7158385673149410074374285346115 absolute error = 2.7158385673149410074374285346115 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.597 Order of pole = 1.061e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.68 y[1] (analytic) = 0 y[1] (numeric) = -2.7165523055825648165519117729854 absolute error = 2.7165523055825648165519117729854 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.598 Order of pole = 1.066e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1319.9MB, alloc=4.4MB, time=131.70 x[1] = 1.681 y[1] (analytic) = 0 y[1] (numeric) = -2.7172654454946012016838109425301 absolute error = 2.7172654454946012016838109425301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.599 Order of pole = 1.071e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.682 y[1] (analytic) = 0 y[1] (numeric) = -2.7179779874833377205544860726004 absolute error = 2.7179779874833377205544860726004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.6 Order of pole = 1.077e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.683 y[1] (analytic) = 0 y[1] (numeric) = -2.7186899319803837362239833982122 absolute error = 2.7186899319803837362239833982122 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.601 Order of pole = 1.082e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.684 y[1] (analytic) = 0 y[1] (numeric) = -2.7194012794166717718491216040134 absolute error = 2.7194012794166717718491216040134 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.602 Order of pole = 1.087e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1323.7MB, alloc=4.4MB, time=131.86 x[1] = 1.685 y[1] (analytic) = 0 y[1] (numeric) = -2.7201120302224588619764980330194 absolute error = 2.7201120302224588619764980330194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.603 Order of pole = 1.092e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.686 y[1] (analytic) = 0 y[1] (numeric) = -2.7208221848273279003810322154548 absolute error = 2.7208221848273279003810322154548 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.604 Order of pole = 1.097e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.687 y[1] (analytic) = 0 y[1] (numeric) = -2.7215317436601889844606260499825 absolute error = 2.7215317436601889844606260499825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.605 Order of pole = 1.102e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.688 y[1] (analytic) = 0 y[1] (numeric) = -2.7222407071492807561974821021312 absolute error = 2.7222407071492807561974821021312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.606 Order of pole = 1.108e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.689 y[1] (analytic) = 0 y[1] (numeric) = -2.7229490757221717396965837721452 absolute error = 2.7229490757221717396965837721452 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.607 Order of pole = 1.113e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1327.5MB, alloc=4.4MB, time=132.01 x[1] = 1.69 y[1] (analytic) = 0 y[1] (numeric) = -2.7236568498057616753118035260511 absolute error = 2.7236568498057616753118035260511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.609 Order of pole = 1.118e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.691 y[1] (analytic) = 0 y[1] (numeric) = -2.7243640298262828503700679787679 absolute error = 2.7243640298262828503700679787679 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.61 Order of pole = 1.124e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.692 y[1] (analytic) = 0 y[1] (numeric) = -2.7250706162093014265039713658662 absolute error = 2.7250706162093014265039713658662 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.611 Order of pole = 1.129e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.693 y[1] (analytic) = 0 y[1] (numeric) = -2.7257766093797187636031918404109 absolute error = 2.7257766093797187636031918404109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.612 Order of pole = 1.134e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.694 y[1] (analytic) = 0 y[1] (numeric) = -2.7264820097617727403950280825028 absolute error = 2.7264820097617727403950280825028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.613 Order of pole = 1.140e-05 memory used=1331.3MB, alloc=4.4MB, time=132.17 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.695 y[1] (analytic) = 0 y[1] (numeric) = -2.7271868177790390716643369109692 absolute error = 2.7271868177790390716643369109692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.614 Order of pole = 1.145e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.696 y[1] (analytic) = 0 y[1] (numeric) = -2.7278910338544326221231159384554 absolute error = 2.7278910338544326221231159384554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.615 Order of pole = 1.150e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.697 y[1] (analytic) = 0 y[1] (numeric) = -2.7285946584102087169399388122489 absolute error = 2.7285946584102087169399388122489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.616 Order of pole = 1.156e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.698 y[1] (analytic) = 0 y[1] (numeric) = -2.7292976918679644489394142328398 absolute error = 2.7292976918679644489394142328398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.617 Order of pole = 1.161e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1335.1MB, alloc=4.4MB, time=132.32 x[1] = 1.699 y[1] (analytic) = 0 y[1] (numeric) = -2.7300001346486399824818037398086 absolute error = 2.7300001346486399824818037398086 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.618 Order of pole = 1.167e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.7 y[1] (analytic) = 0 y[1] (numeric) = -2.7307019871725198540328971994559 absolute error = 2.7307019871725198540328971994559 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.62 Order of pole = 1.172e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.701 y[1] (analytic) = 0 y[1] (numeric) = -2.7314032498592342694342090199719 absolute error = 2.7314032498592342694342090199719 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.621 Order of pole = 1.178e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.702 y[1] (analytic) = 0 y[1] (numeric) = -2.7321039231277603978835223572264 absolute error = 2.7321039231277603978835223572264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.622 Order of pole = 1.183e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.703 y[1] (analytic) = 0 y[1] (numeric) = -2.7328040073964236626357729567604 absolute error = 2.7328040073964236626357729567604 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.623 Order of pole = 1.189e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1339.0MB, alloc=4.4MB, time=132.47 x[1] = 1.704 y[1] (analytic) = 0 y[1] (numeric) = -2.7335035030828990284342288046306 absolute error = 2.7335035030828990284342288046306 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.624 Order of pole = 1.195e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.705 y[1] (analytic) = 0 y[1] (numeric) = -2.7342024106042122856818864307268 absolute error = 2.7342024106042122856818864307268 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.625 Order of pole = 1.200e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.706 y[1] (analytic) = 0 y[1] (numeric) = -2.7349007303767413313629695223986 absolute error = 2.7349007303767413313629695223986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.626 Order of pole = 1.206e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.707 y[1] (analytic) = 0 y[1] (numeric) = -2.7355984628162174467243804630363 absolute error = 2.7355984628162174467243804630363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.627 Order of pole = 1.211e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1342.8MB, alloc=4.4MB, time=132.63 x[1] = 1.708 y[1] (analytic) = 0 y[1] (numeric) = -2.7362956083377265717269205090028 absolute error = 2.7362956083377265717269205090028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.628 Order of pole = 1.217e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.709 y[1] (analytic) = 0 y[1] (numeric) = -2.7369921673557105762760595583599 absolute error = 2.7369921673557105762760595583599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.629 Order of pole = 1.223e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.71 y[1] (analytic) = 0 y[1] (numeric) = -2.7376881402839685282420018455335 absolute error = 2.7376881402839685282420018455335 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.63 Order of pole = 1.229e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.711 y[1] (analytic) = 0 y[1] (numeric) = -2.7383835275356579582787594167741 absolute error = 2.7383835275356579582787594167741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.632 Order of pole = 1.234e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.712 y[1] (analytic) = 0 y[1] (numeric) = -2.7390783295232961214519109013566 absolute error = 2.7390783295232961214519109013566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.633 Order of pole = 1.240e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1346.6MB, alloc=4.4MB, time=132.78 x[1] = 1.713 y[1] (analytic) = 0 y[1] (numeric) = -2.7397725466587612556846888922935 absolute error = 2.7397725466587612556846888922935 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.634 Order of pole = 1.246e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.714 y[1] (analytic) = 0 y[1] (numeric) = -2.7404661793532938370320051872757 absolute error = 2.7404661793532938370320051872757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.635 Order of pole = 1.252e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.715 y[1] (analytic) = 0 y[1] (numeric) = -2.7411592280174978317919892149809 absolute error = 2.7411592280174978317919892149809 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.636 Order of pole = 1.258e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.716 y[1] (analytic) = 0 y[1] (numeric) = -2.7418516930613419454645811831723 absolute error = 2.7418516930613419454645811831723 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.637 Order of pole = 1.264e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1350.4MB, alloc=4.4MB, time=132.93 x[1] = 1.717 y[1] (analytic) = 0 y[1] (numeric) = -2.742543574894160868566687832534 absolute error = 2.742543574894160868566687832534 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.638 Order of pole = 1.269e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.718 y[1] (analytic) = 0 y[1] (numeric) = -2.7432348739246565193133751633334 absolute error = 2.7432348739246565193133751633334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.639 Order of pole = 1.275e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.719 y[1] (analytic) = 0 y[1] (numeric) = -2.7439255905608992831745391201495 absolute error = 2.7439255905608992831745391201495 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.64 Order of pole = 1.281e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.72 y[1] (analytic) = 0 y[1] (numeric) = -2.7446157252103292493164619724505 absolute error = 2.7446157252103292493164619724505 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.641 Order of pole = 1.287e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.721 y[1] (analytic) = 0 y[1] (numeric) = -2.7453052782797574439376290151332 absolute error = 2.7453052782797574439376290151332 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.642 Order of pole = 1.293e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1354.2MB, alloc=4.4MB, time=133.08 x[1] = 1.722 y[1] (analytic) = 0 y[1] (numeric) = -2.7459942501753670605081472326457 absolute error = 2.7459942501753670605081472326457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.644 Order of pole = 1.299e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.723 y[1] (analytic) = 0 y[1] (numeric) = -2.7466826413027146869220747224026 absolute error = 2.7466826413027146869220747224026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.645 Order of pole = 1.305e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.724 y[1] (analytic) = 0 y[1] (numeric) = -2.7473704520667315295719369572664 absolute error = 2.7473704520667315295719369572664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.646 Order of pole = 1.312e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.725 y[1] (analytic) = 0 y[1] (numeric) = -2.7480576828717246343546733823153 absolute error = 2.7480576828717246343546733823153 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.647 Order of pole = 1.318e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.726 y[1] (analytic) = 0 y[1] (numeric) = -2.748744334121378104618225387353 absolute error = 2.748744334121378104618225387353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.648 Order of pole = 1.324e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1358.0MB, alloc=4.4MB, time=133.24 x[1] = 1.727 y[1] (analytic) = 0 y[1] (numeric) = -2.7494304062187543160579443730476 absolute error = 2.7494304062187543160579443730476 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.649 Order of pole = 1.330e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.728 y[1] (analytic) = 0 y[1] (numeric) = -2.7501158995662951285719664346292 absolute error = 2.7501158995662951285719664346292 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.65 Order of pole = 1.336e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.729 y[1] (analytic) = 0 y[1] (numeric) = -2.7508008145658230950846681221444 absolute error = 2.7508008145658230950846681221444 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.651 Order of pole = 1.342e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.73 y[1] (analytic) = 0 y[1] (numeric) = -2.7514851516185426673472857997766 absolute error = 2.7514851516185426673472857997766 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.652 Order of pole = 1.349e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1361.8MB, alloc=4.4MB, time=133.39 x[1] = 1.731 y[1] (analytic) = 0 y[1] (numeric) = -2.7521689111250413987247493181185 absolute error = 2.7521689111250413987247493181185 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.653 Order of pole = 1.355e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.732 y[1] (analytic) = 0 y[1] (numeric) = -2.7528520934852911439777490319483 absolute error = 2.7528520934852911439777490319483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.654 Order of pole = 1.361e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.733 y[1] (analytic) = 0 y[1] (numeric) = -2.7535346990986492560490236414442 absolute error = 2.7535346990986492560490236414442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.656 Order of pole = 1.367e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.734 y[1] (analytic) = 0 y[1] (numeric) = -2.7542167283638597798628249062986 absolute error = 2.7542167283638597798628249062986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.657 Order of pole = 1.374e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.735 y[1] (analytic) = 0 y[1] (numeric) = -2.7548981816790546431464839793024 absolute error = 2.7548981816790546431464839793024 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.658 Order of pole = 1.380e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1365.7MB, alloc=4.4MB, time=133.54 x[1] = 1.736 y[1] (analytic) = 0 y[1] (numeric) = -2.7555790594417548442829729280893 absolute error = 2.7555790594417548442829729280893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.659 Order of pole = 1.386e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.737 y[1] (analytic) = 0 y[1] (numeric) = -2.7562593620488716372033239603057 absolute error = 2.7562593620488716372033239603057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.66 Order of pole = 1.393e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.738 y[1] (analytic) = 0 y[1] (numeric) = -2.7569390898967077133277379379391 absolute error = 2.7569390898967077133277379379391 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.661 Order of pole = 1.399e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.739 y[1] (analytic) = 0 y[1] (numeric) = -2.7576182433809583805641829603449 absolute error = 2.7576182433809583805641829603449 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.662 Order of pole = 1.406e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1369.5MB, alloc=4.4MB, time=133.70 x[1] = 1.74 y[1] (analytic) = 0 y[1] (numeric) = -2.758296822896712739373253112102 absolute error = 2.758296822896712739373253112102 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.663 Order of pole = 1.412e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.741 y[1] (analytic) = 0 y[1] (numeric) = -2.7589748288384548559080269106521 absolute error = 2.7589748288384548559080269106521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.664 Order of pole = 1.419e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.742 y[1] (analytic) = 0 y[1] (numeric) = -2.759652261600064932237634549191 absolute error = 2.759652261600064932237634549191 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.665 Order of pole = 1.425e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.743 y[1] (analytic) = 0 y[1] (numeric) = -2.7603291215748204736632127119312 absolute error = 2.7603291215748204736632127119312 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.666 Order of pole = 1.432e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.744 y[1] (analytic) = 0 y[1] (numeric) = -2.7610054091553974531348955411087 absolute error = 2.7610054091553974531348955411087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.668 Order of pole = 1.439e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1373.3MB, alloc=4.4MB, time=133.85 x[1] = 1.745 y[1] (analytic) = 0 y[1] (numeric) = -2.7616811247338714727784602574175 absolute error = 2.7616811247338714727784602574175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.669 Order of pole = 1.445e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.746 y[1] (analytic) = 0 y[1] (numeric) = -2.762356268701718922540215977391 absolute error = 2.762356268701718922540215977391 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.67 Order of pole = 1.452e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.747 y[1] (analytic) = 0 y[1] (numeric) = -2.7630308414498181359586944320699 absolute error = 2.7630308414498181359586944320699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.671 Order of pole = 1.459e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.748 y[1] (analytic) = 0 y[1] (numeric) = -2.763704843368450543071671570577 absolute error = 2.763704843368450543071671570577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.672 Order of pole = 1.465e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1377.1MB, alloc=4.4MB, time=134.00 x[1] = 1.749 y[1] (analytic) = 0 y[1] (numeric) = -2.7643782748473018204670194294263 absolute error = 2.7643782748473018204670194294263 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.673 Order of pole = 1.472e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.75 y[1] (analytic) = 0 y[1] (numeric) = -2.765051136275463038485858163 absolute error = 2.765051136275463038485858163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.674 Order of pole = 1.479e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.751 y[1] (analytic) = 0 y[1] (numeric) = -2.7657234280414318055864487621157 absolute error = 2.7657234280414318055864487621157 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.675 Order of pole = 1.486e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.752 y[1] (analytic) = 0 y[1] (numeric) = -2.7663951505331134098772377354457 absolute error = 2.7663951505331134098772377354457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.676 Order of pole = 1.492e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.753 y[1] (analytic) = 0 y[1] (numeric) = -2.7670663041378219578274358922318 absolute error = 2.7670663041378219578274358922318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.677 Order of pole = 1.499e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1380.9MB, alloc=4.4MB, time=134.16 x[1] = 1.754 y[1] (analytic) = 0 y[1] (numeric) = -2.7677368892422815101634843437409 absolute error = 2.7677368892422815101634843437409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.678 Order of pole = 1.506e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.755 y[1] (analytic) = 0 y[1] (numeric) = -2.7684069062326272149597319347164 absolute error = 2.7684069062326272149597319347164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.68 Order of pole = 1.513e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.756 y[1] (analytic) = 0 y[1] (numeric) = -2.7690763554944064379316195241893 absolute error = 2.7690763554944064379316195241893 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.681 Order of pole = 1.520e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.757 y[1] (analytic) = 0 y[1] (numeric) = -2.7697452374125798899396378569081 absolute error = 2.7697452374125798899396378569081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.682 Order of pole = 1.527e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.758 y[1] (analytic) = 0 y[1] (numeric) = -2.7704135523715227517122972018295 absolute error = 2.7704135523715227517122972018295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.683 Order of pole = 1.534e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1384.7MB, alloc=4.4MB, time=134.31 x[1] = 1.759 y[1] (analytic) = 0 y[1] (numeric) = -2.7710813007550257957963184820688 absolute error = 2.7710813007550257957963184820688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.684 Order of pole = 1.541e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.76 y[1] (analytic) = 0 y[1] (numeric) = -2.7717484829462965057422272809513 absolute error = 2.7717484829462965057422272809513 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.685 Order of pole = 1.548e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.761 y[1] (analytic) = 0 y[1] (numeric) = -2.7724150993279601925335038808223 absolute error = 2.7724150993279601925335038808223 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.686 Order of pole = 1.555e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.762 y[1] (analytic) = 0 y[1] (numeric) = -2.7730811502820611082674143745802 absolute error = 2.7730811502820611082674143745802 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.687 Order of pole = 1.562e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1388.5MB, alloc=4.4MB, time=134.46 x[1] = 1.763 y[1] (analytic) = 0 y[1] (numeric) = -2.7737466361900635570956198839908 absolute error = 2.7737466361900635570956198839908 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.688 Order of pole = 1.569e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.764 y[1] (analytic) = 0 y[1] (numeric) = -2.7744115574328530034326330232368 absolute error = 2.7744115574328530034326330232368 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.689 Order of pole = 1.577e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.765 y[1] (analytic) = 0 y[1] (numeric) = -2.775075914390737177440162960363 absolute error = 2.775075914390737177440162960363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.69 Order of pole = 1.584e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.766 y[1] (analytic) = 0 y[1] (numeric) = -2.7757397074434471777953627528087 absolute error = 2.7757397074434471777953627528087 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.692 Order of pole = 1.591e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.767 y[1] (analytic) = 0 y[1] (numeric) = -2.776402936970138571750965065593 absolute error = 2.776402936970138571750965065593 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.693 Order of pole = 1.598e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1392.4MB, alloc=4.4MB, time=134.62 x[1] = 1.768 y[1] (analytic) = 0 y[1] (numeric) = -2.7770656033493924924952649214486 absolute error = 2.7770656033493924924952649214486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.694 Order of pole = 1.606e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.769 y[1] (analytic) = 0 y[1] (numeric) = -2.7777277069592167338198807808157 absolute error = 2.7777277069592167338198807808157 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.695 Order of pole = 1.613e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.77 y[1] (analytic) = 0 y[1] (numeric) = -2.7783892481770468421031980056216 absolute error = 2.7783892481770468421031980056216 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.696 Order of pole = 1.620e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.771 y[1] (analytic) = 0 y[1] (numeric) = -2.7790502273797472056173716237196 absolute error = 2.7790502273797472056173716237196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.697 Order of pole = 1.628e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1396.2MB, alloc=4.4MB, time=134.78 x[1] = 1.772 y[1] (analytic) = 0 y[1] (numeric) = -2.7797106449436121411667382802627 absolute error = 2.7797106449436121411667382802627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.698 Order of pole = 1.635e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.773 y[1] (analytic) = 0 y[1] (numeric) = -2.7803705012443669780654603376788 absolute error = 2.7803705012443669780654603376788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.699 Order of pole = 1.643e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.774 y[1] (analytic) = 0 y[1] (numeric) = -2.7810297966571691394621982668257 absolute error = 2.7810297966571691394621982668257 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.7 Order of pole = 1.650e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.775 y[1] (analytic) = 0 y[1] (numeric) = -2.781688531556609221019580757867 absolute error = 2.781688531556609221019580757867 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.701 Order of pole = 1.658e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.776 y[1] (analytic) = 0 y[1] (numeric) = -2.7823467063167120669562153699699 absolute error = 2.7823467063167120669562153699699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.702 Order of pole = 1.665e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1400.0MB, alloc=4.4MB, time=134.93 x[1] = 1.777 y[1] (analytic) = 0 y[1] (numeric) = -2.7830043213109378434589560336131 absolute error = 2.7830043213109378434589560336131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.704 Order of pole = 1.673e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.778 y[1] (analytic) = 0 y[1] (numeric) = -2.7836613769121831094731173176528 absolute error = 2.7836613769121831094731173176528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.705 Order of pole = 1.680e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.779 y[1] (analytic) = 0 y[1] (numeric) = -2.7843178734927818848782990748751 absolute error = 2.7843178734927818848782990748751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.706 Order of pole = 1.688e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.78 y[1] (analytic) = 0 y[1] (numeric) = -2.7849738114245067160574588841008 absolute error = 2.7849738114245067160574588841008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.707 Order of pole = 1.696e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.781 y[1] (analytic) = 0 y[1] (numeric) = -2.7856291910785697388668436135618 absolute error = 2.7856291910785697388668436135618 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.708 Order of pole = 1.703e-05 memory used=1403.8MB, alloc=4.4MB, time=135.08 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.782 y[1] (analytic) = 0 y[1] (numeric) = -2.7862840128256237390143654387799 absolute error = 2.7862840128256237390143654387799 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.709 Order of pole = 1.711e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.783 y[1] (analytic) = 0 y[1] (numeric) = -2.7869382770357632098539817581051 absolute error = 2.7869382770357632098539817581051 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.71 Order of pole = 1.719e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.784 y[1] (analytic) = 0 y[1] (numeric) = -2.7875919840785254076036126599684 absolute error = 2.7875919840785254076036126599684 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.711 Order of pole = 1.727e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.785 y[1] (analytic) = 0 y[1] (numeric) = -2.7882451343228914039941039073235 absolute error = 2.7882451343228914039941039073235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.712 Order of pole = 1.734e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1407.6MB, alloc=4.4MB, time=135.24 x[1] = 1.786 y[1] (analytic) = 0 y[1] (numeric) = -2.7888977281372871363567178162599 absolute error = 2.7888977281372871363567178162599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.713 Order of pole = 1.742e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.787 y[1] (analytic) = 0 y[1] (numeric) = -2.7895497658895844551566089169238 absolute error = 2.7895497658895844551566089169238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.715 Order of pole = 1.750e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.788 y[1] (analytic) = 0 y[1] (numeric) = -2.790201247947102168979715895246 absolute error = 2.790201247947102168979715895246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.716 Order of pole = 1.758e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.789 y[1] (analytic) = 0 y[1] (numeric) = -2.7908521746766070869804760231154 absolute error = 2.7908521746766070869804760231154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.717 Order of pole = 1.766e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.79 y[1] (analytic) = 0 y[1] (numeric) = -2.7915025464443150587977430921199 absolute error = 2.7915025464443150587977430921199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.718 Order of pole = 1.774e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1411.4MB, alloc=4.4MB, time=135.39 x[1] = 1.791 y[1] (analytic) = 0 y[1] (numeric) = -2.792152363615892011946264771371 absolute error = 2.792152363615892011946264771371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.719 Order of pole = 1.782e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.792 y[1] (analytic) = 0 y[1] (numeric) = -2.7928016265564549866910503128108 absolute error = 2.7928016265564549866910503128108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.72 Order of pole = 1.790e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.793 y[1] (analytic) = 0 y[1] (numeric) = -2.7934503356305731684119346273381 absolute error = 2.7934503356305731684119346273381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.721 Order of pole = 1.798e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.794 y[1] (analytic) = 0 y[1] (numeric) = -2.7940984912022689174656199516666 absolute error = 2.7940984912022689174656199516666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.722 Order of pole = 1.807e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1415.3MB, alloc=4.4MB, time=135.55 x[1] = 1.795 y[1] (analytic) = 0 y[1] (numeric) = -2.7947460936350187965524516186159 absolute error = 2.7947460936350187965524516186159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.723 Order of pole = 1.815e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.796 y[1] (analytic) = 0 y[1] (numeric) = -2.795393143291754595595159832117 absolute error = 2.795393143291754595595159832117 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.724 Order of pole = 1.823e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.797 y[1] (analytic) = 0 y[1] (numeric) = -2.7960396405348643541367748321722 absolute error = 2.7960396405348643541367748321722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.725 Order of pole = 1.831e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.798 y[1] (analytic) = 0 y[1] (numeric) = -2.796685585726193381264898413925 absolute error = 2.796685585726193381264898413925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.727 Order of pole = 1.840e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.799 y[1] (analytic) = 0 y[1] (numeric) = -2.7973309792270452730694904384584 absolute error = 2.7973309792270452730694904384584 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.728 Order of pole = 1.848e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1419.1MB, alloc=4.4MB, time=135.70 x[1] = 1.8 y[1] (analytic) = 0 y[1] (numeric) = -2.7979758213981829276413047405381 absolute error = 2.7979758213981829276413047405381 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.729 Order of pole = 1.856e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.801 y[1] (analytic) = 0 y[1] (numeric) = -2.7986201125998295576180846998377 absolute error = 2.7986201125998295576180846998377 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.73 Order of pole = 1.865e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.802 y[1] (analytic) = 0 y[1] (numeric) = -2.799263853191669700285604696821 absolute error = 2.799263853191669700285604696821 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.731 Order of pole = 1.873e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.803 y[1] (analytic) = 0 y[1] (numeric) = -2.7999070435328502252406197220059 absolute error = 2.7999070435328502252406197220059 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.732 Order of pole = 1.881e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1422.9MB, alloc=4.4MB, time=135.85 x[1] = 1.804 y[1] (analytic) = 0 y[1] (numeric) = -2.8005496839819813396227615473901 absolute error = 2.8005496839819813396227615473901 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.733 Order of pole = 1.890e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.805 y[1] (analytic) = 0 y[1] (numeric) = -2.8011917748971375909223961009797 absolute error = 2.8011917748971375909223961009797 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.734 Order of pole = 1.899e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.806 y[1] (analytic) = 0 y[1] (numeric) = -2.8018333166358588673714330092277 absolute error = 2.8018333166358588673714330092277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.735 Order of pole = 1.907e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.807 y[1] (analytic) = 0 y[1] (numeric) = -2.8024743095551513959240546873622 absolute error = 2.8024743095551513959240546873622 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.736 Order of pole = 1.916e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.808 y[1] (analytic) = 0 y[1] (numeric) = -2.8031147540114887378343088636689 absolute error = 2.8031147540114887378343088636689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.737 Order of pole = 1.924e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1426.7MB, alloc=4.4MB, time=136.00 x[1] = 1.809 y[1] (analytic) = 0 y[1] (numeric) = -2.8037546503608127818374850203916 absolute error = 2.8037546503608127818374850203916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.739 Order of pole = 1.933e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.81 y[1] (analytic) = 0 y[1] (numeric) = -2.80439399895853473494217192064 absolute error = 2.80439399895853473494217192064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.74 Order of pole = 1.942e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.811 y[1] (analytic) = 0 y[1] (numeric) = -2.8050328001595361108398701671537 absolute error = 2.8050328001595361108398701671537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.741 Order of pole = 1.951e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.812 y[1] (analytic) = 0 y[1] (numeric) = -2.8056710543181697159390106045735 absolute error = 2.8056710543181697159390106045735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.742 Order of pole = 1.959e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.813 y[1] (analytic) = 0 y[1] (numeric) = -2.8063087617882606330302063316359 absolute error = 2.8063087617882606330302063316359 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.743 Order of pole = 1.968e-05 TOP MAIN SOLVE Loop memory used=1430.5MB, alloc=4.4MB, time=136.16 WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.814 y[1] (analytic) = 0 y[1] (numeric) = -2.8069459229231072025895431330417 absolute error = 2.8069459229231072025895431330417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.744 Order of pole = 1.977e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.815 y[1] (analytic) = 0 y[1] (numeric) = -2.8075825380754820017266902722784 absolute error = 2.8075825380754820017266902722784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.745 Order of pole = 1.986e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.816 y[1] (analytic) = 0 y[1] (numeric) = -2.8082186075976328207845908060126 absolute error = 2.8082186075976328207845908060126 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.746 Order of pole = 1.995e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.817 y[1] (analytic) = 0 y[1] (numeric) = -2.8088541318412836375974678874364 absolute error = 2.8088541318412836375974678874364 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.747 Order of pole = 2.004e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1434.3MB, alloc=4.4MB, time=136.31 x[1] = 1.818 y[1] (analytic) = 0 y[1] (numeric) = -2.8094891111576355894138609197727 absolute error = 2.8094891111576355894138609197727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.748 Order of pole = 2.013e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.819 y[1] (analytic) = 0 y[1] (numeric) = -2.8101235458973679424913829016417 absolute error = 2.8101235458973679424913829016417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.749 Order of pole = 2.022e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.82 y[1] (analytic) = 0 y[1] (numeric) = -2.8107574364106390593698678727928 absolute error = 2.8107574364106390593698678727928 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.751 Order of pole = 2.031e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.821 y[1] (analytic) = 0 y[1] (numeric) = -2.8113907830470873638295550214374 absolute error = 2.8113907830470873638295550214374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.752 Order of pole = 2.040e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.822 y[1] (analytic) = 0 y[1] (numeric) = -2.8120235861558323035409337527134 absolute error = 2.8120235861558323035409337527134 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.753 Order of pole = 2.050e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1438.1MB, alloc=4.4MB, time=136.47 x[1] = 1.823 y[1] (analytic) = 0 y[1] (numeric) = -2.812655846085475310412851841297 absolute error = 2.812655846085475310412851841297 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.754 Order of pole = 2.059e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.824 y[1] (analytic) = 0 y[1] (numeric) = -2.8132875631841007586454666994886 absolute error = 2.8132875631841007586454666994886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.755 Order of pole = 2.068e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.825 y[1] (analytic) = 0 y[1] (numeric) = -2.8139187377992769204945977848736 absolute error = 2.8139187377992769204945977848736 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.756 Order of pole = 2.078e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.826 y[1] (analytic) = 0 y[1] (numeric) = -2.8145493702780569197540162485275 absolute error = 2.8145493702780569197540162485275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.757 Order of pole = 2.087e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1442.0MB, alloc=4.4MB, time=136.62 x[1] = 1.827 y[1] (analytic) = 0 y[1] (numeric) = -2.8151794609669796829621860853401 absolute error = 2.8151794609669796829621860853401 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.758 Order of pole = 2.096e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.828 y[1] (analytic) = 0 y[1] (numeric) = -2.8158090102120708883399492920164 absolute error = 2.8158090102120708883399492920164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.759 Order of pole = 2.106e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.829 y[1] (analytic) = 0 y[1] (numeric) = -2.8164380183588439124656258653106 absolute error = 2.8164380183588439124656258653106 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.76 Order of pole = 2.115e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.83 y[1] (analytic) = 0 y[1] (numeric) = -2.8170664857523007746939778827108 absolute error = 2.8170664857523007746939778827108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.762 Order of pole = 2.125e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.831 y[1] (analytic) = 0 y[1] (numeric) = -2.8176944127369330793254653997609 absolute error = 2.8176944127369330793254653997609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.763 Order of pole = 2.134e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1445.8MB, alloc=4.4MB, time=136.77 x[1] = 1.832 y[1] (analytic) = 0 y[1] (numeric) = -2.8183217996567229555322004721281 absolute error = 2.8183217996567229555322004721281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.764 Order of pole = 2.144e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.833 y[1] (analytic) = 0 y[1] (numeric) = -2.818948646855143995046984266048 absolute error = 2.818948646855143995046984266048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.765 Order of pole = 2.154e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.834 y[1] (analytic) = 0 y[1] (numeric) = -2.8195749546751621876217909575583 absolute error = 2.8195749546751621876217909575583 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.766 Order of pole = 2.163e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.835 y[1] (analytic) = 0 y[1] (numeric) = -2.8202007234592368542620409386148 absolute error = 2.8202007234592368542620409386148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.767 Order of pole = 2.173e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1449.6MB, alloc=4.4MB, time=136.92 x[1] = 1.836 y[1] (analytic) = 0 y[1] (numeric) = -2.8208259535493215782429847464232 absolute error = 2.8208259535493215782429847464232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.768 Order of pole = 2.183e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.837 y[1] (analytic) = 0 y[1] (numeric) = -2.821450645286865133914498110777 absolute error = 2.821450645286865133914498110777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.769 Order of pole = 2.193e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.838 y[1] (analytic) = 0 y[1] (numeric) = -2.8220747990128124133005675725179 absolute error = 2.8220747990128124133005675725179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.77 Order of pole = 2.203e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.839 y[1] (analytic) = 0 y[1] (numeric) = -2.8226984150676053504997252640897 absolute error = 2.8226984150676053504997252640897 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.771 Order of pole = 2.213e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.84 y[1] (analytic) = 0 y[1] (numeric) = -2.8233214937911838438926706602041 absolute error = 2.8233214937911838438926706602041 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.772 Order of pole = 2.223e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1453.4MB, alloc=4.4MB, time=137.08 x[1] = 1.841 y[1] (analytic) = 0 y[1] (numeric) = -2.823944035522986676163296402533 absolute error = 2.823944035522986676163296402533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.774 Order of pole = 2.233e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.842 y[1] (analytic) = 0 y[1] (numeric) = -2.8245660406019524321393146767539 absolute error = 2.8245660406019524321393146767539 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.775 Order of pole = 2.243e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.843 y[1] (analytic) = 0 y[1] (numeric) = -2.825187509366520414458660072868 absolute error = 2.825187509366520414458660072868 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.776 Order of pole = 2.253e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.844 y[1] (analytic) = 0 y[1] (numeric) = -2.8258084421546315570678243901492 absolute error = 2.8258084421546315570678243901492 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.777 Order of pole = 2.263e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.845 y[1] (analytic) = 0 y[1] (numeric) = -2.8264288393037293365582584560367 absolute error = 2.8264288393037293365582584560367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.778 Order of pole = 2.273e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1457.2MB, alloc=4.4MB, time=137.23 x[1] = 1.846 y[1] (analytic) = 0 y[1] (numeric) = -2.8270487011507606813469557134208 absolute error = 2.8270487011507606813469557134208 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.779 Order of pole = 2.284e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.847 y[1] (analytic) = 0 y[1] (numeric) = -2.8276680280321768787073120927684 absolute error = 2.8276680280321768787073120927684 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.78 Order of pole = 2.294e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.848 y[1] (analytic) = 0 y[1] (numeric) = -2.8282868202839344796563365240554 absolute error = 2.8282868202839344796563365240554 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.781 Order of pole = 2.304e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.849 y[1] (analytic) = 0 y[1] (numeric) = -2.8289050782414962017042663582018 absolute error = 2.8289050782414962017042663582018 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.782 Order of pole = 2.315e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1461.0MB, alloc=4.4MB, time=137.38 x[1] = 1.85 y[1] (analytic) = 0 y[1] (numeric) = -2.8295228022398318294726219583105 absolute error = 2.8295228022398318294726219583105 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.783 Order of pole = 2.325e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.851 y[1] (analytic) = 0 y[1] (numeric) = -2.8301399926134191131867147871727 absolute error = 2.8301399926134191131867147871727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.785 Order of pole = 2.336e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.852 y[1] (analytic) = 0 y[1] (numeric) = -2.8307566496962446650486034589021 absolute error = 2.8307566496962446650486034589021 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.786 Order of pole = 2.346e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.853 y[1] (analytic) = 0 y[1] (numeric) = -2.8313727738218048534964724388742 absolute error = 2.8313727738218048534964724388742 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.787 Order of pole = 2.357e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.854 y[1] (analytic) = 0 y[1] (numeric) = -2.8319883653231066953563883670608 absolute error = 2.8319883653231066953563883670608 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.788 Order of pole = 2.367e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1464.8MB, alloc=4.4MB, time=137.54 x[1] = 1.855 y[1] (analytic) = 0 y[1] (numeric) = -2.8326034245326687458923693450426 absolute error = 2.8326034245326687458923693450426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.789 Order of pole = 2.378e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.856 y[1] (analytic) = 0 y[1] (numeric) = -2.8332179517825219867606829661472 absolute error = 2.8332179517825219867606829661472 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.79 Order of pole = 2.389e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.857 y[1] (analytic) = 0 y[1] (numeric) = -2.8338319474042107118742693809737 absolute error = 2.8338319474042107118742693809737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.791 Order of pole = 2.400e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.858 y[1] (analytic) = 0 y[1] (numeric) = -2.8344454117287934111831662767206 absolute error = 2.8344454117287934111831662767206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.792 Order of pole = 2.411e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1468.7MB, alloc=4.4MB, time=137.69 x[1] = 1.859 y[1] (analytic) = 0 y[1] (numeric) = -2.8350583450868436523767933079238 absolute error = 2.8350583450868436523767933079238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.793 Order of pole = 2.421e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.86 y[1] (analytic) = 0 y[1] (numeric) = -2.8356707478084509605139342481187 absolute error = 2.8356707478084509605139342481187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.794 Order of pole = 2.432e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.861 y[1] (analytic) = 0 y[1] (numeric) = -2.836282620223221695586235936264 absolute error = 2.836282620223221695586235936264 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.796 Order of pole = 2.443e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.862 y[1] (analytic) = 0 y[1] (numeric) = -2.8368939626602799280210239681977 absolute error = 2.8368939626602799280210239681977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.797 Order of pole = 2.454e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.863 y[1] (analytic) = 0 y[1] (numeric) = -2.8375047754482683121292160316289 absolute error = 2.8375047754482683121292160316289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.798 Order of pole = 2.466e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1472.5MB, alloc=4.4MB, time=137.85 x[1] = 1.864 y[1] (analytic) = 0 y[1] (numeric) = -2.838115058915348957504094802904 absolute error = 2.838115058915348957504094802904 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.799 Order of pole = 2.477e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.865 y[1] (analytic) = 0 y[1] (numeric) = -2.8387248133892042983766834147196 absolute error = 2.8387248133892042983766834147196 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.8 Order of pole = 2.488e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.866 y[1] (analytic) = 0 y[1] (numeric) = -2.8393340391970379609334476657825 absolute error = 2.8393340391970379609334476657825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.801 Order of pole = 2.499e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.867 y[1] (analytic) = 0 y[1] (numeric) = -2.8399427366655756286020303758486 absolute error = 2.8399427366655756286020303758486 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.802 Order of pole = 2.511e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1476.3MB, alloc=4.4MB, time=138.00 x[1] = 1.868 y[1] (analytic) = 0 y[1] (numeric) = -2.8405509061210659053107045922992 absolute error = 2.8405509061210659053107045922992 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.803 Order of pole = 2.522e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.869 y[1] (analytic) = 0 y[1] (numeric) = -2.8411585478892811767272137271498 absolute error = 2.8411585478892811767272137271498 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.804 Order of pole = 2.533e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.87 y[1] (analytic) = 0 y[1] (numeric) = -2.8417656622955184694826481458281 absolute error = 2.8417656622955184694826481458281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.805 Order of pole = 2.545e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.871 y[1] (analytic) = 0 y[1] (numeric) = -2.8423722496646003083859892409198 absolute error = 2.8423722496646003083859892409198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.806 Order of pole = 2.556e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.872 y[1] (analytic) = 0 y[1] (numeric) = -2.8429783103208755716349336050633 absolute error = 2.8429783103208755716349336050633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.808 Order of pole = 2.568e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1480.1MB, alloc=4.4MB, time=138.15 x[1] = 1.873 y[1] (analytic) = 0 y[1] (numeric) = -2.8435838445882203440285915669926 absolute error = 2.8435838445882203440285915669926 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.809 Order of pole = 2.580e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.874 y[1] (analytic) = 0 y[1] (numeric) = -2.8441888527900387681876360730879 absolute error = 2.8441888527900387681876360730879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.81 Order of pole = 2.591e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.875 y[1] (analytic) = 0 y[1] (numeric) = -2.8447933352492638937874596834116 absolute error = 2.8447933352492638937874596834116 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.811 Order of pole = 2.603e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.876 y[1] (analytic) = 0 y[1] (numeric) = -2.8453972922883585248098793057919 absolute error = 2.8453972922883585248098793057919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.812 Order of pole = 2.615e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.877 y[1] (analytic) = 0 y[1] (numeric) = -2.8460007242293160648189102137876 absolute error = 2.8460007242293160648189102137876 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.813 Order of pole = 2.627e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1483.9MB, alloc=4.4MB, time=138.30 x[1] = 1.878 y[1] (analytic) = 0 y[1] (numeric) = -2.8466036313936613602661128840357 absolute error = 2.8466036313936613602661128840357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.814 Order of pole = 2.639e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.879 y[1] (analytic) = 0 y[1] (numeric) = -2.8472060141024515418309982452707 absolute error = 2.8472060141024515418309982452707 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.815 Order of pole = 2.651e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.88 y[1] (analytic) = 0 y[1] (numeric) = -2.8478078726762768638019590549261 absolute error = 2.8478078726762768638019590549261 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.816 Order of pole = 2.663e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.881 y[1] (analytic) = 0 y[1] (numeric) = -2.8484092074352615415031773094063 absolute error = 2.8484092074352615415031773094063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.817 Order of pole = 2.675e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1487.7MB, alloc=4.4MB, time=138.45 x[1] = 1.882 y[1] (analytic) = 0 y[1] (numeric) = -2.8490100186990645867729398505709 absolute error = 2.8490100186990645867729398505709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.819 Order of pole = 2.687e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.883 y[1] (analytic) = 0 y[1] (numeric) = -2.8496103067868806414987766534269 absolute error = 2.8496103067868806414987766534269 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.82 Order of pole = 2.700e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.884 y[1] (analytic) = 0 y[1] (numeric) = -2.8502100720174408092148186682011 absolute error = 2.8502100720174408092148186682011 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.821 Order of pole = 2.712e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.885 y[1] (analytic) = 0 y[1] (numeric) = -2.8508093147090134847667545435877 absolute error = 2.8508093147090134847667545435877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.822 Order of pole = 2.724e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.886 y[1] (analytic) = 0 y[1] (numeric) = -2.8514080351794051820497480767678 absolute error = 2.8514080351794051820497480767678 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.823 Order of pole = 2.737e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1491.5MB, alloc=4.4MB, time=138.61 x[1] = 1.887 y[1] (analytic) = 0 y[1] (numeric) = -2.8520062337459613598246608194954 absolute error = 2.8520062337459613598246608194954 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.824 Order of pole = 2.749e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.888 y[1] (analytic) = 0 y[1] (numeric) = -2.8526039107255672456179069178786 absolute error = 2.8526039107255672456179069178786 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.825 Order of pole = 2.762e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.889 y[1] (analytic) = 0 y[1] (numeric) = -2.8532010664346486577102499761764 absolute error = 2.8532010664346486577102499761764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.826 Order of pole = 2.775e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.89 y[1] (analytic) = 0 y[1] (numeric) = -2.8537977011891728252198345117178 absolute error = 2.8537977011891728252198345117178 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.827 Order of pole = 2.787e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1495.4MB, alloc=4.4MB, time=138.76 x[1] = 1.891 y[1] (analytic) = 0 y[1] (numeric) = -2.8543938153046492062847274086602 absolute error = 2.8543938153046492062847274086602 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.828 Order of pole = 2.800e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.892 y[1] (analytic) = 0 y[1] (numeric) = -2.8549894090961303043502276824738 absolute error = 2.8549894090961303043502276824738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.83 Order of pole = 2.813e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.893 y[1] (analytic) = 0 y[1] (numeric) = -2.8555844828782124825661858345035 absolute error = 2.8555844828782124825661858345035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.831 Order of pole = 2.826e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.894 y[1] (analytic) = 0 y[1] (numeric) = -2.8561790369650367762995571064532 absolute error = 2.8561790369650367762995571064532 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.832 Order of pole = 2.839e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.895 y[1] (analytic) = 0 y[1] (numeric) = -2.8567730716702897037673960379008 absolute error = 2.8567730716702897037673960379008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.833 Order of pole = 2.852e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1499.2MB, alloc=4.4MB, time=138.91 x[1] = 1.896 y[1] (analytic) = 0 y[1] (numeric) = -2.8573665873072040747954828857216 absolute error = 2.8573665873072040747954828857216 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.834 Order of pole = 2.865e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.897 y[1] (analytic) = 0 y[1] (numeric) = -2.8579595841885597977077556823137 absolute error = 2.8579595841885597977077556823137 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.835 Order of pole = 2.878e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.898 y[1] (analytic) = 0 y[1] (numeric) = -2.8585520626266846843517049895247 absolute error = 2.8585520626266846843517049895247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.836 Order of pole = 2.891e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.899 y[1] (analytic) = 0 y[1] (numeric) = -2.8591440229334552532648717469123 absolute error = 2.8591440229334552532648717469123 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.837 Order of pole = 2.905e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.9 y[1] (analytic) = 0 y[1] (numeric) = -2.8597354654202975309875720161815 absolute error = 2.8597354654202975309875720161815 memory used=1503.0MB, alloc=4.4MB, time=139.06 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.838 Order of pole = 2.918e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.901 y[1] (analytic) = 0 y[1] (numeric) = -2.8603263903981878515269558880692 absolute error = 2.8603263903981878515269558880692 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.839 Order of pole = 2.932e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.902 y[1] (analytic) = 0 y[1] (numeric) = -2.860916798177653653977491343338 absolute error = 2.860916798177653653977491343338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.841 Order of pole = 2.945e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.903 y[1] (analytic) = 0 y[1] (numeric) = -2.8615066890687742783029474456464 absolute error = 2.8615066890687742783029474456464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.842 Order of pole = 2.959e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.904 y[1] (analytic) = 0 y[1] (numeric) = -2.8620960633811817592849348906275 absolute error = 2.8620960633811817592849348906275 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.843 Order of pole = 2.972e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1506.8MB, alloc=4.4MB, time=139.21 x[1] = 1.905 y[1] (analytic) = 0 y[1] (numeric) = -2.8626849214240616186430456422806 absolute error = 2.8626849214240616186430456422806 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.844 Order of pole = 2.986e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.906 y[1] (analytic) = 0 y[1] (numeric) = -2.863273263506153655331617154516 absolute error = 2.863273263506153655331617154516 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.845 Order of pole = 3.000e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.907 y[1] (analytic) = 0 y[1] (numeric) = -2.8638610899357527340181305021378 absolute error = 2.8638610899357527340181305021378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.846 Order of pole = 3.014e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.908 y[1] (analytic) = 0 y[1] (numeric) = -2.8644484010207095717482356314615 absolute error = 2.8644484010207095717482356314615 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.847 Order of pole = 3.028e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.909 y[1] (analytic) = 0 y[1] (numeric) = -2.8650351970684315228023808858908 absolute error = 2.8650351970684315228023808858908 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.848 Order of pole = 3.042e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1510.6MB, alloc=4.4MB, time=139.36 x[1] = 1.91 y[1] (analytic) = 0 y[1] (numeric) = -2.8656214783858833617490079658836 absolute error = 2.8656214783858833617490079658836 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.849 Order of pole = 3.056e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.911 y[1] (analytic) = 0 y[1] (numeric) = -2.8662072452795880646992575455683 absolute error = 2.8662072452795880646992575455683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.85 Order of pole = 3.070e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.912 y[1] (analytic) = 0 y[1] (numeric) = -2.8667924980556275887681148895943 absolute error = 2.8667924980556275887681148895943 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.852 Order of pole = 3.084e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.913 y[1] (analytic) = 0 y[1] (numeric) = -2.8673772370196436497469089933661 absolute error = 2.8673772370196436497469089933661 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.853 Order of pole = 3.099e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1514.4MB, alloc=4.4MB, time=139.52 x[1] = 1.914 y[1] (analytic) = 0 y[1] (numeric) = -2.8679614624768384979920630073842 absolute error = 2.8679614624768384979920630073842 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.854 Order of pole = 3.113e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.915 y[1] (analytic) = 0 y[1] (numeric) = -2.8685451747319756925349780017544 absolute error = 2.8685451747319756925349780017544 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.855 Order of pole = 3.128e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.916 y[1] (analytic) = 0 y[1] (numeric) = -2.8691283740893808734179164797933 absolute error = 2.8691283740893808734179164797933 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.856 Order of pole = 3.142e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.917 y[1] (analytic) = 0 y[1] (numeric) = -2.8697110608529425322607364598182 absolute error = 2.8697110608529425322607364598182 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.857 Order of pole = 3.157e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.918 y[1] (analytic) = 0 y[1] (numeric) = -2.87029323532611278106331141142 absolute error = 2.87029323532611278106331141142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.858 Order of pole = 3.172e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1518.3MB, alloc=4.4MB, time=139.67 x[1] = 1.919 y[1] (analytic) = 0 y[1] (numeric) = -2.8708748978119081192484558565527 absolute error = 2.8708748978119081192484558565527 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.859 Order of pole = 3.187e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.92 y[1] (analytic) = 0 y[1] (numeric) = -2.871456048612910198950161026392 absolute error = 2.871456048612910198950161026392 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.86 Order of pole = 3.201e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.921 y[1] (analytic) = 0 y[1] (numeric) = -2.8720366880312665885519296018878 absolute error = 2.8720366880312665885519296018878 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.862 Order of pole = 3.216e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.922 y[1] (analytic) = 0 y[1] (numeric) = -2.8726168163686915344799832590309 absolute error = 2.8726168163686915344799832590309 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.863 Order of pole = 3.231e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1522.1MB, alloc=4.4MB, time=139.82 x[1] = 1.923 y[1] (analytic) = 0 y[1] (numeric) = -2.8731964339264667212561014888387 absolute error = 2.8731964339264667212561014888387 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.864 Order of pole = 3.247e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.924 y[1] (analytic) = 0 y[1] (numeric) = -2.8737755410054420298148349667118 absolute error = 2.8737755410054420298148349667118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.865 Order of pole = 3.262e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.925 y[1] (analytic) = 0 y[1] (numeric) = -2.8743541379060362940898216058937 absolute error = 2.8743541379060362940898216058937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.866 Order of pole = 3.277e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.926 y[1] (analytic) = 0 y[1] (numeric) = -2.8749322249282380558739183450495 absolute error = 2.8749322249282380558739183450495 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.867 Order of pole = 3.293e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.927 y[1] (analytic) = 0 y[1] (numeric) = -2.8755098023716063179578466902448 absolute error = 2.8755098023716063179578466902448 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.868 Order of pole = 3.308e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1525.9MB, alloc=4.4MB, time=139.97 x[1] = 1.928 y[1] (analytic) = 0 y[1] (numeric) = -2.8760868705352712955520350566218 absolute error = 2.8760868705352712955520350566218 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.869 Order of pole = 3.324e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.929 y[1] (analytic) = 0 y[1] (numeric) = -2.8766634297179351659963260346158 absolute error = 2.8766634297179351659963260346158 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.87 Order of pole = 3.339e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.93 y[1] (analytic) = 0 y[1] (numeric) = -2.8772394802178728167622018394071 absolute error = 2.8772394802178728167622018394071 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.871 Order of pole = 3.355e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.931 y[1] (analytic) = 0 y[1] (numeric) = -2.8778150223329325917521663902379 absolute error = 2.8778150223329325917521663902379 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.873 Order of pole = 3.371e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.932 y[1] (analytic) = 0 y[1] (numeric) = -2.8783900563605370359009077080188 absolute error = 2.8783900563605370359009077080188 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.874 Order of pole = 3.387e-05 memory used=1529.7MB, alloc=4.4MB, time=140.12 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.933 y[1] (analytic) = 0 y[1] (numeric) = -2.8789645825976836380828496150892 absolute error = 2.8789645825976836380828496150892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.875 Order of pole = 3.403e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.934 y[1] (analytic) = 0 y[1] (numeric) = -2.8795386013409455723306870698525 absolute error = 2.8795386013409455723306870698525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.876 Order of pole = 3.419e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.935 y[1] (analytic) = 0 y[1] (numeric) = -2.8801121128864724373694848710733 absolute error = 2.8801121128864724373694848710733 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.877 Order of pole = 3.436e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.936 y[1] (analytic) = 0 y[1] (numeric) = -2.8806851175299909944709049216699 absolute error = 2.8806851175299909944709049216699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.878 Order of pole = 3.452e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1533.5MB, alloc=4.4MB, time=140.27 x[1] = 1.937 y[1] (analytic) = 0 y[1] (numeric) = -2.8812576155668059036321127496567 absolute error = 2.8812576155668059036321127496567 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.879 Order of pole = 3.468e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.938 y[1] (analytic) = 0 y[1] (numeric) = -2.8818296072918004580838995442631 absolute error = 2.8818296072918004580838995442631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.88 Order of pole = 3.485e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.939 y[1] (analytic) = 0 y[1] (numeric) = -2.8824010929994373171325415779696 absolute error = 2.8824010929994373171325415779696 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.881 Order of pole = 3.501e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.94 y[1] (analytic) = 0 y[1] (numeric) = -2.8829720729837592373399045500409 absolute error = 2.8829720729837592373399045500409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.883 Order of pole = 3.518e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.941 y[1] (analytic) = 0 y[1] (numeric) = -2.8835425475383898020462861038895 absolute error = 2.8835425475383898020462861038895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.884 Order of pole = 3.535e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1537.3MB, alloc=4.4MB, time=140.43 x[1] = 1.942 y[1] (analytic) = 0 y[1] (numeric) = -2.88411251695653414924047553906 absolute error = 2.88411251695653414924047553906 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.885 Order of pole = 3.552e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.943 y[1] (analytic) = 0 y[1] (numeric) = -2.8846819815309796977814955585717 absolute error = 2.8846819815309796977814955585717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.886 Order of pole = 3.569e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.944 y[1] (analytic) = 0 y[1] (numeric) = -2.8852509415540968719764767635865 absolute error = 2.8852509415540968719764767635865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.887 Order of pole = 3.586e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.945 y[1] (analytic) = 0 y[1] (numeric) = -2.8858193973178398245191015296745 absolute error = 2.8858193973178398245191015296745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.888 Order of pole = 3.603e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1541.1MB, alloc=4.4MB, time=140.58 x[1] = 1.946 y[1] (analytic) = 0 y[1] (numeric) = -2.8863873491137471577930398721166 absolute error = 2.8863873491137471577930398721166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.889 Order of pole = 3.621e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.947 y[1] (analytic) = 0 y[1] (numeric) = -2.8869547972329426435447859315139 absolute error = 2.8869547972329426435447859315139 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.89 Order of pole = 3.638e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.948 y[1] (analytic) = 0 y[1] (numeric) = -2.887521741966135940930289785254 absolute error = 2.887521741966135940930289785254 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.891 Order of pole = 3.656e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.949 y[1] (analytic) = 0 y[1] (numeric) = -2.8880881836036233129397654149135 absolute error = 2.8880881836036233129397654149135 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.892 Order of pole = 3.673e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.95 y[1] (analytic) = 0 y[1] (numeric) = -2.8886541224352883412050418342506 absolute error = 2.8886541224352883412050418342506 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.894 Order of pole = 3.691e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1545.0MB, alloc=4.4MB, time=140.74 x[1] = 1.951 y[1] (analytic) = 0 y[1] (numeric) = -2.889219558750602639193810606856 absolute error = 2.889219558750602639193810606856 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.895 Order of pole = 3.709e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.952 y[1] (analytic) = 0 y[1] (numeric) = -2.8897844928386265637951092565839 absolute error = 2.8897844928386265637951092565839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.896 Order of pole = 3.727e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.953 y[1] (analytic) = 0 y[1] (numeric) = -2.8903489249880099253003663973759 absolute error = 2.8903489249880099253003663973759 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.897 Order of pole = 3.745e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.954 y[1] (analytic) = 0 y[1] (numeric) = -2.8909128554869926957843207818199 absolute error = 2.8909128554869926957843207818199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.898 Order of pole = 3.763e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1548.8MB, alloc=4.4MB, time=140.89 x[1] = 1.955 y[1] (analytic) = 0 y[1] (numeric) = -2.8914762846234057158901128895507 absolute error = 2.8914762846234057158901128895507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.899 Order of pole = 3.782e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.956 y[1] (analytic) = 0 y[1] (numeric) = -2.8920392126846714000228341472068 absolute error = 2.8920392126846714000228341472068 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.9 Order of pole = 3.800e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.957 y[1] (analytic) = 0 y[1] (numeric) = -2.8926016399578044399558053909029 absolute error = 2.8926016399578044399558053909029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.901 Order of pole = 3.819e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.958 y[1] (analytic) = 0 y[1] (numeric) = -2.8931635667294125068538427498702 absolute error = 2.8931635667294125068538427498702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.902 Order of pole = 3.837e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.959 y[1] (analytic) = 0 y[1] (numeric) = -2.8937249932856969517177557458573 absolute error = 2.8937249932856969517177557458573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.904 Order of pole = 3.856e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1552.6MB, alloc=4.4MB, time=141.05 x[1] = 1.96 y[1] (analytic) = 0 y[1] (numeric) = -2.8942859199124535042543090668798 absolute error = 2.8942859199124535042543090668798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.905 Order of pole = 3.875e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.961 y[1] (analytic) = 0 y[1] (numeric) = -2.894846346895072970175866185759 absolute error = 2.894846346895072970175866185759 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.906 Order of pole = 3.894e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.962 y[1] (analytic) = 0 y[1] (numeric) = -2.8954062745185419269339197534129 absolute error = 2.8954062745185419269339197534129 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.907 Order of pole = 3.913e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.963 y[1] (analytic) = 0 y[1] (numeric) = -2.8959657030674434178907005038567 absolute error = 2.8959657030674434178907005038567 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.908 Order of pole = 3.932e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.964 y[1] (analytic) = 0 y[1] (numeric) = -2.8965246328259576449330432621473 absolute error = 2.8965246328259576449330432621473 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.909 Order of pole = 3.952e-05 memory used=1556.4MB, alloc=4.4MB, time=141.20 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.965 y[1] (analytic) = 0 y[1] (numeric) = -2.8970830640778626595326755478751 absolute error = 2.8970830640778626595326755478751 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.91 Order of pole = 3.971e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.966 y[1] (analytic) = 0 y[1] (numeric) = -2.897640997106535052257081215079 absolute error = 2.897640997106535052257081215079 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.911 Order of pole = 3.991e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.967 y[1] (analytic) = 0 y[1] (numeric) = -2.8981984321949506407350785644428 absolute error = 2.8981984321949506407350785644428 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.913 Order of pole = 4.011e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.968 y[1] (analytic) = 0 y[1] (numeric) = -2.898755369625685156081239405142 absolute error = 2.898755369625685156081239405142 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.914 Order of pole = 4.031e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1560.2MB, alloc=4.4MB, time=141.35 x[1] = 1.969 y[1] (analytic) = 0 y[1] (numeric) = -2.8993118096809149277832626315557 absolute error = 2.8993118096809149277832626315557 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.915 Order of pole = 4.051e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.97 y[1] (analytic) = 0 y[1] (numeric) = -2.899867752642417567056403014057 absolute error = 2.899867752642417567056403014057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.916 Order of pole = 4.071e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.971 y[1] (analytic) = 0 y[1] (numeric) = -2.900423198791572648669043083058 absolute error = 2.900423198791572648669043083058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.917 Order of pole = 4.091e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.972 y[1] (analytic) = 0 y[1] (numeric) = -2.9009781484093623912434832112303 absolute error = 2.9009781484093623912434832112303 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.918 Order of pole = 4.112e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.973 y[1] (analytic) = 0 y[1] (numeric) = -2.9015326017763723360360122701628 absolute error = 2.9015326017763723360360122701628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.919 Order of pole = 4.132e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1564.0MB, alloc=4.4MB, time=141.50 x[1] = 1.974 y[1] (analytic) = 0 y[1] (numeric) = -2.9020865591727920242003085544735 absolute error = 2.9020865591727920242003085544735 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.92 Order of pole = 4.153e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.975 y[1] (analytic) = 0 y[1] (numeric) = -2.9026400208784156725382080283773 absolute error = 2.9026400208784156725382080283773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.921 Order of pole = 4.174e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.976 y[1] (analytic) = 0 y[1] (numeric) = -2.903192987172642847741864356748 absolute error = 2.903192987172642847741864356748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.923 Order of pole = 4.195e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.977 y[1] (analytic) = 0 y[1] (numeric) = -2.9037454583344791391313126346188 absolute error = 2.9037454583344791391313126346188 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.924 Order of pole = 4.216e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1567.8MB, alloc=4.4MB, time=141.66 x[1] = 1.978 y[1] (analytic) = 0 y[1] (numeric) = -2.9042974346425368298914362256575 absolute error = 2.9042974346425368298914362256575 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.925 Order of pole = 4.237e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.979 y[1] (analytic) = 0 y[1] (numeric) = -2.9048489163750355668123236612584 absolute error = 2.9048489163750355668123236612584 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.926 Order of pole = 4.258e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.98 y[1] (analytic) = 0 y[1] (numeric) = -2.9053999038098030285369901373295 absolute error = 2.9053999038098030285369901373295 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.927 Order of pole = 4.280e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.981 y[1] (analytic) = 0 y[1] (numeric) = -2.9059503972242755923204257754417 absolute error = 2.9059503972242755923204257754417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.928 Order of pole = 4.302e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.982 y[1] (analytic) = 0 y[1] (numeric) = -2.9065003968954989993039204885776 absolute error = 2.9065003968954989993039204885776 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.929 Order of pole = 4.324e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1571.7MB, alloc=4.4MB, time=141.81 x[1] = 1.983 y[1] (analytic) = 0 y[1] (numeric) = -2.9070499031001290183086030090847 absolute error = 2.9070499031001290183086030090847 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.93 Order of pole = 4.346e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.984 y[1] (analytic) = 0 y[1] (numeric) = -2.9075989161144321081521193974357 absolute error = 2.9075989161144321081521193974357 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.931 Order of pole = 4.368e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.985 y[1] (analytic) = 0 y[1] (numeric) = -2.9081474362142860784923641548456 absolute error = 2.9081474362142860784923641548456 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.933 Order of pole = 4.390e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.986 y[1] (analytic) = 0 y[1] (numeric) = -2.9086954636751807492021649105232 absolute error = 2.9086954636751807492021649105232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.934 Order of pole = 4.412e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1575.5MB, alloc=4.4MB, time=141.96 x[1] = 1.987 y[1] (analytic) = 0 y[1] (numeric) = -2.9092429987722186082788095451666 absolute error = 2.9092429987722186082788095451666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.935 Order of pole = 4.435e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.988 y[1] (analytic) = 0 y[1] (numeric) = -2.9097900417801154682922925460785 absolute error = 2.9097900417801154682922925460785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.936 Order of pole = 4.458e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.989 y[1] (analytic) = 0 y[1] (numeric) = -2.910336592973201121376145365806 absolute error = 2.910336592973201121376145365806 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.937 Order of pole = 4.481e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.99 y[1] (analytic) = 0 y[1] (numeric) = -2.9108826526254199927647035753298 absolute error = 2.9108826526254199927647035753298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.938 Order of pole = 4.504e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.991 y[1] (analytic) = 0 y[1] (numeric) = -2.91142822101033179288065166437 absolute error = 2.91142822101033179288065166437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.939 Order of pole = 4.527e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1579.3MB, alloc=4.4MB, time=142.12 x[1] = 1.992 y[1] (analytic) = 0 y[1] (numeric) = -2.9119732984011121679766744451717 absolute error = 2.9119732984011121679766744451717 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.94 Order of pole = 4.550e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.993 y[1] (analytic) = 0 y[1] (numeric) = -2.9125178850705533493350321620128 absolute error = 2.9125178850705533493350321620128 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.942 Order of pole = 4.574e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.994 y[1] (analytic) = 0 y[1] (numeric) = -2.9130619812910648010288645964749 absolute error = 2.9130619812910648010288645964749 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.943 Order of pole = 4.598e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.995 y[1] (analytic) = 0 y[1] (numeric) = -2.913605587334673866249017688065 absolute error = 2.913605587334673866249017688065 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.944 Order of pole = 4.622e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.996 y[1] (analytic) = 0 y[1] (numeric) = -2.9141487034730264122001744609078 absolute error = 2.9141487034730264122001744609078 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.945 Order of pole = 4.646e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1583.1MB, alloc=4.4MB, time=142.27 x[1] = 1.997 y[1] (analytic) = 0 y[1] (numeric) = -2.9146913299773874735700603597807 absolute error = 2.9146913299773874735700603597807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.946 Order of pole = 4.670e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.998 y[1] (analytic) = 0 y[1] (numeric) = -2.915233467118641894575481452567 absolute error = 2.915233467118641894575481452567 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.947 Order of pole = 4.694e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 1.999 y[1] (analytic) = 0 y[1] (numeric) = -2.9157751151672949695889423511008 absolute error = 2.9157751151672949695889423511008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.948 Order of pole = 4.719e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2 y[1] (analytic) = 0 y[1] (numeric) = -2.9163162743934730823495791381988 absolute error = 2.9163162743934730823495791381988 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.949 Order of pole = 4.744e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1586.9MB, alloc=4.4MB, time=142.43 x[1] = 2.001 y[1] (analytic) = 0 y[1] (numeric) = -2.9168569450669243437621310652638 absolute error = 2.9168569450669243437621310652638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.951 Order of pole = 4.769e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.002 y[1] (analytic) = 0 y[1] (numeric) = -2.9173971274570192282876633020353 absolute error = 2.9173971274570192282876633020353 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.952 Order of pole = 4.794e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.003 y[1] (analytic) = 0 y[1] (numeric) = -2.9179368218327512089297415776973 absolute error = 2.9179368218327512089297415776973 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.953 Order of pole = 4.819e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.004 y[1] (analytic) = 0 y[1] (numeric) = -2.9184760284627373908197481504682 absolute error = 2.9184760284627373908197481504682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.954 Order of pole = 4.845e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.005 y[1] (analytic) = 0 y[1] (numeric) = -2.9190147476152191434050171808369 absolute error = 2.9190147476152191434050171808369 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.955 Order of pole = 4.871e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1590.7MB, alloc=4.4MB, time=142.58 x[1] = 2.006 y[1] (analytic) = 0 y[1] (numeric) = -2.9195529795580627312434562616094 absolute error = 2.9195529795580627312434562616094 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.956 Order of pole = 4.896e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.007 y[1] (analytic) = 0 y[1] (numeric) = -2.9200907245587599434083095757388 absolute error = 2.9200907245587599434083095757388 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.957 Order of pole = 4.922e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.008 y[1] (analytic) = 0 y[1] (numeric) = -2.9206279828844287215067069103649 absolute error = 2.9206279828844287215067069103649 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.958 Order of pole = 4.949e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.009 y[1] (analytic) = 0 y[1] (numeric) = -2.9211647548018137863156315524365 absolute error = 2.9211647548018137863156315524365 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.96 Order of pole = 4.975e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1594.5MB, alloc=4.4MB, time=142.73 x[1] = 2.01 y[1] (analytic) = 0 y[1] (numeric) = -2.9217010405772872630389289275688 absolute error = 2.9217010405772872630389289275688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.961 Order of pole = 5.002e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.011 y[1] (analytic) = 0 y[1] (numeric) = -2.9222368404768493051889667192501 absolute error = 2.9222368404768493051889667192501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.962 Order of pole = 5.029e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.012 y[1] (analytic) = 0 y[1] (numeric) = -2.9227721547661287170965461199957 absolute error = 2.9227721547661287170965461199957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.963 Order of pole = 5.056e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.013 y[1] (analytic) = 0 y[1] (numeric) = -2.9233069837103835750526528194028 absolute error = 2.9233069837103835750526528194028 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.964 Order of pole = 5.083e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.014 y[1] (analytic) = 0 y[1] (numeric) = -2.9238413275745018470856253261334 absolute error = 2.9238413275745018470856253261334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.965 Order of pole = 5.111e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1598.4MB, alloc=4.4MB, time=142.88 x[1] = 2.015 y[1] (analytic) = 0 y[1] (numeric) = -2.9243751866230020113773072514894 absolute error = 2.9243751866230020113773072514894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.966 Order of pole = 5.138e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.016 y[1] (analytic) = 0 y[1] (numeric) = -2.9249085611200336733217392512942 absolute error = 2.9249085611200336733217392512942 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.967 Order of pole = 5.166e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.017 y[1] (analytic) = 0 y[1] (numeric) = -2.9254414513293781812299354301069 absolute error = 2.9254414513293781812299354301069 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.969 Order of pole = 5.194e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.018 y[1] (analytic) = 0 y[1] (numeric) = -2.9259738575144492406842781572155 absolute error = 2.9259738575144492406842781572155 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.97 Order of pole = 5.223e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1602.2MB, alloc=4.4MB, time=143.04 x[1] = 2.019 y[1] (analytic) = 0 y[1] (numeric) = -2.9265057799382935275460544272389 absolute error = 2.9265057799382935275460544272389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.971 Order of pole = 5.251e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.02 y[1] (analytic) = 0 y[1] (numeric) = -2.9270372188635912996196461193609 absolute error = 2.9270372188635912996196461193609 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.972 Order of pole = 5.280e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.021 y[1] (analytic) = 0 y[1] (numeric) = -2.9275681745526570069768757680721 absolute error = 2.9275681745526570069768757680721 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.973 Order of pole = 5.309e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.022 y[1] (analytic) = 0 y[1] (numeric) = -2.9280986472674399009449987546694 absolute error = 2.9280986472674399009449987546694 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.974 Order of pole = 5.338e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.023 y[1] (analytic) = 0 y[1] (numeric) = -2.9286286372695246417618221624946 absolute error = 2.9286286372695246417618221624946 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.975 Order of pole = 5.368e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1606.0MB, alloc=4.5MB, time=143.19 x[1] = 2.024 y[1] (analytic) = 0 y[1] (numeric) = -2.9291581448201319049014199098529 absolute error = 2.9291581448201319049014199098529 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.977 Order of pole = 5.397e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.025 y[1] (analytic) = 0 y[1] (numeric) = -2.9296871701801189860739031825804 absolute error = 2.9296871701801189860739031825804 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.978 Order of pole = 5.427e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.026 y[1] (analytic) = 0 y[1] (numeric) = -2.9302157136099804049026946331882 absolute error = 2.9302157136099804049026946331882 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.979 Order of pole = 5.457e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.027 y[1] (analytic) = 0 y[1] (numeric) = -2.9307437753698485072827442952521 absolute error = 2.9307437753698485072827442952521 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.98 Order of pole = 5.488e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.028 y[1] (analytic) = 0 y[1] (numeric) = -2.9312713557194940664231146800974 absolute error = 2.9312713557194940664231146800974 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.981 Order of pole = 5.518e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1609.8MB, alloc=4.5MB, time=143.34 x[1] = 2.029 y[1] (analytic) = 0 y[1] (numeric) = -2.931798454918326882577352077704 absolute error = 2.931798454918326882577352077704 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.982 Order of pole = 5.549e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.03 y[1] (analytic) = 0 y[1] (numeric) = -2.9323250732253963814650506749852 absolute error = 2.9323250732253963814650506749852 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.983 Order of pole = 5.580e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.031 y[1] (analytic) = 0 y[1] (numeric) = -2.9328512108993922113880057320324 absolute error = 2.9328512108993922113880057320324 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.985 Order of pole = 5.612e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.032 y[1] (analytic) = 0 y[1] (numeric) = -2.9333768681986448390443417204243 absolute error = 2.9333768681986448390443417204243 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.986 Order of pole = 5.643e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1613.6MB, alloc=4.5MB, time=143.50 x[1] = 2.033 y[1] (analytic) = 0 y[1] (numeric) = -2.9339020453811261440439910271321 absolute error = 2.9339020453811261440439910271321 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.987 Order of pole = 5.675e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.034 y[1] (analytic) = 0 y[1] (numeric) = -2.9344267427044500121288885627738 absolute error = 2.9344267427044500121288885627738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.988 Order of pole = 5.707e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.035 y[1] (analytic) = 0 y[1] (numeric) = -2.9349509604258729271012373838371 absolute error = 2.9349509604258729271012373838371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.989 Order of pole = 5.740e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.036 y[1] (analytic) = 0 y[1] (numeric) = -2.9354746988022945614631902448637 absolute error = 2.9354746988022945614631902448637 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.99 Order of pole = 5.772e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.037 y[1] (analytic) = 0 y[1] (numeric) = -2.9359979580902583657712818383331 absolute error = 2.9359979580902583657712818383331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.991 Order of pole = 5.805e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1617.4MB, alloc=4.5MB, time=143.66 x[1] = 2.038 y[1] (analytic) = 0 y[1] (numeric) = -2.9365207385459521567089363569541 absolute error = 2.9365207385459521567089363569541 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.993 Order of pole = 5.839e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.039 y[1] (analytic) = 0 y[1] (numeric) = -2.9370430404252087038803649251419 absolute error = 2.9370430404252087038803649251419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.994 Order of pole = 5.872e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.04 y[1] (analytic) = 0 y[1] (numeric) = -2.9375648639835063153291573934794 absolute error = 2.9375648639835063153291573934794 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.995 Order of pole = 5.906e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.041 y[1] (analytic) = 0 y[1] (numeric) = -2.938086209475969421784862971803 absolute error = 2.938086209475969421784862971803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.996 Order of pole = 5.940e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1621.3MB, alloc=4.5MB, time=143.81 x[1] = 2.042 y[1] (analytic) = 0 y[1] (numeric) = -2.9386070771573691596408441930823 absolute error = 2.9386070771573691596408441930823 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.997 Order of pole = 5.974e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.043 y[1] (analytic) = 0 y[1] (numeric) = -2.9391274672821239526666787513344 absolute error = 2.9391274672821239526666787513344 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.998 Order of pole = 6.009e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.044 y[1] (analytic) = 0 y[1] (numeric) = -2.9396473801043000924583738423066 absolute error = 2.9396473801043000924583738423066 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 2.999 Order of pole = 6.044e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.045 y[1] (analytic) = 0 y[1] (numeric) = -2.9401668158776123176296477554291 absolute error = 2.9401668158776123176296477554291 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.001 Order of pole = 6.079e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.046 y[1] (analytic) = 0 y[1] (numeric) = -2.9406857748554243917475236194569 absolute error = 2.9406857748554243917475236194569 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.002 Order of pole = 6.114e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1625.1MB, alloc=4.5MB, time=143.96 x[1] = 2.047 y[1] (analytic) = 0 y[1] (numeric) = -2.9412042572907496800154703921506 absolute error = 2.9412042572907496800154703921506 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.003 Order of pole = 6.150e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.048 y[1] (analytic) = 0 y[1] (numeric) = -2.9417222634362517247073164061596 absolute error = 2.9417222634362517247073164061596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.004 Order of pole = 6.186e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.049 y[1] (analytic) = 0 y[1] (numeric) = -2.9422397935442448193551510388334 absolute error = 2.9422397935442448193551510388334 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.005 Order of pole = 6.222e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.05 y[1] (analytic) = 0 y[1] (numeric) = -2.9427568478666945816944203628688 absolute error = 2.9427568478666945816944203628688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.006 Order of pole = 6.259e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.051 y[1] (analytic) = 0 y[1] (numeric) = -2.9432734266552185253694129573733 absolute error = 2.9432734266552185253694129573733 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1628.9MB, alloc=4.5MB, time=144.12 Complex estimate of poles used Radius of convergence = 3.007 Order of pole = 6.296e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.052 y[1] (analytic) = 0 y[1] (numeric) = -2.9437895301610866304023224149513 absolute error = 2.9437895301610866304023224149513 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.009 Order of pole = 6.333e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.053 y[1] (analytic) = 0 y[1] (numeric) = -2.9443051586352219124290634696817 absolute error = 2.9443051586352219124290634696817 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.01 Order of pole = 6.371e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.054 y[1] (analytic) = 0 y[1] (numeric) = -2.9448203123282009907050090932109 absolute error = 2.9448203123282009907050090932109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.011 Order of pole = 6.409e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.055 y[1] (analytic) = 0 y[1] (numeric) = -2.9453349914902546548838063615198 absolute error = 2.9453349914902546548838063615198 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.012 Order of pole = 6.447e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1632.7MB, alloc=4.5MB, time=144.27 x[1] = 2.056 y[1] (analytic) = 0 y[1] (numeric) = -2.9458491963712684305724193830941 absolute error = 2.9458491963712684305724193830941 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.013 Order of pole = 6.486e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.057 y[1] (analytic) = 0 y[1] (numeric) = -2.9463629272207831436655381001239 absolute error = 2.9463629272207831436655381001239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.014 Order of pole = 6.525e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.058 y[1] (analytic) = 0 y[1] (numeric) = -2.9468761842879954834624823278371 absolute error = 2.9468761842879954834624823278371 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.015 Order of pole = 6.564e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.059 y[1] (analytic) = 0 y[1] (numeric) = -2.9473889678217585645697209830209 absolute error = 2.9473889678217585645697209830209 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.017 Order of pole = 6.603e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.06 y[1] (analytic) = 0 y[1] (numeric) = -2.9479012780705824875921170710695 absolute error = 2.9479012780705824875921170710695 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.018 Order of pole = 6.643e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1636.5MB, alloc=4.5MB, time=144.42 x[1] = 2.061 y[1] (analytic) = 0 y[1] (numeric) = -2.9484131152826348986159996513957 absolute error = 2.9484131152826348986159996513957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.019 Order of pole = 6.684e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.062 y[1] (analytic) = 0 y[1] (numeric) = -2.948924479705741547487154683633 absolute error = 2.948924479705741547487154683633 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.02 Order of pole = 6.724e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.063 y[1] (analytic) = 0 y[1] (numeric) = -2.9494353715873868448868173716073 absolute error = 2.9494353715873868448868173716073 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.021 Order of pole = 6.765e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.064 y[1] (analytic) = 0 y[1] (numeric) = -2.9499457911747144182087393684545 absolute error = 2.9499457911747144182087393684545 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.022 Order of pole = 6.807e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1640.3MB, alloc=4.5MB, time=144.58 x[1] = 2.065 y[1] (analytic) = 0 y[1] (numeric) = -2.9504557387145276662403949843722 absolute error = 2.9504557387145276662403949843722 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.024 Order of pole = 6.849e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.066 y[1] (analytic) = 0 y[1] (numeric) = -2.9509652144532903126513813482064 absolute error = 2.9509652144532903126513813482064 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.025 Order of pole = 6.891e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.067 y[1] (analytic) = 0 y[1] (numeric) = -2.9514742186371269582920583152597 absolute error = 2.9514742186371269582920583152597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.026 Order of pole = 6.933e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.068 y[1] (analytic) = 0 y[1] (numeric) = -2.9519827515118236323054647862446 absolute error = 2.9519827515118236323054647862446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.027 Order of pole = 6.976e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.069 y[1] (analytic) = 0 y[1] (numeric) = -2.9524908133228283420555390060791 absolute error = 2.9524908133228283420555390060791 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.028 Order of pole = 7.019e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1644.1MB, alloc=4.5MB, time=144.73 x[1] = 2.07 y[1] (analytic) = 0 y[1] (numeric) = -2.9529984043152516218746613461036 absolute error = 2.9529984043152516218746613461036 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.029 Order of pole = 7.063e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.071 y[1] (analytic) = 0 y[1] (numeric) = -2.9535055247338670806335290391764 absolute error = 2.9535055247338670806335290391764 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.031 Order of pole = 7.107e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.072 y[1] (analytic) = 0 y[1] (numeric) = -2.9540121748231119481363633338525 absolute error = 2.9540121748231119481363633338525 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.032 Order of pole = 7.151e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.073 y[1] (analytic) = 0 y[1] (numeric) = -2.9545183548270876203444405613556 absolute error = 2.9545183548270876203444405613556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.033 Order of pole = 7.196e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1648.0MB, alloc=4.5MB, time=144.88 x[1] = 2.074 y[1] (analytic) = 0 y[1] (numeric) = -2.9550240649895602034309296671929 absolute error = 2.9550240649895602034309296671929 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.034 Order of pole = 7.241e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.075 y[1] (analytic) = 0 y[1] (numeric) = -2.9555293055539610566700098479217 absolute error = 2.9555293055539610566700098479217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.035 Order of pole = 7.287e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.076 y[1] (analytic) = 0 y[1] (numeric) = -2.9560340767633873341632330526355 absolute error = 2.9560340767633873341632330526355 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.036 Order of pole = 7.333e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.077 y[1] (analytic) = 0 y[1] (numeric) = -2.9565383788606025254060872580827 absolute error = 2.9565383788606025254060872580827 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.038 Order of pole = 7.380e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.078 y[1] (analytic) = 0 y[1] (numeric) = -2.9570422120880369946977076058439 absolute error = 2.9570422120880369946977076058439 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.039 Order of pole = 7.426e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1651.8MB, alloc=4.5MB, time=145.04 x[1] = 2.079 y[1] (analytic) = 0 y[1] (numeric) = -2.9575455766877885193966736995584 absolute error = 2.9575455766877885193966736995584 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.04 Order of pole = 7.474e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.08 y[1] (analytic) = 0 y[1] (numeric) = -2.9580484729016228270258225996941 absolute error = 2.9580484729016228270258225996941 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.041 Order of pole = 7.522e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.081 y[1] (analytic) = 0 y[1] (numeric) = -2.9585509009709741312289983226787 absolute error = 2.9585509009709741312289983226787 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.042 Order of pole = 7.570e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.082 y[1] (analytic) = 0 y[1] (numeric) = -2.9590528611369456665826499502453 absolute error = 2.9590528611369456665826499502453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.043 Order of pole = 7.618e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.083 y[1] (analytic) = 0 y[1] (numeric) = -2.9595543536403102222651817834728 absolute error = 2.9595543536403102222651817834728 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.045 Order of pole = 7.667e-05 memory used=1655.6MB, alloc=4.5MB, time=145.19 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.084 y[1] (analytic) = 0 y[1] (numeric) = -2.9600553787215106745869503341092 absolute error = 2.9600553787215106745869503341092 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.046 Order of pole = 7.717e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.085 y[1] (analytic) = 0 y[1] (numeric) = -2.9605559366206605183837943332462 absolute error = 2.9605559366206605183837943332462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.047 Order of pole = 7.767e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.086 y[1] (analytic) = 0 y[1] (numeric) = -2.9610560275775443972769753541443 absolute error = 2.9610560275775443972769753541443 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.048 Order of pole = 7.818e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.087 y[1] (analytic) = 0 y[1] (numeric) = -2.9615556518316186328023980918874 absolute error = 2.9615556518316186328023980918874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.049 Order of pole = 7.869e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1659.4MB, alloc=4.5MB, time=145.34 x[1] = 2.088 y[1] (analytic) = 0 y[1] (numeric) = -2.9620548096220117524119708174549 absolute error = 2.9620548096220117524119708174549 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.051 Order of pole = 7.920e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.089 y[1] (analytic) = 0 y[1] (numeric) = -2.9625535011875250163499580276325 absolute error = 2.9625535011875250163499580276325 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.052 Order of pole = 7.972e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.09 y[1] (analytic) = 0 y[1] (numeric) = -2.9630517267666329434071688448268 absolute error = 2.9630517267666329434071688448268 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.053 Order of pole = 8.024e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.091 y[1] (analytic) = 0 y[1] (numeric) = -2.9635494865974838355558162821934 absolute error = 2.9635494865974838355558162821934 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.054 Order of pole = 8.077e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.092 y[1] (analytic) = 0 y[1] (numeric) = -2.964046780917900301467874079426 absolute error = 2.964046780917900301467874079426 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.055 Order of pole = 8.131e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1663.2MB, alloc=4.5MB, time=145.50 x[1] = 2.093 y[1] (analytic) = 0 y[1] (numeric) = -2.9645436099653797789197494329741 absolute error = 2.9645436099653797789197494329741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.056 Order of pole = 8.185e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.094 y[1] (analytic) = 0 y[1] (numeric) = -2.9650399739770950560860815912509 absolute error = 2.9650399739770950560860815912509 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.058 Order of pole = 8.239e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.095 y[1] (analytic) = 0 y[1] (numeric) = -2.9655358731898947917254679604542 absolute error = 2.9655358731898947917254679604542 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.059 Order of pole = 8.294e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.096 y[1] (analytic) = 0 y[1] (numeric) = -2.9660313078403040342609110698424 absolute error = 2.9660313078403040342609110698424 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.06 Order of pole = 8.349e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1667.0MB, alloc=4.5MB, time=145.65 x[1] = 2.097 y[1] (analytic) = 0 y[1] (numeric) = -2.9665262781645247397577714765773 absolute error = 2.9665262781645247397577714765773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.061 Order of pole = 8.405e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.098 y[1] (analytic) = 0 y[1] (numeric) = -2.967020784398436288802003449462 absolute error = 2.967020784398436288802003449462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.062 Order of pole = 8.462e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.099 y[1] (analytic) = 0 y[1] (numeric) = -2.9675148267775960022814420579539 absolute error = 2.9675148267775960022814420579539 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.064 Order of pole = 8.519e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.1 y[1] (analytic) = 0 y[1] (numeric) = -2.9680084055372396560729021076206 absolute error = 2.9680084055372396560729021076206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.065 Order of pole = 8.577e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.101 y[1] (analytic) = 0 y[1] (numeric) = -2.9685015209122819946378412056172 absolute error = 2.9685015209122819946378412056172 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.066 Order of pole = 8.635e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1670.8MB, alloc=4.5MB, time=145.80 x[1] = 2.102 y[1] (analytic) = 0 y[1] (numeric) = -2.9689941731373172435293311097005 absolute error = 2.9689941731373172435293311097005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.067 Order of pole = 8.694e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.103 y[1] (analytic) = 0 y[1] (numeric) = -2.9694863624466196208130734116459 absolute error = 2.9694863624466196208130734116459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.068 Order of pole = 8.753e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.104 y[1] (analytic) = 0 y[1] (numeric) = -2.9699780890741438474051875306008 absolute error = 2.9699780890741438474051875306008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.07 Order of pole = 8.813e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.105 y[1] (analytic) = 0 y[1] (numeric) = -2.9704693532535256563294909437818 absolute error = 2.9704693532535256563294909437818 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.071 Order of pole = 8.874e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1674.7MB, alloc=4.5MB, time=145.96 x[1] = 2.106 y[1] (analytic) = 0 y[1] (numeric) = -2.9709601552180823008969835609081 absolute error = 2.9709601552180823008969835609081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.072 Order of pole = 8.935e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.107 y[1] (analytic) = 0 y[1] (numeric) = -2.9714504952008130618102401547458 absolute error = 2.9714504952008130618102401547458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.073 Order of pole = 8.996e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.108 y[1] (analytic) = 0 y[1] (numeric) = -2.9719403734343997531954067930296 absolute error = 2.9719403734343997531954067930296 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.074 Order of pole = 9.059e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.109 y[1] (analytic) = 0 y[1] (numeric) = -2.9724297901512072275644892767126 absolute error = 2.9724297901512072275644892767126 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.076 Order of pole = 9.122e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.11 y[1] (analytic) = 0 y[1] (numeric) = -2.9729187455832838797106136758812 absolute error = 2.9729187455832838797106136758812 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.077 Order of pole = 9.185e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1678.5MB, alloc=4.5MB, time=146.11 x[1] = 2.111 y[1] (analytic) = 0 y[1] (numeric) = -2.9734072399623621495389311676555 absolute error = 2.9734072399623621495389311676555 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.078 Order of pole = 9.249e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.112 y[1] (analytic) = 0 y[1] (numeric) = -2.9738952735198590238358315198729 absolute error = 2.9738952735198590238358315198729 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.079 Order of pole = 9.314e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.113 y[1] (analytic) = 0 y[1] (numeric) = -2.9743828464868765369791217302289 absolute error = 2.9743828464868765369791217302289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.08 Order of pole = 9.380e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.114 y[1] (analytic) = 0 y[1] (numeric) = -2.97486995909420227059181852272 absolute error = 2.97486995909420227059181852272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.082 Order of pole = 9.446e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.115 y[1] (analytic) = 0 y[1] (numeric) = -2.9753566115723098521421956216029 absolute error = 2.9753566115723098521421956216029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.083 Order of pole = 9.512e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1682.3MB, alloc=4.5MB, time=146.26 x[1] = 2.116 y[1] (analytic) = 0 y[1] (numeric) = -2.9758428041513594524927189675512 absolute error = 2.9758428041513594524927189675512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.084 Order of pole = 9.580e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.117 y[1] (analytic) = 0 y[1] (numeric) = -2.9763285370611982824004953111556 absolute error = 2.9763285370611982824004953111556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.085 Order of pole = 9.648e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.118 y[1] (analytic) = 0 y[1] (numeric) = -2.9768138105313610879718519152848 absolute error = 2.9768138105313610879718519152848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.087 Order of pole = 9.717e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.119 y[1] (analytic) = 0 y[1] (numeric) = -2.977298624791070645073657419993 absolute error = 2.977298624791070645073657419993 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.088 Order of pole = 9.786e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1686.1MB, alloc=4.5MB, time=146.42 x[1] = 2.12 y[1] (analytic) = 0 y[1] (numeric) = -2.9777829800692382527039862715399 absolute error = 2.9777829800692382527039862715399 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.089 Order of pole = 9.856e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.121 y[1] (analytic) = 0 y[1] (numeric) = -2.9782668765944642253247214905772 absolute error = 2.9782668765944642253247214905772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.09 Order of pole = 9.927e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.122 y[1] (analytic) = 0 y[1] (numeric) = -2.978750314595038384158682953556 absolute error = 2.978750314595038384158682953556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.091 Order of pole = 9.999e-05 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.123 y[1] (analytic) = 0 y[1] (numeric) = -2.9792332942989405474538607858277 absolute error = 2.9792332942989405474538607858277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.093 Order of pole = 0.0001007 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.124 y[1] (analytic) = 0 y[1] (numeric) = -2.979715815933841019717325914652 absolute error = 2.979715815933841019717325914652 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.094 Order of pole = 0.0001014 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1689.9MB, alloc=4.5MB, time=146.58 x[1] = 2.125 y[1] (analytic) = 0 y[1] (numeric) = -2.9801978797271010799213823052889 absolute error = 2.9801978797271010799213823052889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.095 Order of pole = 0.0001022 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.126 y[1] (analytic) = 0 y[1] (numeric) = -2.9806794859057734686845179034507 absolute error = 2.9806794859057734686845179034507 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.096 Order of pole = 0.0001029 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.127 y[1] (analytic) = 0 y[1] (numeric) = -2.9811606346966028744297038325231 absolute error = 2.9811606346966028744297038325231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.098 Order of pole = 0.0001037 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.128 y[1] (analytic) = 0 y[1] (numeric) = -2.9816413263260264185225839440396 absolute error = 2.9816413263260264185225839440396 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.099 Order of pole = 0.0001044 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1693.7MB, alloc=4.5MB, time=146.73 x[1] = 2.129 y[1] (analytic) = 0 y[1] (numeric) = -2.9821215610201741393920893948212 absolute error = 2.9821215610201741393920893948212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.1 Order of pole = 0.0001052 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.13 y[1] (analytic) = 0 y[1] (numeric) = -2.9826013390048694756360055238713 absolute error = 2.9826013390048694756360055238713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.101 Order of pole = 0.000106 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.131 y[1] (analytic) = 0 y[1] (numeric) = -2.9830806605056297481140109264629 absolute error = 2.9830806605056297481140109264629 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.102 Order of pole = 0.0001068 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.132 y[1] (analytic) = 0 y[1] (numeric) = -2.9835595257476666410307012717655 absolute error = 2.9835595257476666410307012717655 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.104 Order of pole = 0.0001076 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.133 y[1] (analytic) = 0 y[1] (numeric) = -2.9840379349558866820111030837551 absolute error = 2.9840379349558866820111030837551 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.105 Order of pole = 0.0001084 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1697.5MB, alloc=4.5MB, time=146.88 x[1] = 2.134 y[1] (analytic) = 0 y[1] (numeric) = -2.9845158883548917211711754029247 absolute error = 2.9845158883548917211711754029247 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.106 Order of pole = 0.0001092 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.135 y[1] (analytic) = 0 y[1] (numeric) = -2.9849933861689794091857899683904 absolute error = 2.9849933861689794091857899683904 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.107 Order of pole = 0.00011 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.136 y[1] (analytic) = 0 y[1] (numeric) = -2.985470428622143674356673306262 absolute error = 2.985470428622143674356673306262 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.109 Order of pole = 0.0001108 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.137 y[1] (analytic) = 0 y[1] (numeric) = -2.9859470159380751986827868805394 absolute error = 2.9859470159380751986827868805394 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.11 Order of pole = 0.0001117 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1701.4MB, alloc=4.5MB, time=147.04 x[1] = 2.138 y[1] (analytic) = 0 y[1] (numeric) = -2.9864231483401618929356142572095 absolute error = 2.9864231483401618929356142572095 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.111 Order of pole = 0.0001125 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.139 y[1] (analytic) = 0 y[1] (numeric) = -2.9868988260514893707418170505648 absolute error = 2.9868988260514893707418170505648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.112 Order of pole = 0.0001134 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.14 y[1] (analytic) = 0 y[1] (numeric) = -2.9873740492948414216757142629561 absolute error = 2.9873740492948414216757142629561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.114 Order of pole = 0.0001142 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.141 y[1] (analytic) = 0 y[1] (numeric) = -2.9878488182927004833640324951361 absolute error = 2.9878488182927004833640324951361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.115 Order of pole = 0.0001151 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.142 y[1] (analytic) = 0 y[1] (numeric) = -2.9883231332672481126053673939636 absolute error = 2.9883231332672481126053673939636 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.116 Order of pole = 0.000116 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1705.2MB, alloc=4.5MB, time=147.19 x[1] = 2.143 y[1] (analytic) = 0 y[1] (numeric) = -2.9887969944403654555067896174239 absolute error = 2.9887969944403654555067896174239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.117 Order of pole = 0.0001169 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.144 y[1] (analytic) = 0 y[1] (numeric) = -2.9892704020336337166400215336017 absolute error = 2.9892704020336337166400215336017 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.119 Order of pole = 0.0001177 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.145 y[1] (analytic) = 0 y[1] (numeric) = -2.9897433562683346272196038303214 absolute error = 2.9897433562683346272196038303214 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.12 Order of pole = 0.0001187 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.146 y[1] (analytic) = 0 y[1] (numeric) = -2.9902158573654509123054641955638 absolute error = 2.9902158573654509123054641955638 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.121 Order of pole = 0.0001196 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.147 y[1] (analytic) = 0 y[1] (numeric) = -2.9906879055456667570322932353916 absolute error = 2.9906879055456667570322932353916 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.123 Order of pole = 0.0001205 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1709.0MB, alloc=4.5MB, time=147.35 x[1] = 2.148 y[1] (analytic) = 0 y[1] (numeric) = -2.9911595010293682718681258258773 absolute error = 2.9911595010293682718681258258773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.124 Order of pole = 0.0001214 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.149 y[1] (analytic) = 0 y[1] (numeric) = -2.9916306440366439569045191483472 absolute error = 2.9916306440366439569045191483472 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.125 Order of pole = 0.0001224 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.15 y[1] (analytic) = 0 y[1] (numeric) = -2.9921013347872851651807117330398 absolute error = 2.9921013347872851651807117330398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.126 Order of pole = 0.0001233 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.151 y[1] (analytic) = 0 y[1] (numeric) = -2.9925715735007865650441409349489 absolute error = 2.9925715735007865650441409349489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.128 Order of pole = 0.0001243 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1712.8MB, alloc=4.5MB, time=147.50 x[1] = 2.152 y[1] (analytic) = 0 y[1] (numeric) = -2.9930413603963466015496893870898 absolute error = 2.9930413603963466015496893870898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.129 Order of pole = 0.0001253 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.153 y[1] (analytic) = 0 y[1] (numeric) = -2.9935106956928679569000241206091 absolute error = 2.9935106956928679569000241206091 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.13 Order of pole = 0.0001263 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.154 y[1] (analytic) = 0 y[1] (numeric) = -2.993979579608958009929385207971 absolute error = 2.993979579608958009929385207971 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.131 Order of pole = 0.0001273 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.155 y[1] (analytic) = 0 y[1] (numeric) = -2.9944480123629292946331739748068 absolute error = 2.9944480123629292946331739748068 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.133 Order of pole = 0.0001283 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.156 y[1] (analytic) = 0 y[1] (numeric) = -2.994915994172799957745684037836 absolute error = 2.994915994172799957745684037836 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.134 Order of pole = 0.0001293 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1716.6MB, alloc=4.5MB, time=147.65 x[1] = 2.157 y[1] (analytic) = 0 y[1] (numeric) = -2.995383525256294215368311660459 absolute error = 2.995383525256294215368311660459 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.135 Order of pole = 0.0001303 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.158 y[1] (analytic) = 0 y[1] (numeric) = -2.9958506058308428086505751741138 absolute error = 2.9958506058308428086505751741138 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.137 Order of pole = 0.0001314 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.159 y[1] (analytic) = 0 y[1] (numeric) = -2.9963172361135834585262664921924 absolute error = 2.9963172361135834585262664921924 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.138 Order of pole = 0.0001324 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.16 y[1] (analytic) = 0 y[1] (numeric) = -2.9967834163213613195070510441418 absolute error = 2.9967834163213613195070510441418 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.139 Order of pole = 0.0001335 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1720.4MB, alloc=4.5MB, time=147.81 x[1] = 2.161 y[1] (analytic) = 0 y[1] (numeric) = -2.9972491466707294325358257802578 absolute error = 2.9972491466707294325358257802578 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.14 Order of pole = 0.0001346 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.162 y[1] (analytic) = 0 y[1] (numeric) = -2.9977144273779491769021382425238 absolute error = 2.9977144273779491769021382425238 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.142 Order of pole = 0.0001357 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.163 y[1] (analytic) = 0 y[1] (numeric) = -2.9981792586589907212219630635777 absolute error = 2.9981792586589907212219630635777 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.143 Order of pole = 0.0001368 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.164 y[1] (analytic) = 0 y[1] (numeric) = -2.9986436407295334734841256444246 absolute error = 2.9986436407295334734841256444246 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.144 Order of pole = 0.0001379 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.165 y[1] (analytic) = 0 y[1] (numeric) = -2.9991075738049665301656561717702 absolute error = 2.9991075738049665301656561717702 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.146 Order of pole = 0.000139 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1724.3MB, alloc=4.5MB, time=147.96 x[1] = 2.166 y[1] (analytic) = 0 y[1] (numeric) = -2.9995710581003891244183505677488 absolute error = 2.9995710581003891244183505677488 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.147 Order of pole = 0.0001401 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.167 y[1] (analytic) = 0 y[1] (numeric) = -3.0000340938306110733288084182832 absolute error = 3.0000340938306110733288084182832 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.148 Order of pole = 0.0001413 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.168 y[1] (analytic) = 0 y[1] (numeric) = -3.0004966812101532242542114012585 absolute error = 3.0004966812101532242542114012585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.15 Order of pole = 0.0001424 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.169 y[1] (analytic) = 0 y[1] (numeric) = -3.0009588204532479002360992320399 absolute error = 3.0009588204532479002360992320399 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.151 Order of pole = 0.0001436 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.17 y[1] (analytic) = 0 y[1] (numeric) = -3.0014205117738393444943936615389 absolute error = 3.0014205117738393444943936615389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.152 Order of pole = 0.0001448 memory used=1728.1MB, alloc=4.5MB, time=148.11 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.171 y[1] (analytic) = 0 y[1] (numeric) = -3.0018817553855841640039146009501 absolute error = 3.0018817553855841640039146009501 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.153 Order of pole = 0.000146 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.172 y[1] (analytic) = 0 y[1] (numeric) = -3.002342551501851772155626007367 absolute error = 3.002342551501851772155626007367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.155 Order of pole = 0.0001472 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.173 y[1] (analytic) = 0 y[1] (numeric) = -3.0028029003357248305048427456615 absolute error = 3.0028029003357248305048427456615 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.156 Order of pole = 0.0001484 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.174 y[1] (analytic) = 0 y[1] (numeric) = -3.0032628020999996896086232441978 absolute error = 3.0032628020999996896086232441978 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.157 Order of pole = 0.0001497 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1731.9MB, alloc=4.5MB, time=148.27 x[1] = 2.175 y[1] (analytic) = 0 y[1] (numeric) = -3.0037222570071868289545663850716 absolute error = 3.0037222570071868289545663850716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.159 Order of pole = 0.0001509 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.176 y[1] (analytic) = 0 y[1] (numeric) = -3.0041812652695112959832247135457 absolute error = 3.0041812652695112959832247135457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.16 Order of pole = 0.0001522 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.177 y[1] (analytic) = 0 y[1] (numeric) = -3.0046398270989131442063397161081 absolute error = 3.0046398270989131442063397161081 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.161 Order of pole = 0.0001535 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.178 y[1] (analytic) = 0 y[1] (numeric) = -3.0050979427070478704230986020422 absolute error = 3.0050979427070478704230986020422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.163 Order of pole = 0.0001548 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.179 y[1] (analytic) = 0 y[1] (numeric) = -3.0055556123052868510366057294872 absolute error = 3.0055556123052868510366057294872 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.164 Order of pole = 0.0001561 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1735.7MB, alloc=4.5MB, time=148.42 x[1] = 2.18 y[1] (analytic) = 0 y[1] (numeric) = -3.0060128361047177774727555436062 absolute error = 3.0060128361047177774727555436062 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.165 Order of pole = 0.0001574 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.181 y[1] (analytic) = 0 y[1] (numeric) = -3.0064696143161450907036876415986 absolute error = 3.0064696143161450907036876415986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.167 Order of pole = 0.0001588 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.182 y[1] (analytic) = 0 y[1] (numeric) = -3.0069259471500904148779983468072 absolute error = 3.0069259471500904148779983468072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.168 Order of pole = 0.0001601 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.183 y[1] (analytic) = 0 y[1] (numeric) = -3.0073818348167929900598769620165 absolute error = 3.0073818348167929900598769620165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.169 Order of pole = 0.0001615 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1739.5MB, alloc=4.5MB, time=148.57 x[1] = 2.184 y[1] (analytic) = 0 y[1] (numeric) = -3.0078372775262101040793286801313 absolute error = 3.0078372775262101040793286801313 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.171 Order of pole = 0.0001629 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.185 y[1] (analytic) = 0 y[1] (numeric) = -3.0082922754880175234956399586965 absolute error = 3.0082922754880175234956399586965 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.172 Order of pole = 0.0001643 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.186 y[1] (analytic) = 0 y[1] (numeric) = -3.0087468289116099236762360130925 absolute error = 3.0087468289116099236762360130925 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.173 Order of pole = 0.0001657 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.187 y[1] (analytic) = 0 y[1] (numeric) = -3.0092009380061013179930739516437 absolute error = 3.0092009380061013179930739516437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.175 Order of pole = 0.0001671 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.188 y[1] (analytic) = 0 y[1] (numeric) = -3.0096546029803254861387089642363 absolute error = 3.0096546029803254861387089642363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.176 Order of pole = 0.0001686 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1743.3MB, alloc=4.5MB, time=148.73 x[1] = 2.189 y[1] (analytic) = 0 y[1] (numeric) = -3.0101078240428364015641648842829 absolute error = 3.0101078240428364015641648842829 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.178 Order of pole = 0.00017 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.19 y[1] (analytic) = 0 y[1] (numeric) = -3.0105606014019086580407343719221 absolute error = 3.0105606014019086580407343719221 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.179 Order of pole = 0.0001715 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.191 y[1] (analytic) = 0 y[1] (numeric) = -3.0110129352655378953478279141287 absolute error = 3.0110129352655378953478279141287 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.18 Order of pole = 0.000173 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.192 y[1] (analytic) = 0 y[1] (numeric) = -3.0114648258414412240889848048648 absolute error = 3.0114648258414412240889848048648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.182 Order of pole = 0.0001745 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1747.1MB, alloc=4.5MB, time=148.88 x[1] = 2.193 y[1] (analytic) = 0 y[1] (numeric) = -3.0119162733370576496381532554456 absolute error = 3.0119162733370576496381532554456 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.183 Order of pole = 0.0001761 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.194 y[1] (analytic) = 0 y[1] (numeric) = -3.0123672779595484952183407918627 absolute error = 3.0123672779595484952183407918627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.184 Order of pole = 0.0001776 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.195 y[1] (analytic) = 0 y[1] (numeric) = -3.0128178399157978241147301218245 absolute error = 3.0128178399157978241147301218245 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.186 Order of pole = 0.0001792 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.196 y[1] (analytic) = 0 y[1] (numeric) = -3.0132679594124128610243496996685 absolute error = 3.0132679594124128610243496996685 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.187 Order of pole = 0.0001808 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.197 y[1] (analytic) = 0 y[1] (numeric) = -3.0137176366557244125443822820057 absolute error = 3.0137176366557244125443822820057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.189 Order of pole = 0.0001824 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1751.0MB, alloc=4.5MB, time=149.03 x[1] = 2.198 y[1] (analytic) = 0 y[1] (numeric) = -3.014166871851787286801188850898 absolute error = 3.014166871851787286801188850898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.19 Order of pole = 0.000184 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.199 y[1] (analytic) = 0 y[1] (numeric) = -3.0146156652063807122221193844789 absolute error = 3.0146156652063807122221193844789 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.191 Order of pole = 0.0001856 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.2 y[1] (analytic) = 0 y[1] (numeric) = -3.015064016925008755452176077135 absolute error = 3.015064016925008755452176077135 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.193 Order of pole = 0.0001873 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.201 y[1] (analytic) = 0 y[1] (numeric) = -3.015511927212900738417588752599 absolute error = 3.015511927212900738417588752599 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.194 Order of pole = 0.000189 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.202 y[1] (analytic) = 0 y[1] (numeric) = -3.0159593962750116545383563734986 absolute error = 3.0159593962750116545383563734986 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.196 Order of pole = 0.0001907 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1754.8MB, alloc=4.5MB, time=149.18 x[1] = 2.203 y[1] (analytic) = 0 y[1] (numeric) = -3.0164064243160225840918027299883 absolute error = 3.0164064243160225840918027299883 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.197 Order of pole = 0.0001924 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.204 y[1] (analytic) = 0 y[1] (numeric) = -3.0168530115403411087291885879919 absolute error = 3.0168530115403411087291885879919 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.198 Order of pole = 0.0001941 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.205 y[1] (analytic) = 0 y[1] (numeric) = -3.0172991581521017251474167942413 absolute error = 3.0172991581521017251474167942413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.2 Order of pole = 0.0001959 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.206 y[1] (analytic) = 0 y[1] (numeric) = -3.0177448643551662579178610706327 absolute error = 3.0177448643551662579178610706327 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.201 Order of pole = 0.0001976 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1758.6MB, alloc=4.5MB, time=149.34 x[1] = 2.207 y[1] (analytic) = 0 y[1] (numeric) = -3.0181901303531242714743434843784 absolute error = 3.0181901303531242714743434843784 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.203 Order of pole = 0.0001994 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.208 y[1] (analytic) = 0 y[1] (numeric) = -3.0186349563492934812622798529328 absolute error = 3.0186349563492934812622798529328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.204 Order of pole = 0.0002013 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.209 y[1] (analytic) = 0 y[1] (numeric) = -3.0190793425467201640510066336565 absolute error = 3.0190793425467201640510066336565 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.205 Order of pole = 0.0002031 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.21 y[1] (analytic) = 0 y[1] (numeric) = -3.0195232891481795674112971575774 absolute error = 3.0195232891481795674112971575774 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.207 Order of pole = 0.000205 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.211 y[1] (analytic) = 0 y[1] (numeric) = -3.0199667963561763183600693943528 absolute error = 3.0199667963561763183600693943528 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.208 Order of pole = 0.0002068 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1762.4MB, alloc=4.5MB, time=149.49 x[1] = 2.212 y[1] (analytic) = 0 y[1] (numeric) = -3.0204098643729448311742817815586 absolute error = 3.0204098643729448311742817815586 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.21 Order of pole = 0.0002087 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.213 y[1] (analytic) = 0 y[1] (numeric) = -3.0208524934004497143760080156706 absolute error = 3.0208524934004497143760080156706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.211 Order of pole = 0.0002107 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.214 y[1] (analytic) = 0 y[1] (numeric) = -3.0212946836403861768906760844869 absolute error = 3.0212946836403861768906760844869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.213 Order of pole = 0.0002126 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.215 y[1] (analytic) = 0 y[1] (numeric) = -3.0217364352941804333804512212072 absolute error = 3.0217364352941804333804512212072 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.214 Order of pole = 0.0002146 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1766.2MB, alloc=4.5MB, time=149.64 x[1] = 2.216 y[1] (analytic) = 0 y[1] (numeric) = -3.0221777485629901087547368788689 absolute error = 3.0221777485629901087547368788689 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.216 Order of pole = 0.0002166 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.217 y[1] (analytic) = 0 y[1] (numeric) = -3.0226186236477046418597622602727 absolute error = 3.0226186236477046418597622602727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.217 Order of pole = 0.0002186 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.218 y[1] (analytic) = 0 y[1] (numeric) = -3.023059060748945688349219392852 absolute error = 3.023059060748945688349219392852 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.218 Order of pole = 0.0002206 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.219 y[1] (analytic) = 0 y[1] (numeric) = -3.0234990600670675227379072100813 absolute error = 3.0234990600670675227379072100813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.22 Order of pole = 0.0002227 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.22 y[1] (analytic) = 0 y[1] (numeric) = -3.0239386218021574396403345909165 absolute error = 3.0239386218021574396403345909165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.221 Order of pole = 0.0002248 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1770.0MB, alloc=4.5MB, time=149.80 x[1] = 2.221 y[1] (analytic) = 0 y[1] (numeric) = -3.024377746154036154196228816352 absolute error = 3.024377746154036154196228816352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.223 Order of pole = 0.0002269 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.222 y[1] (analytic) = 0 y[1] (numeric) = -3.0248164333222582016848904273977 absolute error = 3.0248164333222582016848904273977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.224 Order of pole = 0.000229 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.223 y[1] (analytic) = 0 y[1] (numeric) = -3.025254683506112336330330011564 absolute error = 3.025254683506112336330330011564 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.226 Order of pole = 0.0002312 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.224 y[1] (analytic) = 0 y[1] (numeric) = -3.0256924969046219292991170052281 absolute error = 3.0256924969046219292991170052281 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.227 Order of pole = 0.0002334 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.225 y[1] (analytic) = 0 y[1] (numeric) = -3.0261298737165453658928651769787 absolute error = 3.0261298737165453658928651769787 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1773.8MB, alloc=4.5MB, time=149.95 Complex estimate of poles used Radius of convergence = 3.229 Order of pole = 0.0002356 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.226 y[1] (analytic) = 0 y[1] (numeric) = -3.0265668141403764419372740521352 absolute error = 3.0265668141403764419372740521352 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.23 Order of pole = 0.0002378 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.227 y[1] (analytic) = 0 y[1] (numeric) = -3.0270033183743447593696401510491 absolute error = 3.0270033183743447593696401510491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.232 Order of pole = 0.0002401 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.228 y[1] (analytic) = 0 y[1] (numeric) = -3.0274393866164161210267465434564 absolute error = 3.0274393866164161210267465434564 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.233 Order of pole = 0.0002424 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.229 y[1] (analytic) = 0 y[1] (numeric) = -3.0278750190642929246350338679997 absolute error = 3.0278750190642929246350338679997 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.235 Order of pole = 0.0002447 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1777.7MB, alloc=4.5MB, time=150.11 x[1] = 2.23 y[1] (analytic) = 0 y[1] (numeric) = -3.0283102159154145560049506300141 absolute error = 3.0283102159154145560049506300141 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.236 Order of pole = 0.000247 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.231 y[1] (analytic) = 0 y[1] (numeric) = -3.0287449773669577814313752717097 absolute error = 3.0287449773669577814313752717097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.238 Order of pole = 0.0002494 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.232 y[1] (analytic) = 0 y[1] (numeric) = -3.0291793036158371393019972069266 absolute error = 3.0291793036158371393019972069266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.239 Order of pole = 0.0002518 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.233 y[1] (analytic) = 0 y[1] (numeric) = -3.0296131948587053309155387276217 absolute error = 3.0296131948587053309155387276217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.241 Order of pole = 0.0002542 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.234 y[1] (analytic) = 0 y[1] (numeric) = -3.0300466512919536105116944211111 absolute error = 3.0300466512919536105116944211111 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.242 Order of pole = 0.0002567 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1781.5MB, alloc=4.5MB, time=150.26 x[1] = 2.235 y[1] (analytic) = 0 y[1] (numeric) = -3.0304796731117121745146594857759 absolute error = 3.0304796731117121745146594857759 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.244 Order of pole = 0.0002592 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.236 y[1] (analytic) = 0 y[1] (numeric) = -3.0309122605138505499921130983833 absolute error = 3.0309122605138505499921130983833 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.246 Order of pole = 0.0002617 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.237 y[1] (analytic) = 0 y[1] (numeric) = -3.0313444136939779823315177683166 absolute error = 3.0313444136939779823315177683166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.247 Order of pole = 0.0002642 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.238 y[1] (analytic) = 0 y[1] (numeric) = -3.0317761328474438221355904127907 absolute error = 3.0317761328474438221355904127907 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.249 Order of pole = 0.0002668 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1785.3MB, alloc=4.5MB, time=150.41 x[1] = 2.239 y[1] (analytic) = 0 y[1] (numeric) = -3.0322074181693379113387957024903 absolute error = 3.0322074181693379113387957024903 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.25 Order of pole = 0.0002694 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.24 y[1] (analytic) = 0 y[1] (numeric) = -3.0326382698544909685467070589491 absolute error = 3.0326382698544909685467070589491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.252 Order of pole = 0.000272 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.241 y[1] (analytic) = 0 y[1] (numeric) = -3.0330686880974749736000755333293 absolute error = 3.0330686880974749736000755333293 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.253 Order of pole = 0.0002747 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.242 y[1] (analytic) = 0 y[1] (numeric) = -3.033498673092603551365441661006 absolute error = 3.033498673092603551365441661006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.255 Order of pole = 0.0002774 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.243 y[1] (analytic) = 0 y[1] (numeric) = -3.0339282250339323547541202674437 absolute error = 3.0339282250339323547541202674437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.256 Order of pole = 0.0002801 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1789.1MB, alloc=4.5MB, time=150.57 x[1] = 2.244 y[1] (analytic) = 0 y[1] (numeric) = -3.0343573441152594469713830982249 absolute error = 3.0343573441152594469713830982249 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.258 Order of pole = 0.0002829 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.245 y[1] (analytic) = 0 y[1] (numeric) = -3.0347860305301256829976590596853 absolute error = 3.0347860305301256829976590596853 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.26 Order of pole = 0.0002857 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.246 y[1] (analytic) = 0 y[1] (numeric) = -3.0352142844718150903035667863737 absolute error = 3.0352142844718150903035667863737 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.261 Order of pole = 0.0002885 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.247 y[1] (analytic) = 0 y[1] (numeric) = -3.0356421061333552488005891974277 absolute error = 3.0356421061333552488005891974277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.263 Order of pole = 0.0002914 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1792.9MB, alloc=4.5MB, time=150.72 x[1] = 2.248 y[1] (analytic) = 0 y[1] (numeric) = -3.0360694957075176700291946658823 absolute error = 3.0360694957075176700291946658823 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.264 Order of pole = 0.0002943 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.249 y[1] (analytic) = 0 y[1] (numeric) = -3.0364964533868181755862044028483 absolute error = 3.0364964533868181755862044028483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.266 Order of pole = 0.0002972 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.25 y[1] (analytic) = 0 y[1] (numeric) = -3.0369229793635172747932006523546 absolute error = 3.0369229793635172747932006523546 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.268 Order of pole = 0.0003002 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.251 y[1] (analytic) = 0 y[1] (numeric) = -3.0373490738296205416077653023872 absolute error = 3.0373490738296205416077653023872 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.269 Order of pole = 0.0003032 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.252 y[1] (analytic) = 0 y[1] (numeric) = -3.0377747369768789907793335432205 absolute error = 3.0377747369768789907793335432205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.271 Order of pole = 0.0003062 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1796.7MB, alloc=4.5MB, time=150.88 x[1] = 2.253 y[1] (analytic) = 0 y[1] (numeric) = -3.0381999689967894532514422454634 absolute error = 3.0381999689967894532514422454634 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.272 Order of pole = 0.0003093 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.254 y[1] (analytic) = 0 y[1] (numeric) = -3.0386247700805949508121477872855 absolute error = 3.0386247700805949508121477872855 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.274 Order of pole = 0.0003124 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.255 y[1] (analytic) = 0 y[1] (numeric) = -3.0390491404192850699943831329834 absolute error = 3.0390491404192850699943831329834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.276 Order of pole = 0.0003155 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.256 y[1] (analytic) = 0 y[1] (numeric) = -3.0394730802035963352280190533403 absolute error = 3.0394730802035963352280190533403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.277 Order of pole = 0.0003187 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.257 y[1] (analytic) = 0 y[1] (numeric) = -3.0398965896240125812453894820713 absolute error = 3.0398965896240125812453894820713 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.279 Order of pole = 0.0003219 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1800.6MB, alloc=4.5MB, time=151.03 x[1] = 2.258 y[1] (analytic) = 0 y[1] (numeric) = -3.0403196688707653247420361219725 absolute error = 3.0403196688707653247420361219725 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.281 Order of pole = 0.0003252 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.259 y[1] (analytic) = 0 y[1] (numeric) = -3.04074231813383413529442254915 absolute error = 3.04074231813383413529442254915 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.282 Order of pole = 0.0003285 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.26 y[1] (analytic) = 0 y[1] (numeric) = -3.0411645376029470055363632138431 absolute error = 3.0411645376029470055363632138431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.284 Order of pole = 0.0003319 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.261 y[1] (analytic) = 0 y[1] (numeric) = -3.0415863274675807205959079018143 absolute error = 3.0415863274675807205959079018143 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.286 Order of pole = 0.0003352 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1804.4MB, alloc=4.5MB, time=151.18 x[1] = 2.262 y[1] (analytic) = 0 y[1] (numeric) = -3.042007687916961226794417401009 absolute error = 3.042007687916961226794417401009 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.287 Order of pole = 0.0003387 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.263 y[1] (analytic) = 0 y[1] (numeric) = -3.0424286191400639996095613141289 absolute error = 3.0424286191400639996095613141289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.289 Order of pole = 0.0003421 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.264 y[1] (analytic) = 0 y[1] (numeric) = -3.0428491213256144109039641688682 absolute error = 3.0428491213256144109039641688682 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.291 Order of pole = 0.0003456 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.265 y[1] (analytic) = 0 y[1] (numeric) = -3.0432691946620880954212212037693 absolute error = 3.0432691946620880954212212037693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.292 Order of pole = 0.0003492 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.266 y[1] (analytic) = 0 y[1] (numeric) = -3.0436888393377113165510004489179 absolute error = 3.0436888393377113165510004489179 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.294 Order of pole = 0.0003528 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1808.2MB, alloc=4.5MB, time=151.34 x[1] = 2.267 y[1] (analytic) = 0 y[1] (numeric) = -3.044108055540461331364942976959 absolute error = 3.044108055540461331364942976959 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.296 Order of pole = 0.0003564 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.268 y[1] (analytic) = 0 y[1] (numeric) = -3.0445268434580667549250684711217 absolute error = 3.0445268434580667549250684711217 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.298 Order of pole = 0.0003601 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.269 y[1] (analytic) = 0 y[1] (numeric) = -3.0449452032780079238663885430409 absolute error = 3.0449452032780079238663885430409 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.299 Order of pole = 0.0003638 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.27 y[1] (analytic) = 0 y[1] (numeric) = -3.0453631351875172592554255341057 absolute error = 3.0453631351875172592554255341057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.301 Order of pole = 0.0003676 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1812.0MB, alloc=4.5MB, time=151.49 x[1] = 2.271 y[1] (analytic) = 0 y[1] (numeric) = -3.0457806393735796287263298497895 absolute error = 3.0457806393735796287263298497895 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.303 Order of pole = 0.0003714 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.272 y[1] (analytic) = 0 y[1] (numeric) = -3.0461977160229327078962842068824 absolute error = 3.0461977160229327078962842068824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.305 Order of pole = 0.0003752 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.273 y[1] (analytic) = 0 y[1] (numeric) = -3.0466143653220673410618785186894 absolute error = 3.0466143653220673410618785186894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.306 Order of pole = 0.0003791 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.274 y[1] (analytic) = 0 y[1] (numeric) = -3.047030587457227901178134503036 absolute error = 3.047030587457227901178134503036 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.308 Order of pole = 0.0003831 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.275 y[1] (analytic) = 0 y[1] (numeric) = -3.0474463826144126491218544722769 absolute error = 3.0474463826144126491218544722769 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.31 Order of pole = 0.0003871 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1815.8MB, alloc=4.5MB, time=151.64 x[1] = 2.276 y[1] (analytic) = 0 y[1] (numeric) = -3.0478617509793740922409641533879 absolute error = 3.0478617509793740922409641533879 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.312 Order of pole = 0.0003912 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.277 y[1] (analytic) = 0 y[1] (numeric) = -3.0482766927376193421915147895772 absolute error = 3.0482766927376193421915147895772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.313 Order of pole = 0.0003953 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.278 y[1] (analytic) = 0 y[1] (numeric) = -3.048691208074410472064005192639 absolute error = 3.048691208074410472064005192639 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.315 Order of pole = 0.0003994 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.279 y[1] (analytic) = 0 y[1] (numeric) = -3.049105297174764872800679847427 absolute error = 3.049105297174764872800679847427 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.317 Order of pole = 0.0004036 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1819.6MB, alloc=4.5MB, time=151.79 x[1] = 2.28 y[1] (analytic) = 0 y[1] (numeric) = -3.0495189602234556089054546163074 absolute error = 3.0495189602234556089054546163074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.319 Order of pole = 0.0004079 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.281 y[1] (analytic) = 0 y[1] (numeric) = -3.0499321974050117734481170522029 absolute error = 3.0499321974050117734481170522029 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.321 Order of pole = 0.0004122 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.282 y[1] (analytic) = 0 y[1] (numeric) = -3.0503450089037188423644438038154 absolute error = 3.0503450089037188423644438038154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.322 Order of pole = 0.0004165 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.283 y[1] (analytic) = 0 y[1] (numeric) = -3.0507573949036190280538730857597 absolute error = 3.0507573949036190280538730857597 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.324 Order of pole = 0.0004209 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.284 y[1] (analytic) = 0 y[1] (numeric) = -3.0511693555885116322763656896113 absolute error = 3.0511693555885116322763656896113 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.326 Order of pole = 0.0004254 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1823.4MB, alloc=4.5MB, time=151.94 x[1] = 2.285 y[1] (analytic) = 0 y[1] (numeric) = -3.0515808911419533983500835292107 absolute error = 3.0515808911419533983500835292107 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.328 Order of pole = 0.0004299 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.286 y[1] (analytic) = 0 y[1] (numeric) = -3.0519920017472588626515102449298 absolute error = 3.0519920017472588626515102449298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.33 Order of pole = 0.0004345 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.287 y[1] (analytic) = 0 y[1] (numeric) = -3.0524026875875007054196339369424 absolute error = 3.0524026875875007054196339369424 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.332 Order of pole = 0.0004391 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.288 y[1] (analytic) = 0 y[1] (numeric) = -3.0528129488455101008658076568006 absolute error = 3.0528129488455101008658076568006 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.334 Order of pole = 0.0004438 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.289 y[1] (analytic) = 0 y[1] (numeric) = -3.0532227857038770665908988597533 absolute error = 3.0532227857038770665908988597533 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.335 Order of pole = 0.0004485 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1827.3MB, alloc=4.5MB, time=152.10 x[1] = 2.29 y[1] (analytic) = 0 y[1] (numeric) = -3.0536321983449508123113346072034 absolute error = 3.0536321983449508123113346072034 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.337 Order of pole = 0.0004533 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.291 y[1] (analytic) = 0 y[1] (numeric) = -3.0540411869508400878956449094386 absolute error = 3.0540411869508400878956449094386 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.339 Order of pole = 0.0004582 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.292 y[1] (analytic) = 0 y[1] (numeric) = -3.0544497517034135307131022132375 absolute error = 3.0544497517034135307131022132375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.341 Order of pole = 0.0004631 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.293 y[1] (analytic) = 0 y[1] (numeric) = -3.0548578927843000122960506670989 absolute error = 3.0548578927843000122960506670989 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.343 Order of pole = 0.0004681 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1831.1MB, alloc=4.5MB, time=152.25 x[1] = 2.294 y[1] (analytic) = 0 y[1] (numeric) = -3.0552656103748889843175144386228 absolute error = 3.0552656103748889843175144386228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.345 Order of pole = 0.0004731 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.295 y[1] (analytic) = 0 y[1] (numeric) = -3.0556729046563308238856700139361 absolute error = 3.0556729046563308238856700139361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.347 Order of pole = 0.0004782 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.296 y[1] (analytic) = 0 y[1] (numeric) = -3.0560797758095371781567630779556 absolute error = 3.0560797758095371781567630779556 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.349 Order of pole = 0.0004834 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.297 y[1] (analytic) = 0 y[1] (numeric) = -3.0564862240151813082680462566739 absolute error = 3.0564862240151813082680462566739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.351 Order of pole = 0.0004886 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.298 y[1] (analytic) = 0 y[1] (numeric) = -3.0568922494536984325923096984841 absolute error = 3.0568922494536984325923096984841 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.353 Order of pole = 0.0004939 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1834.9MB, alloc=4.5MB, time=152.41 x[1] = 2.299 y[1] (analytic) = 0 y[1] (numeric) = -3.0572978523052860693155721807875 absolute error = 3.0572978523052860693155721807875 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.355 Order of pole = 0.0004993 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.3 y[1] (analytic) = 0 y[1] (numeric) = -3.0577030327499043783394961507049 absolute error = 3.0577030327499043783394961507049 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.357 Order of pole = 0.0005047 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.301 y[1] (analytic) = 0 y[1] (numeric) = -3.0581077909672765025100858445864 absolute error = 3.0581077909672765025100858445864 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.359 Order of pole = 0.0005102 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.302 y[1] (analytic) = 0 y[1] (numeric) = -3.0585121271368889081742233801478 absolute error = 3.0585121271368889081742233801478 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.361 Order of pole = 0.0005158 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1838.7MB, alloc=4.5MB, time=152.57 x[1] = 2.303 y[1] (analytic) = 0 y[1] (numeric) = -3.0589160414379917250655934774001 absolute error = 3.0589160414379917250655934774001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.363 Order of pole = 0.0005214 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.304 y[1] (analytic) = 0 y[1] (numeric) = -3.0593195340495990855215432400385 absolute error = 3.0593195340495990855215432400385 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.365 Order of pole = 0.0005271 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.305 y[1] (analytic) = 0 y[1] (numeric) = -3.0597226051504894630324192175767 absolute error = 3.0597226051504894630324192175767 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.367 Order of pole = 0.0005329 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.306 y[1] (analytic) = 0 y[1] (numeric) = -3.0601252549192060101249197701963 absolute error = 3.0601252549192060101249197701963 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.369 Order of pole = 0.0005387 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.307 y[1] (analytic) = 0 y[1] (numeric) = -3.0605274835340568955809965729949 absolute error = 3.0605274835340568955809965729949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.371 Order of pole = 0.0005446 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1842.5MB, alloc=4.5MB, time=152.72 x[1] = 2.308 y[1] (analytic) = 0 y[1] (numeric) = -3.0609292911731156409938349240039 absolute error = 3.0609292911731156409938349240039 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.373 Order of pole = 0.0005506 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.309 y[1] (analytic) = 0 y[1] (numeric) = -3.0613306780142214566624383609716 absolute error = 3.0613306780142214566624383609716 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.375 Order of pole = 0.0005567 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.31 y[1] (analytic) = 0 y[1] (numeric) = -3.0617316442349795768263389454187 absolute error = 3.0617316442349795768263389454187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.377 Order of pole = 0.0005628 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.311 y[1] (analytic) = 0 y[1] (numeric) = -3.0621321900127615942419504388266 absolute error = 3.0621321900127615942419504388266 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.379 Order of pole = 0.000569 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1846.3MB, alloc=4.5MB, time=152.87 x[1] = 2.312 y[1] (analytic) = 0 y[1] (numeric) = -3.0625323155247057941020774749732 absolute error = 3.0625323155247057941020774749732 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.381 Order of pole = 0.0005753 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.313 y[1] (analytic) = 0 y[1] (numeric) = -3.0629320209477174873000897243373 absolute error = 3.0629320209477174873000897243373 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.383 Order of pole = 0.0005817 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.314 y[1] (analytic) = 0 y[1] (numeric) = -3.063331306458469343040265951108 absolute error = 3.063331306458469343040265951108 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.385 Order of pole = 0.0005881 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.315 y[1] (analytic) = 0 y[1] (numeric) = -3.0637301722334017207958087806171 absolute error = 3.0637301722334017207958087806171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.388 Order of pole = 0.0005947 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.316 y[1] (analytic) = 0 y[1] (numeric) = -3.0641286184487230016160269249145 absolute error = 3.0641286184487230016160269249145 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.39 Order of pole = 0.0006013 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1850.1MB, alloc=4.5MB, time=153.03 x[1] = 2.317 y[1] (analytic) = 0 y[1] (numeric) = -3.0645266452804099187841775566844 absolute error = 3.0645266452804099187841775566844 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.392 Order of pole = 0.000608 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.318 y[1] (analytic) = 0 y[1] (numeric) = -3.0649242529042078878274574767127 absolute error = 3.0649242529042078878274574767127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.394 Order of pole = 0.0006148 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.319 y[1] (analytic) = 0 y[1] (numeric) = -3.0653214414956313358806276876164 absolute error = 3.0653214414956313358806276876164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.396 Order of pole = 0.0006216 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.32 y[1] (analytic) = 0 y[1] (numeric) = -3.0657182112299640304047519664938 absolute error = 3.0657182112299640304047519664938 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.398 Order of pole = 0.0006286 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.321 y[1] (analytic) = 0 y[1] (numeric) = -3.0661145622822594072625260215041 absolute error = 3.0661145622822594072625260215041 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.401 Order of pole = 0.0006356 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1854.0MB, alloc=4.5MB, time=153.18 x[1] = 2.322 y[1] (analytic) = 0 y[1] (numeric) = -3.0665104948273408981516698220933 absolute error = 3.0665104948273408981516698220933 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.403 Order of pole = 0.0006427 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.323 y[1] (analytic) = 0 y[1] (numeric) = -3.0669060090398022573978517096118 absolute error = 3.0669060090398022573978517096118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.405 Order of pole = 0.0006499 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.324 y[1] (analytic) = 0 y[1] (numeric) = -3.067301105094007888108608924367 absolute error = 3.067301105094007888108608924367 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.407 Order of pole = 0.0006572 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.325 y[1] (analytic) = 0 y[1] (numeric) = -3.0676957831640931676897252266867 absolute error = 3.0676957831640931676897252266867 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.409 Order of pole = 0.0006646 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1857.8MB, alloc=4.5MB, time=153.33 x[1] = 2.326 y[1] (analytic) = 0 y[1] (numeric) = -3.0680900434239647727255223432892 absolute error = 3.0680900434239647727255223432892 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.412 Order of pole = 0.0006721 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.327 y[1] (analytic) = 0 y[1] (numeric) = -3.0684838860473010032245180361219 absolute error = 3.0684838860473010032245180361219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.414 Order of pole = 0.0006797 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.328 y[1] (analytic) = 0 y[1] (numeric) = -3.0688773112075521062318996688023 absolute error = 3.0688773112075521062318996688023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.416 Order of pole = 0.0006873 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.329 y[1] (analytic) = 0 y[1] (numeric) = -3.0692703190779405988102582358277 absolute error = 3.0692703190779405988102582358277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.419 Order of pole = 0.0006951 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.33 y[1] (analytic) = 0 y[1] (numeric) = -3.0696629098314615903900239217745 absolute error = 3.0696629098314615903900239217745 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.421 Order of pole = 0.000703 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1861.6MB, alloc=4.5MB, time=153.49 x[1] = 2.331 y[1] (analytic) = 0 y[1] (numeric) = -3.0700550836408831044910403717414 absolute error = 3.0700550836408831044910403717414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.423 Order of pole = 0.000711 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.332 y[1] (analytic) = 0 y[1] (numeric) = -3.0704468406787463998167109802596 absolute error = 3.0704468406787463998167109802596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.426 Order of pole = 0.000719 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.333 y[1] (analytic) = 0 y[1] (numeric) = -3.0708381811173662907221466437624 absolute error = 3.0708381811173662907221466437624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.428 Order of pole = 0.0007272 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.334 y[1] (analytic) = 0 y[1] (numeric) = -3.0712291051288314670577405714253 absolute error = 3.0712291051288314670577405714253 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.43 Order of pole = 0.0007355 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1865.4MB, alloc=4.5MB, time=153.64 x[1] = 2.335 y[1] (analytic) = 0 y[1] (numeric) = -3.0716196128850048133895919107261 absolute error = 3.0716196128850048133895919107261 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.433 Order of pole = 0.0007438 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.336 y[1] (analytic) = 0 y[1] (numeric) = -3.0720097045575237275981961173807 absolute error = 3.0720097045575237275981961173807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.435 Order of pole = 0.0007523 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.337 y[1] (analytic) = 0 y[1] (numeric) = -3.0723993803178004388568161843534 absolute error = 3.0723993803178004388568161843534 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.437 Order of pole = 0.0007609 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.338 y[1] (analytic) = 0 y[1] (numeric) = -3.0727886403370223249909450413727 absolute error = 3.0727886403370223249909450413727 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.44 Order of pole = 0.0007696 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.339 y[1] (analytic) = 0 y[1] (numeric) = -3.0731774847861522292202656447681 absolute error = 3.0731774847861522292202656447681 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.442 Order of pole = 0.0007784 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1869.2MB, alloc=4.5MB, time=153.80 x[1] = 2.34 y[1] (analytic) = 0 y[1] (numeric) = -3.0735659138359287762845114974402 absolute error = 3.0735659138359287762845114974402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.445 Order of pole = 0.0007873 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.341 y[1] (analytic) = 0 y[1] (numeric) = -3.0739539276568666879546265703419 absolute error = 3.0739539276568666879546265703419 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.447 Order of pole = 0.0007963 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.342 y[1] (analytic) = 0 y[1] (numeric) = -3.0743415264192570979306198399491 absolute error = 3.0743415264192570979306198399491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.45 Order of pole = 0.0008055 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.343 y[1] (analytic) = 0 y[1] (numeric) = -3.0747287102931678661275059107869 absolute error = 3.0747287102931678661275059107869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.452 Order of pole = 0.0008147 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.344 y[1] (analytic) = 0 y[1] (numeric) = -3.0751154794484438923507194581218 absolute error = 3.0751154794484438923507194581218 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1873.0MB, alloc=4.5MB, time=153.95 Complex estimate of poles used Radius of convergence = 3.455 Order of pole = 0.0008241 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.345 y[1] (analytic) = 0 y[1] (numeric) = -3.0755018340547074293623875033816 absolute error = 3.0755018340547074293623875033816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.457 Order of pole = 0.0008336 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.346 y[1] (analytic) = 0 y[1] (numeric) = -3.0758877742813583953398398236961 absolute error = 3.0758877742813583953398398236961 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.46 Order of pole = 0.0008432 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.347 y[1] (analytic) = 0 y[1] (numeric) = -3.0762733002975746857277340971088 absolute error = 3.0762733002975746857277340971088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.462 Order of pole = 0.000853 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.348 y[1] (analytic) = 0 y[1] (numeric) = -3.0766584122723124844851686964709 absolute error = 3.0766584122723124844851686964709 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.465 Order of pole = 0.0008628 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1876.8MB, alloc=4.5MB, time=154.10 x[1] = 2.349 y[1] (analytic) = 0 y[1] (numeric) = -3.0770431103743065747291523677372 absolute error = 3.0770431103743065747291523677372 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.467 Order of pole = 0.0008728 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.35 y[1] (analytic) = 0 y[1] (numeric) = -3.0774273947720706487757963623171 absolute error = 3.0774273947720706487757963623171 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.47 Order of pole = 0.0008829 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.351 y[1] (analytic) = 0 y[1] (numeric) = -3.0778112656338976175805909382403 absolute error = 3.0778112656338976175805909382403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.473 Order of pole = 0.0008932 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.352 y[1] (analytic) = 0 y[1] (numeric) = -3.0781947231278599195791245011473 absolute error = 3.0781947231278599195791245011473 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.475 Order of pole = 0.0009036 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.353 y[1] (analytic) = 0 y[1] (numeric) = -3.0785777674218098289296000234661 absolute error = 3.0785777674218098289296000234661 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.478 Order of pole = 0.0009141 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1880.7MB, alloc=4.5MB, time=154.26 x[1] = 2.354 y[1] (analytic) = 0 y[1] (numeric) = -3.0789603986833797631584997585518 absolute error = 3.0789603986833797631584997585518 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.481 Order of pole = 0.0009247 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.355 y[1] (analytic) = 0 y[1] (numeric) = -3.0793426170799825902107456560074 absolute error = 3.0793426170799825902107456560074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.483 Order of pole = 0.0009355 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.356 y[1] (analytic) = 0 y[1] (numeric) = -3.0797244227788119349056992848338 absolute error = 3.0797244227788119349056992848338 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.486 Order of pole = 0.0009464 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.357 y[1] (analytic) = 0 y[1] (numeric) = -3.0801058159468424848003414824374 absolute error = 3.0801058159468424848003414824374 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.489 Order of pole = 0.0009574 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1884.5MB, alloc=4.5MB, time=154.41 x[1] = 2.358 y[1] (analytic) = 0 y[1] (numeric) = -3.0804867967508302954609683698168 absolute error = 3.0804867967508302954609683698168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.491 Order of pole = 0.0009686 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.359 y[1] (analytic) = 0 y[1] (numeric) = -3.0808673653573130951447368064194 absolute error = 3.0808673653573130951447368064194 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.494 Order of pole = 0.00098 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.36 y[1] (analytic) = 0 y[1] (numeric) = -3.0812475219326105888923888021648 absolute error = 3.0812475219326105888923888021648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.497 Order of pole = 0.0009914 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.361 y[1] (analytic) = 0 y[1] (numeric) = -3.0816272666428247620334808589413 absolute error = 3.0816272666428247620334808589413 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.5 Order of pole = 0.001003 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.362 y[1] (analytic) = 0 y[1] (numeric) = -3.082006599653840183105440679454 absolute error = 3.082006599653840183105440679454 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.503 Order of pole = 0.001015 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1888.3MB, alloc=4.5MB, time=154.56 x[1] = 2.363 y[1] (analytic) = 0 y[1] (numeric) = -3.0823855211313243061877701576023 absolute error = 3.0823855211313243061877701576023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.505 Order of pole = 0.001027 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.364 y[1] (analytic) = 0 y[1] (numeric) = -3.0827640312407277726527100515566 absolute error = 3.0827640312407277726527100515566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.508 Order of pole = 0.001039 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.365 y[1] (analytic) = 0 y[1] (numeric) = -3.0831421301472847123336782383464 absolute error = 3.0831421301472847123336782383464 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.511 Order of pole = 0.001051 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.366 y[1] (analytic) = 0 y[1] (numeric) = -3.0835198180160130441127899570375 absolute error = 3.0835198180160130441127899570375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.514 Order of pole = 0.001063 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1892.1MB, alloc=4.5MB, time=154.72 x[1] = 2.367 y[1] (analytic) = 0 y[1] (numeric) = -3.0838970950117147759287649664166 absolute error = 3.0838970950117147759287649664166 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.517 Order of pole = 0.001076 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.368 y[1] (analytic) = 0 y[1] (numeric) = -3.0842739612989763042065230724927 absolute error = 3.0842739612989763042065230724927 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.52 Order of pole = 0.001089 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.369 y[1] (analytic) = 0 y[1] (numeric) = -3.0846504170421687127097660210232 absolute error = 3.0846504170421687127097660210232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.523 Order of pole = 0.001102 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.37 y[1] (analytic) = 0 y[1] (numeric) = -3.0850264624054480708178403006422 absolute error = 3.0850264624054480708178403006422 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.526 Order of pole = 0.001115 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.371 y[1] (analytic) = 0 y[1] (numeric) = -3.0854020975527557312281719629803 absolute error = 3.0854020975527557312281719629803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.529 Order of pole = 0.001128 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1895.9MB, alloc=4.5MB, time=154.87 x[1] = 2.372 y[1] (analytic) = 0 y[1] (numeric) = -3.0857773226478186270855611373754 absolute error = 3.0857773226478186270855611373754 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.532 Order of pole = 0.001141 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.373 y[1] (analytic) = 0 y[1] (numeric) = -3.0861521378541495685396204993522 absolute error = 3.0861521378541495685396204993522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.535 Order of pole = 0.001155 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.374 y[1] (analytic) = 0 y[1] (numeric) = -3.0865265433350475387316385439571 absolute error = 3.0865265433350475387316385439571 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.538 Order of pole = 0.001169 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.375 y[1] (analytic) = 0 y[1] (numeric) = -3.0869005392535979892121451172414 absolute error = 3.0869005392535979892121451172414 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.541 Order of pole = 0.001182 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.376 y[1] (analytic) = 0 y[1] (numeric) = -3.0872741257726731347904532716511 absolute error = 3.0872741257726731347904532716511 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.544 Order of pole = 0.001197 memory used=1899.7MB, alloc=4.5MB, time=155.02 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.377 y[1] (analytic) = 0 y[1] (numeric) = -3.0876473030549322478174481337748 absolute error = 3.0876473030549322478174481337748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.547 Order of pole = 0.001211 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.378 y[1] (analytic) = 0 y[1] (numeric) = -3.0880200712628219519028901057839 absolute error = 3.0880200712628219519028901057839 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.55 Order of pole = 0.001225 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.379 y[1] (analytic) = 0 y[1] (numeric) = -3.0883924305585765150684963649407 absolute error = 3.0883924305585765150684963649407 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.553 Order of pole = 0.00124 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.38 y[1] (analytic) = 0 y[1] (numeric) = -3.088764381104218142338061278712 absolute error = 3.088764381104218142338061278712 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.556 Order of pole = 0.001255 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1903.6MB, alloc=4.5MB, time=155.18 x[1] = 2.381 y[1] (analytic) = 0 y[1] (numeric) = -3.0891359230615572677658730162748 absolute error = 3.0891359230615572677658730162748 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.56 Order of pole = 0.00127 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.382 y[1] (analytic) = 0 y[1] (numeric) = -3.0895070565921928459046803105063 absolute error = 3.0895070565921928459046803105063 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.563 Order of pole = 0.001285 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.383 y[1] (analytic) = 0 y[1] (numeric) = -3.08987778185751264271446000787 absolute error = 3.08987778185751264271446000787 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.566 Order of pole = 0.0013 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.384 y[1] (analytic) = 0 y[1] (numeric) = -3.0902480990186935259132327369213 absolute error = 3.0902480990186935259132327369213 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.569 Order of pole = 0.001316 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.385 y[1] (analytic) = 0 y[1] (numeric) = -3.090618008236701754771170729411 absolute error = 3.090618008236701754771170729411 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.572 Order of pole = 0.001332 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1907.4MB, alloc=4.5MB, time=155.33 x[1] = 2.386 y[1] (analytic) = 0 y[1] (numeric) = -3.0909875096722932693492385411458 absolute error = 3.0909875096722932693492385411458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.576 Order of pole = 0.001348 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.387 y[1] (analytic) = 0 y[1] (numeric) = -3.0913566034860139791836041428228 absolute error = 3.0913566034860139791836041428228 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.579 Order of pole = 0.001364 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.388 y[1] (analytic) = 0 y[1] (numeric) = -3.0917252898382000514170545839673 absolute error = 3.0917252898382000514170545839673 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.582 Order of pole = 0.001381 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.389 y[1] (analytic) = 0 y[1] (numeric) = -3.092093568888978198378647175831 absolute error = 3.092093568888978198378647175831 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.586 Order of pole = 0.001397 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1911.2MB, alloc=4.5MB, time=155.48 x[1] = 2.39 y[1] (analytic) = 0 y[1] (numeric) = -3.0924614407982659646128238916205 absolute error = 3.0924614407982659646128238916205 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.589 Order of pole = 0.001414 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.391 y[1] (analytic) = 0 y[1] (numeric) = -3.0928289057257720133592134446869 absolute error = 3.0928289057257720133592134446869 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.593 Order of pole = 0.001431 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.392 y[1] (analytic) = 0 y[1] (numeric) = -3.0931959638309964124843422772891 absolute error = 3.0931959638309964124843422772891 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.596 Order of pole = 0.001449 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.393 y[1] (analytic) = 0 y[1] (numeric) = -3.0935626152732309198664724742077 absolute error = 3.0935626152732309198664724742077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.6 Order of pole = 0.001466 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.394 y[1] (analytic) = 0 y[1] (numeric) = -3.0939288602115592682347814068035 absolute error = 3.0939288602115592682347814068035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.603 Order of pole = 0.001484 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1915.0MB, alloc=4.5MB, time=155.64 x[1] = 2.395 y[1] (analytic) = 0 y[1] (numeric) = -3.0942946988048574494640947140512 absolute error = 3.0942946988048574494640947140512 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.607 Order of pole = 0.001502 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.396 y[1] (analytic) = 0 y[1] (numeric) = -3.0946601312117939983263810376015 absolute error = 3.0946601312117939983263810376015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.61 Order of pole = 0.00152 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.397 y[1] (analytic) = 0 y[1] (numeric) = -3.0950251575908302757002137480032 absolute error = 3.0950251575908302757002137480032 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.614 Order of pole = 0.001539 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.398 y[1] (analytic) = 0 y[1] (numeric) = -3.0953897781002207512394017288168 absolute error = 3.0953897781002207512394017288168 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.617 Order of pole = 0.001557 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1918.8MB, alloc=4.5MB, time=155.79 x[1] = 2.399 y[1] (analytic) = 0 y[1] (numeric) = -3.0957539928980132855019881244402 absolute error = 3.0957539928980132855019881244402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.621 Order of pole = 0.001576 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.4 y[1] (analytic) = 0 y[1] (numeric) = -3.0961178021420494115408128060159 absolute error = 3.0961178021420494115408128060159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.625 Order of pole = 0.001596 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.401 y[1] (analytic) = 0 y[1] (numeric) = -3.0964812059899646159568311677628 absolute error = 3.0964812059899646159568311677628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.628 Order of pole = 0.001615 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.402 y[1] (analytic) = 0 y[1] (numeric) = -3.0968442045991886194163787334442 absolute error = 3.0968442045991886194163787334442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.632 Order of pole = 0.001635 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.403 y[1] (analytic) = 0 y[1] (numeric) = -3.0972067981269456566335679294144 absolute error = 3.0972067981269456566335679294144 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.636 Order of pole = 0.001655 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1922.6MB, alloc=4.5MB, time=155.94 x[1] = 2.404 y[1] (analytic) = 0 y[1] (numeric) = -3.0975689867302547558190002667489 absolute error = 3.0975689867302547558190002667489 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.64 Order of pole = 0.001675 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.405 y[1] (analytic) = 0 y[1] (numeric) = -3.0979307705659300175959740703237 absolute error = 3.0979307705659300175959740703237 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.643 Order of pole = 0.001696 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.406 y[1] (analytic) = 0 y[1] (numeric) = -3.0982921497905808933853647973417 absolute error = 3.0982921497905808933853647973417 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.647 Order of pole = 0.001716 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.407 y[1] (analytic) = 0 y[1] (numeric) = -3.0986531245606124632603519016688 absolute error = 3.0986531245606124632603519016688 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.651 Order of pole = 0.001738 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.408 y[1] (analytic) = 0 y[1] (numeric) = -3.0990136950322257132721631234174 absolute error = 3.0990136950322257132721631234174 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.655 Order of pole = 0.001759 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1926.4MB, alloc=4.5MB, time=156.10 x[1] = 2.409 y[1] (analytic) = 0 y[1] (numeric) = -3.0993738613614178122480040154627 absolute error = 3.0993738613614178122480040154627 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.659 Order of pole = 0.001781 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.41 y[1] (analytic) = 0 y[1] (numeric) = -3.0997336237039823880623374599705 absolute error = 3.0997336237039823880623374599705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.663 Order of pole = 0.001803 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.411 y[1] (analytic) = 0 y[1] (numeric) = -3.1000929822155098033826748785206 absolute error = 3.1000929822155098033826748785206 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.667 Order of pole = 0.001825 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.412 y[1] (analytic) = 0 y[1] (numeric) = -3.1004519370513874308910377989992 absolute error = 3.1004519370513874308910377989992 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.671 Order of pole = 0.001847 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1930.3MB, alloc=4.5MB, time=156.25 x[1] = 2.413 y[1] (analytic) = 0 y[1] (numeric) = -3.100810488366799927982245411076 absolute error = 3.100810488366799927982245411076 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.675 Order of pole = 0.00187 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.414 y[1] (analytic) = 0 y[1] (numeric) = -3.1011686363167295109401807197437 absolute error = 3.1011686363167295109401807197437 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.679 Order of pole = 0.001893 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.415 y[1] (analytic) = 0 y[1] (numeric) = -3.1015263810559562285931848930549 absolute error = 3.1015263810559562285931848930549 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.683 Order of pole = 0.001917 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.416 y[1] (analytic) = 0 y[1] (numeric) = -3.101883722739058235449726395805 absolute error = 3.101883722739058235449726395805 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.687 Order of pole = 0.00194 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.417 y[1] (analytic) = 0 y[1] (numeric) = -3.1022406615204120643154885054615 absolute error = 3.1022406615204120643154885054615 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.692 Order of pole = 0.001965 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1934.1MB, alloc=4.5MB, time=156.40 x[1] = 2.418 y[1] (analytic) = 0 y[1] (numeric) = -3.1025971975541928983930158200876 absolute error = 3.1025971975541928983930158200876 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.696 Order of pole = 0.001989 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.419 y[1] (analytic) = 0 y[1] (numeric) = -3.1029533309943748428650573903292 absolute error = 3.1029533309943748428650573903292 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.7 Order of pole = 0.002014 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.42 y[1] (analytic) = 0 y[1] (numeric) = -3.1033090619947311959627411387004 absolute error = 3.1033090619947311959627411387004 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.704 Order of pole = 0.002039 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.421 y[1] (analytic) = 0 y[1] (numeric) = -3.1036643907088347195197112693756 absolute error = 3.1036643907088347195197112693756 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.709 Order of pole = 0.002064 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1937.9MB, alloc=4.5MB, time=156.56 x[1] = 2.422 y[1] (analytic) = 0 y[1] (numeric) = -3.1040193172900579090133574204566 absolute error = 3.1040193172900579090133574204566 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.713 Order of pole = 0.00209 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.423 y[1] (analytic) = 0 y[1] (numeric) = -3.1043738418915732630942613681957 absolute error = 3.1043738418915732630942613681957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.717 Order of pole = 0.002116 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.424 y[1] (analytic) = 0 y[1] (numeric) = -3.1047279646663535526049841588914 absolute error = 3.1047279646663535526049841588914 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.722 Order of pole = 0.002142 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.425 y[1] (analytic) = 0 y[1] (numeric) = -3.1050816857671720890893136191048 absolute error = 3.1050816857671720890893136191048 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.726 Order of pole = 0.002169 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.426 y[1] (analytic) = 0 y[1] (numeric) = -3.1054350053466029927930892784438 absolute error = 3.1054350053466029927930892784438 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.731 Order of pole = 0.002196 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1941.7MB, alloc=4.5MB, time=156.71 x[1] = 2.427 y[1] (analytic) = 0 y[1] (numeric) = -3.105787923557021460157718831395 absolute error = 3.105787923557021460157718831395 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.735 Order of pole = 0.002224 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.428 y[1] (analytic) = 0 y[1] (numeric) = -3.1061404405506040308074973655267 absolute error = 3.1061404405506040308074973655267 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.74 Order of pole = 0.002252 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.429 y[1] (analytic) = 0 y[1] (numeric) = -3.1064925564793288540318376928098 absolute error = 3.1064925564793288540318376928098 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.745 Order of pole = 0.00228 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.43 y[1] (analytic) = 0 y[1] (numeric) = -3.1068442714949759547635172387734 absolute error = 3.1068442714949759547635172387734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.749 Order of pole = 0.002309 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1945.5MB, alloc=4.5MB, time=156.86 x[1] = 2.431 y[1] (analytic) = 0 y[1] (numeric) = -3.1071955857491274990540440707112 absolute error = 3.1071955857491274990540440707112 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.754 Order of pole = 0.002338 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.432 y[1] (analytic) = 0 y[1] (numeric) = -3.1075464993931680590472417811402 absolute error = 3.1075464993931680590472417811402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.759 Order of pole = 0.002367 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.433 y[1] (analytic) = 0 y[1] (numeric) = -3.1078970125782848774521500861705 absolute error = 3.1078970125782848774521500861705 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.763 Order of pole = 0.002397 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.434 y[1] (analytic) = 0 y[1] (numeric) = -3.1082471254554681315163351503359 absolute error = 3.1082471254554681315163351503359 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.768 Order of pole = 0.002427 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.435 y[1] (analytic) = 0 y[1] (numeric) = -3.1085968381755111965007008097363 absolute error = 3.1085968381755111965007008097363 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.773 Order of pole = 0.002458 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1949.3MB, alloc=4.5MB, time=157.01 x[1] = 2.436 y[1] (analytic) = 0 y[1] (numeric) = -3.1089461508890109086568890340259 absolute error = 3.1089461508890109086568890340259 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.778 Order of pole = 0.002489 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.437 y[1] (analytic) = 0 y[1] (numeric) = -3.109295063746367827708355144816 absolute error = 3.109295063746367827708355144816 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.783 Order of pole = 0.002521 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.438 y[1] (analytic) = 0 y[1] (numeric) = -3.1096435768977864988362004934239 absolute error = 3.1096435768977864988362004934239 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.788 Order of pole = 0.002553 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.439 y[1] (analytic) = 0 y[1] (numeric) = -3.109991690493275714170842494557 absolute error = 3.109991690493275714170842494557 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.793 Order of pole = 0.002585 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.44 y[1] (analytic) = 0 y[1] (numeric) = -3.1103394046826487737905991144517 absolute error = 3.1103394046826487737905991144517 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.798 Order of pole = 0.002618 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1953.1MB, alloc=4.5MB, time=157.16 x[1] = 2.441 y[1] (analytic) = 0 y[1] (numeric) = -3.1106867196155237462282621221582 absolute error = 3.1106867196155237462282621221582 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.803 Order of pole = 0.002651 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.442 y[1] (analytic) = 0 y[1] (numeric) = -3.1110336354413237284867306310499 absolute error = 3.1110336354413237284867306310499 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.808 Order of pole = 0.002685 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.443 y[1] (analytic) = 0 y[1] (numeric) = -3.1113801523092771055647736842118 absolute error = 3.1113801523092771055647736842118 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.814 Order of pole = 0.002719 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.444 y[1] (analytic) = 0 y[1] (numeric) = -3.1117262703684178094939878720978 absolute error = 3.1117262703684178094939878720978 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.819 Order of pole = 0.002754 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1957.0MB, alloc=4.5MB, time=157.32 x[1] = 2.445 y[1] (analytic) = 0 y[1] (numeric) = -3.1120719897675855778880132137183 absolute error = 3.1120719897675855778880132137183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.824 Order of pole = 0.002789 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.446 y[1] (analytic) = 0 y[1] (numeric) = -3.1124173106554262120050677835957 absolute error = 3.1124173106554262120050677835957 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.829 Order of pole = 0.002825 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.447 y[1] (analytic) = 0 y[1] (numeric) = -3.1127622331803918343248588257813 absolute error = 3.1127622331803918343248588257813 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.835 Order of pole = 0.002861 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.448 y[1] (analytic) = 0 y[1] (numeric) = -3.1131067574907411456409253633393 absolute error = 3.1131067574907411456409253633393 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.84 Order of pole = 0.002897 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.449 y[1] (analytic) = 0 y[1] (numeric) = -3.1134508837345396816694645868383 absolute error = 3.1134508837345396816694645868383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.846 Order of pole = 0.002935 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1960.8MB, alloc=4.5MB, time=157.47 x[1] = 2.45 y[1] (analytic) = 0 y[1] (numeric) = -3.1137946120596600691756915885269 absolute error = 3.1137946120596600691756915885269 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.851 Order of pole = 0.002972 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.451 y[1] (analytic) = 0 y[1] (numeric) = -3.1141379426137822816187792999804 absolute error = 3.1141379426137822816187792999804 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.857 Order of pole = 0.00301 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.452 y[1] (analytic) = 0 y[1] (numeric) = -3.1144808755443938943164227900624 absolute error = 3.1144808755443938943164227900624 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.863 Order of pole = 0.003049 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.453 y[1] (analytic) = 0 y[1] (numeric) = -3.1148234109987903391300693870202 absolute error = 3.1148234109987903391300693870202 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.868 Order of pole = 0.003088 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1964.6MB, alloc=4.5MB, time=157.62 x[1] = 2.454 y[1] (analytic) = 0 y[1] (numeric) = -3.1151655491240751586718534034075 absolute error = 3.1151655491240751586718534034075 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.874 Order of pole = 0.003128 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.455 y[1] (analytic) = 0 y[1] (numeric) = -3.1155072900671602600342715652649 absolute error = 3.1155072900671602600342715652649 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.88 Order of pole = 0.003169 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.456 y[1] (analytic) = 0 y[1] (numeric) = -3.1158486339747661680436325775734 absolute error = 3.1158486339747661680436325775734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.886 Order of pole = 0.00321 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.457 y[1] (analytic) = 0 y[1] (numeric) = -3.1161895809934222780383115963927 absolute error = 3.1161895809934222780383115963927 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.892 Order of pole = 0.003251 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.458 y[1] (analytic) = 0 y[1] (numeric) = -3.1165301312694671081728377242872 absolute error = 3.1165301312694671081728377242872 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.897 Order of pole = 0.003293 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1968.4MB, alloc=4.5MB, time=157.78 x[1] = 2.459 y[1] (analytic) = 0 y[1] (numeric) = -3.1168702849490485512488399995949 absolute error = 3.1168702849490485512488399995949 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.903 Order of pole = 0.003336 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.46 y[1] (analytic) = 0 y[1] (numeric) = -3.1172100421781241260738747117896 absolute error = 3.1172100421781241260738747117896 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.91 Order of pole = 0.003379 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.461 y[1] (analytic) = 0 y[1] (numeric) = -3.1175494031024612283491542445917 absolute error = 3.1175494031024612283491542445917 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.916 Order of pole = 0.003423 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.462 y[1] (analytic) = 0 y[1] (numeric) = -3.1178883678676373810871950255803 absolute error = 3.1178883678676373810871950255803 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.922 Order of pole = 0.003468 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.463 y[1] (analytic) = 0 y[1] (numeric) = -3.1182269366190404845603995458155 absolute error = 3.1182269366190404845603995458155 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1972.2MB, alloc=4.5MB, time=157.93 Complex estimate of poles used Radius of convergence = 3.928 Order of pole = 0.003513 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.464 y[1] (analytic) = 0 y[1] (numeric) = -3.1185651095018690657815848053773 absolute error = 3.1185651095018690657815848053773 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.934 Order of pole = 0.003559 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.465 y[1] (analytic) = 0 y[1] (numeric) = -3.1189028866611325275174669407341 absolute error = 3.1189028866611325275174669407341 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.941 Order of pole = 0.003605 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.466 y[1] (analytic) = 0 y[1] (numeric) = -3.1192402682416513968361091974509 absolute error = 3.1192402682416513968361091974509 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.947 Order of pole = 0.003653 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.467 y[1] (analytic) = 0 y[1] (numeric) = -3.1195772543880575731893378269043 absolute error = 3.1195772543880575731893378269043 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.954 Order of pole = 0.0037 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1976.0MB, alloc=4.5MB, time=158.08 x[1] = 2.468 y[1] (analytic) = 0 y[1] (numeric) = -3.1199138452447945760311279083669 absolute error = 3.1199138452447945760311279083669 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.96 Order of pole = 0.003749 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.469 y[1] (analytic) = 0 y[1] (numeric) = -3.1202500409561177919729585280336 absolute error = 3.1202500409561177919729585280336 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.967 Order of pole = 0.003798 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.47 y[1] (analytic) = 0 y[1] (numeric) = -3.1205858416660947214771341842558 absolute error = 3.1205858416660947214771341842558 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.973 Order of pole = 0.003848 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.471 y[1] (analytic) = 0 y[1] (numeric) = -3.1209212475186052250890667334119 absolute error = 3.1209212475186052250890667334119 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.98 Order of pole = 0.003899 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.472 y[1] (analytic) = 0 y[1] (numeric) = -3.1212562586573417692095096434393 absolute error = 3.1212562586573417692095096434393 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.987 Order of pole = 0.00395 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1979.8MB, alloc=4.5MB, time=158.24 x[1] = 2.473 y[1] (analytic) = 0 y[1] (numeric) = -3.1215908752258096714077337820663 absolute error = 3.1215908752258096714077337820663 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 3.994 Order of pole = 0.004002 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.474 y[1] (analytic) = 0 y[1] (numeric) = -3.1219250973673273452766314341865 absolute error = 3.1219250973673273452766314341865 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.001 Order of pole = 0.004055 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.475 y[1] (analytic) = 0 y[1] (numeric) = -3.122258925225026544830732717585 absolute error = 3.122258925225026544830732717585 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.008 Order of pole = 0.004109 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.476 y[1] (analytic) = 0 y[1] (numeric) = -3.1225923589418526084481160483383 absolute error = 3.1225923589418526084481160483383 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.015 Order of pole = 0.004163 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1983.7MB, alloc=4.5MB, time=158.40 x[1] = 2.477 y[1] (analytic) = 0 y[1] (numeric) = -3.1229253986605647023571917966361 absolute error = 3.1229253986605647023571917966361 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.022 Order of pole = 0.004218 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.478 y[1] (analytic) = 0 y[1] (numeric) = -3.1232580445237360636693357704959 absolute error = 3.1232580445237360636693357704959 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.029 Order of pole = 0.004275 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.479 y[1] (analytic) = 0 y[1] (numeric) = -3.1235902966737542429583466688317 absolute error = 3.1235902966737542429583466688317 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.036 Order of pole = 0.004331 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.48 y[1] (analytic) = 0 y[1] (numeric) = -3.1239221552528213463876991565758 absolute error = 3.1239221552528213463876991565758 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.044 Order of pole = 0.004389 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.481 y[1] (analytic) = 0 y[1] (numeric) = -3.1242536204029542773865617330109 absolute error = 3.1242536204029542773865617330109 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.051 Order of pole = 0.004448 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1987.5MB, alloc=4.5MB, time=158.55 x[1] = 2.482 y[1] (analytic) = 0 y[1] (numeric) = -3.1245846922659849778755460901277 absolute error = 3.1245846922659849778755460901277 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.059 Order of pole = 0.004507 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.483 y[1] (analytic) = 0 y[1] (numeric) = -3.1249153709835606690431521906558 absolute error = 3.1249153709835606690431521906558 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.066 Order of pole = 0.004567 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.484 y[1] (analytic) = 0 y[1] (numeric) = -3.125245656697144091673870835399 absolute error = 3.125245656697144091673870835399 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.074 Order of pole = 0.004629 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.485 y[1] (analytic) = 0 y[1] (numeric) = -3.1255755495480137460289030366175 absolute error = 3.1255755495480137460289030366175 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.082 Order of pole = 0.004691 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1991.3MB, alloc=4.5MB, time=158.70 x[1] = 2.486 y[1] (analytic) = 0 y[1] (numeric) = -3.1259050496772641312804530684172 absolute error = 3.1259050496772641312804530684172 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.089 Order of pole = 0.004754 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.487 y[1] (analytic) = 0 y[1] (numeric) = -3.126234157225805984500549626402 absolute error = 3.126234157225805984500549626402 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.097 Order of pole = 0.004818 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.488 y[1] (analytic) = 0 y[1] (numeric) = -3.126562872334366519205347097204 absolute error = 3.126562872334366519205347097204 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.105 Order of pole = 0.004882 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.489 y[1] (analytic) = 0 y[1] (numeric) = -3.1268911951434896634558565138948 absolute error = 3.1268911951434896634558565138948 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.113 Order of pole = 0.004948 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.49 y[1] (analytic) = 0 y[1] (numeric) = -3.1272191257935362975160533556874 absolute error = 3.1272191257935362975160533556874 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.121 Order of pole = 0.005015 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=1995.1MB, alloc=4.5MB, time=158.86 x[1] = 2.491 y[1] (analytic) = 0 y[1] (numeric) = -3.12754666442468449106930693973 absolute error = 3.12754666442468449106930693973 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.13 Order of pole = 0.005083 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.492 y[1] (analytic) = 0 y[1] (numeric) = -3.1278738111769297399940737491526 absolute error = 3.1278738111769297399940737491526 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.138 Order of pole = 0.005152 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.493 y[1] (analytic) = 0 y[1] (numeric) = -3.1282005661900852026997946448318 absolute error = 3.1282005661900852026997946448318 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.146 Order of pole = 0.005222 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.494 y[1] (analytic) = 0 y[1] (numeric) = -3.1285269296037819360239335185628 absolute error = 3.1285269296037819360239335185628 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.155 Order of pole = 0.005293 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.495 y[1] (analytic) = 0 y[1] (numeric) = -3.1288529015574691306910925624523 absolute error = 3.1288529015574691306910925624523 relative error = -1 % memory used=1998.9MB, alloc=4.5MB, time=159.01 Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.163 Order of pole = 0.005365 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.496 y[1] (analytic) = 0 y[1] (numeric) = -3.1291784821904143463351369533442 absolute error = 3.1291784821904143463351369533442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.172 Order of pole = 0.005438 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.497 y[1] (analytic) = 0 y[1] (numeric) = -3.129503671641703746085259381945 absolute error = 3.129503671641703746085259381945 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.181 Order of pole = 0.005512 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.498 y[1] (analytic) = 0 y[1] (numeric) = -3.1298284700502423307169124939994 absolute error = 3.1298284700502423307169124939994 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.189 Order of pole = 0.005588 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.499 y[1] (analytic) = 0 y[1] (numeric) = -3.1301528775547541723685349553613 absolute error = 3.1301528775547541723685349553613 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.198 Order of pole = 0.005664 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2002.7MB, alloc=4.5MB, time=159.17 x[1] = 2.5 y[1] (analytic) = 0 y[1] (numeric) = -3.1304768942937826478249945040871 absolute error = 3.1304768942937826478249945040871 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.207 Order of pole = 0.005742 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.501 y[1] (analytic) = 0 y[1] (numeric) = -3.1308005204056906713686690107232 absolute error = 3.1308005204056906713686690107232 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.216 Order of pole = 0.005821 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.502 y[1] (analytic) = 0 y[1] (numeric) = -3.1311237560286609271990842327503 absolute error = 3.1311237560286609271990842327503 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.226 Order of pole = 0.005901 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.503 y[1] (analytic) = 0 y[1] (numeric) = -3.1314466013006961014220246206561 absolute error = 3.1314466013006961014220246206561 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.235 Order of pole = 0.005983 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.504 y[1] (analytic) = 0 y[1] (numeric) = -3.1317690563596191136090312113187 absolute error = 3.1317690563596191136090312113187 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.244 Order of pole = 0.006065 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2006.6MB, alloc=4.5MB, time=159.32 x[1] = 2.505 y[1] (analytic) = 0 y[1] (numeric) = -3.1320911213430733479281983292699 absolute error = 3.1320911213430733479281983292699 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.254 Order of pole = 0.006149 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.506 y[1] (analytic) = 0 y[1] (numeric) = -3.1324127963885228838471785079494 absolute error = 3.1324127963885228838471785079494 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.263 Order of pole = 0.006234 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.507 y[1] (analytic) = 0 y[1] (numeric) = -3.1327340816332527264093027412406 absolute error = 3.1327340816332527264093027412406 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.273 Order of pole = 0.006321 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.508 y[1] (analytic) = 0 y[1] (numeric) = -3.1330549772143690360837208803654 absolute error = 3.1330549772143690360837208803654 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.283 Order of pole = 0.006409 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2010.4MB, alloc=4.5MB, time=159.48 x[1] = 2.509 y[1] (analytic) = 0 y[1] (numeric) = -3.1333754832687993581904647025991 absolute error = 3.1333754832687993581904647025991 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.293 Order of pole = 0.006498 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.51 y[1] (analytic) = 0 y[1] (numeric) = -3.1336955999332928519013338962167 absolute error = 3.1336955999332928519013338962167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.303 Order of pole = 0.006589 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.511 y[1] (analytic) = 0 y[1] (numeric) = -3.1340153273444205188175029305804 absolute error = 3.1340153273444205188175029305804 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.313 Order of pole = 0.006681 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.512 y[1] (analytic) = 0 y[1] (numeric) = -3.1343346656385754311247445113077 absolute error = 3.1343346656385754311247445113077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.323 Order of pole = 0.006775 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.513 y[1] (analytic) = 0 y[1] (numeric) = -3.1346536149519729593271630579894 absolute error = 3.1346536149519729593271630579894 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.333 Order of pole = 0.00687 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2014.2MB, alloc=4.5MB, time=159.63 x[1] = 2.514 y[1] (analytic) = 0 y[1] (numeric) = -3.1349721754206509995603293859483 absolute error = 3.1349721754206509995603293859483 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.344 Order of pole = 0.006967 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.515 y[1] (analytic) = 0 y[1] (numeric) = -3.13529034718047020048470552401 absolute error = 3.13529034718047020048470552401 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.354 Order of pole = 0.007065 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.516 y[1] (analytic) = 0 y[1] (numeric) = -3.1356081303671141897602463571838 absolute error = 3.1356081303671141897602463571838 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.365 Order of pole = 0.007165 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.517 y[1] (analytic) = 0 y[1] (numeric) = -3.1359255251160898001030625465005 absolute error = 3.1359255251160898001030625465005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.376 Order of pole = 0.007266 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2018.0MB, alloc=4.5MB, time=159.78 x[1] = 2.518 y[1] (analytic) = 0 y[1] (numeric) = -3.1362425315627272949250269480026 absolute error = 3.1362425315627272949250269480026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.387 Order of pole = 0.007369 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.519 y[1] (analytic) = 0 y[1] (numeric) = -3.1365591498421805935572045290148 absolute error = 3.1365591498421805935572045290148 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.398 Order of pole = 0.007474 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.52 y[1] (analytic) = 0 y[1] (numeric) = -3.1368753800894274960579835623132 absolute error = 3.1368753800894274960579835623132 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.409 Order of pole = 0.00758 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.521 y[1] (analytic) = 0 y[1] (numeric) = -3.1371912224392699076067836676431 absolute error = 3.1371912224392699076067836676431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.42 Order of pole = 0.007688 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.522 y[1] (analytic) = 0 y[1] (numeric) = -3.1375066770263340624842140651861 absolute error = 3.1375066770263340624842140651861 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.432 Order of pole = 0.007798 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2021.8MB, alloc=4.5MB, time=159.94 x[1] = 2.523 y[1] (analytic) = 0 y[1] (numeric) = -3.137821743985070747639553207026 absolute error = 3.137821743985070747639553207026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.443 Order of pole = 0.00791 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.524 y[1] (analytic) = 0 y[1] (numeric) = -3.1381364234497555258464187603923 absolute error = 3.1381364234497555258464187603923 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.455 Order of pole = 0.008023 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.525 y[1] (analytic) = 0 y[1] (numeric) = -3.1384507155544889584474947304461 absolute error = 3.1384507155544889584474947304461 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.467 Order of pole = 0.008139 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.526 y[1] (analytic) = 0 y[1] (numeric) = -3.1387646204331968276891803305977 absolute error = 3.1387646204331968276891803305977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.479 Order of pole = 0.008256 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.527 y[1] (analytic) = 0 y[1] (numeric) = -3.1390781382196303586470230347893 absolute error = 3.1390781382196303586470230347893 relative error = -1 % Correct digits = -1 h = 0.001 memory used=2025.6MB, alloc=4.5MB, time=160.09 Complex estimate of poles used Radius of convergence = 4.491 Order of pole = 0.008375 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.528 y[1] (analytic) = 0 y[1] (numeric) = -3.1393912690473664407427960788164 absolute error = 3.1393912690473664407427960788164 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.503 Order of pole = 0.008497 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.529 y[1] (analytic) = 0 y[1] (numeric) = -3.139704013049807848854078516581 absolute error = 3.139704013049807848854078516581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.516 Order of pole = 0.00862 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.53 y[1] (analytic) = 0 y[1] (numeric) = -3.1400163703601834640171937821477 absolute error = 3.1400163703601834640171937821477 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.528 Order of pole = 0.008745 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.531 y[1] (analytic) = 0 y[1] (numeric) = -3.1403283411115484937243605595887 absolute error = 3.1403283411115484937243605595887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.541 Order of pole = 0.008873 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2029.4MB, alloc=4.5MB, time=160.24 x[1] = 2.532 y[1] (analytic) = 0 y[1] (numeric) = -3.1406399254367846918159076198397 absolute error = 3.1406399254367846918159076198397 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.554 Order of pole = 0.009002 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.533 y[1] (analytic) = 0 y[1] (numeric) = -3.1409511234686005779684021471212 absolute error = 3.1409511234686005779684021471212 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.567 Order of pole = 0.009134 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.534 y[1] (analytic) = 0 y[1] (numeric) = -3.1412619353395316567795389468937 absolute error = 3.1412619353395316567795389468937 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.58 Order of pole = 0.009268 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.535 y[1] (analytic) = 0 y[1] (numeric) = -3.141572361181940636450635802788 absolute error = 3.141572361181940636450635802788 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.593 Order of pole = 0.009405 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.536 y[1] (analytic) = 0 y[1] (numeric) = -3.1418824011280176470675781314643 absolute error = 3.1418824011280176470675781314643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.607 Order of pole = 0.009544 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2033.3MB, alloc=4.5MB, time=160.40 x[1] = 2.537 y[1] (analytic) = 0 y[1] (numeric) = -3.1421920553097804584810539718905 absolute error = 3.1421920553097804584810539718905 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.62 Order of pole = 0.009685 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.538 y[1] (analytic) = 0 y[1] (numeric) = -3.1425013238590746977869182390632 absolute error = 3.1425013238590746977869182390632 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.634 Order of pole = 0.009828 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.539 y[1] (analytic) = 0 y[1] (numeric) = -3.1428102069075740664075230717159 absolute error = 3.1428102069075740664075230717159 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.648 Order of pole = 0.009974 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.54 y[1] (analytic) = 0 y[1] (numeric) = -3.1431187045867805567748490090403 absolute error = 3.1431187045867805567748490090403 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.662 Order of pole = 0.01012 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2037.1MB, alloc=4.5MB, time=160.55 x[1] = 2.541 y[1] (analytic) = 0 y[1] (numeric) = -3.1434268170280246686162696428706 absolute error = 3.1434268170280246686162696428706 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.677 Order of pole = 0.01027 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.542 y[1] (analytic) = 0 y[1] (numeric) = -3.1437345443624656248437803091346 absolute error = 3.1437345443624656248437803091346 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.691 Order of pole = 0.01043 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.543 y[1] (analytic) = 0 y[1] (numeric) = -3.1440418867210915870475193056301 absolute error = 3.1440418867210915870475193056301 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.706 Order of pole = 0.01058 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.544 y[1] (analytic) = 0 y[1] (numeric) = -3.144348844234719870594408052331 absolute error = 3.144348844234719870594408052331 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.721 Order of pole = 0.01074 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.545 y[1] (analytic) = 0 y[1] (numeric) = -3.1446554170339971593327345454389 absolute error = 3.1446554170339971593327345454389 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.736 Order of pole = 0.01091 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2040.9MB, alloc=4.5MB, time=160.71 x[1] = 2.546 y[1] (analytic) = 0 y[1] (numeric) = -3.1449616052493997199035023972587 absolute error = 3.1449616052493997199035023972587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.751 Order of pole = 0.01107 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.547 y[1] (analytic) = 0 y[1] (numeric) = -3.1452674090112336156593657006693 absolute error = 3.1452674090112336156593657006693 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.766 Order of pole = 0.01124 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.548 y[1] (analytic) = 0 y[1] (numeric) = -3.1455728284496349201919679094668 absolute error = 3.1455728284496349201919679094668 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.782 Order of pole = 0.01141 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.549 y[1] (analytic) = 0 y[1] (numeric) = -3.1458778636945699304685008841535 absolute error = 3.1458778636945699304685008841535 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.798 Order of pole = 0.01159 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2044.7MB, alloc=4.5MB, time=160.86 x[1] = 2.55 y[1] (analytic) = 0 y[1] (numeric) = -3.1461825148758353795782982168235 absolute error = 3.1461825148758353795782982168235 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.814 Order of pole = 0.01176 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.551 y[1] (analytic) = 0 y[1] (numeric) = -3.1464867821230586490902749186224 absolute error = 3.1464867821230586490902749186224 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.83 Order of pole = 0.01194 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.552 y[1] (analytic) = 0 y[1] (numeric) = -3.1467906655656979810220235288298 absolute error = 3.1467906655656979810220235288298 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.847 Order of pole = 0.01213 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.553 y[1] (analytic) = 0 y[1] (numeric) = -3.1470941653330426894213746859008 absolute error = 3.1470941653330426894213746859008 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.863 Order of pole = 0.01232 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.554 y[1] (analytic) = 0 y[1] (numeric) = -3.1473972815542133715612281877922 absolute error = 3.1473972815542133715612281877922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.88 Order of pole = 0.01251 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2048.5MB, alloc=4.5MB, time=161.01 x[1] = 2.555 y[1] (analytic) = 0 y[1] (numeric) = -3.1477000143581621187484585615741 absolute error = 3.1477000143581621187484585615741 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.897 Order of pole = 0.0127 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.556 y[1] (analytic) = 0 y[1] (numeric) = -3.1480023638736727267476971606648 absolute error = 3.1480023638736727267476971606648 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.915 Order of pole = 0.0129 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.557 y[1] (analytic) = 0 y[1] (numeric) = -3.1483043302293609058207908120154 absolute error = 3.1483043302293609058207908120154 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.932 Order of pole = 0.0131 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.558 y[1] (analytic) = 0 y[1] (numeric) = -3.1486059135536744903827350451825 absolute error = 3.1486059135536744903827350451825 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.95 Order of pole = 0.01331 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.559 y[1] (analytic) = 0 y[1] (numeric) = -3.148907113974893648274877950458 absolute error = 3.148907113974893648274877950458 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.968 Order of pole = 0.01352 memory used=2052.3MB, alloc=4.5MB, time=161.17 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.56 y[1] (analytic) = 0 y[1] (numeric) = -3.1492079316211310896561887340423 absolute error = 3.1492079316211310896561887340423 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 4.986 Order of pole = 0.01373 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.561 y[1] (analytic) = 0 y[1] (numeric) = -3.1495083666203322755133830646442 absolute error = 3.1495083666203322755133830646442 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.005 Order of pole = 0.01395 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.562 y[1] (analytic) = 0 y[1] (numeric) = -3.1498084191002756257906953378446 absolute error = 3.1498084191002756257906953378446 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.024 Order of pole = 0.01417 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.563 y[1] (analytic) = 0 y[1] (numeric) = -3.1501080891885727271400860220546 absolute error = 3.1501080891885727271400860220546 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.043 Order of pole = 0.0144 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2056.1MB, alloc=4.5MB, time=161.32 x[1] = 2.564 y[1] (analytic) = 0 y[1] (numeric) = -3.1504073770126685402926702929151 absolute error = 3.1504073770126685402926702929151 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.062 Order of pole = 0.01463 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.565 y[1] (analytic) = 0 y[1] (numeric) = -3.1507062826998416070521522115077 absolute error = 3.1507062826998416070521522115077 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.082 Order of pole = 0.01486 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.566 y[1] (analytic) = 0 y[1] (numeric) = -3.1510048063772042569110467557537 absolute error = 3.1510048063772042569110467557537 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.101 Order of pole = 0.0151 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.567 y[1] (analytic) = 0 y[1] (numeric) = -3.1513029481717028132904700738592 absolute error = 3.1513029481717028132904700738592 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.122 Order of pole = 0.01535 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.568 y[1] (analytic) = 0 y[1] (numeric) = -3.1516007082101177994042763935947 absolute error = 3.1516007082101177994042763935947 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.142 Order of pole = 0.0156 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2060.0MB, alloc=4.5MB, time=161.47 x[1] = 2.569 y[1] (analytic) = 0 y[1] (numeric) = -3.1518980866190641437483180915661 absolute error = 3.1518980866190641437483180915661 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.163 Order of pole = 0.01585 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.57 y[1] (analytic) = 0 y[1] (numeric) = -3.1521950835249913852156035024183 absolute error = 3.1521950835249913852156035024183 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.184 Order of pole = 0.01611 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.571 y[1] (analytic) = 0 y[1] (numeric) = -3.1524916990541838778381251291001 absolute error = 3.1524916990541838778381251291001 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.205 Order of pole = 0.01638 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.572 y[1] (analytic) = 0 y[1] (numeric) = -3.1527879333327609951561290018887 absolute error = 3.1527879333327609951561290018887 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.227 Order of pole = 0.01665 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2063.8MB, alloc=4.5MB, time=161.63 x[1] = 2.573 y[1] (analytic) = 0 y[1] (numeric) = -3.1530837864866773342155940258088 absolute error = 3.1530837864866773342155940258088 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.249 Order of pole = 0.01692 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.574 y[1] (analytic) = 0 y[1] (numeric) = -3.153379258641722919194688253369 absolute error = 3.153379258641722919194688253369 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.271 Order of pole = 0.01721 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.575 y[1] (analytic) = 0 y[1] (numeric) = -3.1536743499235234046599671221573 absolute error = 3.1536743499235234046599671221573 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.294 Order of pole = 0.0175 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.576 y[1] (analytic) = 0 y[1] (numeric) = -3.1539690604575402784530768047723 absolute error = 3.1539690604575402784530768047723 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.317 Order of pole = 0.01779 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.577 y[1] (analytic) = 0 y[1] (numeric) = -3.1542633903690710642087239318026 absolute error = 3.1542633903690710642087239318026 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.34 Order of pole = 0.01809 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2067.6MB, alloc=4.5MB, time=161.78 x[1] = 2.578 y[1] (analytic) = 0 y[1] (numeric) = -3.1545573397832495235046710670824 absolute error = 3.1545573397832495235046710670824 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.364 Order of pole = 0.0184 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.579 y[1] (analytic) = 0 y[1] (numeric) = -3.1548509088250458576445154382345 absolute error = 3.1548509088250458576445154382345 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.388 Order of pole = 0.01871 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.58 y[1] (analytic) = 0 y[1] (numeric) = -3.1551440976192669090740065545431 absolute error = 3.1551440976192669090740065545431 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.412 Order of pole = 0.01903 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.581 y[1] (analytic) = 0 y[1] (numeric) = -3.1554369062905563624316564784623 absolute error = 3.1554369062905563624316564784623 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.437 Order of pole = 0.01936 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2071.4MB, alloc=4.5MB, time=161.93 x[1] = 2.582 y[1] (analytic) = 0 y[1] (numeric) = -3.1557293349633949452343946565462 absolute error = 3.1557293349633949452343946565462 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.462 Order of pole = 0.01969 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.583 y[1] (analytic) = 0 y[1] (numeric) = -3.1560213837621006281990173602643 absolute error = 3.1560213837621006281990173602643 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.488 Order of pole = 0.02003 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.584 y[1] (analytic) = 0 y[1] (numeric) = -3.1563130528108288252001799370289 absolute error = 3.1563130528108288252001799370289 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.514 Order of pole = 0.02038 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.585 y[1] (analytic) = 0 y[1] (numeric) = -3.1566043422335725928656782267886 absolute error = 3.1566043422335725928656782267886 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.54 Order of pole = 0.02074 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.586 y[1] (analytic) = 0 y[1] (numeric) = -3.1568952521541628298097636597199 absolute error = 3.1568952521541628298097636597199 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.567 Order of pole = 0.0211 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2075.2MB, alloc=4.5MB, time=162.08 x[1] = 2.587 y[1] (analytic) = 0 y[1] (numeric) = -3.1571857826962684755052347158635 absolute error = 3.1571857826962684755052347158635 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.594 Order of pole = 0.02148 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.588 y[1] (analytic) = 0 y[1] (numeric) = -3.1574759339833967087950455979789 absolute error = 3.1574759339833967087950455979789 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.622 Order of pole = 0.02186 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.589 y[1] (analytic) = 0 y[1] (numeric) = -3.1577657061388931460441711444261 absolute error = 3.1577657061388931460441711444261 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.65 Order of pole = 0.02225 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.59 y[1] (analytic) = 0 y[1] (numeric) = -3.1580550992859420389324651894977 absolute error = 3.1580550992859420389324651894977 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.679 Order of pole = 0.02265 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.591 y[1] (analytic) = 0 y[1] (numeric) = -3.1583441135475664718892477643133 absolute error = 3.1583441135475664718892477643133 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.708 Order of pole = 0.02306 memory used=2079.0MB, alloc=4.5MB, time=162.24 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.592 y[1] (analytic) = 0 y[1] (numeric) = -3.1586327490466285591703547221285 absolute error = 3.1586327490466285591703547221285 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.737 Order of pole = 0.02348 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.593 y[1] (analytic) = 0 y[1] (numeric) = -3.1589210059058296415783815676877 absolute error = 3.1589210059058296415783815676877 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.768 Order of pole = 0.02391 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.594 y[1] (analytic) = 0 y[1] (numeric) = -3.159208884247710482826851471052 absolute error = 3.159208884247710482826851471052 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.798 Order of pole = 0.02435 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.595 y[1] (analytic) = 0 y[1] (numeric) = -3.1594963841946514655490356521366 absolute error = 3.1594963841946514655490356521366 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.829 Order of pole = 0.0248 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2082.8MB, alloc=4.5MB, time=162.39 x[1] = 2.596 y[1] (analytic) = 0 y[1] (numeric) = -3.1597835058688727869521525329907 absolute error = 3.1597835058688727869521525329907 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.861 Order of pole = 0.02526 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.597 y[1] (analytic) = 0 y[1] (numeric) = -3.1600702493924346541176702706229 absolute error = 3.1600702493924346541176702706229 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.893 Order of pole = 0.02573 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.598 y[1] (analytic) = 0 y[1] (numeric) = -3.1603566148872374789484355039035 absolute error = 3.1603566148872374789484355039035 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.926 Order of pole = 0.02621 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.599 y[1] (analytic) = 0 y[1] (numeric) = -3.16064260247502207276334937375 absolute error = 3.16064260247502207276334937375 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.96 Order of pole = 0.02671 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.6 y[1] (analytic) = 0 y[1] (numeric) = -3.1609282122773698405403101064015 absolute error = 3.1609282122773698405403101064015 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 5.994 Order of pole = 0.02722 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2086.7MB, alloc=4.5MB, time=162.55 x[1] = 2.601 y[1] (analytic) = 0 y[1] (numeric) = -3.1612134444157029748081396851012 absolute error = 3.1612134444157029748081396851012 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.029 Order of pole = 0.02774 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.602 y[1] (analytic) = 0 y[1] (numeric) = -3.1614982990112846491882103759165 absolute error = 3.1614982990112846491882103759165 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.064 Order of pole = 0.02828 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.603 y[1] (analytic) = 0 y[1] (numeric) = -3.1617827761852192115864851187172 absolute error = 3.1617827761852192115864851187172 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.1 Order of pole = 0.02883 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.604 y[1] (analytic) = 0 y[1] (numeric) = -3.1620668760584523770366840444902 absolute error = 3.1620668760584523770366840444902 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.137 Order of pole = 0.02939 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2090.5MB, alloc=4.5MB, time=162.70 x[1] = 2.605 y[1] (analytic) = 0 y[1] (numeric) = -3.1623505987517714201952876351785 absolute error = 3.1623505987517714201952876351785 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.174 Order of pole = 0.02997 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.606 y[1] (analytic) = 0 y[1] (numeric) = -3.1626339443858053674890853020757 absolute error = 3.1626339443858053674890853020757 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.212 Order of pole = 0.03057 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.607 y[1] (analytic) = 0 y[1] (numeric) = -3.1629169130810251889159764234734 absolute error = 3.1629169130810251889159764234734 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.251 Order of pole = 0.03118 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.608 y[1] (analytic) = 0 y[1] (numeric) = -3.1631995049577439894997291517286 absolute error = 3.1631995049577439894997291517286 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.291 Order of pole = 0.0318 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.609 y[1] (analytic) = 0 y[1] (numeric) = -3.1634817201361172003994005741798 absolute error = 3.1634817201361172003994005741798 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.331 Order of pole = 0.03245 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2094.3MB, alloc=4.5MB, time=162.86 x[1] = 2.61 y[1] (analytic) = 0 y[1] (numeric) = -3.1637635587361427696741200913774 absolute error = 3.1637635587361427696741200913774 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.372 Order of pole = 0.03311 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.611 y[1] (analytic) = 0 y[1] (numeric) = -3.1640450208776613527039361598898 absolute error = 3.1640450208776613527039361598898 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.414 Order of pole = 0.03379 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.612 y[1] (analytic) = 0 y[1] (numeric) = -3.1643261066803565022674248354907 absolute error = 3.1643261066803565022674248354907 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.457 Order of pole = 0.0345 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.613 y[1] (analytic) = 0 y[1] (numeric) = -3.1646068162637548582767568458058 absolute error = 3.1646068162637548582767568458058 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.501 Order of pole = 0.03522 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2098.1MB, alloc=4.5MB, time=163.01 x[1] = 2.614 y[1] (analytic) = 0 y[1] (numeric) = -3.1648871497472263371709182194866 absolute error = 3.1648871497472263371709182194866 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.546 Order of pole = 0.03596 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.615 y[1] (analytic) = 0 y[1] (numeric) = -3.16516710724998432096777780167 absolute error = 3.16516710724998432096777780167 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.592 Order of pole = 0.03673 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.616 y[1] (analytic) = 0 y[1] (numeric) = -3.1654466888910858459756932928595 absolute error = 3.1654466888910858459756932928595 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.638 Order of pole = 0.03751 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.617 y[1] (analytic) = 0 y[1] (numeric) = -3.1657258947894317911653457604127 absolute error = 3.1657258947894317911653457604127 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.686 Order of pole = 0.03833 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.618 y[1] (analytic) = 0 y[1] (numeric) = -3.1660047250637670662024908885276 absolute error = 3.1660047250637670662024908885276 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.735 Order of pole = 0.03916 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2101.9MB, alloc=4.5MB, time=163.16 x[1] = 2.619 y[1] (analytic) = 0 y[1] (numeric) = -3.1662831798326807991423135539677 absolute error = 3.1662831798326807991423135539677 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.785 Order of pole = 0.04003 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.62 y[1] (analytic) = 0 y[1] (numeric) = -3.1665612592146065237860706407453 absolute error = 3.1665612592146065237860706407453 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.836 Order of pole = 0.04092 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.621 y[1] (analytic) = 0 y[1] (numeric) = -3.1668389633278223667007053375729 absolute error = 3.1668389633278223667007053375729 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.888 Order of pole = 0.04184 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.622 y[1] (analytic) = 0 y[1] (numeric) = -3.1671162922904512339021144970845 absolute error = 3.1671162922904512339021144970845 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.942 Order of pole = 0.04279 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.623 y[1] (analytic) = 0 y[1] (numeric) = -3.1673932462204609972027489756046 absolute error = 3.1673932462204609972027489756046 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 6.996 Order of pole = 0.04377 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2105.7MB, alloc=4.5MB, time=163.32 x[1] = 2.624 y[1] (analytic) = 0 y[1] (numeric) = -3.1676698252356646802242252165889 absolute error = 3.1676698252356646802242252165889 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.052 Order of pole = 0.04478 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.625 y[1] (analytic) = 0 y[1] (numeric) = -3.1679460294537206440756246897666 absolute error = 3.1679460294537206440756246897666 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.11 Order of pole = 0.04583 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.626 y[1] (analytic) = 0 y[1] (numeric) = -3.1682218589921327726981561514587 absolute error = 3.1682218589921327726981561514587 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.169 Order of pole = 0.04691 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.627 y[1] (analytic) = 0 y[1] (numeric) = -3.1684973139682506578768540495219 absolute error = 3.1684973139682506578768540495219 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.229 Order of pole = 0.04803 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2109.6MB, alloc=4.5MB, time=163.47 x[1] = 2.628 y[1] (analytic) = 0 y[1] (numeric) = -3.1687723944992697839199847588568 absolute error = 3.1687723944992697839199847588568 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.291 Order of pole = 0.04919 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.629 y[1] (analytic) = 0 y[1] (numeric) = -3.1690471007022317120068307004078 absolute error = 3.1690471007022317120068307004078 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.354 Order of pole = 0.05039 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.63 y[1] (analytic) = 0 y[1] (numeric) = -3.1693214326940242642045207680577 absolute error = 3.1693214326940242642045207680577 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.42 Order of pole = 0.05164 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.631 y[1] (analytic) = 0 y[1] (numeric) = -3.1695953905913817071545738637667 absolute error = 3.1695953905913817071545738637667 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.487 Order of pole = 0.05293 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.632 y[1] (analytic) = 0 y[1] (numeric) = -3.1698689745108849354298207217131 absolute error = 3.1698689745108849354298207217131 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.555 Order of pole = 0.05427 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2113.4MB, alloc=4.5MB, time=163.62 x[1] = 2.633 y[1] (analytic) = 0 y[1] (numeric) = -3.1701421845689616545623675870411 absolute error = 3.1701421845689616545623675870411 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.626 Order of pole = 0.05566 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.634 y[1] (analytic) = 0 y[1] (numeric) = -3.1704150208818865637432637041045 absolute error = 3.1704150208818865637432637041045 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.699 Order of pole = 0.0571 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.635 y[1] (analytic) = 0 y[1] (numeric) = -3.1706874835657815381945329627911 absolute error = 3.1706874835657815381945329627911 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.773 Order of pole = 0.05861 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.636 y[1] (analytic) = 0 y[1] (numeric) = -3.1709595727366158112142284496157 absolute error = 3.1709595727366158112142284496157 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.85 Order of pole = 0.06017 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2117.2MB, alloc=4.5MB, time=163.78 x[1] = 2.637 y[1] (analytic) = 0 y[1] (numeric) = -3.1712312885102061558951670527598 absolute error = 3.1712312885102061558951670527598 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 7.929 Order of pole = 0.0618 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.638 y[1] (analytic) = 0 y[1] (numeric) = -3.1715026310022170665179996771023 absolute error = 3.1715026310022170665179996771023 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.011 Order of pole = 0.06349 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.639 y[1] (analytic) = 0 y[1] (numeric) = -3.1717736003281609396192710365163 absolute error = 3.1717736003281609396192710365163 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.095 Order of pole = 0.06526 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.64 y[1] (analytic) = 0 y[1] (numeric) = -3.1720441966033982547351214062848 absolute error = 3.1720441966033982547351214062848 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.182 Order of pole = 0.0671 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.641 y[1] (analytic) = 0 y[1] (numeric) = -3.1723144199431377548212811384005 absolute error = 3.1723144199431377548212811384005 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.272 Order of pole = 0.06903 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2121.0MB, alloc=4.5MB, time=163.93 x[1] = 2.642 y[1] (analytic) = 0 y[1] (numeric) = -3.1725842704624366263500071667536 absolute error = 3.1725842704624366263500071667536 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.364 Order of pole = 0.07104 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.643 y[1] (analytic) = 0 y[1] (numeric) = -3.1728537482762006790846091577522 absolute error = 3.1728537482762006790846091577522 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.46 Order of pole = 0.07314 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.644 y[1] (analytic) = 0 y[1] (numeric) = -3.1731228534991845255322113947626 absolute error = 3.1731228534991845255322113947626 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.559 Order of pole = 0.07535 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.645 y[1] (analytic) = 0 y[1] (numeric) = -3.1733915862459917600753949218766 absolute error = 3.1733915862459917600753949218766 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.661 Order of pole = 0.07766 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2124.8MB, alloc=4.5MB, time=164.09 x[1] = 2.646 y[1] (analytic) = 0 y[1] (numeric) = -3.1736599466310751377833629139046 absolute error = 3.1736599466310751377833629139046 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.767 Order of pole = 0.08008 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.647 y[1] (analytic) = 0 y[1] (numeric) = -3.1739279347687367529032706851378 absolute error = 3.1739279347687367529032706851378 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.877 Order of pole = 0.08262 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.648 y[1] (analytic) = 0 y[1] (numeric) = -3.1741955507731282170323601993125 absolute error = 3.1741955507731282170323601993125 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 8.991 Order of pole = 0.0853 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.649 y[1] (analytic) = 0 y[1] (numeric) = -3.1744627947582508369715373973272 absolute error = 3.1744627947582508369715373973272 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.109 Order of pole = 0.08812 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.65 y[1] (analytic) = 0 y[1] (numeric) = -3.174729666837955792261029117596 absolute error = 3.174729666837955792261029117596 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.233 Order of pole = 0.09109 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2128.6MB, alloc=4.5MB, time=164.24 x[1] = 2.651 y[1] (analytic) = 0 y[1] (numeric) = -3.1749961671259443123987548464607 absolute error = 3.1749961671259443123987548464607 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.361 Order of pole = 0.09422 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.652 y[1] (analytic) = 0 y[1] (numeric) = -3.1752622957357678537420470028097 absolute error = 3.1752622957357678537420470028097 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.494 Order of pole = 0.09753 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.653 y[1] (analytic) = 0 y[1] (numeric) = -3.1755280527808282760933519319581 absolute error = 3.1755280527808282760933519319581 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.633 Order of pole = 0.101 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.654 y[1] (analytic) = 0 y[1] (numeric) = -3.1757934383743780189705422589124 absolute error = 3.1757934383743780189705422589124 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.778 Order of pole = 0.1048 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.655 y[1] (analytic) = 0 y[1] (numeric) = -3.1760584526295202775624697303631 absolute error = 3.1760584526295202775624697303631 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 9.93 Order of pole = 0.1087 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2132.4MB, alloc=4.5MB, time=164.40 x[1] = 2.656 y[1] (analytic) = 0 y[1] (numeric) = -3.1763230956592091783703861581098 absolute error = 3.1763230956592091783703861581098 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 10.09 Order of pole = 0.1129 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.657 y[1] (analytic) = 0 y[1] (numeric) = -3.1765873675762499545358585641074 absolute error = 3.1765873675762499545358585641074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 10.26 Order of pole = 0.1174 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.658 y[1] (analytic) = 0 y[1] (numeric) = -3.1768512684932991208558031189231 absolute error = 3.1768512684932991208558031189231 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 10.43 Order of pole = 0.1222 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.659 y[1] (analytic) = 0 y[1] (numeric) = -3.1771147985228646484852609610922 absolute error = 3.1771147985228646484852609610922 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 10.61 Order of pole = 0.1273 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2136.3MB, alloc=4.5MB, time=164.55 x[1] = 2.66 y[1] (analytic) = 0 y[1] (numeric) = -3.1773779577773061393285374846491 absolute error = 3.1773779577773061393285374846491 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 10.81 Order of pole = 0.1327 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.661 y[1] (analytic) = 0 y[1] (numeric) = -3.1776407463688350001193251859738 absolute error = 3.1776407463688350001193251859738 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 11.01 Order of pole = 0.1386 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.662 y[1] (analytic) = 0 y[1] (numeric) = -3.1779031644095146161904286690197 absolute error = 3.1779031644095146161904286690197 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 11.23 Order of pole = 0.145 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.663 y[1] (analytic) = 0 y[1] (numeric) = -3.1781652120112605249337089199664 absolute error = 3.1781652120112605249337089199664 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 11.46 Order of pole = 0.1519 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.664 y[1] (analytic) = 0 y[1] (numeric) = -3.1784268892858405889508624783548 absolute error = 3.1784268892858405889508624783548 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 11.7 Order of pole = 0.1593 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2140.1MB, alloc=4.5MB, time=164.70 x[1] = 2.665 y[1] (analytic) = 0 y[1] (numeric) = -3.1786881963448751688956496518034 absolute error = 3.1786881963448751688956496518034 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 11.96 Order of pole = 0.1674 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.666 y[1] (analytic) = 0 y[1] (numeric) = -3.1789491332998372960081844454579 absolute error = 3.1789491332998372960081844454579 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 12.23 Order of pole = 0.1763 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.667 y[1] (analytic) = 0 y[1] (numeric) = -3.1792097002620528443418974053807 absolute error = 3.1792097002620528443418974053807 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 12.53 Order of pole = 0.186 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.668 y[1] (analytic) = 0 y[1] (numeric) = -3.1794698973427007026837811071305 absolute error = 3.1794698973427007026837811071305 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 12.85 Order of pole = 0.1967 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2143.9MB, alloc=4.5MB, time=164.86 x[1] = 2.669 y[1] (analytic) = 0 y[1] (numeric) = -3.1797297246528129461685265568014 absolute error = 3.1797297246528129461685265568014 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 13.19 Order of pole = 0.2085 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.67 y[1] (analytic) = 0 y[1] (numeric) = -3.1799891823032750075871573117759 absolute error = 3.1799891823032750075871573117759 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 13.56 Order of pole = 0.2217 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.671 y[1] (analytic) = 0 y[1] (numeric) = -3.1802482704048258483907666723801 absolute error = 3.1802482704048258483907666723801 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 13.96 Order of pole = 0.2364 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.672 y[1] (analytic) = 0 y[1] (numeric) = -3.1805069890680581293899618435074 absolute error = 3.1805069890680581293899618435074 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 14.4 Order of pole = 0.253 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.673 y[1] (analytic) = 0 y[1] (numeric) = -3.1807653384034183811506175170793 absolute error = 3.1807653384034183811506175170793 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 14.89 Order of pole = 0.2718 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2147.7MB, alloc=4.5MB, time=165.01 x[1] = 2.674 y[1] (analytic) = 0 y[1] (numeric) = -3.1810233185212071740865398819319 absolute error = 3.1810233185212071740865398819319 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 15.42 Order of pole = 0.2933 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.675 y[1] (analytic) = 0 y[1] (numeric) = -3.1812809295315792882496406273398 absolute error = 3.1812809295315792882496406273398 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 16.01 Order of pole = 0.3182 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.676 y[1] (analytic) = 0 y[1] (numeric) = -3.1815381715445438828182190699051 absolute error = 3.1815381715445438828182190699051 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 16.68 Order of pole = 0.3472 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.677 y[1] (analytic) = 0 y[1] (numeric) = -3.1817950446699646652839491009328 absolute error = 3.1817950446699646652839491009328 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 17.44 Order of pole = 0.3816 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2151.5MB, alloc=4.5MB, time=165.16 x[1] = 2.678 y[1] (analytic) = 0 y[1] (numeric) = -3.1820515490175600603381662226789 absolute error = 3.1820515490175600603381662226789 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 18.31 Order of pole = 0.4229 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.679 y[1] (analytic) = 0 y[1] (numeric) = -3.182307684696903378458048516976 absolute error = 3.182307684696903378458048516976 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 19.32 Order of pole = 0.4735 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.68 y[1] (analytic) = 0 y[1] (numeric) = -3.1825634518174229841932839687057 absolute error = 3.1825634518174229841932839687057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 20.51 Order of pole = 0.5368 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.681 y[1] (analytic) = 0 y[1] (numeric) = -3.1828188504884024641538151493834 absolute error = 3.1828188504884024641538151493834 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 21.95 Order of pole = 0.6184 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.682 y[1] (analytic) = 0 y[1] (numeric) = -3.183073880818980794699250852739 absolute error = 3.183073880818980794699250852739 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 23.75 Order of pole = 0.7276 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2155.3MB, alloc=4.6MB, time=165.32 x[1] = 2.683 y[1] (analytic) = 0 y[1] (numeric) = -3.1833285429181525093305328646049 absolute error = 3.1833285429181525093305328646049 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 26.06 Order of pole = 0.881 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.684 y[1] (analytic) = 0 y[1] (numeric) = -3.1835828368947678657844446436457 absolute error = 3.1835828368947678657844446436457 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 29.2 Order of pole = 1.113 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.685 y[1] (analytic) = 0 y[1] (numeric) = -3.1838367628575330128315472874772 absolute error = 3.1838367628575330128315472874772 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 33.84 Order of pole = 1.502 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.686 y[1] (analytic) = 0 y[1] (numeric) = -3.1840903209150101567781267605057 absolute error = 3.1840903209150101567781267605057 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 41.71 Order of pole = 2.294 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.687 y[1] (analytic) = 0 y[1] (numeric) = -3.1843435111756177276727349653683 absolute error = 3.1843435111756177276727349653683 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 60.05 Order of pole = 4.782 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2159.1MB, alloc=4.6MB, time=165.47 x[1] = 2.688 y[1] (analytic) = 0 y[1] (numeric) = -3.1845963337476305452179058491553 absolute error = 3.1845963337476305452179058491553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.689 y[1] (analytic) = 0 y[1] (numeric) = -3.1848487887391799843876263486351 absolute error = 3.1848487887391799843876263486351 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.69 y[1] (analytic) = 0 y[1] (numeric) = -3.1851008762582541407511405954711 absolute error = 3.1851008762582541407511405954711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.691 y[1] (analytic) = 0 y[1] (numeric) = -3.1853525964126979955036644229078 absolute error = 3.1853525964126979955036644229078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2163.0MB, alloc=4.6MB, time=165.63 x[1] = 2.692 y[1] (analytic) = 0 y[1] (numeric) = -3.1856039493102135802045858395939 absolute error = 3.1856039493102135802045858395939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.693 y[1] (analytic) = 0 y[1] (numeric) = -3.185854935058360141223725764099 absolute error = 3.185854935058360141223725764099 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.694 y[1] (analytic) = 0 y[1] (numeric) = -3.1861055537645543038962319452503 absolute error = 3.1861055537645543038962319452503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.695 y[1] (analytic) = 0 y[1] (numeric) = -3.1863558055360702363866776286591 absolute error = 3.1863558055360702363866776286591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.696 y[1] (analytic) = 0 y[1] (numeric) = -3.1866056904800398132629351687114 absolute error = 3.1866056904800398132629351687114 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2166.8MB, alloc=4.6MB, time=165.78 x[1] = 2.697 y[1] (analytic) = 0 y[1] (numeric) = -3.1868552087034527787803934278511 absolute error = 3.1868552087034527787803934278511 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.698 y[1] (analytic) = 0 y[1] (numeric) = -3.187104360313156909877086451177 absolute error = 3.187104360313156909877086451177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.699 y[1] (analytic) = 0 y[1] (numeric) = -3.1873531454158581788802995541967 absolute error = 3.1873531454158581788802995541967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.7 y[1] (analytic) = 0 y[1] (numeric) = -3.1876015641181209159252176150185 absolute error = 3.1876015641181209159252176150185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2170.6MB, alloc=4.6MB, time=165.93 x[1] = 2.701 y[1] (analytic) = 0 y[1] (numeric) = -3.1878496165263679710861790193053 absolute error = 3.1878496165263679710861790193053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.702 y[1] (analytic) = 0 y[1] (numeric) = -3.1880973027468808762210973669538 absolute error = 3.1880973027468808762210973669538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.703 y[1] (analytic) = 0 y[1] (numeric) = -3.1883446228858000065296117136867 absolute error = 3.1883446228858000065296117136867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.704 y[1] (analytic) = 0 y[1] (numeric) = -3.188591577049124741825524788538 absolute error = 3.188591577049124741825524788538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.705 y[1] (analytic) = 0 y[1] (numeric) = -3.188838165342713627524087299574 absolute error = 3.188838165342713627524087299574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2174.4MB, alloc=4.6MB, time=166.08 x[1] = 2.706 y[1] (analytic) = 0 y[1] (numeric) = -3.1890843878722845353446851150988 absolute error = 3.1890843878722845353446851150988 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.707 y[1] (analytic) = 0 y[1] (numeric) = -3.1893302447434148237294847860465 absolute error = 3.1893302447434148237294847860465 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.708 y[1] (analytic) = 0 y[1] (numeric) = -3.1895757360615414979785915572411 absolute error = 3.1895757360615414979785915572411 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.709 y[1] (analytic) = 0 y[1] (numeric) = -3.1898208619319613701022727007054 absolute error = 3.1898208619319613701022727007054 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.71 y[1] (analytic) = 0 y[1] (numeric) = -3.1900656224598312183907976932104 absolute error = 3.1900656224598312183907976932104 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2178.2MB, alloc=4.6MB, time=166.24 x[1] = 2.711 y[1] (analytic) = 0 y[1] (numeric) = -3.1903100177501679467024454527606 absolute error = 3.1903100177501679467024454527606 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.712 y[1] (analytic) = 0 y[1] (numeric) = -3.1905540479078487434702275447076 absolute error = 3.1905540479078487434702275447076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.713 y[1] (analytic) = 0 y[1] (numeric) = -3.1907977130376112404278749676539 absolute error = 3.1907977130376112404278749676539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.714 y[1] (analytic) = 0 y[1] (numeric) = -3.1910410132440536710556348322472 absolute error = 3.1910410132440536710556348322472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2182.0MB, alloc=4.6MB, time=166.39 x[1] = 2.715 y[1] (analytic) = 0 y[1] (numeric) = -3.1912839486316350287464219523581 absolute error = 3.1912839486316350287464219523581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.716 y[1] (analytic) = 0 y[1] (numeric) = -3.1915265193046752246928690779747 absolute error = 3.1915265193046752246928690779747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.717 y[1] (analytic) = 0 y[1] (numeric) = -3.1917687253673552454958182124201 absolute error = 3.1917687253673552454958182124201 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.718 y[1] (analytic) = 0 y[1] (numeric) = -3.1920105669237173104947941731989 absolute error = 3.1920105669237173104947941731989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.719 y[1] (analytic) = 0 y[1] (numeric) = -3.1922520440776650288210002758915 absolute error = 3.1922520440776650288210002758915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2185.8MB, alloc=4.6MB, time=166.54 x[1] = 2.72 y[1] (analytic) = 0 y[1] (numeric) = -3.1924931569329635561733747440326 absolute error = 3.1924931569329635561733747440326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.721 y[1] (analytic) = 0 y[1] (numeric) = -3.1927339055932397513182451748213 absolute error = 3.1927339055932397513182451748213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.722 y[1] (analytic) = 0 y[1] (numeric) = -3.1929742901619823323131171208051 absolute error = 3.1929742901619823323131171208051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.723 y[1] (analytic) = 0 y[1] (numeric) = -3.1932143107425420324551315813489 absolute error = 3.1932143107425420324551315813489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2189.7MB, alloc=4.6MB, time=166.70 x[1] = 2.724 y[1] (analytic) = 0 y[1] (numeric) = -3.1934539674381317559547249347299 absolute error = 3.1934539674381317559547249347299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.725 y[1] (analytic) = 0 y[1] (numeric) = -3.1936932603518267333350235820859 absolute error = 3.1936932603518267333350235820859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.726 y[1] (analytic) = 0 y[1] (numeric) = -3.19393218958656467655750431817 absolute error = 3.19393218958656467655750431817 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.727 y[1] (analytic) = 0 y[1] (numeric) = -3.1941707552451459338744501909268 absolute error = 3.1941707552451459338744501909268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.728 y[1] (analytic) = 0 y[1] (numeric) = -3.1944089574302336444087303622872 absolute error = 3.1944089574302336444087303622872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2193.5MB, alloc=4.6MB, time=166.85 x[1] = 2.729 y[1] (analytic) = 0 y[1] (numeric) = -3.1946467962443538924614312362759 absolute error = 3.1946467962443538924614312362759 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.73 y[1] (analytic) = 0 y[1] (numeric) = -3.1948842717898958615478648775248 absolute error = 3.1948842717898958615478648775248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.731 y[1] (analytic) = 0 y[1] (numeric) = -3.1951213841691119881624795035769 absolute error = 3.1951213841691119881624795035769 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.732 y[1] (analytic) = 0 y[1] (numeric) = -3.1953581334841181152731955979423 absolute error = 3.1953581334841181152731955979423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.733 y[1] (analytic) = 0 y[1] (numeric) = -3.1955945198368936455456899577138 absolute error = 3.1955945198368936455456899577138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2197.3MB, alloc=4.6MB, time=167.00 x[1] = 2.734 y[1] (analytic) = 0 y[1] (numeric) = -3.1958305433292816942981487596645 absolute error = 3.1958305433292816942981487596645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.735 y[1] (analytic) = 0 y[1] (numeric) = -3.1960662040629892421870095021126 absolute error = 3.1960662040629892421870095021126 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.736 y[1] (analytic) = 0 y[1] (numeric) = -3.19630150213958728762421045645 absolute error = 3.19630150213958728762421045645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.737 y[1] (analytic) = 0 y[1] (numeric) = -3.1965364376605109989264650420737 absolute error = 3.1965364376605109989264650420737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2201.1MB, alloc=4.6MB, time=167.16 x[1] = 2.738 y[1] (analytic) = 0 y[1] (numeric) = -3.1967710107270598661970773215274 absolute error = 3.1967710107270598661970773215274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.739 y[1] (analytic) = 0 y[1] (numeric) = -3.1970052214403978529408135989431 absolute error = 3.1970052214403978529408135989431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.74 y[1] (analytic) = 0 y[1] (numeric) = -3.1972390699015535474123438943599 absolute error = 3.1972390699015535474123438943599 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.741 y[1] (analytic) = 0 y[1] (numeric) = -3.1974725562114203136987658591818 absolute error = 3.1974725562114203136987658591818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.742 y[1] (analytic) = 0 y[1] (numeric) = -3.1977056804707564425367224939033 absolute error = 3.1977056804707564425367224939033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2204.9MB, alloc=4.6MB, time=167.31 x[1] = 2.743 y[1] (analytic) = 0 y[1] (numeric) = -3.197938442780185301864623828279 absolute error = 3.197938442780185301864623828279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.744 y[1] (analytic) = 0 y[1] (numeric) = -3.1981708432401954871104815263256 absolute error = 3.1981708432401954871104815263256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.745 y[1] (analytic) = 0 y[1] (numeric) = -3.1984028819511409712158641839129 absolute error = 3.1984028819511409712158641839129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.746 y[1] (analytic) = 0 y[1] (numeric) = -3.1986345590132412543964798952198 absolute error = 3.1986345590132412543964798952198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2208.7MB, alloc=4.6MB, time=167.46 x[1] = 2.747 y[1] (analytic) = 0 y[1] (numeric) = -3.1988658745265815136398914759876 absolute error = 3.1988658745265815136398914759876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.748 y[1] (analytic) = 0 y[1] (numeric) = -3.1990968285911127519408685462871 absolute error = 3.1990968285911127519408685462871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.749 y[1] (analytic) = 0 y[1] (numeric) = -3.1993274213066519472748794934214 absolute error = 3.1993274213066519472748794934214 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.75 y[1] (analytic) = 0 y[1] (numeric) = -3.1995576527728822013102251566041 absolute error = 3.1995576527728822013102251566041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.751 y[1] (analytic) = 0 y[1] (numeric) = -3.1997875230893528878593148991655 absolute error = 3.1997875230893528878593148991655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2212.6MB, alloc=4.6MB, time=167.62 x[1] = 2.752 y[1] (analytic) = 0 y[1] (numeric) = -3.2000170323554798010695845612526 absolute error = 3.2000170323554798010695845612526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.753 y[1] (analytic) = 0 y[1] (numeric) = -3.2002461806705453033545546162761 absolute error = 3.2002461806705453033545546162761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.754 y[1] (analytic) = 0 y[1] (numeric) = -3.2004749681336984730655256877256 absolute error = 3.2004749681336984730655256877256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.755 y[1] (analytic) = 0 y[1] (numeric) = -3.2007033948439552519044074194016 absolute error = 3.2007033948439552519044074194016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.756 y[1] (analytic) = 0 y[1] (numeric) = -3.2009314609001985920781755315977 absolute error = 3.2009314609001985920781755315977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2216.4MB, alloc=4.6MB, time=167.77 x[1] = 2.757 y[1] (analytic) = 0 y[1] (numeric) = -3.2011591664011786031954507382979 absolute error = 3.2011591664011786031954507382979 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.758 y[1] (analytic) = 0 y[1] (numeric) = -3.2013865114455126989056920460191 absolute error = 3.2013865114455126989056920460191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.759 y[1] (analytic) = 0 y[1] (numeric) = -3.2016134961316857432814958035269 absolute error = 3.2016134961316857432814958035269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.76 y[1] (analytic) = 0 y[1] (numeric) = -3.201840120558050196944490723265 absolute error = 3.201840120558050196944490723265 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2220.2MB, alloc=4.6MB, time=167.92 x[1] = 2.761 y[1] (analytic) = 0 y[1] (numeric) = -3.2020663848228262629353179499639 absolute error = 3.2020663848228262629353179499639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.762 y[1] (analytic) = 0 y[1] (numeric) = -3.2022922890241020323281841095197 absolute error = 3.2022922890241020323281841095197 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.763 y[1] (analytic) = 0 y[1] (numeric) = -3.2025178332598336295904741318496 absolute error = 3.2025178332598336295904741318496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.764 y[1] (analytic) = 0 y[1] (numeric) = -3.2027430176278453576879095050338 absolute error = 3.2027430176278453576879095050338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.765 y[1] (analytic) = 0 y[1] (numeric) = -3.2029678422258298429357364846248 absolute error = 3.2029678422258298429357364846248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2224.0MB, alloc=4.6MB, time=168.08 x[1] = 2.766 y[1] (analytic) = 0 y[1] (numeric) = -3.2031923071513481795964276515484 absolute error = 3.2031923071513481795964276515484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.767 y[1] (analytic) = 0 y[1] (numeric) = -3.2034164125018300742243790845145 absolute error = 3.2034164125018300742243790845145 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.768 y[1] (analytic) = 0 y[1] (numeric) = -3.203640158374573989758084288302 absolute error = 3.203640158374573989758084288302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.769 y[1] (analytic) = 0 y[1] (numeric) = -3.203863544866747289360264897665 absolute error = 3.203863544866747289360264897665 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2227.8MB, alloc=4.6MB, time=168.23 x[1] = 2.77 y[1] (analytic) = 0 y[1] (numeric) = -3.2040865720753863800064370579219 absolute error = 3.2040865720753863800064370579219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.771 y[1] (analytic) = 0 y[1] (numeric) = -3.2043092400973968558223912675233 absolute error = 3.2043092400973968558223912675233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.772 y[1] (analytic) = 0 y[1] (numeric) = -3.204531549029553641171062355044 absolute error = 3.204531549029553641171062355044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.773 y[1] (analytic) = 0 y[1] (numeric) = -3.2047534989685011334892651530978 absolute error = 3.2047534989685011334892651530978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.774 y[1] (analytic) = 0 y[1] (numeric) = -3.2049750900107533458747703246203 absolute error = 3.2049750900107533458747703246203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2231.6MB, alloc=4.6MB, time=168.38 x[1] = 2.775 y[1] (analytic) = 0 y[1] (numeric) = -3.2051963222526940494241936928027 absolute error = 3.2051963222526940494241936928027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.776 y[1] (analytic) = 0 y[1] (numeric) = -3.2054171957905769153221713246724 absolute error = 3.2054171957905769153221713246724 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.777 y[1] (analytic) = 0 y[1] (numeric) = -3.2056377107205256566822915199011 absolute error = 3.2056377107205256566822915199011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.778 y[1] (analytic) = 0 y[1] (numeric) = -3.2058578671385341701402537608666 absolute error = 3.2058578671385341701402537608666 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.779 y[1] (analytic) = 0 y[1] (numeric) = -3.2060776651404666771997235872939 absolute error = 3.2060776651404666771997235872939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2235.4MB, alloc=4.6MB, time=168.54 x[1] = 2.78 y[1] (analytic) = 0 y[1] (numeric) = -3.2062971048220578653313512689438 absolute error = 3.2062971048220578653313512689438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.781 y[1] (analytic) = 0 y[1] (numeric) = -3.2065161862789130288254210627978 absolute error = 3.2065161862789130288254210627978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.782 y[1] (analytic) = 0 y[1] (numeric) = -3.2067349096065082093985967569956 absolute error = 3.2067349096065082093985967569956 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.783 y[1] (analytic) = 0 y[1] (numeric) = -3.2069532749001903365552281224076 absolute error = 3.2069532749001903365552281224076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2239.3MB, alloc=4.6MB, time=168.69 x[1] = 2.784 y[1] (analytic) = 0 y[1] (numeric) = -3.2071712822551773677036818141637 absolute error = 3.2071712822551773677036818141637 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.785 y[1] (analytic) = 0 y[1] (numeric) = -3.2073889317665584280281591897012 absolute error = 3.2073889317665584280281591897012 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.786 y[1] (analytic) = 0 y[1] (numeric) = -3.2076062235292939501164624369287 absolute error = 3.2076062235292939501164624369287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.787 y[1] (analytic) = 0 y[1] (numeric) = -3.2078231576382158133441693359255 absolute error = 3.2078231576382158133441693359255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.788 y[1] (analytic) = 0 y[1] (numeric) = -3.2080397341880274830156759101959 absolute error = 3.2080397341880274830156759101959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2243.1MB, alloc=4.6MB, time=168.84 x[1] = 2.789 y[1] (analytic) = 0 y[1] (numeric) = -3.2082559532733041492625651588674 absolute error = 3.2082559532733041492625651588674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.79 y[1] (analytic) = 0 y[1] (numeric) = -3.2084718149884928656997589993531 absolute error = 3.2084718149884928656997589993531 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.791 y[1] (analytic) = 0 y[1] (numeric) = -3.2086873194279126878399094908833 absolute error = 3.2086873194279126878399094908833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.792 y[1] (analytic) = 0 y[1] (numeric) = -3.2089024666857548112664843529421 absolute error = 3.2089024666857548112664843529421 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2246.9MB, alloc=4.6MB, time=169.00 x[1] = 2.793 y[1] (analytic) = 0 y[1] (numeric) = -3.2091172568560827095660007390125 absolute error = 3.2091172568560827095660007390125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.794 y[1] (analytic) = 0 y[1] (numeric) = -3.2093316900328322720198601751298 absolute error = 3.2093316900328322720198601751298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.795 y[1] (analytic) = 0 y[1] (numeric) = -3.2095457663098119410562365245619 absolute error = 3.2095457663098119410562365245619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.796 y[1] (analytic) = 0 y[1] (numeric) = -3.2097594857807028494624677944663 absolute error = 3.2097594857807028494624677944663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.797 y[1] (analytic) = 0 y[1] (numeric) = -3.2099728485390589573584015576103 absolute error = 3.2099728485390589573584015576103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2250.7MB, alloc=4.6MB, time=169.15 x[1] = 2.798 y[1] (analytic) = 0 y[1] (numeric) = -3.2101858546783071889311427221744 absolute error = 3.2101858546783071889311427221744 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.799 y[1] (analytic) = 0 y[1] (numeric) = -3.210398504291747568931651345282 absolute error = 3.210398504291747568931651345282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.8 y[1] (analytic) = 0 y[1] (numeric) = -3.2106107974725533589336371512043 absolute error = 3.2106107974725533589336371512043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.801 y[1] (analytic) = 0 y[1] (numeric) = -3.2108227343137711933551963831657 absolute error = 3.2108227343137711933551963831657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.802 y[1] (analytic) = 0 y[1] (numeric) = -3.2110343149083212152436355883199 absolute error = 3.2110343149083212152436355883199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2254.5MB, alloc=4.6MB, time=169.30 x[1] = 2.803 y[1] (analytic) = 0 y[1] (numeric) = -3.2112455393489972118239259087682 absolute error = 3.2112455393489972118239259087682 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.804 y[1] (analytic) = 0 y[1] (numeric) = -3.2114564077284667498112304274432 absolute error = 3.2114564077284667498112304274432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.805 y[1] (analytic) = 0 y[1] (numeric) = -3.211666920139271310487946096275 absolute error = 3.211666920139271310487946096275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.806 y[1] (analytic) = 0 y[1] (numeric) = -3.2118770766738264245457007552856 absolute error = 3.2118770766738264245457007552856 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2258.3MB, alloc=4.6MB, time=169.45 x[1] = 2.807 y[1] (analytic) = 0 y[1] (numeric) = -3.2120868774244218066927447351116 absolute error = 3.2120868774244218066927447351116 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.808 y[1] (analytic) = 0 y[1] (numeric) = -3.2122963224832214900271755219303 absolute error = 3.2122963224832214900271755219303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.809 y[1] (analytic) = 0 y[1] (numeric) = -3.2125054119422639601764329528503 absolute error = 3.2125054119422639601764329528503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.81 y[1] (analytic) = 0 y[1] (numeric) = -3.2127141458934622892035014015152 absolute error = 3.2127141458934622892035014015152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.811 y[1] (analytic) = 0 y[1] (numeric) = -3.212922524428604269280254407956 absolute error = 3.212922524428604269280254407956 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2262.1MB, alloc=4.6MB, time=169.61 x[1] = 2.812 y[1] (analytic) = 0 y[1] (numeric) = -3.2131305476393525461283762036015 absolute error = 3.2131305476393525461283762036015 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.813 y[1] (analytic) = 0 y[1] (numeric) = -3.2133382156172447522282935818095 absolute error = 3.2133382156172447522282935818095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.814 y[1] (analytic) = 0 y[1] (numeric) = -3.2135455284536936397965505663112 absolute error = 3.2135455284536936397965505663112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.815 y[1] (analytic) = 0 y[1] (numeric) = -3.2137524862399872135320573345544 absolute error = 3.2137524862399872135320573345544 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2266.0MB, alloc=4.6MB, time=169.76 x[1] = 2.816 y[1] (analytic) = 0 y[1] (numeric) = -3.2139590890672888631316438600825 absolute error = 3.2139590890672888631316438600825 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.817 y[1] (analytic) = 0 y[1] (numeric) = -3.214165337026637495575347747791 absolute error = 3.214165337026637495575347747791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.818 y[1] (analytic) = 0 y[1] (numeric) = -3.2143712302089476671818647481476 absolute error = 3.2143712302089476671818647481476 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.819 y[1] (analytic) = 0 y[1] (numeric) = -3.2145767687050097154345894512458 absolute error = 3.2145767687050097154345894512458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.82 y[1] (analytic) = 0 y[1] (numeric) = -3.2147819526054898905786726788717 absolute error = 3.2147819526054898905786726788717 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2269.8MB, alloc=4.6MB, time=169.91 x[1] = 2.821 y[1] (analytic) = 0 y[1] (numeric) = -3.2149867820009304869895211125954 absolute error = 3.2149867820009304869895211125954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.822 y[1] (analytic) = 0 y[1] (numeric) = -3.2151912569817499743131637182448 absolute error = 3.2151912569817499743131637182448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.823 y[1] (analytic) = 0 y[1] (numeric) = -3.2153953776382431283789085519708 absolute error = 3.2153953776382431283789085519708 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.824 y[1] (analytic) = 0 y[1] (numeric) = -3.2155991440605811618847125604643 absolute error = 3.2155991440605811618847125604643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.825 y[1] (analytic) = 0 y[1] (numeric) = -3.2158025563388118548556860177281 absolute error = 3.2158025563388118548556860177281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2273.6MB, alloc=4.6MB, time=170.07 x[1] = 2.826 y[1] (analytic) = 0 y[1] (numeric) = -3.216005614562859684876152273134 absolute error = 3.216005614562859684876152273134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.827 y[1] (analytic) = 0 y[1] (numeric) = -3.2162083188225259570956825203005 absolute error = 3.2162083188225259570956825203005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.828 y[1] (analytic) = 0 y[1] (numeric) = -3.216410669207488934009524333601 absolute error = 3.216410669207488934009524333601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.829 y[1] (analytic) = 0 y[1] (numeric) = -3.2166126658073039650138417588493 absolute error = 3.2166126658073039650138417588493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2277.4MB, alloc=4.6MB, time=170.22 x[1] = 2.83 y[1] (analytic) = 0 y[1] (numeric) = -3.2168143087114036157361837869033 absolute error = 3.2168143087114036157361837869033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.831 y[1] (analytic) = 0 y[1] (numeric) = -3.2170155980090977971415970835692 absolute error = 3.2170155980090977971415970835692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.832 y[1] (analytic) = 0 y[1] (numeric) = -3.2172165337895738944147978962715 absolute error = 3.2172165337895738944147978962715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.833 y[1] (analytic) = 0 y[1] (numeric) = -3.2174171161418968956188171074713 absolute error = 3.2174171161418968956188171074713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.834 y[1] (analytic) = 0 y[1] (numeric) = -3.2176173451550095201305314567609 absolute error = 3.2176173451550095201305314567609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2281.2MB, alloc=4.6MB, time=170.37 x[1] = 2.835 y[1] (analytic) = 0 y[1] (numeric) = -3.2178172209177323468534930079258 absolute error = 3.2178172209177323468534930079258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.836 y[1] (analytic) = 0 y[1] (numeric) = -3.218016743518763942208467994045 absolute error = 3.218016743518763942208467994045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.837 y[1] (analytic) = 0 y[1] (numeric) = -3.2182159130466809879020952328828 absolute error = 3.2182159130466809879020952328828 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.838 y[1] (analytic) = 0 y[1] (numeric) = -3.2184147295899384084740733664092 absolute error = 3.2184147295899384084740733664092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2285.0MB, alloc=4.6MB, time=170.53 x[1] = 2.839 y[1] (analytic) = 0 y[1] (numeric) = -3.2186131932368694986232852422605 absolute error = 3.2186131932368694986232852422605 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.84 y[1] (analytic) = 0 y[1] (numeric) = -3.2188113040756860503132668213127 absolute error = 3.2188113040756860503132668213127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.841 y[1] (analytic) = 0 y[1] (numeric) = -3.2190090621944784796574270642778 absolute error = 3.2190090621944784796574270642778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.842 y[1] (analytic) = 0 y[1] (numeric) = -3.2192064676812159535844243213441 absolute error = 3.2192064676812159535844243213441 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.843 y[1] (analytic) = 0 y[1] (numeric) = -3.219403520623746516284103822355 absolute error = 3.219403520623746516284103822355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2288.8MB, alloc=4.6MB, time=170.68 x[1] = 2.844 y[1] (analytic) = 0 y[1] (numeric) = -3.2196002211097972154343999408527 absolute error = 3.2196002211097972154343999408527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.845 y[1] (analytic) = 0 y[1] (numeric) = -3.2197965692269742282096059834966 absolute error = 3.2197965692269742282096059834966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.846 y[1] (analytic) = 0 y[1] (numeric) = -3.2199925650627629870704133368923 absolute error = 3.2199925650627629870704133368923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.847 y[1] (analytic) = 0 y[1] (numeric) = -3.2201882087045283053361208867299 absolute error = 3.2201882087045283053361208867299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.848 y[1] (analytic) = 0 y[1] (numeric) = -3.2203835002395145025394147093264 absolute error = 3.2203835002395145025394147093264 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2292.7MB, alloc=4.6MB, time=170.84 x[1] = 2.849 y[1] (analytic) = 0 y[1] (numeric) = -3.2205784397548455295641171231826 absolute error = 3.2205784397548455295641171231826 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.85 y[1] (analytic) = 0 y[1] (numeric) = -3.2207730273375250935663032780008 absolute error = 3.2207730273375250935663032780008 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.851 y[1] (analytic) = 0 y[1] (numeric) = -3.220967263074436782679182550754 absolute error = 3.220967263074436782679182550754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.852 y[1] (analytic) = 0 y[1] (numeric) = -3.2211611470523441905021411128449 absolute error = 3.2211611470523441905021411128449 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2296.5MB, alloc=4.6MB, time=170.99 x[1] = 2.853 y[1] (analytic) = 0 y[1] (numeric) = -3.2213546793578910403743411291398 absolute error = 3.2213546793578910403743411291398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.854 y[1] (analytic) = 0 y[1] (numeric) = -3.221547860077601309433271148695 absolute error = 3.221547860077601309433271148695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.855 y[1] (analytic) = 0 y[1] (numeric) = -3.2217406892978793524586413483148 absolute error = 3.2217406892978793524586413483148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.856 y[1] (analytic) = 0 y[1] (numeric) = -3.2219331671050100255020163936749 absolute error = 3.2219331671050100255020163936749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.857 y[1] (analytic) = 0 y[1] (numeric) = -3.2221252935851588093025777886103 absolute error = 3.2221252935851588093025777886103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2300.3MB, alloc=4.6MB, time=171.14 x[1] = 2.858 y[1] (analytic) = 0 y[1] (numeric) = -3.2223170688243719324894066912979 absolute error = 3.2223170688243719324894066912979 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.859 y[1] (analytic) = 0 y[1] (numeric) = -3.2225084929085764945706772864515 absolute error = 3.2225084929085764945706772864515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.86 y[1] (analytic) = 0 y[1] (numeric) = -3.2226995659235805887101499152831 absolute error = 3.2226995659235805887101499152831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.861 y[1] (analytic) = 0 y[1] (numeric) = -3.2228902879550734242913522798685 absolute error = 3.2228902879550734242913522798685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2304.1MB, alloc=4.6MB, time=171.30 x[1] = 2.862 y[1] (analytic) = 0 y[1] (numeric) = -3.2230806590886254492698361556751 absolute error = 3.2230806590886254492698361556751 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.863 y[1] (analytic) = 0 y[1] (numeric) = -3.2232706794096884723138961653592 absolute error = 3.2232706794096884723138961653592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.864 y[1] (analytic) = 0 y[1] (numeric) = -3.2234603490035957847341362885195 absolute error = 3.2234603490035957847341362885195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.865 y[1] (analytic) = 0 y[1] (numeric) = -3.2236496679555622822022689058851 absolute error = 3.2236496679555622822022689058851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.866 y[1] (analytic) = 0 y[1] (numeric) = -3.2238386363506845862595303024258 absolute error = 3.2238386363506845862595303024258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2307.9MB, alloc=4.6MB, time=171.45 x[1] = 2.867 y[1] (analytic) = 0 y[1] (numeric) = -3.2240272542739411656150956820832 absolute error = 3.2240272542739411656150956820832 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.868 y[1] (analytic) = 0 y[1] (numeric) = -3.2242155218101924572348758772341 absolute error = 3.2242155218101924572348758772341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.869 y[1] (analytic) = 0 y[1] (numeric) = -3.2244034390441809872210770686021 absolute error = 3.2244034390441809872210770686021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.87 y[1] (analytic) = 0 y[1] (numeric) = -3.2245910060605314914829039661249 absolute error = 3.2245910060605314914829039661249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.871 y[1] (analytic) = 0 y[1] (numeric) = -3.2247782229437510361987860382578 absolute error = 3.2247782229437510361987860382578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2311.7MB, alloc=4.6MB, time=171.60 x[1] = 2.872 y[1] (analytic) = 0 y[1] (numeric) = -3.2249650897782291380705055163392 absolute error = 3.2249650897782291380705055163392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.873 y[1] (analytic) = 0 y[1] (numeric) = -3.2251516066482378843696050419575 absolute error = 3.2251516066482378843696050419575 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.874 y[1] (analytic) = 0 y[1] (numeric) = -3.225337773637932052776451968737 absolute error = 3.225337773637932052776451968737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.875 y[1] (analytic) = 0 y[1] (numeric) = -3.2255235908313492310123354755883 absolute error = 3.2255235908313492310123354755883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2315.6MB, alloc=4.6MB, time=171.75 x[1] = 2.876 y[1] (analytic) = 0 y[1] (numeric) = -3.2257090583124099362649717962528 absolute error = 3.2257090583124099362649717962528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.877 y[1] (analytic) = 0 y[1] (numeric) = -3.2258941761649177344077920198905 absolute error = 3.2258941761649177344077920198905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.878 y[1] (analytic) = 0 y[1] (numeric) = -3.2260789444725593590133860695249 absolute error = 3.2260789444725593590133860695249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.879 y[1] (analytic) = 0 y[1] (numeric) = -3.2262633633189048301614756193473 absolute error = 3.2262633633189048301614756193473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.88 y[1] (analytic) = 0 y[1] (numeric) = -3.2264474327874075730417878681991 absolute error = 3.2264474327874075730417878681991 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2319.4MB, alloc=4.6MB, time=171.90 x[1] = 2.881 y[1] (analytic) = 0 y[1] (numeric) = -3.2266311529614045363522012449866 absolute error = 3.2266311529614045363522012449866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.882 y[1] (analytic) = 0 y[1] (numeric) = -3.2268145239241163104925332823291 absolute error = 3.2268145239241163104925332823291 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.883 y[1] (analytic) = 0 y[1] (numeric) = -3.2269975457586472455543400573933 absolute error = 3.2269975457586472455543400573933 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.884 y[1] (analytic) = 0 y[1] (numeric) = -3.2271802185479855691070957636241 absolute error = 3.2271802185479855691070957636241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2323.2MB, alloc=4.6MB, time=172.06 x[1] = 2.885 y[1] (analytic) = 0 y[1] (numeric) = -3.2273625423750035037811201439259 absolute error = 3.2273625423750035037811201439259 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.886 y[1] (analytic) = 0 y[1] (numeric) = -3.22754451732245738464762068479 absolute error = 3.22754451732245738464762068479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.887 y[1] (analytic) = 0 y[1] (numeric) = -3.2277261434729877763962156418782 absolute error = 3.2277261434729877763962156418782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.888 y[1] (analytic) = 0 y[1] (numeric) = -3.2279074209091195903103031406713 absolute error = 3.2279074209091195903103031406713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.889 y[1] (analytic) = 0 y[1] (numeric) = -3.2280883497132622010406407709568 absolute error = 3.2280883497132622010406407709568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2327.0MB, alloc=4.6MB, time=172.21 x[1] = 2.89 y[1] (analytic) = 0 y[1] (numeric) = -3.2282689299677095631774992711587 absolute error = 3.2282689299677095631774992711587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.891 y[1] (analytic) = 0 y[1] (numeric) = -3.2284491617546403276217530778047 absolute error = 3.2284491617546403276217530778047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.892 y[1] (analytic) = 0 y[1] (numeric) = -3.2286290451561179577552696967652 absolute error = 3.2286290451561179577552696967652 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.893 y[1] (analytic) = 0 y[1] (numeric) = -3.2288085802540908454109590362895 absolute error = 3.2288085802540908454109590362895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.894 y[1] (analytic) = 0 y[1] (numeric) = -3.2289877671303924266428430272937 absolute error = 3.2289877671303924266428430272937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=2330.8MB, alloc=4.6MB, time=172.36 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.895 y[1] (analytic) = 0 y[1] (numeric) = -3.2291666058667412972965050438205 absolute error = 3.2291666058667412972965050438205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.896 y[1] (analytic) = 0 y[1] (numeric) = -3.2293450965447413283802778260848 absolute error = 3.2293450965447413283802778260848 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.897 y[1] (analytic) = 0 y[1] (numeric) = -3.2295232392458817812375278000392 absolute error = 3.2295232392458817812375278000392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.898 y[1] (analytic) = 0 y[1] (numeric) = -3.2297010340515374225203928809274 absolute error = 3.2297010340515374225203928809274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2334.6MB, alloc=4.6MB, time=172.52 x[1] = 2.899 y[1] (analytic) = 0 y[1] (numeric) = -3.2298784810429686389653300438434 absolute error = 3.2298784810429686389653300438434 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.9 y[1] (analytic) = 0 y[1] (numeric) = -3.2300555803013215519708281418682 absolute error = 3.2300555803013215519708281418682 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.901 y[1] (analytic) = 0 y[1] (numeric) = -3.2302323319076281319776406519114 absolute error = 3.2302323319076281319776406519114 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.902 y[1] (analytic) = 0 y[1] (numeric) = -3.2304087359428063126518922299341 absolute error = 3.2304087359428063126518922299341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.903 y[1] (analytic) = 0 y[1] (numeric) = -3.2305847924876601048714121607703 absolute error = 3.2305847924876601048714121607703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2338.4MB, alloc=4.6MB, time=172.67 x[1] = 2.904 y[1] (analytic) = 0 y[1] (numeric) = -3.2307605016228797105156469932862 absolute error = 3.2307605016228797105156469932862 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.905 y[1] (analytic) = 0 y[1] (numeric) = -3.2309358634290416360595038591172 absolute error = 3.2309358634290416360595038591172 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.906 y[1] (analytic) = 0 y[1] (numeric) = -3.2311108779866088059714751826963 absolute error = 3.2311108779866088059714751826963 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.907 y[1] (analytic) = 0 y[1] (numeric) = -3.2312855453759306759163947017268 absolute error = 3.2312855453759306759163947017268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2342.3MB, alloc=4.6MB, time=172.82 x[1] = 2.908 y[1] (analytic) = 0 y[1] (numeric) = -3.2314598656772433457631739306534 absolute error = 3.2314598656772433457631739306534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.909 y[1] (analytic) = 0 y[1] (numeric) = -3.2316338389706696723978674150413 absolute error = 3.2316338389706696723978674150413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.91 y[1] (analytic) = 0 y[1] (numeric) = -3.2318074653362193823424143420807 absolute error = 3.2318074653362193823424143420807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.911 y[1] (analytic) = 0 y[1] (numeric) = -3.2319807448537891841794032916829 absolute error = 3.2319807448537891841794032916829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.912 y[1] (analytic) = 0 y[1] (numeric) = -3.2321536776031628807832061338249 absolute error = 3.2321536776031628807832061338249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2346.1MB, alloc=4.6MB, time=172.97 x[1] = 2.913 y[1] (analytic) = 0 y[1] (numeric) = -3.2323262636640114813578263009214 absolute error = 3.2323262636640114813578263009214 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.914 y[1] (analytic) = 0 y[1] (numeric) = -3.2324985031158933132818058890542 absolute error = 3.2324985031158933132818058890542 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.915 y[1] (analytic) = 0 y[1] (numeric) = -3.2326703960382541337605352688625 absolute error = 3.2326703960382541337605352688625 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.916 y[1] (analytic) = 0 y[1] (numeric) = -3.2328419425104272412863081157856 absolute error = 3.2328419425104272412863081157856 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.917 y[1] (analytic) = 0 y[1] (numeric) = -3.2330131426116335869064640001537 absolute error = 3.2330131426116335869064640001537 relative error = -1 % Correct digits = -1 h = 0.001 memory used=2349.9MB, alloc=4.6MB, time=173.13 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.918 y[1] (analytic) = 0 y[1] (numeric) = -3.2331839964209818852999599103268 absolute error = 3.2331839964209818852999599103268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.919 y[1] (analytic) = 0 y[1] (numeric) = -3.2333545040174687256627113166927 absolute error = 3.2333545040174687256627113166927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.92 y[1] (analytic) = 0 y[1] (numeric) = -3.2335246654799786824020426208362 absolute error = 3.2335246654799786824020426208362 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.921 y[1] (analytic) = 0 y[1] (numeric) = -3.2336944808872844256405860725858 absolute error = 3.2336944808872844256405860725858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2353.7MB, alloc=4.6MB, time=173.28 x[1] = 2.922 y[1] (analytic) = 0 y[1] (numeric) = -3.2338639503180468315299674779217 absolute error = 3.2338639503180468315299674779217 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.923 y[1] (analytic) = 0 y[1] (numeric) = -3.234033073850815092374616262886 absolute error = 3.234033073850815092374616262886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.924 y[1] (analytic) = 0 y[1] (numeric) = -3.2342018515640268265660367026657 absolute error = 3.2342018515640268265660367026657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.925 y[1] (analytic) = 0 y[1] (numeric) = -3.2343702835360081883278763709196 absolute error = 3.2343702835360081883278763709196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.926 y[1] (analytic) = 0 y[1] (numeric) = -3.2345383698449739772721271121821 absolute error = 3.2345383698449739772721271121821 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2357.5MB, alloc=4.6MB, time=173.43 x[1] = 2.927 y[1] (analytic) = 0 y[1] (numeric) = -3.2347061105690277477667930897975 absolute error = 3.2347061105690277477667930897975 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.928 y[1] (analytic) = 0 y[1] (numeric) = -3.2348735057861619181153597133107 absolute error = 3.2348735057861619181153597133107 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.929 y[1] (analytic) = 0 y[1] (numeric) = -3.2350405555742578795483965025629 absolute error = 3.2350405555742578795483965025629 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.93 y[1] (analytic) = 0 y[1] (numeric) = -3.2352072600110861050276262009015 absolute error = 3.2352072600110861050276262009015 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2361.3MB, alloc=4.6MB, time=173.58 x[1] = 2.931 y[1] (analytic) = 0 y[1] (numeric) = -3.2353736191743062578627917069148 absolute error = 3.2353736191743062578627917069148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.932 y[1] (analytic) = 0 y[1] (numeric) = -3.2355396331414673001416516529338 absolute error = 3.2355396331414673001416516529338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.933 y[1] (analytic) = 0 y[1] (numeric) = -3.2357053019900076009734347192009 absolute error = 3.2357053019900076009734347192009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.934 y[1] (analytic) = 0 y[1] (numeric) = -3.2358706257972550445460820350866 absolute error = 3.2358706257972550445460820350866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.935 y[1] (analytic) = 0 y[1] (numeric) = -3.2360356046404271379976062830308 absolute error = 3.2360356046404271379976062830308 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2365.1MB, alloc=4.6MB, time=173.74 x[1] = 2.936 y[1] (analytic) = 0 y[1] (numeric) = -3.2362002385966311191018953869933 absolute error = 3.2362002385966311191018953869933 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.937 y[1] (analytic) = 0 y[1] (numeric) = -3.2363645277428640637692879351112 absolute error = 3.2363645277428640637692879351112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.938 y[1] (analytic) = 0 y[1] (numeric) = -3.2365284721560129933622467559767 absolute error = 3.2365284721560129933622467559767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.939 y[1] (analytic) = 0 y[1] (numeric) = -3.236692071912854981826456339459 absolute error = 3.236692071912854981826456339459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2369.0MB, alloc=4.6MB, time=173.89 x[1] = 2.94 y[1] (analytic) = 0 y[1] (numeric) = -3.236855327090057262637669066295 absolute error = 3.236855327090057262637669066295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.941 y[1] (analytic) = 0 y[1] (numeric) = -3.2370182377641773355646244857623 absolute error = 3.2370182377641773355646244857623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.942 y[1] (analytic) = 0 y[1] (numeric) = -3.2371808040116630732483651576147 absolute error = 3.2371808040116630732483651576147 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.943 y[1] (analytic) = 0 y[1] (numeric) = -3.237343025908852827598271853106 absolute error = 3.237343025908852827598271853106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.944 y[1] (analytic) = 0 y[1] (numeric) = -3.2375049035319755360051401903414 absolute error = 3.2375049035319755360051401903414 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2372.8MB, alloc=4.6MB, time=174.05 x[1] = 2.945 y[1] (analytic) = 0 y[1] (numeric) = -3.2376664369571508273716200613774 absolute error = 3.2376664369571508273716200613774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.946 y[1] (analytic) = 0 y[1] (numeric) = -3.237827626260389127960338492432 absolute error = 3.237827626260389127960338492432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.947 y[1] (analytic) = 0 y[1] (numeric) = -3.2379884715175917670600258642644 absolute error = 3.2379884715175917670600258642644 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.948 y[1] (analytic) = 0 y[1] (numeric) = -3.2381489728045510824699647072321 absolute error = 3.2381489728045510824699647072321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.949 y[1] (analytic) = 0 y[1] (numeric) = -3.2383091301969505258030795747267 absolute error = 3.2383091301969505258030795747267 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2376.6MB, alloc=4.6MB, time=174.20 x[1] = 2.95 y[1] (analytic) = 0 y[1] (numeric) = -3.2384689437703647676079857896265 absolute error = 3.2384689437703647676079857896265 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.951 y[1] (analytic) = 0 y[1] (numeric) = -3.2386284136002598023103141510741 absolute error = 3.2386284136002598023103141510741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.952 y[1] (analytic) = 0 y[1] (numeric) = -3.2387875397619930529736279832903 absolute error = 3.2387875397619930529736279832903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.953 y[1] (analytic) = 0 y[1] (numeric) = -3.238946322330813475880248204267 absolute error = 3.238946322330813475880248204267 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2380.4MB, alloc=4.6MB, time=174.35 x[1] = 2.954 y[1] (analytic) = 0 y[1] (numeric) = -3.2391047613818616649323013900293 absolute error = 3.2391047613818616649323013900293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.955 y[1] (analytic) = 0 y[1] (numeric) = -3.2392628569901699558733051097276 absolute error = 3.2392628569901699558733051097276 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.956 y[1] (analytic) = 0 y[1] (numeric) = -3.2394206092306625303306041080996 absolute error = 3.2394206092306625303306041080996 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.957 y[1] (analytic) = 0 y[1] (numeric) = -3.2395780181781555196789702148277 absolute error = 3.2395780181781555196789702148277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.958 y[1] (analytic) = 0 y[1] (numeric) = -3.2397350839073571087256781650083 absolute error = 3.2397350839073571087256781650083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2384.2MB, alloc=4.6MB, time=174.50 x[1] = 2.959 y[1] (analytic) = 0 y[1] (numeric) = -3.2398918064928676392173688213349 absolute error = 3.2398918064928676392173688213349 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.96 y[1] (analytic) = 0 y[1] (numeric) = -3.2400481860091797131690105966771 absolute error = 3.2400481860091797131690105966771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.961 y[1] (analytic) = 0 y[1] (numeric) = -3.2402042225306782960152691855065 absolute error = 3.2402042225306782960152691855065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.962 y[1] (analytic) = 0 y[1] (numeric) = -3.2403599161316408195845950240686 absolute error = 3.2403599161316408195845950240686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2388.0MB, alloc=4.6MB, time=174.66 x[1] = 2.963 y[1] (analytic) = 0 y[1] (numeric) = -3.2405152668862372848963372123333 absolute error = 3.2405152668862372848963372123333 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.964 y[1] (analytic) = 0 y[1] (numeric) = -3.2406702748685303647811919455568 absolute error = 3.2406702748685303647811919455568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.965 y[1] (analytic) = 0 y[1] (numeric) = -3.2408249401524755063252928197634 absolute error = 3.2408249401524755063252928197634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.966 y[1] (analytic) = 0 y[1] (numeric) = -3.2409792628119210331382496935913 absolute error = 3.2409792628119210331382496935913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.967 y[1] (analytic) = 0 y[1] (numeric) = -3.2411332429206082474454421087446 absolute error = 3.2411332429206082474454421087446 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2391.9MB, alloc=4.6MB, time=174.81 x[1] = 2.968 y[1] (analytic) = 0 y[1] (numeric) = -3.2412868805521715320048725927469 absolute error = 3.2412868805521715320048725927469 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.969 y[1] (analytic) = 0 y[1] (numeric) = -3.2414401757801384518488844907939 absolute error = 3.2414401757801384518488844907939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.97 y[1] (analytic) = 0 y[1] (numeric) = -3.2415931286779298558510482982535 absolute error = 3.2415931286779298558510482982535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.971 y[1] (analytic) = 0 y[1] (numeric) = -3.2417457393188599781185197917507 absolute error = 3.2417457393188599781185197917507 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.972 y[1] (analytic) = 0 y[1] (numeric) = -3.2418980077761365392101725848046 absolute error = 3.2418980077761365392101725848046 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2395.7MB, alloc=4.6MB, time=174.96 x[1] = 2.973 y[1] (analytic) = 0 y[1] (numeric) = -3.242049934122860847180807063642 absolute error = 3.242049934122860847180807063642 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.974 y[1] (analytic) = 0 y[1] (numeric) = -3.2422015184320278984517369901019 absolute error = 3.2422015184320278984517369901019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.975 y[1] (analytic) = 0 y[1] (numeric) = -3.2423527607765264785080543914552 absolute error = 3.2423527607765264785080543914552 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.976 y[1] (analytic) = 0 y[1] (numeric) = -3.2425036612291392624228726914931 absolute error = 3.2425036612291392624228726914931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2399.5MB, alloc=4.6MB, time=175.12 x[1] = 2.977 y[1] (analytic) = 0 y[1] (numeric) = -3.2426542198625429152088473733812 absolute error = 3.2426542198625429152088473733812 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.978 y[1] (analytic) = 0 y[1] (numeric) = -3.2428044367493081919972728025298 absolute error = 3.2428044367493081919972728025298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.979 y[1] (analytic) = 0 y[1] (numeric) = -3.2429543119619000380450531770895 absolute error = 3.2429543119619000380450531770895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.98 y[1] (analytic) = 0 y[1] (numeric) = -3.2431038455726776885698449146385 absolute error = 3.2431038455726776885698449146385 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.981 y[1] (analytic) = 0 y[1] (numeric) = -3.2432530376538947684136671261857 absolute error = 3.2432530376538947684136671261857 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2403.3MB, alloc=4.6MB, time=175.27 x[1] = 2.982 y[1] (analytic) = 0 y[1] (numeric) = -3.2434018882776993915352761727574 absolute error = 3.2434018882776993915352761727574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.983 y[1] (analytic) = 0 y[1] (numeric) = -3.2435503975161342603315996455731 absolute error = 3.2435503975161342603315996455731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.984 y[1] (analytic) = 0 y[1] (numeric) = -3.2436985654411367647885244581292 absolute error = 3.2436985654411367647885244581292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.985 y[1] (analytic) = 0 y[1] (numeric) = -3.243846392124539081461333087408 absolute error = 3.243846392124539081461333087408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2407.1MB, alloc=4.6MB, time=175.42 x[1] = 2.986 y[1] (analytic) = 0 y[1] (numeric) = -3.2439938776380682722850813518974 absolute error = 3.2439938776380682722850813518974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.987 y[1] (analytic) = 0 y[1] (numeric) = -3.2441410220533463832152104661465 absolute error = 3.2441410220533463832152104661465 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.988 y[1] (analytic) = 0 y[1] (numeric) = -3.244287825441890542698685465186 absolute error = 3.244287825441890542698685465186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.989 y[1] (analytic) = 0 y[1] (numeric) = -3.2444342878751130599759514473101 absolute error = 3.2444342878751130599759514473101 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.99 y[1] (analytic) = 0 y[1] (numeric) = -3.2445804094243215232139984404361 absolute error = 3.2445804094243215232139984404361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2410.9MB, alloc=4.6MB, time=175.58 x[1] = 2.991 y[1] (analytic) = 0 y[1] (numeric) = -3.2447261901607188974708250555348 absolute error = 3.2447261901607188974708250555348 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.992 y[1] (analytic) = 0 y[1] (numeric) = -3.2448716301554036224915904504457 absolute error = 3.2448716301554036224915904504457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.993 y[1] (analytic) = 0 y[1] (numeric) = -3.2450167294793697103367434887585 absolute error = 3.2450167294793697103367434887585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.994 y[1] (analytic) = 0 y[1] (numeric) = -3.2451614882035068428424173413471 absolute error = 3.2451614882035068428424173413471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.995 y[1] (analytic) = 0 y[1] (numeric) = -3.2453059063986004689133771425844 absolute error = 3.2453059063986004689133771425844 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2414.7MB, alloc=4.6MB, time=175.73 x[1] = 2.996 y[1] (analytic) = 0 y[1] (numeric) = -3.2454499841353319016488076792356 absolute error = 3.2454499841353319016488076792356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.997 y[1] (analytic) = 0 y[1] (numeric) = -3.2455937214842784153012274575294 absolute error = 3.2455937214842784153012274575294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.998 y[1] (analytic) = 0 y[1] (numeric) = -3.2457371185159133420688148629237 absolute error = 3.2457371185159133420688148629237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 2.999 y[1] (analytic) = 0 y[1] (numeric) = -3.245880175300606168721431497624 absolute error = 3.245880175300606168721431497624 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2418.6MB, alloc=4.6MB, time=175.88 x[1] = 3 y[1] (analytic) = 0 y[1] (numeric) = -3.2460228919086226330606271529639 absolute error = 3.2460228919086226330606271529639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.001 y[1] (analytic) = 0 y[1] (numeric) = -3.2461652684101248202139102473206 absolute error = 3.2461652684101248202139102473206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.002 y[1] (analytic) = 0 y[1] (numeric) = -3.2463073048751712587635669353061 absolute error = 3.2463073048751712587635669353061 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.003 y[1] (analytic) = 0 y[1] (numeric) = -3.2464490013737170167103114705447 absolute error = 3.2464490013737170167103114705447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.004 y[1] (analytic) = 0 y[1] (numeric) = -3.2465903579756137972720497824137 absolute error = 3.2465903579756137972720497824137 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2422.4MB, alloc=4.6MB, time=176.04 x[1] = 3.005 y[1] (analytic) = 0 y[1] (numeric) = -3.2467313747506100345180376066849 absolute error = 3.2467313747506100345180376066849 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.006 y[1] (analytic) = 0 y[1] (numeric) = -3.2468720517683509888387138910532 absolute error = 3.2468720517683509888387138910532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.007 y[1] (analytic) = 0 y[1] (numeric) = -3.2470123890983788422514895790716 absolute error = 3.2470123890983788422514895790716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.008 y[1] (analytic) = 0 y[1] (numeric) = -3.2471523868101327935427712600278 absolute error = 3.2471523868101327935427712600278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2426.2MB, alloc=4.6MB, time=176.19 x[1] = 3.009 y[1] (analytic) = 0 y[1] (numeric) = -3.2472920449729491532464985577878 absolute error = 3.2472920449729491532464985577878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.01 y[1] (analytic) = 0 y[1] (numeric) = -3.2474313636560614384594735185956 absolute error = 3.2474313636560614384594735185956 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.011 y[1] (analytic) = 0 y[1] (numeric) = -3.2475703429286004674937596462515 absolute error = 3.2475703429286004674937596462515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.012 y[1] (analytic) = 0 y[1] (numeric) = -3.2477089828595944543664276229859 absolute error = 3.2477089828595944543664276229859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.013 y[1] (analytic) = 0 y[1] (numeric) = -3.2478472835179691031269241457056 absolute error = 3.2478472835179691031269241457056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2430.0MB, alloc=4.6MB, time=176.34 x[1] = 3.014 y[1] (analytic) = 0 y[1] (numeric) = -3.2479852449725477020223397000998 absolute error = 3.2479852449725477020223397000998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.015 y[1] (analytic) = 0 y[1] (numeric) = -3.2481228672920512175008504893613 absolute error = 3.2481228672920512175008504893613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.016 y[1] (analytic) = 0 y[1] (numeric) = -3.248260150545098388053609129991 absolute error = 3.248260150545098388053609129991 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.017 y[1] (analytic) = 0 y[1] (numeric) = -3.2483970948002058178953581243125 absolute error = 3.2483970948002058178953581243125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.018 y[1] (analytic) = 0 y[1] (numeric) = -3.2485337001257880704840395179232 absolute error = 3.2485337001257880704840395179232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=2433.8MB, alloc=4.6MB, time=176.50 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.019 y[1] (analytic) = 0 y[1] (numeric) = -3.2486699665901577618796735503409 absolute error = 3.2486699665901577618796735503409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.02 y[1] (analytic) = 0 y[1] (numeric) = -3.2488058942615256539427785085764 absolute error = 3.2488058942615256539427785085764 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.021 y[1] (analytic) = 0 y[1] (numeric) = -3.2489414832080007473726033962541 absolute error = 3.2489414832080007473726033962541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.022 y[1] (analytic) = 0 y[1] (numeric) = -3.2490767334975903745854444352265 absolute error = 3.2490767334975903745854444352265 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2437.6MB, alloc=4.6MB, time=176.65 x[1] = 3.023 y[1] (analytic) = 0 y[1] (numeric) = -3.2492116451982002924333158223678 absolute error = 3.2492116451982002924333158223678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.024 y[1] (analytic) = 0 y[1] (numeric) = -3.2493462183776347747632445713899 absolute error = 3.2493462183776347747632445713899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.025 y[1] (analytic) = 0 y[1] (numeric) = -3.2494804531035967048174586780949 absolute error = 3.2494804531035967048174586780949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.026 y[1] (analytic) = 0 y[1] (numeric) = -3.2496143494436876674747372574572 absolute error = 3.2496143494436876674747372574572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.027 y[1] (analytic) = 0 y[1] (numeric) = -3.2497479074654080413331907123131 absolute error = 3.2497479074654080413331907123131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2441.4MB, alloc=4.6MB, time=176.80 x[1] = 3.028 y[1] (analytic) = 0 y[1] (numeric) = -3.2498811272361570906347384062207 absolute error = 3.2498811272361570906347384062207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.029 y[1] (analytic) = 0 y[1] (numeric) = -3.2500140088232330570315507272367 absolute error = 3.2500140088232330570315507272367 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.03 y[1] (analytic) = 0 y[1] (numeric) = -3.2501465522938332511947218449323 absolute error = 3.2501465522938332511947218449323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.031 y[1] (analytic) = 0 y[1] (numeric) = -3.2502787577150541442654388799361 absolute error = 3.2502787577150541442654388799361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2445.3MB, alloc=4.6MB, time=176.95 x[1] = 3.032 y[1] (analytic) = 0 y[1] (numeric) = -3.2504106251538914591489126236444 absolute error = 3.2504106251538914591489126236444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.033 y[1] (analytic) = 0 y[1] (numeric) = -3.2505421546772402616513343654723 absolute error = 3.2505421546772402616513343654723 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.034 y[1] (analytic) = 0 y[1] (numeric) = -3.2506733463518950514601228061312 absolute error = 3.2506733463518950514601228061312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.035 y[1] (analytic) = 0 y[1] (numeric) = -3.2508042002445498529677244579041 absolute error = 3.2508042002445498529677244579041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.036 y[1] (analytic) = 0 y[1] (numeric) = -3.2509347164217983059392303567479 absolute error = 3.2509347164217983059392303567479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2449.1MB, alloc=4.6MB, time=177.11 x[1] = 3.037 y[1] (analytic) = 0 y[1] (numeric) = -3.2510648949501337560240713362749 absolute error = 3.2510648949501337560240713362749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.038 y[1] (analytic) = 0 y[1] (numeric) = -3.2511947358959493451120535402524 absolute error = 3.2511947358959493451120535402524 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.039 y[1] (analytic) = 0 y[1] (numeric) = -3.2513242393255381015339952782063 absolute error = 3.2513242393255381015339952782063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.04 y[1] (analytic) = 0 y[1] (numeric) = -3.2514534053050930301072257580163 absolute error = 3.2514534053050930301072257580163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.041 y[1] (analytic) = 0 y[1] (numeric) = -3.2515822339007072020262056600437 absolute error = 3.2515822339007072020262056600437 relative error = -1 % Correct digits = -1 memory used=2452.9MB, alloc=4.6MB, time=177.26 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.042 y[1] (analytic) = 0 y[1] (numeric) = -3.2517107251783738445985289493348 absolute error = 3.2517107251783738445985289493348 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.043 y[1] (analytic) = 0 y[1] (numeric) = -3.2518388792039864308265647557904 absolute error = 3.2518388792039864308265647557904 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.044 y[1] (analytic) = 0 y[1] (numeric) = -3.2519666960433387688349975868786 absolute error = 3.2519666960433387688349975868786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.045 y[1] (analytic) = 0 y[1] (numeric) = -3.2520941757621250911445235734919 absolute error = 3.2520941757621250911445235734919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2456.7MB, alloc=4.6MB, time=177.42 x[1] = 3.046 y[1] (analytic) = 0 y[1] (numeric) = -3.2522213184259401437919598869098 absolute error = 3.2522213184259401437919598869098 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.047 y[1] (analytic) = 0 y[1] (numeric) = -3.252348124100279275297023903514 absolute error = 3.252348124100279275297023903514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.048 y[1] (analytic) = 0 y[1] (numeric) = -3.2524745928505385254760381339185 absolute error = 3.2524745928505385254760381339185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.049 y[1] (analytic) = 0 y[1] (numeric) = -3.2526007247420147141028163745133 absolute error = 3.2526007247420147141028163745133 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.05 y[1] (analytic) = 0 y[1] (numeric) = -3.2527265198399055294169859820764 absolute error = 3.2527265198399055294169859820764 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2460.5MB, alloc=4.6MB, time=177.57 x[1] = 3.051 y[1] (analytic) = 0 y[1] (numeric) = -3.2528519782093096164800006160792 absolute error = 3.2528519782093096164800006160792 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.052 y[1] (analytic) = 0 y[1] (numeric) = -3.2529770999152266653790972385946 absolute error = 3.2529770999152266653790972385946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.053 y[1] (analytic) = 0 y[1] (numeric) = -3.2531018850225574992794506083064 absolute error = 3.2531018850225574992794506083064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.054 y[1] (analytic) = 0 y[1] (numeric) = -3.2532263335961041623247779530153 absolute error = 3.2532263335961041623247779530153 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2464.3MB, alloc=4.6MB, time=177.72 x[1] = 3.055 y[1] (analytic) = 0 y[1] (numeric) = -3.2533504457005700073866459542333 absolute error = 3.2533504457005700073866459542333 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.056 y[1] (analytic) = 0 y[1] (numeric) = -3.2534742214005597836627316279523 absolute error = 3.2534742214005597836627316279523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.057 y[1] (analytic) = 0 y[1] (numeric) = -3.2535976607605797241242881374604 absolute error = 3.2535976607605797241242881374604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.058 y[1] (analytic) = 0 y[1] (numeric) = -3.2537207638450376328130660271591 absolute error = 3.2537207638450376328130660271591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.059 y[1] (analytic) = 0 y[1] (numeric) = -3.2538435307182429719879398206982 absolute error = 3.2538435307182429719879398206982 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2468.1MB, alloc=4.6MB, time=177.87 x[1] = 3.06 y[1] (analytic) = 0 y[1] (numeric) = -3.2539659614444069491214893823954 absolute error = 3.2539659614444069491214893823954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.061 y[1] (analytic) = 0 y[1] (numeric) = -3.2540880560876426037467848978357 absolute error = 3.2540880560876426037467848978357 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.062 y[1] (analytic) = 0 y[1] (numeric) = -3.2542098147119648941546237877504 absolute error = 3.2542098147119648941546237877504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.063 y[1] (analytic) = 0 y[1] (numeric) = -3.2543312373812907839414673287541 absolute error = 3.2543312373812907839414673287541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2472.0MB, alloc=4.6MB, time=178.02 x[1] = 3.064 y[1] (analytic) = 0 y[1] (numeric) = -3.2544523241594393284083242152642 absolute error = 3.2544523241594393284083242152642 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.065 y[1] (analytic) = 0 y[1] (numeric) = -3.2545730751101317608108277589423 absolute error = 3.2545730751101317608108277589423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.066 y[1] (analytic) = 0 y[1] (numeric) = -3.2546934902969915784607528852718 absolute error = 3.2546934902969915784607528852718 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.067 y[1] (analytic) = 0 y[1] (numeric) = -3.2548135697835446286792185514206 absolute error = 3.2548135697835446286792185514206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.068 y[1] (analytic) = 0 y[1] (numeric) = -3.2549333136332191946018206753288 absolute error = 3.2549333136332191946018206753288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2475.8MB, alloc=4.6MB, time=178.18 x[1] = 3.069 y[1] (analytic) = 0 y[1] (numeric) = -3.2550527219093460808359401330049 absolute error = 3.2550527219093460808359401330049 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.07 y[1] (analytic) = 0 y[1] (numeric) = -3.2551717946751586989704698493035 absolute error = 3.2551717946751586989704698493035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.071 y[1] (analytic) = 0 y[1] (numeric) = -3.2552905319937931529382044769971 absolute error = 3.2552905319937931529382044769971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.072 y[1] (analytic) = 0 y[1] (numeric) = -3.2554089339282883242311356297316 absolute error = 3.2554089339282883242311356297316 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.073 y[1] (analytic) = 0 y[1] (numeric) = -3.2555270005415859569688951064743 absolute error = 3.2555270005415859569688951064743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2479.6MB, alloc=4.6MB, time=178.33 x[1] = 3.074 y[1] (analytic) = 0 y[1] (numeric) = -3.2556447318965307428205880183152 absolute error = 3.2556447318965307428205880183152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.075 y[1] (analytic) = 0 y[1] (numeric) = -3.2557621280558704057802572029685 absolute error = 3.2557621280558704057802572029685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.076 y[1] (analytic) = 0 y[1] (numeric) = -3.2558791890822557867962197880337 absolute error = 3.2558791890822557867962197880337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.077 y[1] (analytic) = 0 y[1] (numeric) = -3.2559959150382409282545162410149 absolute error = 3.2559959150382409282545162410149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2483.4MB, alloc=4.6MB, time=178.48 x[1] = 3.078 y[1] (analytic) = 0 y[1] (numeric) = -3.2561123059862831583167117222589 absolute error = 3.2561123059862831583167117222589 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.079 y[1] (analytic) = 0 y[1] (numeric) = -3.2562283619887431751122890363496 absolute error = 3.2562283619887431751122890363496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.08 y[1] (analytic) = 0 y[1] (numeric) = -3.2563440831078851307858719580932 absolute error = 3.2563440831078851307858719580932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.081 y[1] (analytic) = 0 y[1] (numeric) = -3.2564594694058767153995171910342 absolute error = 3.2564594694058767153995171910342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.082 y[1] (analytic) = 0 y[1] (numeric) = -3.2565745209447892406903126994582 absolute error = 3.2565745209447892406903126994582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2487.2MB, alloc=4.6MB, time=178.63 x[1] = 3.083 y[1] (analytic) = 0 y[1] (numeric) = -3.2566892377865977236835196390572 absolute error = 3.2566892377865977236835196390572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.084 y[1] (analytic) = 0 y[1] (numeric) = -3.2568036199931809701614945968579 absolute error = 3.2568036199931809701614945968579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.085 y[1] (analytic) = 0 y[1] (numeric) = -3.2569176676263216579886283376337 absolute error = 3.2569176676263216579886283376337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.086 y[1] (analytic) = 0 y[1] (numeric) = -3.2570313807477064202925367418398 absolute error = 3.2570313807477064202925367418398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2491.0MB, alloc=4.6MB, time=178.79 x[1] = 3.087 y[1] (analytic) = 0 y[1] (numeric) = -3.25714475941892592850173910912 absolute error = 3.25714475941892592850173910912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.088 y[1] (analytic) = 0 y[1] (numeric) = -3.2572578037014749752400584916335 absolute error = 3.2572578037014749752400584916335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.089 y[1] (analytic) = 0 y[1] (numeric) = -3.257370513656752557077978212835 absolute error = 3.257370513656752557077978212835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.09 y[1] (analytic) = 0 y[1] (numeric) = -3.257482889346061957141188219909 absolute error = 3.257482889346061957141188219909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.091 y[1] (analytic) = 0 y[1] (numeric) = -3.2575949308306108275765544118066 absolute error = 3.2575949308306108275765544118066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2494.9MB, alloc=4.6MB, time=178.94 x[1] = 3.092 y[1] (analytic) = 0 y[1] (numeric) = -3.2577066381715112718757435797581 absolute error = 3.2577066381715112718757435797581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.093 y[1] (analytic) = 0 y[1] (numeric) = -3.2578180114297799270567360932292 absolute error = 3.2578180114297799270567360932292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.094 y[1] (analytic) = 0 y[1] (numeric) = -3.2579290506663380457034579615581 absolute error = 3.2579290506663380457034579615581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.095 y[1] (analytic) = 0 y[1] (numeric) = -3.2580397559420115778637633999435 absolute error = 3.2580397559420115778637633999435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.096 y[1] (analytic) = 0 y[1] (numeric) = -3.2581501273175312528059985280499 absolute error = 3.2581501273175312528059985280499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2498.7MB, alloc=4.6MB, time=179.09 x[1] = 3.097 y[1] (analytic) = 0 y[1] (numeric) = -3.2582601648535326606343763302572 absolute error = 3.2582601648535326606343763302572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.098 y[1] (analytic) = 0 y[1] (numeric) = -3.2583698686105563337633925084944 absolute error = 3.2583698686105563337633925084944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.099 y[1] (analytic) = 0 y[1] (numeric) = -3.2584792386490478282515113616685 absolute error = 3.2584792386490478282515113616685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.1 y[1] (analytic) = 0 y[1] (numeric) = -3.2585882750293578049943503299198 absolute error = 3.2585882750293578049943503299198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2502.5MB, alloc=4.6MB, time=179.25 x[1] = 3.101 y[1] (analytic) = 0 y[1] (numeric) = -3.2586969778117421107775913473044 absolute error = 3.2586969778117421107775913473044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.102 y[1] (analytic) = 0 y[1] (numeric) = -3.2588053470563618591898466530174 absolute error = 3.2588053470563618591898466530174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.103 y[1] (analytic) = 0 y[1] (numeric) = -3.258913382823283511395706218927 absolute error = 3.258913382823283511395706218927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.104 y[1] (analytic) = 0 y[1] (numeric) = -3.2590210851724789567691934599842 absolute error = 3.2590210851724789567691934599842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.105 y[1] (analytic) = 0 y[1] (numeric) = -3.2591284541638255933878554040019 absolute error = 3.2591284541638255933878554040019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2506.3MB, alloc=4.6MB, time=179.40 x[1] = 3.106 y[1] (analytic) = 0 y[1] (numeric) = -3.2592354898571064083877130083608 absolute error = 3.2592354898571064083877130083608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.107 y[1] (analytic) = 0 y[1] (numeric) = -3.2593421923120100581792968233928 absolute error = 3.2593421923120100581792968233928 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.108 y[1] (analytic) = 0 y[1] (numeric) = -3.259448561588130948524992715509 absolute error = 3.259448561588130948524992715509 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.109 y[1] (analytic) = 0 y[1] (numeric) = -3.2595545977449693144779218775847 absolute error = 3.2595545977449693144779218775847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2510.1MB, alloc=4.6MB, time=179.56 x[1] = 3.11 y[1] (analytic) = 0 y[1] (numeric) = -3.2596603008419313001825788696748 absolute error = 3.2596603008419313001825788696748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.111 y[1] (analytic) = 0 y[1] (numeric) = -3.2597656709383290385374509498138 absolute error = 3.2597656709383290385374509498138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.112 y[1] (analytic) = 0 y[1] (numeric) = -3.2598707080933807307198414724501 absolute error = 3.2598707080933807307198414724501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.113 y[1] (analytic) = 0 y[1] (numeric) = -3.2599754123662107255731196509701 absolute error = 3.2599754123662107255731196509701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.114 y[1] (analytic) = 0 y[1] (numeric) = -3.2600797838158495988566185007818 absolute error = 3.2600797838158495988566185007818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2513.9MB, alloc=4.6MB, time=179.71 x[1] = 3.115 y[1] (analytic) = 0 y[1] (numeric) = -3.2601838225012342323584023005489 absolute error = 3.2601838225012342323584023005489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.116 y[1] (analytic) = 0 y[1] (numeric) = -3.260287528481207892871124431388 absolute error = 3.260287528481207892871124431388 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.117 y[1] (analytic) = 0 y[1] (numeric) = -3.2603909018145203110311959771653 absolute error = 3.2603909018145203110311959771653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.118 y[1] (analytic) = 0 y[1] (numeric) = -3.2604939425598277600214849934454 absolute error = 3.2604939425598277600214849934454 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.119 y[1] (analytic) = 0 y[1] (numeric) = -3.2605966507756931341377658781608 absolute error = 3.2605966507756931341377658781608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2517.7MB, alloc=4.6MB, time=179.86 x[1] = 3.12 y[1] (analytic) = 0 y[1] (numeric) = -3.2606990265205860272191378036703 absolute error = 3.2606990265205860272191378036703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.121 y[1] (analytic) = 0 y[1] (numeric) = -3.2608010698528828109426306975676 absolute error = 3.2608010698528828109426306975676 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.122 y[1] (analytic) = 0 y[1] (numeric) = -3.2609027808308667129822167883772 absolute error = 3.2609027808308667129822167883772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.123 y[1] (analytic) = 0 y[1] (numeric) = -3.2610041595127278950324452621302 absolute error = 3.2610041595127278950324452621302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. memory used=2521.6MB, alloc=4.6MB, time=180.02 x[1] = 3.124 y[1] (analytic) = 0 y[1] (numeric) = -3.2611052059565635306969171067527 absolute error = 3.2611052059565635306969171067527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.125 y[1] (analytic) = 0 y[1] (numeric) = -3.2612059202203778832418167532084 absolute error = 3.2612059202203778832418167532084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.126 y[1] (analytic) = 0 y[1] (numeric) = -3.2613063023620823832147166554264 absolute error = 3.2613063023620823832147166554264 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of tan of full series. x[1] = 3.127 y[1] (analytic) = 0 y[1] (numeric) = -3.2614063524394957059288704852 absolute error = 3.2614063524394957059288704852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE Finished! Maximum Time Reached before Solution Completed! diff ( y , x , 1 ) = tan(sqrt(2.0*x + 3.0)); Iterations = 3028 Total Elapsed Time = 3 Minutes 0 Seconds Elapsed Time(since restart) = 2 Minutes 59 Seconds Expected Time Remaining = 1 Minutes 51 Seconds Optimized Time Remaining = 1 Minutes 51 Seconds Expected Total Time = 4 Minutes 51 Seconds Time to Timeout Unknown Percent Done = 61.82 % > quit memory used=2524.4MB, alloc=4.6MB, time=180.12