|\^/| 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr <> 0.0) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if relerr <> 0. then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > elif > ((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) then # if number 2 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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_0D1[1] * array_x[1]; > #emit pre sin 1 $eq_no = 1 > array_tmp2[1] := sin(array_tmp1[1]); > array_tmp2_g[1] := cos(array_tmp1[1]); > #emit pre mult CONST - LINEAR $eq_no = 1 i = 1 > array_tmp3[1] := array_const_0D2[1] * array_x[1]; > #emit pre sin 1 $eq_no = 1 > array_tmp4[1] := sin(array_tmp3[1]); > array_tmp4_g[1] := cos(array_tmp3[1]); > omniout_str(ALWAYS,"WARNING: no analytic solution found for testing of expt of full series to full series power."); > #emit pre expt FULL - FULL $eq_no = 1 i = 1 > array_tmp5[1] := expt(array_tmp2[1] , array_tmp4[1] ) ; > array_tmp5_a1[1] := ln(array_tmp2[1] ) ; > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp6[1] := array_const_0D0[1] + array_tmp5[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_tmp6[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h; > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_const_0D1[1] * array_x[2]; > #emit pre sin ID_LINEAR iii = 2 $eq_no = 1 > array_tmp2[2] := array_tmp2_g[1] * array_tmp1[2] / 1; > array_tmp2_g[2] := -array_tmp2[1] * array_tmp1[2] / 1; > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp3[2] := array_const_0D2[1] * array_x[2]; > #emit pre sin ID_LINEAR iii = 2 $eq_no = 1 > array_tmp4[2] := array_tmp4_g[1] * array_tmp3[2] / 1; > array_tmp4_g[2] := -array_tmp4[1] * array_tmp3[2] / 1; > #emit pre expt FULL - FULL $eq_no = 1 i = 2 > array_tmp5_a1[2] := (array_tmp2[2] -att(1,array_tmp2,array_tmp5_a1,2))/ array_tmp2[1]; > array_tmp5_a2[1] := ats(2,array_tmp2,array_tmp5_a1,1) * 1 / glob_h; > array_tmp5[2] := ats(1,array_tmp5,array_tmp5_a2,1)*glob_h/1; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp6[2] := array_tmp5[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_tmp6[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h; > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre sin ID_LINEAR iii = 3 $eq_no = 1 > array_tmp2[3] := array_tmp2_g[2] * array_tmp1[2] / 2; > array_tmp2_g[3] := -array_tmp2[2] * array_tmp1[2] / 2; > #emit pre sin ID_LINEAR iii = 3 $eq_no = 1 > array_tmp4[3] := array_tmp4_g[2] * array_tmp3[2] / 2; > array_tmp4_g[3] := -array_tmp4[2] * array_tmp3[2] / 2; > #emit pre expt FULL - FULL $eq_no = 1 i = 3 > array_tmp5_a1[3] := (array_tmp2[3] -att(2,array_tmp2,array_tmp5_a1,2))/ array_tmp2[1]; > array_tmp5_a2[2] := ats(3,array_tmp2,array_tmp5_a1,1) * 2 / glob_h; > array_tmp5[3] := ats(2,array_tmp5,array_tmp5_a2,1)*glob_h/2; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp6[3] := array_tmp5[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_tmp6[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre sin ID_LINEAR iii = 4 $eq_no = 1 > array_tmp2[4] := array_tmp2_g[3] * array_tmp1[2] / 3; > array_tmp2_g[4] := -array_tmp2[3] * array_tmp1[2] / 3; > #emit pre sin ID_LINEAR iii = 4 $eq_no = 1 > array_tmp4[4] := array_tmp4_g[3] * array_tmp3[2] / 3; > array_tmp4_g[4] := -array_tmp4[3] * array_tmp3[2] / 3; > #emit pre expt FULL - FULL $eq_no = 1 i = 4 > array_tmp5_a1[4] := (array_tmp2[4] -att(3,array_tmp2,array_tmp5_a1,2))/ array_tmp2[1]; > array_tmp5_a2[3] := ats(4,array_tmp2,array_tmp5_a1,1) * 3 / glob_h; > array_tmp5[4] := ats(3,array_tmp5,array_tmp5_a2,1)*glob_h/3; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp6[4] := array_tmp5[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_tmp6[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre sin ID_LINEAR iii = 5 $eq_no = 1 > array_tmp2[5] := array_tmp2_g[4] * array_tmp1[2] / 4; > array_tmp2_g[5] := -array_tmp2[4] * array_tmp1[2] / 4; > #emit pre sin ID_LINEAR iii = 5 $eq_no = 1 > array_tmp4[5] := array_tmp4_g[4] * array_tmp3[2] / 4; > array_tmp4_g[5] := -array_tmp4[4] * array_tmp3[2] / 4; > #emit pre expt FULL - FULL $eq_no = 1 i = 5 > array_tmp5_a1[5] := (array_tmp2[5] -att(4,array_tmp2,array_tmp5_a1,2))/ array_tmp2[1]; > array_tmp5_a2[4] := ats(5,array_tmp2,array_tmp5_a1,1) * 4 / glob_h; > array_tmp5[5] := ats(4,array_tmp5,array_tmp5_a2,1)*glob_h/4; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp6[5] := array_tmp5[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_tmp6[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit sin LINEAR $eq_no = 1 > array_tmp2[kkk] := array_tmp2_g[kkk - 1] * array_tmp1[2] / (kkk - 1); > array_tmp2_g[kkk] := -array_tmp2[kkk - 1] * array_tmp1[2] / (kkk - 1); > #emit sin LINEAR $eq_no = 1 > array_tmp4[kkk] := array_tmp4_g[kkk - 1] * array_tmp3[2] / (kkk - 1); > array_tmp4_g[kkk] := -array_tmp4[kkk - 1] * array_tmp3[2] / (kkk - 1); > #emit expt FULL FULL $eq_no = 1 i = 1 > array_tmp5_a1[kkk] := (array_tmp2[kkk] - att(kkk-1,array_tmp2,array_tmp5_a1,2))/array_tmp2[1]; > array_tmp5_a2[kkk-1] := ats(kkk,array_tmp2,array_tmp5_a1,1) * (kkk-1)/glob_h; > array_tmp5[kkk] := ats(kkk-1,array_tmp5,array_tmp5_a2,1) * glob_h/(kkk-1); > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp6[kkk] := array_tmp5[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_tmp6[kkk] * expt(glob_h , (order_d)) / factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 2; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 1) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary / glob_h; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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_0D1[1]*array_x[1]; array_tmp2[1] := sin(array_tmp1[1]); array_tmp2_g[1] := cos(array_tmp1[1]); array_tmp3[1] := array_const_0D2[1]*array_x[1]; array_tmp4[1] := sin(array_tmp3[1]); array_tmp4_g[1] := cos(array_tmp3[1]); omniout_str(ALWAYS, "WARNING: no analytic solution found for testing \ of expt of full series to full series power."); array_tmp5[1] := expt(array_tmp2[1], array_tmp4[1]); array_tmp5_a1[1] := ln(array_tmp2[1]); array_tmp6[1] := array_const_0D0[1] + array_tmp5[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp6[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_const_0D1[1]*array_x[2]; array_tmp2[2] := array_tmp2_g[1]*array_tmp1[2]; array_tmp2_g[2] := -array_tmp2[1]*array_tmp1[2]; array_tmp3[2] := array_const_0D2[1]*array_x[2]; array_tmp4[2] := array_tmp4_g[1]*array_tmp3[2]; array_tmp4_g[2] := -array_tmp4[1]*array_tmp3[2]; array_tmp5_a1[2] := ( array_tmp2[2] - att(1, array_tmp2, array_tmp5_a1, 2))/array_tmp2[1] ; array_tmp5_a2[1] := ats(2, array_tmp2, array_tmp5_a1, 1)/glob_h; array_tmp5[2] := ats(1, array_tmp5, array_tmp5_a2, 1)*glob_h; array_tmp6[2] := array_tmp5[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp6[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp2[3] := 1/2*array_tmp2_g[2]*array_tmp1[2]; array_tmp2_g[3] := -1/2*array_tmp2[2]*array_tmp1[2]; array_tmp4[3] := 1/2*array_tmp4_g[2]*array_tmp3[2]; array_tmp4_g[3] := -1/2*array_tmp4[2]*array_tmp3[2]; array_tmp5_a1[3] := ( array_tmp2[3] - att(2, array_tmp2, array_tmp5_a1, 2))/array_tmp2[1] ; array_tmp5_a2[2] := 2*ats(3, array_tmp2, array_tmp5_a1, 1)/glob_h; array_tmp5[3] := 1/2*ats(2, array_tmp5, array_tmp5_a2, 1)*glob_h; array_tmp6[3] := array_tmp5[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp6[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp2[4] := 1/3*array_tmp2_g[3]*array_tmp1[2]; array_tmp2_g[4] := -1/3*array_tmp2[3]*array_tmp1[2]; array_tmp4[4] := 1/3*array_tmp4_g[3]*array_tmp3[2]; array_tmp4_g[4] := -1/3*array_tmp4[3]*array_tmp3[2]; array_tmp5_a1[4] := ( array_tmp2[4] - att(3, array_tmp2, array_tmp5_a1, 2))/array_tmp2[1] ; array_tmp5_a2[3] := 3*ats(4, array_tmp2, array_tmp5_a1, 1)/glob_h; array_tmp5[4] := 1/3*ats(3, array_tmp5, array_tmp5_a2, 1)*glob_h; array_tmp6[4] := array_tmp5[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp6[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp2[5] := 1/4*array_tmp2_g[4]*array_tmp1[2]; array_tmp2_g[5] := -1/4*array_tmp2[4]*array_tmp1[2]; array_tmp4[5] := 1/4*array_tmp4_g[4]*array_tmp3[2]; array_tmp4_g[5] := -1/4*array_tmp4[4]*array_tmp3[2]; array_tmp5_a1[5] := ( array_tmp2[5] - att(4, array_tmp2, array_tmp5_a1, 2))/array_tmp2[1] ; array_tmp5_a2[4] := 4*ats(5, array_tmp2, array_tmp5_a1, 1)/glob_h; array_tmp5[5] := 1/4*ats(4, array_tmp5, array_tmp5_a2, 1)*glob_h; array_tmp6[5] := array_tmp5[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp6[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp2[kkk] := array_tmp2_g[kkk - 1]*array_tmp1[2]/(kkk - 1); array_tmp2_g[kkk] := -array_tmp2[kkk - 1]*array_tmp1[2]/(kkk - 1); array_tmp4[kkk] := array_tmp4_g[kkk - 1]*array_tmp3[2]/(kkk - 1); array_tmp4_g[kkk] := -array_tmp4[kkk - 1]*array_tmp3[2]/(kkk - 1); array_tmp5_a1[kkk] := ( array_tmp2[kkk] - att(kkk - 1, array_tmp2, array_tmp5_a1, 2))/ array_tmp2[1]; array_tmp5_a2[kkk - 1] := ats(kkk, array_tmp2, array_tmp5_a1, 1)*(kkk - 1)/glob_h; array_tmp5[kkk] := ats(kkk - 1, array_tmp5, array_tmp5_a2, 1)*glob_h/(kkk - 1); array_tmp6[kkk] := array_tmp5[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_tmp6[kkk]*expt(glob_h, order_d)/ factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 2; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 1 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary/glob_h end if; array_y_higher[adj3, term] := temporary end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc > # End Function number 12 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 0.; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 15 > # Begin Function number 16 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc > # End Function number 16 > # Begin Function number 17 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc > # End Function number 17 > # Begin Function number 18 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc > # End Function number 18 > # Begin Function number 19 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error <> 0.0) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if rel_error <> 0. then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(0.0); > end; exact_soln_y := proc(x) return 0. end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0D1, > array_const_0D2, > #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_g, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4, > array_tmp5_c1, > array_tmp5_a1, > array_tmp5_a2, > array_tmp5, > array_tmp6, > 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/expt_sin_sinpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x));"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.1;"); > omniout_str(ALWAYS,"x_end := 5.0 ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.05;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 1000000;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(0.0);"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2_g:= 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:= Array(0..(max_terms + 1),[]); > array_tmp5_c1:= Array(0..(max_terms + 1),[]); > array_tmp5_a1:= Array(0..(max_terms + 1),[]); > array_tmp5_a2:= Array(0..(max_terms + 1),[]); > array_tmp5:= Array(0..(max_terms + 1),[]); > array_tmp6:= 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_g[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[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5_c1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp6[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_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_g := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2_g[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 := 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_c1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5_c1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp5_a1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp5_a2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp5 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp6 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp6[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_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_0D1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D1[1] := 0.1; > array_const_0D2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D2[1] := 0.2; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.1; > x_end := 5.0 ; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.05; > glob_look_poles := true; > glob_max_iter := 1000000; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > glob_abserr := expt(10.0 , (glob_log10_abserr)); > glob_relerr := expt(10.0 , (glob_log10_relerr)); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_log10normmin := -glob_large_float ; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 3 > tmp := omniabs(array_y_higher[1,1]); > log10norm := (log10(tmp)); > if (log10norm < glob_log10normmin) then # if number 4 > glob_log10normmin := log10norm; > fi;# end if 4 > fi;# end if 3; > display_alot(current_iter) > ; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y > order_diff := 1; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > display_alot(current_iter) > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x));"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2012-12-14T22:37:17-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"expt_sin_sin") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x));") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 151 ") > ; > logitem_str(html_log_file,"expt_sin_sin diffeq.mxt") > ; > logitem_str(html_log_file,"expt_sin_sin maple results") > ; > logitem_str(html_log_file,"Languages compared") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, 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_g, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4, array_tmp5_c1, array_tmp5_a1, array_tmp5_a2, array_tmp5, array_tmp6, 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/expt_sin_sinpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x));"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.1;"); omniout_str(ALWAYS, "x_end := 5.0 ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.05;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 1000000;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(0.0);"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2_g := 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 := Array(0 .. max_terms + 1, []); array_tmp5_c1 := Array(0 .. max_terms + 1, []); array_tmp5_a1 := Array(0 .. max_terms + 1, []); array_tmp5_a2 := Array(0 .. max_terms + 1, []); array_tmp5 := Array(0 .. max_terms + 1, []); array_tmp6 := 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_g[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[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5_c1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5_a1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5_a2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp6[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_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_g := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2_g[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 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4[term] := 0.; term := term + 1 end do; array_tmp5_c1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5_c1[term] := 0.; term := term + 1 end do; array_tmp5_a1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5_a1[term] := 0.; term := term + 1 end do; array_tmp5_a2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5_a2[term] := 0.; term := term + 1 end do; array_tmp5 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5[term] := 0.; term := term + 1 end do; array_tmp6 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp6[term] := 0.; term := term + 1 end do; array_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_0D1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D1[term] := 0.; term := term + 1 end do; array_const_0D1[1] := 0.1; array_const_0D2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D2[term] := 0.; term := term + 1 end do; array_const_0D2[1] := 0.2; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := 0.1; x_end := 5.0; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); glob_abserr := expt(10.0, glob_log10_abserr); glob_relerr := expt(10.0, glob_log10_relerr); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_log10normmin := -glob_large_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); log10norm := log10(tmp); if log10norm < glob_log10normmin then glob_log10normmin := log10norm end if end if; display_alot(current_iter); glob_clock_sec := elapsed_time_seconds(); glob_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 1; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do; display_alot(current_iter) end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x));"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2012-12-14T22:37:17-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "expt_sin_sin"); logitem_str(html_log_file, "diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x));") ; logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 151 "); logitem_str(html_log_file, "expt_sin_sin diffeq.mxt"); logitem_str(html_log_file, "expt_sin_sin maple results"); logitem_str(html_log_file, "Languages compared"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/expt_sin_sinpostode.ode################# diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x)); ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.1; x_end := 5.0 ; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(0.0); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 WARNING: no analytic solution found for testing of expt of full series to full series power. 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 = 4.1430193161952170827494090332751e-57 max_value3 = 4.1430193161952170827494090332751e-57 value3 = 4.1430193161952170827494090332751e-57 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 expt of full series to full series power. NO POLE x[1] = 0.101 y[1] (analytic) = 0 y[1] (numeric) = 0.0009118519153970612996580072962041 absolute error = 0.0009118519153970612996580072962041 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.102 y[1] (analytic) = 0 y[1] (numeric) = 0.001823048099481808316493103316859 absolute error = 0.001823048099481808316493103316859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=3.8MB, alloc=2.8MB, time=0.34 NO POLE x[1] = 0.103 y[1] (analytic) = 0 y[1] (numeric) = 0.0027335908250373267819362246747941 absolute error = 0.0027335908250373267819362246747941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.104 y[1] (analytic) = 0 y[1] (numeric) = 0.0036434823430715586393993323049738 absolute error = 0.0036434823430715586393993323049738 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.105 y[1] (analytic) = 0 y[1] (numeric) = 0.0045527248832241035651554592694115 absolute error = 0.0045527248832241035651554592694115 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.106 y[1] (analytic) = 0 y[1] (numeric) = 0.005461320654161548220648729497862 absolute error = 0.005461320654161548220648729497862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.107 y[1] (analytic) = 0 y[1] (numeric) = 0.0063692718439617540422899452573925 absolute error = 0.0063692718439617540422899452573925 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=7.6MB, alloc=3.8MB, time=0.69 NO POLE x[1] = 0.108 y[1] (analytic) = 0 y[1] (numeric) = 0.0072765806204875142595786928293704 absolute error = 0.0072765806204875142595786928293704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.109 y[1] (analytic) = 0 y[1] (numeric) = 0.0081832491317499718363525507612134 absolute error = 0.0081832491317499718363525507612134 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.11 y[1] (analytic) = 0 y[1] (numeric) = 0.0090892795062621720810177794427458 absolute error = 0.0090892795062621720810177794427458 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.111 y[1] (analytic) = 0 y[1] (numeric) = 0.0099946738533831067029456757286149 absolute error = 0.0099946738533831067029456757286149 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.112 y[1] (analytic) = 0 y[1] (numeric) = 0.01089943426365259004183989928353 absolute error = 0.01089943426365259004183989928353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.113 y[1] (analytic) = 0 y[1] (numeric) = 0.011803562809117293007251208481591 absolute error = 0.011803562809117293007251208481591 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=11.4MB, alloc=3.9MB, time=1.07 NO POLE x[1] = 0.114 y[1] (analytic) = 0 y[1] (numeric) = 0.012707061543648245883083865975861 absolute error = 0.012707061543648245883083865975861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.115 y[1] (analytic) = 0 y[1] (numeric) = 0.01360993250325010752721309281898 absolute error = 0.01360993250325010752721309281898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.116 y[1] (analytic) = 0 y[1] (numeric) = 0.014512177706362485582994131810446 absolute error = 0.014512177706362485582994131810446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.117 y[1] (analytic) = 0 y[1] (numeric) = 0.015413799154153580074467503539144 absolute error = 0.015413799154153580074467503539144 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.118 y[1] (analytic) = 0 y[1] (numeric) = 0.016314798830806411140379733873855 absolute error = 0.016314798830806411140379733873855 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=15.2MB, alloc=4.0MB, time=1.45 NO POLE x[1] = 0.119 y[1] (analytic) = 0 y[1] (numeric) = 0.017215178703797880636397146208991 absolute error = 0.017215178703797880636397146208991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.12 y[1] (analytic) = 0 y[1] (numeric) = 0.018114940724170906865263436983615 absolute error = 0.018114940724170906865263436983615 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.121 y[1] (analytic) = 0 y[1] (numeric) = 0.019014086826799861748639565810937 absolute error = 0.019014086826799861748639565810937 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.122 y[1] (analytic) = 0 y[1] (numeric) = 0.019912618930649530301621726166402 absolute error = 0.019912618930649530301621726166402 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.123 y[1] (analytic) = 0 y[1] (numeric) = 0.020810538939027803283109888085109 absolute error = 0.020810538939027803283109888085109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.124 y[1] (analytic) = 0 y[1] (numeric) = 0.021707848739832305345794523400916 absolute error = 0.021707848739832305345794523400916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=19.0MB, alloc=4.1MB, time=1.84 NO POLE x[1] = 0.125 y[1] (analytic) = 0 y[1] (numeric) = 0.022604550205791152873755732554912 absolute error = 0.022604550205791152873755732554912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.126 y[1] (analytic) = 0 y[1] (numeric) = 0.023500645194698027950330551126208 absolute error = 0.023500645194698027950330551126208 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.127 y[1] (analytic) = 0 y[1] (numeric) = 0.02439613554964174752228058756752 absolute error = 0.02439613554964174752228058756752 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.128 y[1] (analytic) = 0 y[1] (numeric) = 0.025291023099230499798034640848972 absolute error = 0.025291023099230499798034640848972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.129 y[1] (analytic) = 0 y[1] (numeric) = 0.026185309657810913218815596985279 absolute error = 0.026185309657810913218815596985279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.13 y[1] (analytic) = 0 y[1] (numeric) = 0.027078997025682116953899253773857 absolute error = 0.027078997025682116953899253773857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=22.8MB, alloc=4.1MB, time=2.22 NO POLE x[1] = 0.131 y[1] (analytic) = 0 y[1] (numeric) = 0.027972086989304945778309522593102 absolute error = 0.027972086989304945778309522593102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.132 y[1] (analytic) = 0 y[1] (numeric) = 0.028864581321506436377171645482221 absolute error = 0.028864581321506436377171645482221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.133 y[1] (analytic) = 0 y[1] (numeric) = 0.029756481781679756570921544642295 absolute error = 0.029756481781679756570921544642295 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.134 y[1] (analytic) = 0 y[1] (numeric) = 0.030647790115979703655696114312332 absolute error = 0.030647790115979703655696114312332 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.135 y[1] (analytic) = 0 y[1] (numeric) = 0.031538508057513902990429048002743 absolute error = 0.031538508057513902990429048002743 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.136 y[1] (analytic) = 0 y[1] (numeric) = 0.032428637326529833124148887008239 absolute error = 0.032428637326529833124148887008239 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=26.7MB, alloc=4.1MB, time=2.61 NO POLE x[1] = 0.137 y[1] (analytic) = 0 y[1] (numeric) = 0.033318179630597799132144435184257 absolute error = 0.033318179630597799132144435184257 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.138 y[1] (analytic) = 0 y[1] (numeric) = 0.034207136664789971407128667249563 absolute error = 0.034207136664789971407128667249563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.139 y[1] (analytic) = 0 y[1] (numeric) = 0.035095510111855602921029755293514 absolute error = 0.035095510111855602921029755293514 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.14 y[1] (analytic) = 0 y[1] (numeric) = 0.035983301642392533924892605479002 absolute error = 0.035983301642392533924892605479002 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.141 y[1] (analytic) = 0 y[1] (numeric) = 0.036870512915015089179465722009897 absolute error = 0.036870512915015089179465722009897 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=30.5MB, alloc=4.1MB, time=2.99 NO POLE x[1] = 0.142 y[1] (analytic) = 0 y[1] (numeric) = 0.037757145576518469098773901483077 absolute error = 0.037757145576518469098773901483077 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.143 y[1] (analytic) = 0 y[1] (numeric) = 0.03864320126203973263522010974254 absolute error = 0.03864320126203973263522010974254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.144 y[1] (analytic) = 0 y[1] (numeric) = 0.039528681595215466329857497634859 absolute error = 0.039528681595215466329857497634859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.145 y[1] (analytic) = 0 y[1] (numeric) = 0.040413588188336230688188677238562 absolute error = 0.040413588188336230688188677238562 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.146 y[1] (analytic) = 0 y[1] (numeric) = 0.041297922642497871913347617098998 absolute error = 0.041297922642497871913347617098998 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.147 y[1] (analytic) = 0 y[1] (numeric) = 0.04218168654774978402833835224801 absolute error = 0.04218168654774978402833835224801 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=34.3MB, alloc=4.1MB, time=3.38 NO POLE x[1] = 0.148 y[1] (analytic) = 0 y[1] (numeric) = 0.04306488148324020354103468444095 absolute error = 0.04306488148324020354103468444095 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.149 y[1] (analytic) = 0 y[1] (numeric) = 0.043947509017358616044107280010962 absolute error = 0.043947509017358616044107280010962 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.15 y[1] (analytic) = 0 y[1] (numeric) = 0.04482957070787535149147073170903 absolute error = 0.04482957070787535149147073170903 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.151 y[1] (analytic) = 0 y[1] (numeric) = 0.045711068102078442348056810019493 absolute error = 0.045711068102078442348056810019493 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.152 y[1] (analytic) = 0 y[1] (numeric) = 0.046592002736907816365819333068062 absolute error = 0.046592002736907816365819333068062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.153 y[1] (analytic) = 0 y[1] (numeric) = 0.047472376139086893391217069801937 absolute error = 0.047472376139086893391217069801937 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=38.1MB, alloc=4.1MB, time=3.78 NO POLE x[1] = 0.154 y[1] (analytic) = 0 y[1] (numeric) = 0.048352189825251653353603077292928 absolute error = 0.048352189825251653353603077292928 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.155 y[1] (analytic) = 0 y[1] (numeric) = 0.049231445302077240415799837809034 absolute error = 0.049231445302077240415799837809034 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.156 y[1] (analytic) = 0 y[1] (numeric) = 0.050110144066402166183702939661928 absolute error = 0.050110144066402166183702939661928 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.157 y[1] (analytic) = 0 y[1] (numeric) = 0.050988287605350172867278281718787 absolute error = 0.050988287605350172867278281718787 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.158 y[1] (analytic) = 0 y[1] (numeric) = 0.05186587739644981535723667437298 absolute error = 0.05186587739644981535723667437298 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.159 y[1] (analytic) = 0 y[1] (numeric) = 0.052742914907751819326603500328911 absolute error = 0.052742914907751819326603500328911 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=41.9MB, alloc=4.1MB, time=4.17 NO POLE x[1] = 0.16 y[1] (analytic) = 0 y[1] (numeric) = 0.053619401597944270681138241863138 absolute error = 0.053619401597944270681138241863138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.161 y[1] (analytic) = 0 y[1] (numeric) = 0.054495338916465689964048260541241 absolute error = 0.054495338916465689964048260541241 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.162 y[1] (analytic) = 0 y[1] (numeric) = 0.055370728303616043665783952364728 absolute error = 0.055370728303616043665783952364728 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.163 y[1] (analytic) = 0 y[1] (numeric) = 0.056245571190665742796142222213506 absolute error = 0.056245571190665742796142222213506 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.164 y[1] (analytic) = 0 y[1] (numeric) = 0.057119868999962677540821341477936 absolute error = 0.057119868999962677540821341477936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.165 y[1] (analytic) = 0 y[1] (numeric) = 0.057993623145037335345469744149782 absolute error = 0.057993623145037335345469744149782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=45.7MB, alloc=4.2MB, time=4.57 NO POLE x[1] = 0.166 y[1] (analytic) = 0 y[1] (numeric) = 0.058866835030706048344782127664377 absolute error = 0.058866835030706048344782127664377 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.167 y[1] (analytic) = 0 y[1] (numeric) = 0.059739506053172414680060620186713 absolute error = 0.059739506053172414680060620186713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.168 y[1] (analytic) = 0 y[1] (numeric) = 0.060611637600126936923727170719786 absolute error = 0.060611637600126936923727170719786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.169 y[1] (analytic) = 0 y[1] (numeric) = 0.06148323105084491955149847882018 absolute error = 0.06148323105084491955149847882018 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.17 y[1] (analytic) = 0 y[1] (numeric) = 0.062354287776282666170366369772574 absolute error = 0.062354287776282666170366369772574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=49.5MB, alloc=4.2MB, time=4.97 NO POLE x[1] = 0.171 y[1] (analytic) = 0 y[1] (numeric) = 0.063224809139172016021305964566526 absolute error = 0.063224809139172016021305964566526 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.172 y[1] (analytic) = 0 y[1] (numeric) = 0.064094796494113258127989647484847 absolute error = 0.064094796494113258127989647484847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.173 y[1] (analytic) = 0 y[1] (numeric) = 0.064964251187666460355027431218672 absolute error = 0.064964251187666460355027431218672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.174 y[1] (analytic) = 0 y[1] (numeric) = 0.065833174558441249569772683732313 absolute error = 0.065833174558441249569772683732313 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.175 y[1] (analytic) = 0 y[1] (numeric) = 0.06670156793718507806898918461571 absolute error = 0.06670156793718507806898918461571 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.176 y[1] (analytic) = 0 y[1] (numeric) = 0.067569432646870010434204231601262 absolute error = 0.067569432646870010434204231601262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=53.4MB, alloc=4.2MB, time=5.37 NO POLE x[1] = 0.177 y[1] (analytic) = 0 y[1] (numeric) = 0.068436770002778064015972775236051 absolute error = 0.068436770002778064015972775236051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.178 y[1] (analytic) = 0 y[1] (numeric) = 0.069303581312585135316212330850749 absolute error = 0.069303581312585135316212330850749 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.179 y[1] (analytic) = 0 y[1] (numeric) = 0.07016986787644354363796076637472 absolute error = 0.07016986787644354363796076637472 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.18 y[1] (analytic) = 0 y[1] (numeric) = 0.071035630987063222502139090985155 absolute error = 0.071035630987063222502139090985155 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.181 y[1] (analytic) = 0 y[1] (numeric) = 0.071900871929791588490003353544348 absolute error = 0.071900871929791588490003353544348 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.182 y[1] (analytic) = 0 y[1] (numeric) = 0.072765591982692116356829468632868 absolute error = 0.072765591982692116356829468632868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=57.2MB, alloc=4.2MB, time=5.77 NO POLE x[1] = 0.183 y[1] (analytic) = 0 y[1] (numeric) = 0.073629792416621648475926929296454 absolute error = 0.073629792416621648475926929296454 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.184 y[1] (analytic) = 0 y[1] (numeric) = 0.074493474495306465911303179806887 absolute error = 0.074493474495306465911303179806887 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.185 y[1] (analytic) = 0 y[1] (numeric) = 0.075356639475417147681225405642681 absolute error = 0.075356639475417147681225405642681 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.186 y[1] (analytic) = 0 y[1] (numeric) = 0.076219288606642244062618251551221 absolute error = 0.076219288606642244062618251551221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.187 y[1] (analytic) = 0 y[1] (numeric) = 0.077081423131760789096802167764906 absolute error = 0.077081423131760789096802167764906 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.188 y[1] (analytic) = 0 y[1] (numeric) = 0.077943044286713676789663512430065 absolute error = 0.077943044286713676789663512430065 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=61.0MB, alloc=4.2MB, time=6.17 NO POLE x[1] = 0.189 y[1] (analytic) = 0 y[1] (numeric) = 0.078804153300673924853136319989609 absolute error = 0.078804153300673924853136319989609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.19 y[1] (analytic) = 0 y[1] (numeric) = 0.079664751396115849209083478211231 absolute error = 0.079664751396115849209083478211231 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.191 y[1] (analytic) = 0 y[1] (numeric) = 0.080524839788883171870541583011016 absolute error = 0.080524839788883171870541583011016 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.192 y[1] (analytic) = 0 y[1] (numeric) = 0.081384419688256084228119994918566 absolute error = 0.081384419688256084228119994918566 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.193 y[1] (analytic) = 0 y[1] (numeric) = 0.082243492297017287200431559903461 absolute error = 0.082243492297017287200431559903461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.194 y[1] (analytic) = 0 y[1] (numeric) = 0.083102058811517029156119562472898 absolute error = 0.083102058811517029156119562472898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=64.8MB, alloc=4.2MB, time=6.56 NO POLE x[1] = 0.195 y[1] (analytic) = 0 y[1] (numeric) = 0.083960120421737161980699435730517 absolute error = 0.083960120421737161980699435730517 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.196 y[1] (analytic) = 0 y[1] (numeric) = 0.084817678311354235143447194684035 absolute error = 0.084817678311354235143447194684035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.197 y[1] (analytic) = 0 y[1] (numeric) = 0.085674733657801647117356875571553 absolute error = 0.085674733657801647117356875571553 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.198 y[1] (analytic) = 0 y[1] (numeric) = 0.086531287632330873018197471625071 absolute error = 0.086531287632330873018197471625071 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.199 y[1] (analytic) = 0 y[1] (numeric) = 0.087387341400071786856389523499421 absolute error = 0.087387341400071786856389523499421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=68.6MB, alloc=4.2MB, time=6.95 NO POLE x[1] = 0.2 y[1] (analytic) = 0 y[1] (numeric) = 0.088242896120092096337277752734874 absolute error = 0.088242896120092096337277752734874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.201 y[1] (analytic) = 0 y[1] (numeric) = 0.089097952945455907700904585890935 absolute error = 0.089097952945455907700904585890935 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.202 y[1] (analytic) = 0 y[1] (numeric) = 0.089952513023281437661115416470008 absolute error = 0.089952513023281437661115416470008 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.203 y[1] (analytic) = 0 y[1] (numeric) = 0.090806577494797889085294072036586 absolute error = 0.090806577494797889085294072036586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.204 y[1] (analytic) = 0 y[1] (numeric) = 0.091660147495401506649798213464052 absolute error = 0.091660147495401506649798213464052 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.205 y[1] (analytic) = 0 y[1] (numeric) = 0.092513224154710828311818457384713 absolute error = 0.092513224154710828311818457384713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=72.4MB, alloc=4.2MB, time=7.34 NO POLE x[1] = 0.206 y[1] (analytic) = 0 y[1] (numeric) = 0.093365808596621148055517441690877 absolute error = 0.093365808596621148055517441690877 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.207 y[1] (analytic) = 0 y[1] (numeric) = 0.094217901939358204998527086195302 absolute error = 0.094217901939358204998527086195302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.208 y[1] (analytic) = 0 y[1] (numeric) = 0.095069505295531113583820172811862 absolute error = 0.095069505295531113583820172811862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.209 y[1] (analytic) = 0 y[1] (numeric) = 0.095920619772184549231266667557097 absolute error = 0.095920619772184549231266667557097 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.21 y[1] (analytic) = 0 y[1] (numeric) = 0.096771246470850203482490247762221 absolute error = 0.096771246470850203482490247762221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.211 y[1] (analytic) = 0 y[1] (numeric) = 0.097621386487597522341623743326654 absolute error = 0.097621386487597522341623743326654 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=76.2MB, alloc=4.2MB, time=7.73 NO POLE x[1] = 0.212 y[1] (analytic) = 0 y[1] (numeric) = 0.0984710409130837411929036954262 absolute error = 0.0984710409130837411929036954262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.213 y[1] (analytic) = 0 y[1] (numeric) = 0.099320210832603229363436074447027 absolute error = 0.099320210832603229363436074447027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.214 y[1] (analytic) = 0 y[1] (numeric) = 0.10016889732613615709561101685196 absolute error = 0.10016889732613615709561101685196 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.215 y[1] (analytic) = 0 y[1] (numeric) = 0.10101710146839649739825893025073 absolute error = 0.10101710146839649739825893025073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.216 y[1] (analytic) = 0 y[1] (numeric) = 0.10186482432887937495844876308009 absolute error = 0.10186482432887937495844876308009 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.217 y[1] (analytic) = 0 y[1] (numeric) = 0.1027120669719077740165670788656 absolute error = 0.1027120669719077740165670788656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=80.1MB, alloc=4.3MB, time=8.13 NO POLE x[1] = 0.218 y[1] (analytic) = 0 y[1] (numeric) = 0.10355883045667861683572898617515 absolute error = 0.10355883045667861683572898617515 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.219 y[1] (analytic) = 0 y[1] (numeric) = 0.10440511583730822413241345614467 absolute error = 0.10440511583730822413241345614467 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.22 y[1] (analytic) = 0 y[1] (numeric) = 0.1052509241628771685782495598065 absolute error = 0.1052509241628771685782495598065 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.221 y[1] (analytic) = 0 y[1] (numeric) = 0.10609625647747453223287870958357 absolute error = 0.10609625647747453223287870958357 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.222 y[1] (analytic) = 0 y[1] (numeric) = 0.10694111382024157852456135859609 absolute error = 0.10694111382024157852456135859609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.223 y[1] (analytic) = 0 y[1] (numeric) = 0.10778549722541484915847296302407 absolute error = 0.10778549722541484915847296302407 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=83.9MB, alloc=4.3MB, time=8.52 NO POLE x[1] = 0.224 y[1] (analytic) = 0 y[1] (numeric) = 0.10862940772236869610223909320306 absolute error = 0.10862940772236869610223909320306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.225 y[1] (analytic) = 0 y[1] (numeric) = 0.10947284633565725857399641207284 absolute error = 0.10947284633565725857399641207284 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.226 y[1] (analytic) = 0 y[1] (numeric) = 0.11031581408505589473994483515693 absolute error = 0.11031581408505589473994483515693 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.227 y[1] (analytic) = 0 y[1] (numeric) = 0.11115831198560207761579326312539 absolute error = 0.11115831198560207761579326312539 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.228 y[1] (analytic) = 0 y[1] (numeric) = 0.11200034104763576445951999785806 absolute error = 0.11200034104763576445951999785806 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=87.7MB, alloc=4.3MB, time=8.91 NO POLE x[1] = 0.229 y[1] (analytic) = 0 y[1] (numeric) = 0.11284190227683924874129866646031 absolute error = 0.11284190227683924874129866646031 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.23 y[1] (analytic) = 0 y[1] (numeric) = 0.11368299667427650358011648168356 absolute error = 0.11368299667427650358011648168356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.231 y[1] (analytic) = 0 y[1] (numeric) = 0.11452362523643202534537497224645 absolute error = 0.11452362523643202534537497224645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.232 y[1] (analytic) = 0 y[1] (numeric) = 0.11536378895524918593546042471842 absolute error = 0.11536378895524918593546042471842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.233 y[1] (analytic) = 0 y[1] (numeric) = 0.11620348881816810206375397078614 absolute error = 0.11620348881816810206375397078614 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.234 y[1] (analytic) = 0 y[1] (numeric) = 0.1170427258081630297056763859541 absolute error = 0.1170427258081630297056763859541 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=91.5MB, alloc=4.3MB, time=9.31 NO POLE x[1] = 0.235 y[1] (analytic) = 0 y[1] (numeric) = 0.11788150090377929168799197442823 absolute error = 0.11788150090377929168799197442823 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.236 y[1] (analytic) = 0 y[1] (numeric) = 0.11871981507916974623359583020395 absolute error = 0.11871981507916974623359583020395 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.237 y[1] (analytic) = 0 y[1] (numeric) = 0.11955766930413080411125023134478 absolute error = 0.11955766930413080411125023134478 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.238 y[1] (analytic) = 0 y[1] (numeric) = 0.12039506454413800188009423205124 absolute error = 0.12039506454413800188009423205124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.239 y[1] (analytic) = 0 y[1] (numeric) = 0.12123200176038113856310513419784 absolute error = 0.12123200176038113856310513419784 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.24 y[1] (analytic) = 0 y[1] (numeric) = 0.12206848190979898293192493810148 absolute error = 0.12206848190979898293192493810148 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=95.3MB, alloc=4.3MB, time=9.70 NO POLE x[1] = 0.241 y[1] (analytic) = 0 y[1] (numeric) = 0.12290450594511355843746645506485 absolute error = 0.12290450594511355843746645506485 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.242 y[1] (analytic) = 0 y[1] (numeric) = 0.12374007481486401267637360319934 absolute error = 0.12374007481486401267637360319934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.243 y[1] (analytic) = 0 y[1] (numeric) = 0.12457518946344007814262318407257 absolute error = 0.12457518946344007814262318407257 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.244 y[1] (analytic) = 0 y[1] (numeric) = 0.12540985083111513087621928846568 absolute error = 0.12540985083111513087621928846568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.245 y[1] (analytic) = 0 y[1] (numeric) = 0.12624405985407885348694787203823 absolute error = 0.12624405985407885348694787203823 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.246 y[1] (analytic) = 0 y[1] (numeric) = 0.12707781746446950890043265044228 absolute error = 0.12707781746446950890043265044228 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=99.1MB, alloc=4.3MB, time=10.10 NO POLE x[1] = 0.247 y[1] (analytic) = 0 y[1] (numeric) = 0.12791112459040583104617205312462 absolute error = 0.12791112459040583104617205312462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.248 y[1] (analytic) = 0 y[1] (numeric) = 0.12874398215601853858275128831781 absolute error = 0.12874398215601853858275128831781 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.249 y[1] (analytic) = 0 y[1] (numeric) = 0.12957639108148147763392722118982 absolute error = 0.12957639108148147763392722118982 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.25 y[1] (analytic) = 0 y[1] (numeric) = 0.1304083522830423993906931319481 absolute error = 0.1304083522830423993906931319481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.251 y[1] (analytic) = 0 y[1] (numeric) = 0.13123986667305337831866454714318 absolute error = 0.13123986667305337831866454714318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=103.0MB, alloc=4.3MB, time=10.49 NO POLE x[1] = 0.252 y[1] (analytic) = 0 y[1] (numeric) = 0.13207093516000087659710784343551 absolute error = 0.13207093516000087659710784343551 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.253 y[1] (analytic) = 0 y[1] (numeric) = 0.13290155864853546030558430665232 absolute error = 0.13290155864853546030558430665232 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.254 y[1] (analytic) = 0 y[1] (numeric) = 0.13373173803950117276643028003682 absolute error = 0.13373173803950117276643028003682 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.255 y[1] (analytic) = 0 y[1] (numeric) = 0.13456147422996457034606775156961 absolute error = 0.13456147422996457034606775156961 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.256 y[1] (analytic) = 0 y[1] (numeric) = 0.1353907681132434259153702346706 absolute error = 0.1353907681132434259153702346706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.257 y[1] (analytic) = 0 y[1] (numeric) = 0.13621962057893510506892926108867 absolute error = 0.13621962057893510506892926108867 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=106.8MB, alloc=4.3MB, time=10.88 NO POLE x[1] = 0.258 y[1] (analytic) = 0 y[1] (numeric) = 0.1370480325129446201050124739886 absolute error = 0.1370480325129446201050124739886 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.259 y[1] (analytic) = 0 y[1] (numeric) = 0.13787600479751236667221242864728 absolute error = 0.13787600479751236667221242864728 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.26 y[1] (analytic) = 0 y[1] (numeric) = 0.13870353831124154789519495476471 absolute error = 0.13870353831124154789519495476471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.261 y[1] (analytic) = 0 y[1] (numeric) = 0.13953063392912529070050834996122 absolute error = 0.13953063392912529070050834996122 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.262 y[1] (analytic) = 0 y[1] (numeric) = 0.14035729252257345897405260099028 absolute error = 0.14035729252257345897405260099028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.263 y[1] (analytic) = 0 y[1] (numeric) = 0.14118351495943916809447584889519 absolute error = 0.14118351495943916809447584889519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=110.6MB, alloc=4.3MB, time=11.28 NO POLE x[1] = 0.264 y[1] (analytic) = 0 y[1] (numeric) = 0.14200930210404500530140968769475 absolute error = 0.14200930210404500530140968769475 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.265 y[1] (analytic) = 0 y[1] (numeric) = 0.14283465481720896027402349655987 absolute error = 0.14283465481720896027402349655987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.266 y[1] (analytic) = 0 y[1] (numeric) = 0.14365957395627007021382030368328 absolute error = 0.14365957395627007021382030368328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.267 y[1] (analytic) = 0 y[1] (numeric) = 0.14448406037511378364586363156751 absolute error = 0.14448406037511378364586363156751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.268 y[1] (analytic) = 0 y[1] (numeric) = 0.14530811492419704707466880733174 absolute error = 0.14530811492419704707466880733174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.269 y[1] (analytic) = 0 y[1] (numeric) = 0.14613173845057311855476718155929 absolute error = 0.14613173845057311855476718155929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=114.4MB, alloc=4.3MB, time=11.69 NO POLE x[1] = 0.27 y[1] (analytic) = 0 y[1] (numeric) = 0.14695493179791611216141279628129 absolute error = 0.14695493179791611216141279628129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.271 y[1] (analytic) = 0 y[1] (numeric) = 0.14777769580654527727400480997637 absolute error = 0.14777769580654527727400480997637 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.272 y[1] (analytic) = 0 y[1] (numeric) = 0.14860003131344901651350323618287 absolute error = 0.14860003131344901651350323618287 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.273 y[1] (analytic) = 0 y[1] (numeric) = 0.14942193915230864610537932967201 absolute error = 0.14942193915230864610537932967201 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.274 y[1] (analytic) = 0 y[1] (numeric) = 0.15024342015352190237142550266521 absolute error = 0.15024342015352190237142550266521 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=118.2MB, alloc=4.3MB, time=12.09 NO POLE x[1] = 0.275 y[1] (analytic) = 0 y[1] (numeric) = 0.15106447514422619798701437202891 absolute error = 0.15106447514422619798701437202891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.276 y[1] (analytic) = 0 y[1] (numeric) = 0.15188510494832163157510494392857 absolute error = 0.15188510494832163157510494392857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.277 y[1] (analytic) = 0 y[1] (numeric) = 0.15270531038649375414440963432918 absolute error = 0.15270531038649375414440963432918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.278 y[1] (analytic) = 0 y[1] (numeric) = 0.15352509227623609581662344827039 absolute error = 0.15352509227623609581662344827039 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.279 y[1] (analytic) = 0 y[1] (numeric) = 0.15434445143187245622644185751068 absolute error = 0.15434445143187245622644185751068 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.28 y[1] (analytic) = 0 y[1] (numeric) = 0.15516338866457896191822336504174 absolute error = 0.15516338866457896191822336504174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=122.0MB, alloc=4.3MB, time=12.49 NO POLE x[1] = 0.281 y[1] (analytic) = 0 y[1] (numeric) = 0.1559819047824058940045540154251 absolute error = 0.1559819047824058940045540154251 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.282 y[1] (analytic) = 0 y[1] (numeric) = 0.15680000059029928929461271008097 absolute error = 0.15680000059029928929461271008097 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.283 y[1] (analytic) = 0 y[1] (numeric) = 0.15761767689012231804408751438045 absolute error = 0.15761767689012231804408751438045 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.284 y[1] (analytic) = 0 y[1] (numeric) = 0.15843493448067644142342445789969 absolute error = 0.15843493448067644142342445789969 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.285 y[1] (analytic) = 0 y[1] (numeric) = 0.15925177415772235174737272393662 absolute error = 0.15925177415772235174737272393662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.286 y[1] (analytic) = 0 y[1] (numeric) = 0.16006819671400069845609550075712 absolute error = 0.16006819671400069845609550075712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=125.8MB, alloc=4.3MB, time=12.89 NO POLE x[1] = 0.287 y[1] (analytic) = 0 y[1] (numeric) = 0.16088420293925260278651680900899 absolute error = 0.16088420293925260278651680900899 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.288 y[1] (analytic) = 0 y[1] (numeric) = 0.16169979362023996402204476942368 absolute error = 0.16169979362023996402204476942368 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.289 y[1] (analytic) = 0 y[1] (numeric) = 0.16251496954076556015932520892703 absolute error = 0.16251496954076556015932520892703 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.29 y[1] (analytic) = 0 y[1] (numeric) = 0.16332973148169294578221110991023 absolute error = 0.16332973148169294578221110991023 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.291 y[1] (analytic) = 0 y[1] (numeric) = 0.1641440802209661498856587646607 absolute error = 0.1641440802209661498856587646607 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.292 y[1] (analytic) = 0 y[1] (numeric) = 0.16495801653362917634575685122601 absolute error = 0.16495801653362917634575685122601 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=129.7MB, alloc=4.3MB, time=13.28 NO POLE x[1] = 0.293 y[1] (analytic) = 0 y[1] (numeric) = 0.16577154119184530968653689256615 absolute error = 0.16577154119184530968653689256615 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.294 y[1] (analytic) = 0 y[1] (numeric) = 0.1665846549649162287495802200661 absolute error = 0.1665846549649162287495802200661 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.295 y[1] (analytic) = 0 y[1] (numeric) = 0.16739735861930093082870576653129 absolute error = 0.16739735861930093082870576653129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.296 y[1] (analytic) = 0 y[1] (numeric) = 0.16820965291863446878917348423238 absolute error = 0.16820965291863446878917348423238 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.297 y[1] (analytic) = 0 y[1] (numeric) = 0.1690215386237465036488492144279 absolute error = 0.1690215386237465036488492144279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=133.5MB, alloc=4.3MB, time=13.68 NO POLE x[1] = 0.298 y[1] (analytic) = 0 y[1] (numeric) = 0.16983301649267967505762827527349 absolute error = 0.16983301649267967505762827527349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.299 y[1] (analytic) = 0 y[1] (numeric) = 0.17064408728070779207108727278677 absolute error = 0.17064408728070779207108727278677 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.3 y[1] (analytic) = 0 y[1] (numeric) = 0.17145475174035384657480758454751 absolute error = 0.17145475174035384657480758454751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.301 y[1] (analytic) = 0 y[1] (numeric) = 0.1722650106214078516770710347329 absolute error = 0.1722650106214078516770710347329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.302 y[1] (analytic) = 0 y[1] (numeric) = 0.17307486467094450734965038016795 absolute error = 0.17307486467094450734965038016795 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.303 y[1] (analytic) = 0 y[1] (numeric) = 0.17388431463334069555918674555003 absolute error = 0.17388431463334069555918674555003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=137.3MB, alloc=4.3MB, time=14.08 NO POLE x[1] = 0.304 y[1] (analytic) = 0 y[1] (numeric) = 0.17469336125029280709514592999262 absolute error = 0.17469336125029280709514592999262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.305 y[1] (analytic) = 0 y[1] (numeric) = 0.17550200526083390226455885384648 absolute error = 0.17550200526083390226455885384648 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.306 y[1] (analytic) = 0 y[1] (numeric) = 0.17631024740135070758866205771816 absolute error = 0.17631024740135070758866205771816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.307 y[1] (analytic) = 0 y[1] (numeric) = 0.17711808840560045060214626126082 absolute error = 0.17711808840560045060214626126082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.308 y[1] (analytic) = 0 y[1] (numeric) = 0.17792552900472753482197910506186 absolute error = 0.17792552900472753482197910506186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.309 y[1] (analytic) = 0 y[1] (numeric) = 0.17873256992728005691967730109304 absolute error = 0.17873256992728005691967730109304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=141.1MB, alloc=4.3MB, time=14.48 NO POLE x[1] = 0.31 y[1] (analytic) = 0 y[1] (numeric) = 0.17953921189922616809844885933374 absolute error = 0.17953921189922616809844885933374 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.311 y[1] (analytic) = 0 y[1] (numeric) = 0.18034545564397028164479357005153 absolute error = 0.18034545564397028164479357005153 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.312 y[1] (analytic) = 0 y[1] (numeric) = 0.18115130188236912859292559781641 absolute error = 0.18115130188236912859292559781641 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.313 y[1] (analytic) = 0 y[1] (numeric) = 0.18195675133274766340975233439281 absolute error = 0.18195675133274766340975233439281 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.314 y[1] (analytic) = 0 y[1] (numeric) = 0.18276180471091482157809535755705 absolute error = 0.18276180471091482157809535755705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.315 y[1] (analytic) = 0 y[1] (numeric) = 0.18356646273017913092635958074763 absolute error = 0.18356646273017913092635958074763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=144.9MB, alloc=4.3MB, time=14.87 NO POLE x[1] = 0.316 y[1] (analytic) = 0 y[1] (numeric) = 0.18437072610136417852393290862387 absolute error = 0.18437072610136417852393290862387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.317 y[1] (analytic) = 0 y[1] (numeric) = 0.18517459553282393493321870643933 absolute error = 0.18517459553282393493321870643933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.318 y[1] (analytic) = 0 y[1] (numeric) = 0.18597807173045793758135522404742 absolute error = 0.18597807173045793758135522404742 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.319 y[1] (analytic) = 0 y[1] (numeric) = 0.18678115539772633498734816417119 absolute error = 0.18678115539772633498734816417119 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.32 y[1] (analytic) = 0 y[1] (numeric) = 0.18758384723566479355352351512673 absolute error = 0.18758384723566479355352351512673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=148.7MB, alloc=4.3MB, time=15.27 NO POLE x[1] = 0.321 y[1] (analytic) = 0 y[1] (numeric) = 0.18838614794289926860388652822272 absolute error = 0.18838614794289926860388652822272 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.322 y[1] (analytic) = 0 y[1] (numeric) = 0.18918805821566064132613853131527 absolute error = 0.18918805821566064132613853131527 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.323 y[1] (analytic) = 0 y[1] (numeric) = 0.18998957874779922324874562061446 absolute error = 0.18998957874779922324874562061446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.324 y[1] (analytic) = 0 y[1] (numeric) = 0.19079071023079912985956190994672 absolute error = 0.19079071023079912985956190994672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.325 y[1] (analytic) = 0 y[1] (numeric) = 0.19159145335379252494807493923107 absolute error = 0.19159145335379252494807493923107 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.326 y[1] (analytic) = 0 y[1] (numeric) = 0.1923918088035737372293522957639 absolute error = 0.1923918088035737372293522957639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=152.5MB, alloc=4.3MB, time=15.67 NO POLE x[1] = 0.327 y[1] (analytic) = 0 y[1] (numeric) = 0.19319177726461325078421696500657 absolute error = 0.19319177726461325078421696500657 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.328 y[1] (analytic) = 0 y[1] (numeric) = 0.19399135941907157082705511553103 absolute error = 0.19399135941907157082705511553103 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.329 y[1] (analytic) = 0 y[1] (numeric) = 0.19479055594681296628995487448338 absolute error = 0.19479055594681296628995487448338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.33 y[1] (analytic) = 0 y[1] (numeric) = 0.19558936752541909068957932340434 absolute error = 0.19558936752541909068957932340434 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.331 y[1] (analytic) = 0 y[1] (numeric) = 0.19638779483020248272128281072364 absolute error = 0.19638779483020248272128281072364 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.332 y[1] (analytic) = 0 y[1] (numeric) = 0.19718583853421994800347831536661 absolute error = 0.19718583853421994800347831536661 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=156.4MB, alloc=4.3MB, time=16.06 NO POLE x[1] = 0.333 y[1] (analytic) = 0 y[1] (numeric) = 0.1979834993082858233741467861402 absolute error = 0.1979834993082858233741467861402 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.334 y[1] (analytic) = 0 y[1] (numeric) = 0.19878077782098512512063910075401 absolute error = 0.19878077782098512512063910075401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.335 y[1] (analytic) = 0 y[1] (numeric) = 0.19957767473868658250354970444725 absolute error = 0.19957767473868658250354970444725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.336 y[1] (analytic) = 0 y[1] (numeric) = 0.20037419072555555791543045520635 absolute error = 0.20037419072555555791543045520635 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.337 y[1] (analytic) = 0 y[1] (numeric) = 0.20117032644356685499545625548124 absolute error = 0.20117032644356685499545625548124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.338 y[1] (analytic) = 0 y[1] (numeric) = 0.20196608255251741600184340037938 absolute error = 0.20196608255251741600184340037938 relative error = -1 % Correct digits = -1 h = 0.001 memory used=160.2MB, alloc=4.3MB, time=16.45 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.339 y[1] (analytic) = 0 y[1] (numeric) = 0.20276145971003890972485010232547 absolute error = 0.20276145971003890972485010232547 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.34 y[1] (analytic) = 0 y[1] (numeric) = 0.20355645857161021120454941192827 absolute error = 0.20355645857161021120454941192827 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.341 y[1] (analytic) = 0 y[1] (numeric) = 0.20435107979056977449925095671632 absolute error = 0.20435107979056977449925095671632 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.342 y[1] (analytic) = 0 y[1] (numeric) = 0.20514532401812789973245293425275 absolute error = 0.20514532401812789973245293425275 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.343 y[1] (analytic) = 0 y[1] (numeric) = 0.20593919190337889562852314886907 absolute error = 0.20593919190337889562852314886907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=164.0MB, alloc=4.3MB, time=16.85 NO POLE x[1] = 0.344 y[1] (analytic) = 0 y[1] (numeric) = 0.20673268409331313872993124698331 absolute error = 0.20673268409331313872993124698331 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.345 y[1] (analytic) = 0 y[1] (numeric) = 0.20752580123282903047177750605463 absolute error = 0.20752580123282903047177750605463 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.346 y[1] (analytic) = 0 y[1] (numeric) = 0.20831854396474485327258053049015 absolute error = 0.20831854396474485327258053049015 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.347 y[1] (analytic) = 0 y[1] (numeric) = 0.2091109129298105267837911068381 absolute error = 0.2091109129298105267837911068381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.348 y[1] (analytic) = 0 y[1] (numeric) = 0.2099029087667192654242865081301 absolute error = 0.2099029087667192654242865081301 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.349 y[1] (analytic) = 0 y[1] (numeric) = 0.21069453211211913831016308272697 absolute error = 0.21069453211211913831016308272697 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=167.8MB, alloc=4.3MB, time=17.25 NO POLE x[1] = 0.35 y[1] (analytic) = 0 y[1] (numeric) = 0.21148578360062453267447951424482 absolute error = 0.21148578360062453267447951424482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.351 y[1] (analytic) = 0 y[1] (numeric) = 0.21227666386482752185620331889056 absolute error = 0.21227666386482752185620331889056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.352 y[1] (analytic) = 0 y[1] (numeric) = 0.21306717353530913892247369945418 absolute error = 0.21306717353530913892247369945418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.353 y[1] (analytic) = 0 y[1] (numeric) = 0.2138573132406505569734096646641 absolute error = 0.2138573132406505569734096646641 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.354 y[1] (analytic) = 0 y[1] (numeric) = 0.21464708360744417716405832770757 absolute error = 0.21464708360744417716405832770757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.355 y[1] (analytic) = 0 y[1] (numeric) = 0.21543648526030462546368961034149 absolute error = 0.21543648526030462546368961034149 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=171.6MB, alloc=4.3MB, time=17.64 NO POLE x[1] = 0.356 y[1] (analytic) = 0 y[1] (numeric) = 0.21622551882187965915849540100777 absolute error = 0.21622551882187965915849540100777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.357 y[1] (analytic) = 0 y[1] (numeric) = 0.21701418491286098408983885573856 absolute error = 0.21701418491286098408983885573856 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.358 y[1] (analytic) = 0 y[1] (numeric) = 0.21780248415199498360651840289834 absolute error = 0.21780248415199498360651840289834 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.359 y[1] (analytic) = 0 y[1] (numeric) = 0.21859041715609336019605663234363 absolute error = 0.21859041715609336019605663234363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.36 y[1] (analytic) = 0 y[1] (numeric) = 0.21937798454004369074679223110234 absolute error = 0.21937798454004369074679223110234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=175.4MB, alloc=4.3MB, time=18.03 x[1] = 0.361 y[1] (analytic) = 0 y[1] (numeric) = 0.22016518691681989637953918275816 absolute error = 0.22016518691681989637953918275816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.362 y[1] (analytic) = 0 y[1] (numeric) = 0.22095202489749262777477738240351 absolute error = 0.22095202489749262777477738240351 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.363 y[1] (analytic) = 0 y[1] (numeric) = 0.22173849909123956690874853144757 absolute error = 0.22173849909123956690874853144757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.364 y[1] (analytic) = 0 y[1] (numeric) = 0.22252461010535564609944665473069 absolute error = 0.22252461010535564609944665473069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.365 y[1] (analytic) = 0 y[1] (numeric) = 0.22331035854526318525130990193387 absolute error = 0.22331035854526318525130990193387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.366 y[1] (analytic) = 0 y[1] (numeric) = 0.22409574501452194817543561729596 absolute error = 0.22409574501452194817543561729596 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=179.2MB, alloc=4.3MB, time=18.43 NO POLE x[1] = 0.367 y[1] (analytic) = 0 y[1] (numeric) = 0.22488077011483911885035023066773 absolute error = 0.22488077011483911885035023066773 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.368 y[1] (analytic) = 0 y[1] (numeric) = 0.22566543444607919847676566480194 absolute error = 0.22566543444607919847676566480194 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.369 y[1] (analytic) = 0 y[1] (numeric) = 0.2264497386062738241683410737391 absolute error = 0.2264497386062738241683410737391 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.37 y[1] (analytic) = 0 y[1] (numeric) = 0.22723368319163151010923930788457 absolute error = 0.22723368319163151010923930788457 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.371 y[1] (analytic) = 0 y[1] (numeric) = 0.22801726879654731199821810114304 absolute error = 0.22801726879654731199821810114304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.372 y[1] (analytic) = 0 y[1] (numeric) = 0.22880049601361241558812322628898 absolute error = 0.22880049601361241558812322628898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=183.1MB, alloc=4.3MB, time=18.83 NO POLE x[1] = 0.373 y[1] (analytic) = 0 y[1] (numeric) = 0.22958336543362365011895147058704 absolute error = 0.22958336543362365011895147058704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.374 y[1] (analytic) = 0 y[1] (numeric) = 0.23036587764559292743212201876027 absolute error = 0.23036587764559292743212201876027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.375 y[1] (analytic) = 0 y[1] (numeric) = 0.23114803323675660754323253752487 absolute error = 0.23114803323675660754323253752487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.376 y[1] (analytic) = 0 y[1] (numeric) = 0.2319298327925847914403778447811 absolute error = 0.2319298327925847914403778447811 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.377 y[1] (analytic) = 0 y[1] (numeric) = 0.23271127689679054186507149221456 absolute error = 0.23271127689679054186507149221456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.378 y[1] (analytic) = 0 y[1] (numeric) = 0.23349236613133903282293093134378 absolute error = 0.23349236613133903282293093134378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=186.9MB, alloc=4.3MB, time=19.22 NO POLE x[1] = 0.379 y[1] (analytic) = 0 y[1] (numeric) = 0.23427310107645662856156227103861 absolute error = 0.23427310107645662856156227103861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.38 y[1] (analytic) = 0 y[1] (numeric) = 0.23505348231063989274350813111587 absolute error = 0.23505348231063989274350813111587 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.381 y[1] (analytic) = 0 y[1] (numeric) = 0.23583351041066452853269897304403 absolute error = 0.23583351041066452853269897304403 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.382 y[1] (analytic) = 0 y[1] (numeric) = 0.23661318595159425030357182427482 absolute error = 0.23661318595159425030357182427482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.383 y[1] (analytic) = 0 y[1] (numeric) = 0.23739250950678958767288784309343 absolute error = 0.23739250950678958767288784309343 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=190.7MB, alloc=4.3MB, time=19.61 NO POLE x[1] = 0.384 y[1] (analytic) = 0 y[1] (numeric) = 0.2381714816479166225452890872518 absolute error = 0.2381714816479166225452890872518 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.385 y[1] (analytic) = 0 y[1] (numeric) = 0.23895010294495565985478259712992 absolute error = 0.23895010294495565985478259712992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.386 y[1] (analytic) = 0 y[1] (numeric) = 0.23972837396620983267562398060536 absolute error = 0.23972837396620983267562398060536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.387 y[1] (analytic) = 0 y[1] (numeric) = 0.24050629527831364236749064156623 absolute error = 0.24050629527831364236749064156623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.388 y[1] (analytic) = 0 y[1] (numeric) = 0.24128386744624143441138422676611 absolute error = 0.24128386744624143441138422676611 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.389 y[1] (analytic) = 0 y[1] (numeric) = 0.2420610910333158105843804253431 absolute error = 0.2420610910333158105843804253431 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=194.5MB, alloc=4.3MB, time=20.01 NO POLE x[1] = 0.39 y[1] (analytic) = 0 y[1] (numeric) = 0.24283796660121597811314963869249 absolute error = 0.24283796660121597811314963869249 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.391 y[1] (analytic) = 0 y[1] (numeric) = 0.24361449470998603643810198930511 absolute error = 0.24361449470998603643810198930511 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.392 y[1] (analytic) = 0 y[1] (numeric) = 0.244390675918043202212062445327 absolute error = 0.244390675918043202212062445327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.393 y[1] (analytic) = 0 y[1] (numeric) = 0.24516651078218597314955433743327 absolute error = 0.24516651078218597314955433743327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.394 y[1] (analytic) = 0 y[1] (numeric) = 0.24594199985760223133506011439653 absolute error = 0.24594199985760223133506011439653 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.395 y[1] (analytic) = 0 y[1] (numeric) = 0.24671714369787728659103474451799 absolute error = 0.24671714369787728659103474451799 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=198.3MB, alloc=4.3MB, time=20.41 NO POLE x[1] = 0.396 y[1] (analytic) = 0 y[1] (numeric) = 0.24749194285500186049896768474497 absolute error = 0.24749194285500186049896768474497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.397 y[1] (analytic) = 0 y[1] (numeric) = 0.24826639787938001165942181156719 absolute error = 0.24826639787938001165942181156719 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.398 y[1] (analytic) = 0 y[1] (numeric) = 0.24904050931983700276972018136301 absolute error = 0.24904050931983700276972018136301 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.399 y[1] (analytic) = 0 y[1] (numeric) = 0.24981427772362711009080204550775 absolute error = 0.24981427772362711009080204550775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.4 y[1] (analytic) = 0 y[1] (numeric) = 0.25058770363644137586772630818991 absolute error = 0.25058770363644137586772630818991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.401 y[1] (analytic) = 0 y[1] (numeric) = 0.25136078760241530426136174076104 absolute error = 0.25136078760241530426136174076104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=202.1MB, alloc=4.3MB, time=20.81 NO POLE x[1] = 0.402 y[1] (analytic) = 0 y[1] (numeric) = 0.25213353016413650134196695031627 absolute error = 0.25213353016413650134196695031627 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.403 y[1] (analytic) = 0 y[1] (numeric) = 0.25290593186265225968862757248668 absolute error = 0.25290593186265225968862757248668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.404 y[1] (analytic) = 0 y[1] (numeric) = 0.25367799323747708813188168442998 absolute error = 0.25367799323747708813188168442998 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.405 y[1] (analytic) = 0 y[1] (numeric) = 0.25444971482660018717032531315129 absolute error = 0.25444971482660018717032531315129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.406 y[1] (analytic) = 0 y[1] (numeric) = 0.25522109716649287058554647935034 absolute error = 0.25522109716649287058554647935034 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=206.0MB, alloc=4.3MB, time=21.21 NO POLE x[1] = 0.407 y[1] (analytic) = 0 y[1] (numeric) = 0.25599214079211593377338683337448 absolute error = 0.25599214079211593377338683337448 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.408 y[1] (analytic) = 0 y[1] (numeric) = 0.25676284623692696930327300486573 absolute error = 0.25676284623692696930327300486573 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.409 y[1] (analytic) = 0 y[1] (numeric) = 0.25753321403288763021119372983499 absolute error = 0.25753321403288763021119372983499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.41 y[1] (analytic) = 0 y[1] (numeric) = 0.25830324471047084152582209721114 absolute error = 0.25830324471047084152582209721114 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.411 y[1] (analytic) = 0 y[1] (numeric) = 0.25907293879866796052129336028668 absolute error = 0.25907293879866796052129336028668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.412 y[1] (analytic) = 0 y[1] (numeric) = 0.25984229682499588618424620500884 absolute error = 0.25984229682499588618424620500884 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=209.8MB, alloc=4.3MB, time=21.61 NO POLE x[1] = 0.413 y[1] (analytic) = 0 y[1] (numeric) = 0.26061131931550411837691770341306 absolute error = 0.26061131931550411837691770341306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.414 y[1] (analytic) = 0 y[1] (numeric) = 0.26138000679478176717234798128093 absolute error = 0.26138000679478176717234798128093 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.415 y[1] (analytic) = 0 y[1] (numeric) = 0.26214835978596451283209849629401 absolute error = 0.26214835978596451283209849629401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.416 y[1] (analytic) = 0 y[1] (numeric) = 0.26291637881074151689131638527066 absolute error = 0.26291637881074151689131638527066 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.417 y[1] (analytic) = 0 y[1] (numeric) = 0.26368406438936228481048525142157 absolute error = 0.26368406438936228481048525142157 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.418 y[1] (analytic) = 0 y[1] (numeric) = 0.26445141704064348064778870546561 absolute error = 0.26445141704064348064778870546561 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=213.6MB, alloc=4.3MB, time=22.01 NO POLE x[1] = 0.419 y[1] (analytic) = 0 y[1] (numeric) = 0.26521843728197569420067565350914 absolute error = 0.26521843728197569420067565350914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.42 y[1] (analytic) = 0 y[1] (numeric) = 0.26598512562933016105995446994117 absolute error = 0.26598512562933016105995446994117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.421 y[1] (analytic) = 0 y[1] (numeric) = 0.26675148259726543601455555938083 absolute error = 0.26675148259726543601455555938083 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.422 y[1] (analytic) = 0 y[1] (numeric) = 0.26751750869893402023998717558115 absolute error = 0.26751750869893402023998717558115 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.423 y[1] (analytic) = 0 y[1] (numeric) = 0.26828320444608894269846652779765 absolute error = 0.26828320444608894269846652779765 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=217.4MB, alloc=4.3MB, time=22.40 x[1] = 0.424 y[1] (analytic) = 0 y[1] (numeric) = 0.26904857034909029617373598964235 absolute error = 0.26904857034909029617373598964235 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.425 y[1] (analytic) = 0 y[1] (numeric) = 0.26981360691691172835867147707721 absolute error = 0.26981360691691172835867147707721 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.426 y[1] (analytic) = 0 y[1] (numeric) = 0.27057831465714688840895564774659 absolute error = 0.27057831465714688840895564774659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.427 y[1] (analytic) = 0 y[1] (numeric) = 0.27134269407601582937132138122256 absolute error = 0.27134269407601582937132138122256 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.428 y[1] (analytic) = 0 y[1] (numeric) = 0.27210674567837136689016993753836 absolute error = 0.27210674567837136689016993753836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.429 y[1] (analytic) = 0 y[1] (numeric) = 0.27287046996770539459173218846191 absolute error = 0.27287046996770539459173218846191 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=221.2MB, alloc=4.3MB, time=22.81 NO POLE x[1] = 0.43 y[1] (analytic) = 0 y[1] (numeric) = 0.27363386744615515654036932098844 absolute error = 0.27363386744615515654036932098844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.431 y[1] (analytic) = 0 y[1] (numeric) = 0.2743969386145094771571003936 absolute error = 0.2743969386145094771571003936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.432 y[1] (analytic) = 0 y[1] (numeric) = 0.27515968397221494898599707005044 absolute error = 0.27515968397221494898599707005044 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.433 y[1] (analytic) = 0 y[1] (numeric) = 0.27592210401738207868969976850869 absolute error = 0.27592210401738207868969976850869 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.434 y[1] (analytic) = 0 y[1] (numeric) = 0.27668419924679139165098336978242 absolute error = 0.27668419924679139165098336978242 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.435 y[1] (analytic) = 0 y[1] (numeric) = 0.27744597015589949555303356885931 absolute error = 0.27744597015589949555303356885931 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=225.0MB, alloc=4.3MB, time=23.20 NO POLE x[1] = 0.436 y[1] (analytic) = 0 y[1] (numeric) = 0.27820741723884510330688598844397 absolute error = 0.27820741723884510330688598844397 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.437 y[1] (analytic) = 0 y[1] (numeric) = 0.27896854098845501569032837796609 absolute error = 0.27896854098845501569032837796609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.438 y[1] (analytic) = 0 y[1] (numeric) = 0.27972934189625006405847068990059 absolute error = 0.27972934189625006405847068990059 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.439 y[1] (analytic) = 0 y[1] (numeric) = 0.28048982045245101348214766682254 absolute error = 0.28048982045245101348214766682254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.44 y[1] (analytic) = 0 y[1] (numeric) = 0.28124997714598442666633291316931 absolute error = 0.28124997714598442666633291316931 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.441 y[1] (analytic) = 0 y[1] (numeric) = 0.28200981246448848899681140672556 absolute error = 0.28200981246448848899681140672556 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=228.8MB, alloc=4.3MB, time=23.59 NO POLE x[1] = 0.442 y[1] (analytic) = 0 y[1] (numeric) = 0.28276932689431879505947818336525 absolute error = 0.28276932689431879505947818336525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.443 y[1] (analytic) = 0 y[1] (numeric) = 0.28352852092055409697280367670116 absolute error = 0.28352852092055409697280367670116 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.444 y[1] (analytic) = 0 y[1] (numeric) = 0.28428739502700201487023009896678 absolute error = 0.28428739502700201487023009896678 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.445 y[1] (analytic) = 0 y[1] (numeric) = 0.28504594969620470986553751218447 absolute error = 0.28504594969620470986553751218447 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.446 y[1] (analytic) = 0 y[1] (numeric) = 0.28580418540944451983054207519986 absolute error = 0.28580418540944451983054207519986 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=232.7MB, alloc=4.3MB, time=23.99 NO POLE x[1] = 0.447 y[1] (analytic) = 0 y[1] (numeric) = 0.28656210264674955831086159218691 absolute error = 0.28656210264674955831086159218691 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.448 y[1] (analytic) = 0 y[1] (numeric) = 0.28731970188689927690190417513275 absolute error = 0.28731970188689927690190417513275 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.449 y[1] (analytic) = 0 y[1] (numeric) = 0.28807698360742999140370382338452 absolute error = 0.28807698360742999140370382338452 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.45 y[1] (analytic) = 0 y[1] (numeric) = 0.28883394828464037206974128751029 absolute error = 0.28883394828464037206974128751029 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.451 y[1] (analytic) = 0 y[1] (numeric) = 0.28959059639359689826144900529943 absolute error = 0.28959059639359689826144900529943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.452 y[1] (analytic) = 0 y[1] (numeric) = 0.29034692840813927781670447013428 absolute error = 0.29034692840813927781670447013428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=236.5MB, alloc=4.3MB, time=24.38 NO POLE x[1] = 0.453 y[1] (analytic) = 0 y[1] (numeric) = 0.29110294480088583143726642400792 absolute error = 0.29110294480088583143726642400792 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.454 y[1] (analytic) = 0 y[1] (numeric) = 0.29185864604323884239680207907402 absolute error = 0.29185864604323884239680207907402 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.455 y[1] (analytic) = 0 y[1] (numeric) = 0.2926140326053898718678904946164 absolute error = 0.2926140326053898718678904946164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.456 y[1] (analytic) = 0 y[1] (numeric) = 0.29336910495632504016316661419619 absolute error = 0.29336910495632504016316661419619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.457 y[1] (analytic) = 0 y[1] (numeric) = 0.29412386356383027418259165537915 absolute error = 0.29412386356383027418259165537915 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.458 y[1] (analytic) = 0 y[1] (numeric) = 0.29487830889449652135569790797461 absolute error = 0.29487830889449652135569790797461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=240.3MB, alloc=4.3MB, time=24.78 NO POLE x[1] = 0.459 y[1] (analytic) = 0 y[1] (numeric) = 0.29563244141372493036455891322529 absolute error = 0.29563244141372493036455891322529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.46 y[1] (analytic) = 0 y[1] (numeric) = 0.29638626158573199893017885373991 absolute error = 0.29638626158573199893017885373991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.461 y[1] (analytic) = 0 y[1] (numeric) = 0.29713976987355468894197718058576 absolute error = 0.29713976987355468894197718058576 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.462 y[1] (analytic) = 0 y[1] (numeric) = 0.29789296673905550920706544863964 absolute error = 0.29789296673905550920706544863964 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.463 y[1] (analytic) = 0 y[1] (numeric) = 0.29864585264292756609307244297425 absolute error = 0.29864585264292756609307244297425 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.464 y[1] (analytic) = 0 y[1] (numeric) = 0.29939842804469958233537038663274 absolute error = 0.29939842804469958233537038663274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=244.1MB, alloc=4.3MB, time=25.19 NO POLE x[1] = 0.465 y[1] (analytic) = 0 y[1] (numeric) = 0.30015069340274088427668876228537 absolute error = 0.30015069340274088427668876228537 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.466 y[1] (analytic) = 0 y[1] (numeric) = 0.30090264917426635780427250521786 absolute error = 0.30090264917426635780427250521786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.467 y[1] (analytic) = 0 y[1] (numeric) = 0.30165429581534137324694749051551 absolute error = 0.30165429581534137324694749051551 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.468 y[1] (analytic) = 0 y[1] (numeric) = 0.30240563378088667949169781004208 absolute error = 0.30240563378088667949169781004208 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.469 y[1] (analytic) = 0 y[1] (numeric) = 0.30315666352468326757663579076862 absolute error = 0.30315666352468326757663579076862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=247.9MB, alloc=4.3MB, time=25.58 NO POLE x[1] = 0.47 y[1] (analytic) = 0 y[1] (numeric) = 0.30390738549937720401455652995486 absolute error = 0.30390738549937720401455652995486 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.471 y[1] (analytic) = 0 y[1] (numeric) = 0.30465780015648443409861340809228 absolute error = 0.30465780015648443409861340809228 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.472 y[1] (analytic) = 0 y[1] (numeric) = 0.3054079079463955554390290893857 absolute error = 0.3054079079463955554390290893857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.473 y[1] (analytic) = 0 y[1] (numeric) = 0.30615770931838056197716744225456 absolute error = 0.30615770931838056197716744225456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.474 y[1] (analytic) = 0 y[1] (numeric) = 0.30690720472059355872073512746328 absolute error = 0.30690720472059355872073512746328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.475 y[1] (analytic) = 0 y[1] (numeric) = 0.30765639460007744744135683569079 absolute error = 0.30765639460007744744135683569079 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=251.7MB, alloc=4.3MB, time=25.98 NO POLE x[1] = 0.476 y[1] (analytic) = 0 y[1] (numeric) = 0.30840527940276858357327484417668 absolute error = 0.30840527940276858357327484417668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.477 y[1] (analytic) = 0 y[1] (numeric) = 0.30915385957350140454946124584895 absolute error = 0.30915385957350140454946124584895 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.478 y[1] (analytic) = 0 y[1] (numeric) = 0.30990213555601302980899943397313 absolute error = 0.30990213555601302980899943397313 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.479 y[1] (analytic) = 0 y[1] (numeric) = 0.31065010779294783270718975826206 absolute error = 0.31065010779294783270718975826206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.48 y[1] (analytic) = 0 y[1] (numeric) = 0.31139777672586198455746226927895 absolute error = 0.31139777672586198455746226927895 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.481 y[1] (analytic) = 0 y[1] (numeric) = 0.31214514279522797103183670877722 absolute error = 0.31214514279522797103183670877722 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=255.5MB, alloc=4.3MB, time=26.38 NO POLE x[1] = 0.482 y[1] (analytic) = 0 y[1] (numeric) = 0.31289220644043908114435596333428 absolute error = 0.31289220644043908114435596333428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.483 y[1] (analytic) = 0 y[1] (numeric) = 0.31363896809981386903963366316785 absolute error = 0.31363896809981386903963366316785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.484 y[1] (analytic) = 0 y[1] (numeric) = 0.314385428210600588806399070089 absolute error = 0.314385428210600588806399070089 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.485 y[1] (analytic) = 0 y[1] (numeric) = 0.31513158720898160253369245753967 absolute error = 0.31513158720898160253369245753967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.486 y[1] (analytic) = 0 y[1] (numeric) = 0.31587744553007776182516144752916 absolute error = 0.31587744553007776182516144752916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=259.4MB, alloc=4.3MB, time=26.78 NO POLE x[1] = 0.487 y[1] (analytic) = 0 y[1] (numeric) = 0.31662300360795276298473284640321 absolute error = 0.31662300360795276298473284640321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.488 y[1] (analytic) = 0 y[1] (numeric) = 0.3173682618756174760847850324434 absolute error = 0.3173682618756174760847850324434 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.489 y[1] (analytic) = 0 y[1] (numeric) = 0.31811322076503424812582251819564 absolute error = 0.31811322076503424812582251819564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.49 y[1] (analytic) = 0 y[1] (numeric) = 0.31885788070712118049455657014131 absolute error = 0.31885788070712118049455657014131 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.491 y[1] (analytic) = 0 y[1] (numeric) = 0.31960224213175638092522335480518 absolute error = 0.31960224213175638092522335480518 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.492 y[1] (analytic) = 0 y[1] (numeric) = 0.32034630546778219016692363645695 absolute error = 0.32034630546778219016692363645695 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=263.2MB, alloc=4.3MB, time=27.16 NO POLE x[1] = 0.493 y[1] (analytic) = 0 y[1] (numeric) = 0.32109007114300938355774522578452 absolute error = 0.32109007114300938355774522578452 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.494 y[1] (analytic) = 0 y[1] (numeric) = 0.32183353958422134770443082552793 absolute error = 0.32183353958422134770443082552793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.495 y[1] (analytic) = 0 y[1] (numeric) = 0.32257671121717823246437929784506 absolute error = 0.32257671121717823246437929784506 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.496 y[1] (analytic) = 0 y[1] (numeric) = 0.32331958646662107842481735436975 absolute error = 0.32331958646662107842481735436975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.497 y[1] (analytic) = 0 y[1] (numeric) = 0.32406216575627592007205091410752 absolute error = 0.32406216575627592007205091410752 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.498 y[1] (analytic) = 0 y[1] (numeric) = 0.32480444950885786484180056233981 absolute error = 0.32480444950885786484180056233981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=267.0MB, alloc=4.3MB, time=27.57 NO POLE x[1] = 0.499 y[1] (analytic) = 0 y[1] (numeric) = 0.32554643814607514823974335658364 absolute error = 0.32554643814607514823974335658364 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.5 y[1] (analytic) = 0 y[1] (numeric) = 0.3262881320886331652195233494589 absolute error = 0.3262881320886331652195233494589 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.501 y[1] (analytic) = 0 y[1] (numeric) = 0.32702953175623847800365532410975 absolute error = 0.32702953175623847800365532410975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.502 y[1] (analytic) = 0 y[1] (numeric) = 0.3277706375676028005309300615601 absolute error = 0.3277706375676028005309300615601 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.503 y[1] (analytic) = 0 y[1] (numeric) = 0.32851144994044695971213468180986 absolute error = 0.32851144994044695971213468180986 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.504 y[1] (analytic) = 0 y[1] (numeric) = 0.32925196929150483367412792707192 absolute error = 0.32925196929150483367412792707192 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=270.8MB, alloc=4.3MB, time=27.96 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.505 y[1] (analytic) = 0 y[1] (numeric) = 0.32999219603652726717055739641665 absolute error = 0.32999219603652726717055739641665 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.506 y[1] (analytic) = 0 y[1] (numeric) = 0.33073213059028596433577341089243 absolute error = 0.33073213059028596433577341089243 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.507 y[1] (analytic) = 0 y[1] (numeric) = 0.33147177336657735895678210605936 absolute error = 0.33147177336657735895678210605936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.508 y[1] (analytic) = 0 y[1] (numeric) = 0.33221112477822646243638823833629 absolute error = 0.33221112477822646243638823833629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.509 y[1] (analytic) = 0 y[1] (numeric) = 0.33295018523709068961900578046031 absolute error = 0.33295018523709068961900578046031 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=274.6MB, alloc=4.3MB, time=28.36 NO POLE x[1] = 0.51 y[1] (analytic) = 0 y[1] (numeric) = 0.33368895515406366264896140177728 absolute error = 0.33368895515406366264896140177728 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.511 y[1] (analytic) = 0 y[1] (numeric) = 0.33442743493907899302948211726995 absolute error = 0.33442743493907899302948211726995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.512 y[1] (analytic) = 0 y[1] (numeric) = 0.33516562500111404204894348553027 absolute error = 0.33516562500111404204894348553027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.513 y[1] (analytic) = 0 y[1] (numeric) = 0.33590352574819365973935848465861 absolute error = 0.33590352574819365973935848465861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.514 y[1] (analytic) = 0 y[1] (numeric) = 0.33664113758739390253050934464099 absolute error = 0.33664113758739390253050934464099 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.515 y[1] (analytic) = 0 y[1] (numeric) = 0.33737846092484572976156491731525 absolute error = 0.33737846092484572976156491731525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=278.4MB, alloc=4.3MB, time=28.75 NO POLE x[1] = 0.516 y[1] (analytic) = 0 y[1] (numeric) = 0.33811549616573867921048437660362 absolute error = 0.33811549616573867921048437660362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.517 y[1] (analytic) = 0 y[1] (numeric) = 0.33885224371432452179998392202593 absolute error = 0.33885224371432452179998392202593 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.518 y[1] (analytic) = 0 y[1] (numeric) = 0.33958870397392089563733647106499 absolute error = 0.33958870397392089563733647106499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.519 y[1] (analytic) = 0 y[1] (numeric) = 0.34032487734691491954378483780262 absolute error = 0.34032487734691491954378483780262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.52 y[1] (analytic) = 0 y[1] (numeric) = 0.34106076423476678622787637701167 absolute error = 0.34106076423476678622787637701167 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.521 y[1] (analytic) = 0 y[1] (numeric) = 0.34179636503801333525557129870186 absolute error = 0.34179636503801333525557129870186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=282.2MB, alloc=4.3MB, time=29.14 NO POLE x[1] = 0.522 y[1] (analytic) = 0 y[1] (numeric) = 0.34253168015627160596853760554082 absolute error = 0.34253168015627160596853760554082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.523 y[1] (analytic) = 0 y[1] (numeric) = 0.34326670998824237050062265554857 absolute error = 0.34326670998824237050062265554857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.524 y[1] (analytic) = 0 y[1] (numeric) = 0.34400145493171364704108448925914 absolute error = 0.34400145493171364704108448925914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.525 y[1] (analytic) = 0 y[1] (numeric) = 0.34473591538356419349177507168482 absolute error = 0.34473591538356419349177507168482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.526 y[1] (analytic) = 0 y[1] (numeric) = 0.34547009173976698166409227564522 absolute error = 0.34547009173976698166409227564522 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=286.1MB, alloc=4.3MB, time=29.53 NO POLE x[1] = 0.527 y[1] (analytic) = 0 y[1] (numeric) = 0.34620398439539265216015756822598 absolute error = 0.34620398439539265216015756822598 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.528 y[1] (analytic) = 0 y[1] (numeric) = 0.34693759374461295008133175330399 absolute error = 0.34693759374461295008133175330399 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.529 y[1] (analytic) = 0 y[1] (numeric) = 0.34767092018070414170585157025842 absolute error = 0.34767092018070414170585157025842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.53 y[1] (analytic) = 0 y[1] (numeric) = 0.34840396409605041227605525521754 absolute error = 0.34840396409605041227605525521754 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.531 y[1] (analytic) = 0 y[1] (numeric) = 0.34913672588214724503436514245494 absolute error = 0.34913672588214724503436514245494 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.532 y[1] (analytic) = 0 y[1] (numeric) = 0.34986920592960478164590982872656 absolute error = 0.34986920592960478164590982872656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=289.9MB, alloc=4.3MB, time=29.93 NO POLE x[1] = 0.533 y[1] (analytic) = 0 y[1] (numeric) = 0.35060140462815116414439715416119 absolute error = 0.35060140462815116414439715416119 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.534 y[1] (analytic) = 0 y[1] (numeric) = 0.35133332236663585853659208431117 absolute error = 0.35133332236663585853659208431117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.535 y[1] (analytic) = 0 y[1] (numeric) = 0.35206495953303296019951032642115 absolute error = 0.35206495953303296019951032642115 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.536 y[1] (analytic) = 0 y[1] (numeric) = 0.35279631651444448120320899887044 absolute error = 0.35279631651444448120320899887044 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.537 y[1] (analytic) = 0 y[1] (numeric) = 0.35352739369710361969083971874308 absolute error = 0.35352739369710361969083971874308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.538 y[1] (analytic) = 0 y[1] (numeric) = 0.35425819146637801144642690384961 absolute error = 0.35425819146637801144642690384961 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=293.7MB, alloc=4.3MB, time=30.34 NO POLE x[1] = 0.539 y[1] (analytic) = 0 y[1] (numeric) = 0.35498871020677296377964473011232 absolute error = 0.35498871020677296377964473011232 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.54 y[1] (analytic) = 0 y[1] (numeric) = 0.35571895030193467185568987340888 absolute error = 0.35571895030193467185568987340888 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.541 y[1] (analytic) = 0 y[1] (numeric) = 0.35644891213465341759718372961559 absolute error = 0.35644891213465341759718372961559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.542 y[1] (analytic) = 0 y[1] (numeric) = 0.35717859608686675128388708301829 absolute error = 0.35717859608686675128388708301829 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.543 y[1] (analytic) = 0 y[1] (numeric) = 0.3579080025396626559748720191912 absolute error = 0.3579080025396626559748720191912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=297.5MB, alloc=4.3MB, time=30.74 NO POLE x[1] = 0.544 y[1] (analytic) = 0 y[1] (numeric) = 0.35863713187328269487667009397626 absolute error = 0.35863713187328269487667009397626 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.545 y[1] (analytic) = 0 y[1] (numeric) = 0.35936598446712514177980221775186 absolute error = 0.35936598446712514177980221775186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.546 y[1] (analytic) = 0 y[1] (numeric) = 0.36009456069974809468499423847712 absolute error = 0.36009456069974809468499423847712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.547 y[1] (analytic) = 0 y[1] (numeric) = 0.36082286094887257273929265500563 absolute error = 0.36082286094887257273929265500563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.548 y[1] (analytic) = 0 y[1] (numeric) = 0.36155088559138559660121711306972 absolute error = 0.36155088559138559660121711306972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.549 y[1] (analytic) = 0 y[1] (numeric) = 0.36227863500334325235302018151182 absolute error = 0.36227863500334325235302018151182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=301.3MB, alloc=4.3MB, time=31.15 NO POLE x[1] = 0.55 y[1] (analytic) = 0 y[1] (numeric) = 0.36300610955997373907707022929853 absolute error = 0.36300610955997373907707022929853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.551 y[1] (analytic) = 0 y[1] (numeric) = 0.36373330963568040021232988022222 absolute error = 0.36373330963568040021232988022222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.552 y[1] (analytic) = 0 y[1] (numeric) = 0.36446023560404473880587036967709 absolute error = 0.36446023560404473880587036967709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.553 y[1] (analytic) = 0 y[1] (numeric) = 0.36518688783782941677334102623798 absolute error = 0.36518688783782941677334102623798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.554 y[1] (analytic) = 0 y[1] (numeric) = 0.36591326670898123828130291172734 absolute error = 0.36591326670898123828130291172734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.555 y[1] (analytic) = 0 y[1] (numeric) = 0.36663937258863411736333624076254 absolute error = 0.36663937258863411736333624076254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=305.1MB, alloc=4.3MB, time=31.56 NO POLE x[1] = 0.556 y[1] (analytic) = 0 y[1] (numeric) = 0.36736520584711202988084243011244 absolute error = 0.36736520584711202988084243011244 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.557 y[1] (analytic) = 0 y[1] (numeric) = 0.36809076685393194993848336715353 absolute error = 0.36809076685393194993848336715353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.558 y[1] (analytic) = 0 y[1] (numeric) = 0.36881605597780677086323260478071 absolute error = 0.36881605597780677086323260478071 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.559 y[1] (analytic) = 0 y[1] (numeric) = 0.3695410735866482108550555586282 absolute error = 0.3695410735866482108550555586282 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.56 y[1] (analytic) = 0 y[1] (numeric) = 0.37026582004756970341628827454905 absolute error = 0.37026582004756970341628827454905 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.561 y[1] (analytic) = 0 y[1] (numeric) = 0.3709902957268892726658468249391 absolute error = 0.3709902957268892726658468249391 relative error = -1 % Correct digits = -1 h = 0.001 memory used=309.0MB, alloc=4.3MB, time=31.97 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.562 y[1] (analytic) = 0 y[1] (numeric) = 0.3717145009901323936434717583908 absolute error = 0.3717145009901323936434717583908 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.563 y[1] (analytic) = 0 y[1] (numeric) = 0.37243843620203483770829414678114 absolute error = 0.37243843620203483770829414678114 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.564 y[1] (analytic) = 0 y[1] (numeric) = 0.37316210172654550313510152740329 absolute error = 0.37316210172654550313510152740329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.565 y[1] (analytic) = 0 y[1] (numeric) = 0.37388549792682923101078330699494 absolute error = 0.37388549792682923101078330699494 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.566 y[1] (analytic) = 0 y[1] (numeric) = 0.37460862516526960653254586300564 absolute error = 0.37460862516526960653254586300564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=312.8MB, alloc=4.3MB, time=32.37 NO POLE x[1] = 0.567 y[1] (analytic) = 0 y[1] (numeric) = 0.37533148380347174580860753032043 absolute error = 0.37533148380347174580860753032043 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.568 y[1] (analytic) = 0 y[1] (numeric) = 0.37605407420226506826121278566234 absolute error = 0.37605407420226506826121278566234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.569 y[1] (analytic) = 0 y[1] (numeric) = 0.37677639672170605473094312535621 absolute error = 0.37677639672170605473094312535621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.57 y[1] (analytic) = 0 y[1] (numeric) = 0.3774984517210809913804492649309 absolute error = 0.3774984517210809913804492649309 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.571 y[1] (analytic) = 0 y[1] (numeric) = 0.37822023955890869949488526257748 absolute error = 0.37822023955890869949488526257748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.572 y[1] (analytic) = 0 y[1] (numeric) = 0.37894176059294325127548987568405 absolute error = 0.37894176059294325127548987568405 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=316.6MB, alloc=4.3MB, time=32.77 NO POLE x[1] = 0.573 y[1] (analytic) = 0 y[1] (numeric) = 0.37966301518017667172193379493578 absolute error = 0.37966301518017667172193379493578 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.574 y[1] (analytic) = 0 y[1] (numeric) = 0.38038400367684162669823325966219 absolute error = 0.38038400367684162669823325966219 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.575 y[1] (analytic) = 0 y[1] (numeric) = 0.38110472643841409727622083853147 absolute error = 0.38110472643841409727622083853147 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.576 y[1] (analytic) = 0 y[1] (numeric) = 0.38182518381961604044976276004874 absolute error = 0.38182518381961604044976276004874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.577 y[1] (analytic) = 0 y[1] (numeric) = 0.38254537617441803631211899771779 absolute error = 0.38254537617441803631211899771779 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.578 y[1] (analytic) = 0 y[1] (numeric) = 0.38326530385604192178805725665451 absolute error = 0.38326530385604192178805725665451 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=320.4MB, alloc=4.3MB, time=33.17 NO POLE x[1] = 0.579 y[1] (analytic) = 0 y[1] (numeric) = 0.38398496721696341101155497472331 absolute error = 0.38398496721696341101155497472331 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.58 y[1] (analytic) = 0 y[1] (numeric) = 0.38470436660891470243915434606599 absolute error = 0.38470436660891470243915434606599 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.581 y[1] (analytic) = 0 y[1] (numeric) = 0.38542350238288707278827410367312 absolute error = 0.38542350238288707278827410367312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.582 y[1] (analytic) = 0 y[1] (numeric) = 0.38614237488913345788902826716984 absolute error = 0.38614237488913345788902826716984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.583 y[1] (analytic) = 0 y[1] (numeric) = 0.38686098447717102053735618027731 absolute error = 0.38686098447717102053735618027731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=324.2MB, alloc=4.3MB, time=33.58 NO POLE x[1] = 0.584 y[1] (analytic) = 0 y[1] (numeric) = 0.38757933149578370543652983874512 absolute error = 0.38757933149578370543652983874512 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.585 y[1] (analytic) = 0 y[1] (numeric) = 0.38829741629302478131337365443645 absolute error = 0.38829741629302478131337365443645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.586 y[1] (analytic) = 0 y[1] (numeric) = 0.38901523921621937029480832640615 absolute error = 0.38901523921621937029480832640615 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.587 y[1] (analytic) = 0 y[1] (numeric) = 0.38973280061196696462961430815549 absolute error = 0.38973280061196696462961430815549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.588 y[1] (analytic) = 0 y[1] (numeric) = 0.39045010082614393083960138586448 absolute error = 0.39045010082614393083960138586448 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.589 y[1] (analytic) = 0 y[1] (numeric) = 0.39116714020390600138366903053953 absolute error = 0.39116714020390600138366903053953 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=328.0MB, alloc=4.3MB, time=33.99 NO POLE x[1] = 0.59 y[1] (analytic) = 0 y[1] (numeric) = 0.39188391908969075391754737405671 absolute error = 0.39188391908969075391754737405671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.591 y[1] (analytic) = 0 y[1] (numeric) = 0.39260043782722007823132080253752 absolute error = 0.39260043782722007823132080253752 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.592 y[1] (analytic) = 0 y[1] (numeric) = 0.39331669675950263094615517897963 absolute error = 0.39331669675950263094615517897963 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.593 y[1] (analytic) = 0 y[1] (numeric) = 0.39403269622883627805097552028262 absolute error = 0.39403269622883627805097552028262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.594 y[1] (analytic) = 0 y[1] (numeric) = 0.3947484365768105253591734825346 absolute error = 0.3947484365768105253591734825346 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.595 y[1] (analytic) = 0 y[1] (numeric) = 0.39546391814430893696476317449262 absolute error = 0.39546391814430893696476317449262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=331.8MB, alloc=4.3MB, time=34.40 NO POLE x[1] = 0.596 y[1] (analytic) = 0 y[1] (numeric) = 0.39617914127151154177674954547084 absolute error = 0.39617914127151154177674954547084 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.597 y[1] (analytic) = 0 y[1] (numeric) = 0.39689410629789722820982580424469 absolute error = 0.39689410629789722820982580424469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.598 y[1] (analytic) = 0 y[1] (numeric) = 0.39760881356224612710887494499411 absolute error = 0.39760881356224612710887494499411 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.599 y[1] (analytic) = 0 y[1] (numeric) = 0.39832326340264198298411541064815 absolute error = 0.39832326340264198298411541064815 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.6 y[1] (analytic) = 0 y[1] (numeric) = 0.39903745615647451363310214013888 absolute error = 0.39903745615647451363310214013888 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=335.7MB, alloc=4.3MB, time=34.80 NO POLE x[1] = 0.601 y[1] (analytic) = 0 y[1] (numeric) = 0.39975139216044175822517165187297 absolute error = 0.39975139216044175822517165187297 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.602 y[1] (analytic) = 0 y[1] (numeric) = 0.40046507175055241392330333998364 absolute error = 0.40046507175055241392330333998364 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.603 y[1] (analytic) = 0 y[1] (numeric) = 0.40117849526212816111775873236955 absolute error = 0.40117849526212816111775873236955 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.604 y[1] (analytic) = 0 y[1] (numeric) = 0.40189166302980597734525601081933 absolute error = 0.40189166302980597734525601081933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.605 y[1] (analytic) = 0 y[1] (numeric) = 0.40260457538754043996683855522917 absolute error = 0.40260457538754043996683855522917 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.606 y[1] (analytic) = 0 y[1] (numeric) = 0.40331723266860601767700357851032 absolute error = 0.40331723266860601767700357851032 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=339.5MB, alloc=4.3MB, time=35.20 NO POLE x[1] = 0.607 y[1] (analytic) = 0 y[1] (numeric) = 0.40402963520559935091606999959973 absolute error = 0.40402963520559935091606999959973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.608 y[1] (analytic) = 0 y[1] (numeric) = 0.4047417833304415212571834932474 absolute error = 0.4047417833304415212571834932474 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.609 y[1] (analytic) = 0 y[1] (numeric) = 0.40545367737438030983878109203146 absolute error = 0.40545367737438030983878109203146 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.61 y[1] (analytic) = 0 y[1] (numeric) = 0.40616531766799244491276773426432 absolute error = 0.40616531766799244491276773426432 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.611 y[1] (analytic) = 0 y[1] (numeric) = 0.40687670454118583857809268785042 absolute error = 0.40687670454118583857809268785042 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.612 y[1] (analytic) = 0 y[1] (numeric) = 0.4075878383232018127688547723078 absolute error = 0.4075878383232018127688547723078 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=343.3MB, alloc=4.3MB, time=35.60 NO POLE x[1] = 0.613 y[1] (analytic) = 0 y[1] (numeric) = 0.40829871934261731456551168744943 absolute error = 0.40829871934261731456551168744943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.614 y[1] (analytic) = 0 y[1] (numeric) = 0.40900934792734712089722047681006 absolute error = 0.40900934792734712089722047681006 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.615 y[1] (analytic) = 0 y[1] (numeric) = 0.40971972440464603270279314675836 absolute error = 0.40971972440464603270279314675836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.616 y[1] (analytic) = 0 y[1] (numeric) = 0.41042984910111105861721366908388 absolute error = 0.41042984910111105861721366908388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.617 y[1] (analytic) = 0 y[1] (numeric) = 0.41113972234268358825012995718772 absolute error = 0.41113972234268358825012995718772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=347.1MB, alloc=4.3MB, time=36.00 NO POLE x[1] = 0.618 y[1] (analytic) = 0 y[1] (numeric) = 0.41184934445465155512220686607881 absolute error = 0.41184934445465155512220686607881 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.619 y[1] (analytic) = 0 y[1] (numeric) = 0.41255871576165158932470376716935 absolute error = 0.41255871576165158932470376716935 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.62 y[1] (analytic) = 0 y[1] (numeric) = 0.41326783658767115996712273408706 absolute error = 0.41326783658767115996712273408706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.621 y[1] (analytic) = 0 y[1] (numeric) = 0.41397670725605070747726078981146 absolute error = 0.41397670725605070747726078981146 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.622 y[1] (analytic) = 0 y[1] (numeric) = 0.41468532808948576581749195353827 absolute error = 0.41468532808948576581749195353827 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.623 y[1] (analytic) = 0 y[1] (numeric) = 0.41539369941002907468060193361979 absolute error = 0.41539369941002907468060193361979 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=350.9MB, alloc=4.3MB, time=36.40 NO POLE x[1] = 0.624 y[1] (analytic) = 0 y[1] (numeric) = 0.41610182153909268172800018724859 absolute error = 0.41610182153909268172800018724859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.625 y[1] (analytic) = 0 y[1] (numeric) = 0.41680969479745003493264065545403 absolute error = 0.41680969479745003493264065545403 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.626 y[1] (analytic) = 0 y[1] (numeric) = 0.41751731950523806508849373134153 absolute error = 0.41751731950523806508849373134153 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.627 y[1] (analytic) = 0 y[1] (numeric) = 0.41822469598195925854792787885929 absolute error = 0.41822469598195925854792787885929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.628 y[1] (analytic) = 0 y[1] (numeric) = 0.41893182454648372024787973791026 absolute error = 0.41893182454648372024787973791026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.629 y[1] (analytic) = 0 y[1] (numeric) = 0.41963870551705122708521647916608 absolute error = 0.41963870551705122708521647916608 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=354.7MB, alloc=4.3MB, time=36.80 NO POLE x[1] = 0.63 y[1] (analytic) = 0 y[1] (numeric) = 0.42034533921127327170122355894057 absolute error = 0.42034533921127327170122355894057 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.631 y[1] (analytic) = 0 y[1] (numeric) = 0.42105172594613509673468482202468 absolute error = 0.42105172594613509673468482202468 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.632 y[1] (analytic) = 0 y[1] (numeric) = 0.42175786603799771960256006016579 absolute error = 0.42175786603799771960256006016579 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.633 y[1] (analytic) = 0 y[1] (numeric) = 0.42246375980259994786680760819206 absolute error = 0.42246375980259994786680760819206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.634 y[1] (analytic) = 0 y[1] (numeric) = 0.42316940755506038524544630153274 absolute error = 0.42316940755506038524544630153274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=358.5MB, alloc=4.3MB, time=37.21 NO POLE x[1] = 0.635 y[1] (analytic) = 0 y[1] (numeric) = 0.42387480960987942832550208155236 absolute error = 0.42387480960987942832550208155236 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.636 y[1] (analytic) = 0 y[1] (numeric) = 0.42457996628094125403503967276503 absolute error = 0.42457996628094125403503967276503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.637 y[1] (analytic) = 0 y[1] (numeric) = 0.42528487788151579793103902326095 absolute error = 0.42528487788151579793103902326095 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.638 y[1] (analytic) = 0 y[1] (numeric) = 0.42598954472426072335943955176037 absolute error = 0.42598954472426072335943955176037 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.639 y[1] (analytic) = 0 y[1] (numeric) = 0.42669396712122338154324263736707 absolute error = 0.42669396712122338154324263736707 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.64 y[1] (analytic) = 0 y[1] (numeric) = 0.42739814538384276265413417762821 absolute error = 0.42739814538384276265413417762821 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=362.4MB, alloc=4.3MB, time=37.60 NO POLE x[1] = 0.641 y[1] (analytic) = 0 y[1] (numeric) = 0.42810207982295143792266438376438 absolute error = 0.42810207982295143792266438376438 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.642 y[1] (analytic) = 0 y[1] (numeric) = 0.42880577074877749284160123629162 absolute error = 0.42880577074877749284160123629162 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.643 y[1] (analytic) = 0 y[1] (numeric) = 0.4295092184709464515166571476188 absolute error = 0.4295092184709464515166571476188 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.644 y[1] (analytic) = 0 y[1] (numeric) = 0.43021242329848319221837532899092 absolute error = 0.43021242329848319221837532899092 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.645 y[1] (analytic) = 0 y[1] (numeric) = 0.43091538553981385418855309629525 absolute error = 0.43091538553981385418855309629525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.646 y[1] (analytic) = 0 y[1] (numeric) = 0.43161810550276773575417383218874 absolute error = 0.43161810550276773575417383218874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=366.2MB, alloc=4.3MB, time=38.00 NO POLE x[1] = 0.647 y[1] (analytic) = 0 y[1] (numeric) = 0.43232058349457918380141751067693 absolute error = 0.43232058349457918380141751067693 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.648 y[1] (analytic) = 0 y[1] (numeric) = 0.4330228198218894746619215451002 absolute error = 0.4330228198218894746619215451002 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.649 y[1] (analytic) = 0 y[1] (numeric) = 0.43372481479074868646306920237148 absolute error = 0.43372481479074868646306920237148 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.65 y[1] (analytic) = 0 y[1] (numeric) = 0.43442656870661756299369189664401 absolute error = 0.43442656870661756299369189664401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.651 y[1] (analytic) = 0 y[1] (numeric) = 0.43512808187436936913618429622482 absolute error = 0.43512808187436936913618429622482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=370.0MB, alloc=4.3MB, time=38.40 x[1] = 0.652 y[1] (analytic) = 0 y[1] (numeric) = 0.43582935459829173791564731080705 absolute error = 0.43582935459829173791564731080705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.653 y[1] (analytic) = 0 y[1] (numeric) = 0.43653038718208850921629363474922 absolute error = 0.43653038718208850921629363474922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.654 y[1] (analytic) = 0 y[1] (numeric) = 0.4372311799288815602149735694095 absolute error = 0.4372311799288815602149735694095 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.655 y[1] (analytic) = 0 y[1] (numeric) = 0.43793173314121262758130529712069 absolute error = 0.43793173314121262758130529712069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.656 y[1] (analytic) = 0 y[1] (numeric) = 0.438632047121045121493523595379 absolute error = 0.438632047121045121493523595379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.657 y[1] (analytic) = 0 y[1] (numeric) = 0.4393321221697659315187941267617 absolute error = 0.4393321221697659315187941267617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=373.8MB, alloc=4.3MB, time=38.80 NO POLE x[1] = 0.658 y[1] (analytic) = 0 y[1] (numeric) = 0.44003195858818722440637688295717 absolute error = 0.44003195858818722440637688295717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.659 y[1] (analytic) = 0 y[1] (numeric) = 0.4407315566765482338416620654797 absolute error = 0.4407315566765482338416620654797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.66 y[1] (analytic) = 0 y[1] (numeric) = 0.44143091673451704220874461695949 absolute error = 0.44143091673451704220874461695949 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.661 y[1] (analytic) = 0 y[1] (numeric) = 0.44213003906119235440884974156486 absolute error = 0.44213003906119235440884974156486 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.662 y[1] (analytic) = 0 y[1] (numeric) = 0.44282892395510526378157103775283 absolute error = 0.44282892395510526378157103775283 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.663 y[1] (analytic) = 0 y[1] (numeric) = 0.44352757171422101017553527817862 absolute error = 0.44352757171422101017553527817862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=377.6MB, alloc=4.3MB, time=39.20 NO POLE x[1] = 0.664 y[1] (analytic) = 0 y[1] (numeric) = 0.44422598263594073021476337764062 absolute error = 0.44422598263594073021476337764062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.665 y[1] (analytic) = 0 y[1] (numeric) = 0.44492415701710319980665565820054 absolute error = 0.44492415701710319980665565820054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.666 y[1] (analytic) = 0 y[1] (numeric) = 0.44562209515398656893719111928649 absolute error = 0.44562209515398656893719111928649 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.667 y[1] (analytic) = 0 y[1] (numeric) = 0.44631979734231008879859501822614 absolute error = 0.44631979734231008879859501822614 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.668 y[1] (analytic) = 0 y[1] (numeric) = 0.44701726387723583129439663220722 absolute error = 0.44701726387723583129439663220722 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=381.4MB, alloc=4.3MB, time=39.60 x[1] = 0.669 y[1] (analytic) = 0 y[1] (numeric) = 0.44771449505337040096646957543068 absolute error = 0.44771449505337040096646957543068 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.67 y[1] (analytic) = 0 y[1] (numeric) = 0.44841149116476663938832045487835 absolute error = 0.44841149116476663938832045487835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.671 y[1] (analytic) = 0 y[1] (numeric) = 0.4491082525049253220685679346908 absolute error = 0.4491082525049253220685679346908 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.672 y[1] (analytic) = 0 y[1] (numeric) = 0.44980477936679684790823341302423 absolute error = 0.44980477936679684790823341302423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.673 y[1] (analytic) = 0 y[1] (numeric) = 0.45050107204278292125514646715932 absolute error = 0.45050107204278292125514646715932 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.674 y[1] (analytic) = 0 y[1] (numeric) = 0.45119713082473822659845296364474 absolute error = 0.45119713082473822659845296364474 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=385.2MB, alloc=4.3MB, time=40.01 NO POLE x[1] = 0.675 y[1] (analytic) = 0 y[1] (numeric) = 0.45189295600397209594590123178904 absolute error = 0.45189295600397209594590123178904 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.676 y[1] (analytic) = 0 y[1] (numeric) = 0.45258854787125016892627193261654 absolute error = 0.45258854787125016892627193261654 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.677 y[1] (analytic) = 0 y[1] (numeric) = 0.45328390671679604565901019355695 absolute error = 0.45328390671679604565901019355695 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.678 y[1] (analytic) = 0 y[1] (numeric) = 0.45397903283029293243281419405171 absolute error = 0.45397903283029293243281419405171 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.679 y[1] (analytic) = 0 y[1] (numeric) = 0.45467392650088528023463265166227 absolute error = 0.45467392650088528023463265166227 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.68 y[1] (analytic) = 0 y[1] (numeric) = 0.45536858801718041617022454520316 absolute error = 0.45536858801718041617022454520316 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=389.1MB, alloc=4.3MB, time=40.42 NO POLE x[1] = 0.681 y[1] (analytic) = 0 y[1] (numeric) = 0.45606301766725016781713789425777 absolute error = 0.45606301766725016781713789425777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.682 y[1] (analytic) = 0 y[1] (numeric) = 0.45675721573863248055067046683659 absolute error = 0.45675721573863248055067046683659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.683 y[1] (analytic) = 0 y[1] (numeric) = 0.45745118251833302788308388288322 absolute error = 0.45745118251833302788308388288322 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.684 y[1] (analytic) = 0 y[1] (numeric) = 0.45814491829282681485605369509974 absolute error = 0.45814491829282681485605369509974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.685 y[1] (analytic) = 0 y[1] (numeric) = 0.4588384233480597745260516347254 absolute error = 0.4588384233480597745260516347254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=392.9MB, alloc=4.3MB, time=40.82 x[1] = 0.686 y[1] (analytic) = 0 y[1] (numeric) = 0.45953169796945035758207228332988 absolute error = 0.45953169796945035758207228332988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.687 y[1] (analytic) = 0 y[1] (numeric) = 0.46022474244189111513483494753367 absolute error = 0.46022474244189111513483494753367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.688 y[1] (analytic) = 0 y[1] (numeric) = 0.46091755704975027471631244728774 absolute error = 0.46091755704975027471631244728774 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.689 y[1] (analytic) = 0 y[1] (numeric) = 0.46161014207687330952816185566076 absolute error = 0.46161014207687330952816185566076 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.69 y[1] (analytic) = 0 y[1] (numeric) = 0.46230249780658450097735792500033 absolute error = 0.46230249780658450097735792500033 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.691 y[1] (analytic) = 0 y[1] (numeric) = 0.46299462452168849453705797713651 absolute error = 0.46299462452168849453705797713651 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=396.7MB, alloc=4.3MB, time=41.22 NO POLE x[1] = 0.692 y[1] (analytic) = 0 y[1] (numeric) = 0.46368652250447184897045740053451 absolute error = 0.46368652250447184897045740053451 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.693 y[1] (analytic) = 0 y[1] (numeric) = 0.46437819203670457895512756179932 absolute error = 0.46437819203670457895512756179932 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.694 y[1] (analytic) = 0 y[1] (numeric) = 0.46506963339964169114506287977491 absolute error = 0.46506963339964169114506287977491 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.695 y[1] (analytic) = 0 y[1] (numeric) = 0.46576084687402471370740100501041 absolute error = 0.46576084687402471370740100501041 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.696 y[1] (analytic) = 0 y[1] (numeric) = 0.46645183274008321937051947319141 absolute error = 0.46645183274008321937051947319141 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.697 y[1] (analytic) = 0 y[1] (numeric) = 0.46714259127753634201995383611475 absolute error = 0.46714259127753634201995383611475 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=400.5MB, alloc=4.3MB, time=41.63 NO POLE x[1] = 0.698 y[1] (analytic) = 0 y[1] (numeric) = 0.46783312276559428687832609603165 absolute error = 0.46783312276559428687832609603165 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.699 y[1] (analytic) = 0 y[1] (numeric) = 0.46852342748295983430521825705518 absolute error = 0.46852342748295983430521825705518 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.7 y[1] (analytic) = 0 y[1] (numeric) = 0.46921350570782983725267393942843 absolute error = 0.46921350570782983725267393942843 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.701 y[1] (analytic) = 0 y[1] (numeric) = 0.46990335771789671241176125762465 absolute error = 0.46990335771789671241176125762465 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.702 y[1] (analytic) = 0 y[1] (numeric) = 0.47059298379034992508538252058524 absolute error = 0.47059298379034992508538252058524 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.703 y[1] (analytic) = 0 y[1] (numeric) = 0.47128238420187746782227075121594 absolute error = 0.47128238420187746782227075121594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=404.3MB, alloc=4.3MB, time=42.03 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.704 y[1] (analytic) = 0 y[1] (numeric) = 0.47197155922866733284686952210891 absolute error = 0.47197155922866733284686952210891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.705 y[1] (analytic) = 0 y[1] (numeric) = 0.47266050914640897831955114512185 absolute error = 0.47266050914640897831955114512185 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.706 y[1] (analytic) = 0 y[1] (numeric) = 0.47334923423029478846138881393464 absolute error = 0.47334923423029478846138881393464 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.707 y[1] (analytic) = 0 y[1] (numeric) = 0.47403773475502152757746086125269 absolute error = 0.47403773475502152757746086125269 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.708 y[1] (analytic) = 0 y[1] (numeric) = 0.47472601099479178801242983639004 absolute error = 0.47472601099479178801242983639004 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=408.1MB, alloc=4.3MB, time=42.43 NO POLE x[1] = 0.709 y[1] (analytic) = 0 y[1] (numeric) = 0.47541406322331543207190561521713 absolute error = 0.47541406322331543207190561521713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.71 y[1] (analytic) = 0 y[1] (numeric) = 0.4761018917138110279428702037874 absolute error = 0.4761018917138110279428702037874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.711 y[1] (analytic) = 0 y[1] (numeric) = 0.47678949673900727964621227046583 absolute error = 0.47678949673900727964621227046583 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.712 y[1] (analytic) = 0 y[1] (numeric) = 0.47747687857114445105419172038329 absolute error = 0.47747687857114445105419172038329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.713 y[1] (analytic) = 0 y[1] (numeric) = 0.47816403748197578400542879205326 absolute error = 0.47816403748197578400542879205326 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.714 y[1] (analytic) = 0 y[1] (numeric) = 0.47885097374276891054978819073748 absolute error = 0.47885097374276891054978819073748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=412.0MB, alloc=4.3MB, time=42.82 NO POLE x[1] = 0.715 y[1] (analytic) = 0 y[1] (numeric) = 0.47953768762430725935530665856156 absolute error = 0.47953768762430725935530665856156 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.716 y[1] (analytic) = 0 y[1] (numeric) = 0.48022417939689145630909209958855 absolute error = 0.48022417939689145630909209958855 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.717 y[1] (analytic) = 0 y[1] (numeric) = 0.48091044933034071934390391138276 absolute error = 0.48091044933034071934390391138276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.718 y[1] (analytic) = 0 y[1] (numeric) = 0.48159649769399424752190750555772 absolute error = 0.48159649769399424752190750555772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.719 y[1] (analytic) = 0 y[1] (numeric) = 0.48228232475671260440688111111418 absolute error = 0.48228232475671260440688111111418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.72 y[1] (analytic) = 0 y[1] (numeric) = 0.48296793078687909575593982893873 absolute error = 0.48296793078687909575593982893873 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=415.8MB, alloc=4.3MB, time=43.22 NO POLE x[1] = 0.721 y[1] (analytic) = 0 y[1] (numeric) = 0.48365331605240114156163052674257 absolute error = 0.48365331605240114156163052674257 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.722 y[1] (analytic) = 0 y[1] (numeric) = 0.48433848082071164247504151424846 absolute error = 0.48433848082071164247504151424846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.723 y[1] (analytic) = 0 y[1] (numeric) = 0.48502342535877034064036300204235 absolute error = 0.48502342535877034064036300204235 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.724 y[1] (analytic) = 0 y[1] (numeric) = 0.48570814993306517497112810783475 absolute error = 0.48570814993306517497112810783475 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.725 y[1] (analytic) = 0 y[1] (numeric) = 0.48639265480961363089815961474454 absolute error = 0.48639265480961363089815961474454 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=419.6MB, alloc=4.3MB, time=43.62 NO POLE x[1] = 0.726 y[1] (analytic) = 0 y[1] (numeric) = 0.48707694025396408461904479162122 absolute error = 0.48707694025396408461904479162122 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.727 y[1] (analytic) = 0 y[1] (numeric) = 0.48776100653119714187875933952981 absolute error = 0.48776100653119714187875933952981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.728 y[1] (analytic) = 0 y[1] (numeric) = 0.48844485390592697131086191567899 absolute error = 0.48844485390592697131086191567899 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.729 y[1] (analytic) = 0 y[1] (numeric) = 0.4891284826423026323684826907898 absolute error = 0.4891284826423026323684826907898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.73 y[1] (analytic) = 0 y[1] (numeric) = 0.48981189300400939787413300285979 absolute error = 0.48981189300400939787413300285979 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.731 y[1] (analytic) = 0 y[1] (numeric) = 0.49049508525427007121716836432314 absolute error = 0.49049508525427007121716836432314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=423.4MB, alloc=4.3MB, time=44.03 NO POLE x[1] = 0.732 y[1] (analytic) = 0 y[1] (numeric) = 0.49117805965584629822754384575084 absolute error = 0.49117805965584629822754384575084 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.733 y[1] (analytic) = 0 y[1] (numeric) = 0.49186081647103987375430918264975 absolute error = 0.49186081647103987375430918264975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.734 y[1] (analytic) = 0 y[1] (numeric) = 0.49254335596169404297710081793744 absolute error = 0.49254335596169404297710081793744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.735 y[1] (analytic) = 0 y[1] (numeric) = 0.49322567838919479747869948678206 absolute error = 0.49322567838919479747869948678206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.736 y[1] (analytic) = 0 y[1] (numeric) = 0.49390778401447216610653485834982 absolute error = 0.49390778401447216610653485834982 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.737 y[1] (analytic) = 0 y[1] (numeric) = 0.49458967309800150065083315639798 absolute error = 0.49458967309800150065083315639798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=427.2MB, alloc=4.3MB, time=44.43 NO POLE x[1] = 0.738 y[1] (analytic) = 0 y[1] (numeric) = 0.49527134589980475636691957354214 absolute error = 0.49527134589980475636691957354214 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.739 y[1] (analytic) = 0 y[1] (numeric) = 0.49595280267945176736900465851725 absolute error = 0.49595280267945176736900465851725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.74 y[1] (analytic) = 0 y[1] (numeric) = 0.49663404369606151692260267809424 absolute error = 0.49663404369606151692260267809424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.741 y[1] (analytic) = 0 y[1] (numeric) = 0.49731506920830340266255022190914 absolute error = 0.49731506920830340266255022190914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.742 y[1] (analytic) = 0 y[1] (numeric) = 0.49799587947439849676341501585302 absolute error = 0.49799587947439849676341501585302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=431.0MB, alloc=4.3MB, time=44.82 NO POLE x[1] = 0.743 y[1] (analytic) = 0 y[1] (numeric) = 0.49867647475212080108890802454771 absolute error = 0.49867647475212080108890802454771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.744 y[1] (analytic) = 0 y[1] (numeric) = 0.49935685529879849734673644262426 absolute error = 0.49935685529879849734673644262426 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.745 y[1] (analytic) = 0 y[1] (numeric) = 0.50003702137131519227516108499786 absolute error = 0.50003702137131519227516108499786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.746 y[1] (analytic) = 0 y[1] (numeric) = 0.50071697322611115788734897520341 absolute error = 0.50071697322611115788734897520341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.747 y[1] (analytic) = 0 y[1] (numeric) = 0.50139671111918456679944058536484 absolute error = 0.50139671111918456679944058536484 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.748 y[1] (analytic) = 0 y[1] (numeric) = 0.50207623530609272266808118889856 absolute error = 0.50207623530609272266808118889856 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=434.8MB, alloc=4.3MB, time=45.22 NO POLE x[1] = 0.749 y[1] (analytic) = 0 y[1] (numeric) = 0.50275554604195328576299713511112 absolute error = 0.50275554604195328576299713511112 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.75 y[1] (analytic) = 0 y[1] (numeric) = 0.50343464358144549370003053108769 absolute error = 0.50343464358144549370003053108769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.751 y[1] (analytic) = 0 y[1] (numeric) = 0.50411352817881137735987980845813 absolute error = 0.50411352817881137735987980845813 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.752 y[1] (analytic) = 0 y[1] (numeric) = 0.50479220008785697201762894867466 absolute error = 0.50479220008785697201762894867466 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.753 y[1] (analytic) = 0 y[1] (numeric) = 0.50547065956195352370798472837126 absolute error = 0.50547065956195352370798472837126 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.754 y[1] (analytic) = 0 y[1] (numeric) = 0.50614890685403869085097921435779 absolute error = 0.50614890685403869085097921435779 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=438.7MB, alloc=4.3MB, time=45.62 NO POLE x[1] = 0.755 y[1] (analytic) = 0 y[1] (numeric) = 0.50682694221661774116273387411195 absolute error = 0.50682694221661774116273387411195 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.756 y[1] (analytic) = 0 y[1] (numeric) = 0.50750476590176474387572206067478 absolute error = 0.50750476590176474387572206067478 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.757 y[1] (analytic) = 0 y[1] (numeric) = 0.50818237816112375729280826915527 absolute error = 0.50818237816112375729280826915527 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.758 y[1] (analytic) = 0 y[1] (numeric) = 0.50885977924591001169918543425294 absolute error = 0.50885977924591001169918543425294 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.759 y[1] (analytic) = 0 y[1] (numeric) = 0.50953696940691108765617563307704 absolute error = 0.50953696940691108765617563307704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=442.5MB, alloc=4.3MB, time=46.02 NO POLE x[1] = 0.76 y[1] (analytic) = 0 y[1] (numeric) = 0.51021394889448808970070486395917 absolute error = 0.51021394889448808970070486395917 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.761 y[1] (analytic) = 0 y[1] (numeric) = 0.5108907179585768154741090789186 absolute error = 0.5108907179585768154741090789186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.762 y[1] (analytic) = 0 y[1] (numeric) = 0.51156727684868892030377634405772 absolute error = 0.51156727684868892030377634405772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.763 y[1] (analytic) = 0 y[1] (numeric) = 0.51224362581391307726097887766296 absolute error = 0.51224362581391307726097887766296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.764 y[1] (analytic) = 0 y[1] (numeric) = 0.51291976510291613271809875949972 absolute error = 0.51291976510291613271809875949972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.765 y[1] (analytic) = 0 y[1] (numeric) = 0.51359569496394425742830230616459 absolute error = 0.51359569496394425742830230616459 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=446.3MB, alloc=4.3MB, time=46.43 NO POLE x[1] = 0.766 y[1] (analytic) = 0 y[1] (numeric) = 0.5142714156448240931505704559494 absolute error = 0.5142714156448240931505704559494 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.767 y[1] (analytic) = 0 y[1] (numeric) = 0.51494692739296389484284599214283 absolute error = 0.51494692739296389484284599214283 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.768 y[1] (analytic) = 0 y[1] (numeric) = 0.51562223045535466844591304581569 absolute error = 0.51562223045535466844591304581569 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.769 y[1] (analytic) = 0 y[1] (numeric) = 0.51629732507857130428048004778051 absolute error = 0.51629732507857130428048004778051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.77 y[1] (analytic) = 0 y[1] (numeric) = 0.5169722115087737060797941345642 absolute error = 0.5169722115087737060797941345642 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.771 y[1] (analytic) = 0 y[1] (numeric) = 0.51764688999170791567997294496555 absolute error = 0.51764688999170791567997294496555 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=450.1MB, alloc=4.3MB, time=46.83 NO POLE x[1] = 0.772 y[1] (analytic) = 0 y[1] (numeric) = 0.51832136077270723339009876227174 absolute error = 0.51832136077270723339009876227174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.773 y[1] (analytic) = 0 y[1] (numeric) = 0.51899562409669333406398005276322 absolute error = 0.51899562409669333406398005276322 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.774 y[1] (analytic) = 0 y[1] (numeric) = 0.51966968020817737889534661412868 absolute error = 0.51966968020817737889534661412868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.775 y[1] (analytic) = 0 y[1] (numeric) = 0.52034352935126112295810676832279 absolute error = 0.52034352935126112295810676832279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.776 y[1] (analytic) = 0 y[1] (numeric) = 0.52101717176963801851315830280782 absolute error = 0.52101717176963801851315830280782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=453.9MB, alloc=4.3MB, time=47.23 NO POLE x[1] = 0.777 y[1] (analytic) = 0 y[1] (numeric) = 0.52169060770659431410310917270178 absolute error = 0.52169060770659431410310917270178 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.778 y[1] (analytic) = 0 y[1] (numeric) = 0.52236383740501014945612931487934 absolute error = 0.52236383740501014945612931487934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.779 y[1] (analytic) = 0 y[1] (numeric) = 0.52303686110736064622002128440209 absolute error = 0.52303686110736064622002128440209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.78 y[1] (analytic) = 0 y[1] (numeric) = 0.52370967905571699454746479474717 absolute error = 0.52370967905571699454746479474717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.781 y[1] (analytic) = 0 y[1] (numeric) = 0.52438229149174753555325861720704 absolute error = 0.52438229149174753555325861720704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.782 y[1] (analytic) = 0 y[1] (numeric) = 0.52505469865671883966425266268601 absolute error = 0.52505469865671883966425266268601 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=457.7MB, alloc=4.3MB, time=47.64 NO POLE x[1] = 0.783 y[1] (analytic) = 0 y[1] (numeric) = 0.52572690079149678088253342214992 absolute error = 0.52572690079149678088253342214992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.784 y[1] (analytic) = 0 y[1] (numeric) = 0.52639889813654760698229727151105 absolute error = 0.52639889813654760698229727151105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.785 y[1] (analytic) = 0 y[1] (numeric) = 0.52707069093193900566071844415491 absolute error = 0.52707069093193900566071844415491 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.786 y[1] (analytic) = 0 y[1] (numeric) = 0.52774227941734116666299173113056 absolute error = 0.52774227941734116666299173113056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.787 y[1] (analytic) = 0 y[1] (numeric) = 0.52841366383202783990160417680807 absolute error = 0.52841366383202783990160417680807 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.788 y[1] (analytic) = 0 y[1] (numeric) = 0.52908484441487738958976518821667 absolute error = 0.52908484441487738958976518821667 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=461.5MB, alloc=4.3MB, time=48.04 NO POLE x[1] = 0.789 y[1] (analytic) = 0 y[1] (numeric) = 0.52975582140437384440880056106031 absolute error = 0.52975582140437384440880056106031 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.79 y[1] (analytic) = 0 y[1] (numeric) = 0.53042659503860794372919293639127 absolute error = 0.53042659503860794372919293639127 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.791 y[1] (analytic) = 0 y[1] (numeric) = 0.53109716555527817990482913101656 absolute error = 0.53109716555527817990482913101656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.792 y[1] (analytic) = 0 y[1] (numeric) = 0.5317675331916918366598936239065 absolute error = 0.5317675331916918366598936239065 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.793 y[1] (analytic) = 0 y[1] (numeric) = 0.53243769818476602358772722224034 absolute error = 0.53243769818476602358772722224034 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=465.4MB, alloc=4.3MB, time=48.44 NO POLE x[1] = 0.794 y[1] (analytic) = 0 y[1] (numeric) = 0.53310766077102870678085056640935 absolute error = 0.53310766077102870678085056640935 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.795 y[1] (analytic) = 0 y[1] (numeric) = 0.5337774211866197356112336555311 absolute error = 0.5337774211866197356112336555311 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.796 y[1] (analytic) = 0 y[1] (numeric) = 0.53444697966729186567977497611435 absolute error = 0.53444697966729186567977497611435 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.797 y[1] (analytic) = 0 y[1] (numeric) = 0.53511633644841177795383708883329 absolute error = 0.53511633644841177795383708883329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.798 y[1] (analytic) = 0 y[1] (numeric) = 0.53578549176496109411156966437989 absolute error = 0.53578549176496109411156966437989 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.799 y[1] (analytic) = 0 y[1] (numeric) = 0.53645444585153738811163595159485 absolute error = 0.53645444585153738811163595159485 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=469.2MB, alloc=4.3MB, time=48.83 NO POLE x[1] = 0.8 y[1] (analytic) = 0 y[1] (numeric) = 0.53712319894235519400684450213718 absolute error = 0.53712319894235519400684450213718 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.801 y[1] (analytic) = 0 y[1] (numeric) = 0.53779175127124701002007465851773 absolute error = 0.53779175127124701002007465851773 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.802 y[1] (analytic) = 0 y[1] (numeric) = 0.53846010307166429890077182914406 absolute error = 0.53846010307166429890077182914406 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.803 y[1] (analytic) = 0 y[1] (numeric) = 0.53912825457667848458017691792526 absolute error = 0.53912825457667848458017691792526 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.804 y[1] (analytic) = 0 y[1] (numeric) = 0.53979620601898194514334343985823 absolute error = 0.53979620601898194514334343985823 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.805 y[1] (analytic) = 0 y[1] (numeric) = 0.54046395763088900213588583082457 absolute error = 0.54046395763088900213588583082457 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=473.0MB, alloc=4.3MB, time=49.23 NO POLE x[1] = 0.806 y[1] (analytic) = 0 y[1] (numeric) = 0.54113150964433690622329324260145 absolute error = 0.54113150964433690622329324260145 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.807 y[1] (analytic) = 0 y[1] (numeric) = 0.54179886229088681922053469593092 absolute error = 0.54179886229088681922053469593092 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.808 y[1] (analytic) = 0 y[1] (numeric) = 0.54246601580172479250957383856748 absolute error = 0.54246601580172479250957383856748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.809 y[1] (analytic) = 0 y[1] (numeric) = 0.54313297040766274186230471476888 absolute error = 0.54313297040766274186230471476888 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.81 y[1] (analytic) = 0 y[1] (numeric) = 0.54379972633913941868631389100985 absolute error = 0.54379972633913941868631389100985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=476.8MB, alloc=4.3MB, time=49.62 NO POLE x[1] = 0.811 y[1] (analytic) = 0 y[1] (numeric) = 0.5444662838262213777107689931497 absolute error = 0.5444662838262213777107689931497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.812 y[1] (analytic) = 0 y[1] (numeric) = 0.54513264309860394112962918630285 absolute error = 0.54513264309860394112962918630285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.813 y[1] (analytic) = 0 y[1] (numeric) = 0.54579880438561215921926936374139 absolute error = 0.54579880438561215921926936374139 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.814 y[1] (analytic) = 0 y[1] (numeric) = 0.54646476791620176744750679885854 absolute error = 0.54646476791620176744750679885854 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.815 y[1] (analytic) = 0 y[1] (numeric) = 0.54713053391896014009091674816205 absolute error = 0.54713053391896014009091674816205 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.816 y[1] (analytic) = 0 y[1] (numeric) = 0.54779610262210724037722196712981 absolute error = 0.54779610262210724037722196712981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=480.6MB, alloc=4.3MB, time=50.01 NO POLE x[1] = 0.817 y[1] (analytic) = 0 y[1] (numeric) = 0.54846147425349656716944030828937 absolute error = 0.54846147425349656716944030828937 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.818 y[1] (analytic) = 0 y[1] (numeric) = 0.54912664904061609820837450588364 absolute error = 0.54912664904061609820837450588364 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.819 y[1] (analytic) = 0 y[1] (numeric) = 0.54979162721058922992992890781998 absolute error = 0.54979162721058922992992890781998 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.82 y[1] (analytic) = 0 y[1] (numeric) = 0.55045640899017571387363928719325 absolute error = 0.55045640899017571387363928719325 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.821 y[1] (analytic) = 0 y[1] (numeric) = 0.55112099460577258969870394650647 absolute error = 0.55112099460577258969870394650647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.822 y[1] (analytic) = 0 y[1] (numeric) = 0.55178538428341511482370711182563 absolute error = 0.55178538428341511482370711182563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=484.4MB, alloc=4.3MB, time=50.42 NO POLE x[1] = 0.823 y[1] (analytic) = 0 y[1] (numeric) = 0.55244957824877769070612909559509 absolute error = 0.55244957824877769070612909559509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.824 y[1] (analytic) = 0 y[1] (numeric) = 0.55311357672717478577764187986024 absolute error = 0.55311357672717478577764187986024 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.825 y[1] (analytic) = 0 y[1] (numeric) = 0.5537773799435618550510936304054 absolute error = 0.5537773799435618550510936304054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.826 y[1] (analytic) = 0 y[1] (numeric) = 0.55444098812253625641499119108166 absolute error = 0.55444098812253625641499119108166 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.827 y[1] (analytic) = 0 y[1] (numeric) = 0.5551044014883381636311958206928 absolute error = 0.5551044014883381636311958206928 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=488.2MB, alloc=4.3MB, time=50.82 x[1] = 0.828 y[1] (analytic) = 0 y[1] (numeric) = 0.55576762026485147605145431660104 absolute error = 0.55576762026485147605145431660104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.829 y[1] (analytic) = 0 y[1] (numeric) = 0.55643064467560472506829521413757 absolute error = 0.55643064467560472506829521413757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.83 y[1] (analytic) = 0 y[1] (numeric) = 0.55709347494377197731572795343574 absolute error = 0.55709347494377197731572795343574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.831 y[1] (analytic) = 0 y[1] (numeric) = 0.55775611129217373463509175998236 absolute error = 0.55775611129217373463509175998236 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.832 y[1] (analytic) = 0 y[1] (numeric) = 0.55841855394327783082131048659003 absolute error = 0.55841855394327783082131048659003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.833 y[1] (analytic) = 0 y[1] (numeric) = 0.55908080311920032516471980726848 absolute error = 0.55908080311920032516471980726848 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=492.1MB, alloc=4.3MB, time=51.23 NO POLE x[1] = 0.834 y[1] (analytic) = 0 y[1] (numeric) = 0.55974285904170639280354393230365 absolute error = 0.55974285904170639280354393230365 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.835 y[1] (analytic) = 0 y[1] (numeric) = 0.56040472193221121190201042347801 absolute error = 0.56040472193221121190201042347801 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.836 y[1] (analytic) = 0 y[1] (numeric) = 0.56106639201178084766900372357341 absolute error = 0.56106639201178084766900372357341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.837 y[1] (analytic) = 0 y[1] (numeric) = 0.56172786950113313323207066992533 absolute error = 0.56172786950113313323207066992533 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.838 y[1] (analytic) = 0 y[1] (numeric) = 0.56238915462063854738150453273185 absolute error = 0.56238915462063854738150453273185 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.839 y[1] (analytic) = 0 y[1] (numeric) = 0.56305024759032108919914799999639 absolute error = 0.56305024759032108919914799999639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=495.9MB, alloc=4.3MB, time=51.65 NO POLE x[1] = 0.84 y[1] (analytic) = 0 y[1] (numeric) = 0.56371114862985914958647001738219 absolute error = 0.56371114862985914958647001738219 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.841 y[1] (analytic) = 0 y[1] (numeric) = 0.56437185795858637970638647790904 absolute error = 0.56437185795858637970638647790904 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.842 y[1] (analytic) = 0 y[1] (numeric) = 0.56503237579549255635321043840409 absolute error = 0.56503237579549255635321043840409 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.843 y[1] (analytic) = 0 y[1] (numeric) = 0.56569270235922444426503381205211 absolute error = 0.56569270235922444426503381205211 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.844 y[1] (analytic) = 0 y[1] (numeric) = 0.56635283786808665539275934444387 absolute error = 0.56635283786808665539275934444387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=499.7MB, alloc=4.3MB, time=52.06 x[1] = 0.845 y[1] (analytic) = 0 y[1] (numeric) = 0.5670127825400425051399191194081 absolute error = 0.5670127825400425051399191194081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.846 y[1] (analytic) = 0 y[1] (numeric) = 0.56767253659271486558733385589091 absolute error = 0.56767253659271486558733385589091 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.847 y[1] (analytic) = 0 y[1] (numeric) = 0.56833210024338701571658584351912 absolute error = 0.56833210024338701571658584351912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.848 y[1] (analytic) = 0 y[1] (numeric) = 0.56899147370900348864619751759687 absolute error = 0.56899147370900348864619751759687 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.849 y[1] (analytic) = 0 y[1] (numeric) = 0.56965065720617091589432738952826 absolute error = 0.56965065720617091589432738952826 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.85 y[1] (analytic) = 0 y[1] (numeric) = 0.57030965095115886868171532146453 absolute error = 0.57030965095115886868171532146453 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=503.5MB, alloc=4.3MB, time=52.46 NO POLE x[1] = 0.851 y[1] (analytic) = 0 y[1] (numeric) = 0.57096845515990069628852995981821 absolute error = 0.57096845515990069628852995981821 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.852 y[1] (analytic) = 0 y[1] (numeric) = 0.57162707004799436147869251668561 absolute error = 0.57162707004799436147869251668561 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.853 y[1] (analytic) = 0 y[1] (numeric) = 0.57228549583070327300517300673133 absolute error = 0.57228549583070327300517300673133 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.854 y[1] (analytic) = 0 y[1] (numeric) = 0.57294373272295711520967750531462 absolute error = 0.57294373272295711520967750531462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.855 y[1] (analytic) = 0 y[1] (numeric) = 0.57360178093935267473006798721736 absolute error = 0.57360178093935267473006798721736 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.856 y[1] (analytic) = 0 y[1] (numeric) = 0.57425964069415466432877982994848 absolute error = 0.57425964069415466432877982994848 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=507.3MB, alloc=4.3MB, time=52.87 NO POLE x[1] = 0.857 y[1] (analytic) = 0 y[1] (numeric) = 0.57491731220129654385542611697021 absolute error = 0.57491731220129654385542611697021 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.858 y[1] (analytic) = 0 y[1] (numeric) = 0.57557479567438133835670245007786 absolute error = 0.57557479567438133835670245007786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.859 y[1] (analytic) = 0 y[1] (numeric) = 0.57623209132668245334663107236641 absolute error = 0.57623209132668245334663107236641 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.86 y[1] (analytic) = 0 y[1] (numeric) = 0.57688919937114448725010870957142 absolute error = 0.57688919937114448725010870957142 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.861 y[1] (analytic) = 0 y[1] (numeric) = 0.57754612002038404103264865395522 absolute error = 0.57754612002038404103264865395522 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=511.1MB, alloc=4.3MB, time=53.29 x[1] = 0.862 y[1] (analytic) = 0 y[1] (numeric) = 0.5782028534866905250291342372358 absolute error = 0.5782028534866905250291342372358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.863 y[1] (analytic) = 0 y[1] (numeric) = 0.57885939998202696298432796327662 absolute error = 0.57885939998202696298432796327662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.864 y[1] (analytic) = 0 y[1] (numeric) = 0.57951575971803079331780819335938 absolute error = 0.57951575971803079331780819335938 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.865 y[1] (analytic) = 0 y[1] (numeric) = 0.58017193290601466762593339287382 absolute error = 0.58017193290601466762593339287382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.866 y[1] (analytic) = 0 y[1] (numeric) = 0.58082791975696724643336255424012 absolute error = 0.58082791975696724643336255424012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.867 y[1] (analytic) = 0 y[1] (numeric) = 0.58148372048155399220658950292829 absolute error = 0.58148372048155399220658950292829 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=515.0MB, alloc=4.3MB, time=53.68 NO POLE x[1] = 0.868 y[1] (analytic) = 0 y[1] (numeric) = 0.58213933529011795964187836768762 absolute error = 0.58213933529011795964187836768762 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.869 y[1] (analytic) = 0 y[1] (numeric) = 0.58279476439268058323991754871654 absolute error = 0.58279476439268058323991754871654 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.87 y[1] (analytic) = 0 y[1] (numeric) = 0.58345000799894246217944004469152 absolute error = 0.58345000799894246217944004469152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.871 y[1] (analytic) = 0 y[1] (numeric) = 0.58410506631828414250198899757127 absolute error = 0.58410506631828414250198899757127 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.872 y[1] (analytic) = 0 y[1] (numeric) = 0.5847599395597668966199387791704 absolute error = 0.5847599395597668966199387791704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.873 y[1] (analytic) = 0 y[1] (numeric) = 0.58541462793213350015981387196082 absolute error = 0.58541462793213350015981387196082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=518.8MB, alloc=4.3MB, time=54.09 NO POLE x[1] = 0.874 y[1] (analytic) = 0 y[1] (numeric) = 0.58606913164380900615288018474821 absolute error = 0.58606913164380900615288018474821 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.875 y[1] (analytic) = 0 y[1] (numeric) = 0.58672345090290151658491628815693 absolute error = 0.58672345090290151658491628815693 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.876 y[1] (analytic) = 0 y[1] (numeric) = 0.58737758591720295131700535164447 absolute error = 0.58737758591720295131700535164447 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.877 y[1] (analytic) = 0 y[1] (numeric) = 0.58803153689418981438912230949329 absolute error = 0.58803153689418981438912230949329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.878 y[1] (analytic) = 0 y[1] (numeric) = 0.58868530404102395771822497436274 absolute error = 0.58868530404102395771822497436274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=522.6MB, alloc=4.3MB, time=54.48 NO POLE x[1] = 0.879 y[1] (analytic) = 0 y[1] (numeric) = 0.58933888756455334220249245002814 absolute error = 0.58933888756455334220249245002814 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.88 y[1] (analytic) = 0 y[1] (numeric) = 0.58999228767131279624328926641992 absolute error = 0.58999228767131279624328926641992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.881 y[1] (analytic) = 0 y[1] (numeric) = 0.5906455045675247716963691665675 absolute error = 0.5906455045675247716963691665675 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.882 y[1] (analytic) = 0 y[1] (numeric) = 0.59129853845910009726376841314387 absolute error = 0.59129853845910009726376841314387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.883 y[1] (analytic) = 0 y[1] (numeric) = 0.59195138955163872933777484862338 absolute error = 0.59195138955163872933777484862338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.884 y[1] (analytic) = 0 y[1] (numeric) = 0.59260405805043050030829573426175 absolute error = 0.59260405805043050030829573426175 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=526.4MB, alloc=4.3MB, time=54.89 NO POLE x[1] = 0.885 y[1] (analytic) = 0 y[1] (numeric) = 0.59325654416045586434488460586907 absolute error = 0.59325654416045586434488460586907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.886 y[1] (analytic) = 0 y[1] (numeric) = 0.59390884808638664066462501538824 absolute error = 0.59390884808638664066462501538824 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.887 y[1] (analytic) = 0 y[1] (numeric) = 0.59456097003258675429700707335668 absolute error = 0.59456097003258675429700707335668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.888 y[1] (analytic) = 0 y[1] (numeric) = 0.59521291020311297435687116519164 absolute error = 0.59521291020311297435687116519164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.889 y[1] (analytic) = 0 y[1] (numeric) = 0.59586466880171564983643208070008 absolute error = 0.59586466880171564983643208070008 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.89 y[1] (analytic) = 0 y[1] (numeric) = 0.59651624603183944292733606810377 absolute error = 0.59651624603183944292733606810377 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=530.2MB, alloc=4.3MB, time=55.29 NO POLE x[1] = 0.891 y[1] (analytic) = 0 y[1] (numeric) = 0.59716764209662405988364299804653 absolute error = 0.59716764209662405988364299804653 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.892 y[1] (analytic) = 0 y[1] (numeric) = 0.59781885719890497943656589639988 absolute error = 0.59781885719890497943656589639988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.893 y[1] (analytic) = 0 y[1] (numeric) = 0.5984698915412141787717405741196 absolute error = 0.5984698915412141787717405741196 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.894 y[1] (analytic) = 0 y[1] (numeric) = 0.59912074532578085707973894486936 absolute error = 0.59912074532578085707973894486936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.895 y[1] (analytic) = 0 y[1] (numeric) = 0.5997714187545321566904808735872 absolute error = 0.5997714187545321566904808735872 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=534.0MB, alloc=4.3MB, time=55.69 NO POLE x[1] = 0.896 y[1] (analytic) = 0 y[1] (numeric) = 0.60042191202909388180214103862073 absolute error = 0.60042191202909388180214103862073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.897 y[1] (analytic) = 0 y[1] (numeric) = 0.60107222535079121481508931351874 absolute error = 0.60107222535079121481508931351874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.898 y[1] (analytic) = 0 y[1] (numeric) = 0.60172235892064943028134557908836 absolute error = 0.60172235892064943028134557908836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.899 y[1] (analytic) = 0 y[1] (numeric) = 0.60237231293939460647997265898106 absolute error = 0.60237231293939460647997265898106 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.9 y[1] (analytic) = 0 y[1] (numeric) = 0.60302208760745433462877422995702 absolute error = 0.60302208760745433462877422995702 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.901 y[1] (analytic) = 0 y[1] (numeric) = 0.60367168312495842574260808822065 absolute error = 0.60367168312495842574260808822065 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=537.8MB, alloc=4.3MB, time=56.08 NO POLE x[1] = 0.902 y[1] (analytic) = 0 y[1] (numeric) = 0.60432109969173961514856905296988 absolute error = 0.60432109969173961514856905296988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.903 y[1] (analytic) = 0 y[1] (numeric) = 0.60497033750733426466824005473316 absolute error = 0.60497033750733426466824005473316 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.904 y[1] (analytic) = 0 y[1] (numeric) = 0.60561939677098306247715458638096 absolute error = 0.60561939677098306247715458638096 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.905 y[1] (analytic) = 0 y[1] (numeric) = 0.60626827768163172065155868611622 absolute error = 0.60626827768163172065155868611622 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.906 y[1] (analytic) = 0 y[1] (numeric) = 0.6069169804379316704125059715197 absolute error = 0.6069169804379316704125059715197 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.907 y[1] (analytic) = 0 y[1] (numeric) = 0.60756550523824075507726494912337 absolute error = 0.60756550523824075507726494912337 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=541.7MB, alloc=4.3MB, time=56.47 NO POLE x[1] = 0.908 y[1] (analytic) = 0 y[1] (numeric) = 0.60821385228062392072796388230402 absolute error = 0.60821385228062392072796388230402 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.909 y[1] (analytic) = 0 y[1] (numeric) = 0.60886202176285390460734490884989 absolute error = 0.60886202176285390460734490884989 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.91 y[1] (analytic) = 0 y[1] (numeric) = 0.60951001388241192125144585569777 absolute error = 0.60951001388241192125144585569777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.911 y[1] (analytic) = 0 y[1] (numeric) = 0.6101578288364883463689752994332 absolute error = 0.6101578288364883463689752994332 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.912 y[1] (analytic) = 0 y[1] (numeric) = 0.61080546682198339847709386458043 absolute error = 0.61080546682198339847709386458043 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=545.5MB, alloc=4.3MB, time=56.87 NO POLE x[1] = 0.913 y[1] (analytic) = 0 y[1] (numeric) = 0.61145292803550781830326253489329 absolute error = 0.61145292803550781830326253489329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.914 y[1] (analytic) = 0 y[1] (numeric) = 0.61210021267338354596276687322678 absolute error = 0.61210021267338354596276687322678 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.915 y[1] (analytic) = 0 y[1] (numeric) = 0.61274732093164439592147450057805 absolute error = 0.61274732093164439592147450057805 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.916 y[1] (analytic) = 0 y[1] (numeric) = 0.61339425300603672975333197201257 absolute error = 0.61339425300603672975333197201257 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.917 y[1] (analytic) = 0 y[1] (numeric) = 0.61404100909202012670205630393581 absolute error = 0.61404100909202012670205630393581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.918 y[1] (analytic) = 0 y[1] (numeric) = 0.61468758938476805205642585105492 absolute error = 0.61468758938476805205642585105492 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=549.3MB, alloc=4.3MB, time=57.23 NO POLE x[1] = 0.919 y[1] (analytic) = 0 y[1] (numeric) = 0.61533399407916852334852499994006 absolute error = 0.61533399407916852334852499994006 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.92 y[1] (analytic) = 0 y[1] (numeric) = 0.61598022336982477438424723690593 absolute error = 0.61598022336982477438424723690593 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.921 y[1] (analytic) = 0 y[1] (numeric) = 0.61662627745105591711531155857455 absolute error = 0.61662627745105591711531155857455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.922 y[1] (analytic) = 0 y[1] (numeric) = 0.61727215651689760136199792155621 absolute error = 0.61727215651689760136199792155621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.923 y[1] (analytic) = 0 y[1] (numeric) = 0.61791786076110267239575847082236 absolute error = 0.61791786076110267239575847082236 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.924 y[1] (analytic) = 0 y[1] (numeric) = 0.61856339037714182639081264218824 absolute error = 0.61856339037714182639081264218824 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=553.1MB, alloc=4.3MB, time=57.62 NO POLE x[1] = 0.925 y[1] (analytic) = 0 y[1] (numeric) = 0.61920874555820426375378590054064 absolute error = 0.61920874555820426375378590054064 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.926 y[1] (analytic) = 0 y[1] (numeric) = 0.61985392649719834034040384972332 absolute error = 0.61985392649719834034040384972332 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.927 y[1] (analytic) = 0 y[1] (numeric) = 0.62049893338675221656820573003554 absolute error = 0.62049893338675221656820573003554 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.928 y[1] (analytic) = 0 y[1] (numeric) = 0.62114376641921450443419390283326 absolute error = 0.62114376641921450443419390283326 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.929 y[1] (analytic) = 0 y[1] (numeric) = 0.62178842578665491244628880649229 absolute error = 0.62178842578665491244628880649229 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=556.9MB, alloc=4.3MB, time=58.01 NO POLE x[1] = 0.93 y[1] (analytic) = 0 y[1] (numeric) = 0.62243291168086488847741205176295 absolute error = 0.62243291168086488847741205176295 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.931 y[1] (analytic) = 0 y[1] (numeric) = 0.62307722429335826055097380509872 absolute error = 0.62307722429335826055097380509872 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.932 y[1] (analytic) = 0 y[1] (numeric) = 0.62372136381537187556649438367937 absolute error = 0.62372136381537187556649438367937 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.933 y[1] (analytic) = 0 y[1] (numeric) = 0.62436533043786623597404405339227 absolute error = 0.62436533043786623597404405339227 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.934 y[1] (analytic) = 0 y[1] (numeric) = 0.62500912435152613440613937882322 absolute error = 0.62500912435152613440613937882322 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.935 y[1] (analytic) = 0 y[1] (numeric) = 0.6256527457467612862756891201971 absolute error = 0.6256527457467612862756891201971 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=560.7MB, alloc=4.3MB, time=58.39 NO POLE x[1] = 0.936 y[1] (analytic) = 0 y[1] (numeric) = 0.62629619481370696034853760407438 absolute error = 0.62629619481370696034853760407438 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.937 y[1] (analytic) = 0 y[1] (numeric) = 0.62693947174222460729910871034533 absolute error = 0.62693947174222460729910871034533 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.938 y[1] (analytic) = 0 y[1] (numeric) = 0.62758257672190248625760911558042 absolute error = 0.62758257672190248625760911558042 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.939 y[1] (analytic) = 0 y[1] (numeric) = 0.62822550994205628935720521002166 absolute error = 0.62822550994205628935720521002166 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.94 y[1] (analytic) = 0 y[1] (numeric) = 0.62886827159172976428954416038146 absolute error = 0.62886827159172976428954416038146 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.941 y[1] (analytic) = 0 y[1] (numeric) = 0.6295108618596953348769459211161 absolute error = 0.6295108618596953348769459211161 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=564.5MB, alloc=4.3MB, time=58.78 NO POLE x[1] = 0.942 y[1] (analytic) = 0 y[1] (numeric) = 0.63015328093445471966954960094079 absolute error = 0.63015328093445471966954960094079 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.943 y[1] (analytic) = 0 y[1] (numeric) = 0.63079552900423954857565446704938 absolute error = 0.63079552900423954857565446704938 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.944 y[1] (analytic) = 0 y[1] (numeric) = 0.63143760625701197753345301480875 absolute error = 0.63143760625701197753345301480875 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.945 y[1] (analytic) = 0 y[1] (numeric) = 0.63207951288046530123231094364555 absolute error = 0.63207951288046530123231094364555 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.946 y[1] (analytic) = 0 y[1] (numeric) = 0.63272124906202456389170655847967 absolute error = 0.63272124906202456389170655847967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=568.4MB, alloc=4.3MB, time=59.16 NO POLE x[1] = 0.947 y[1] (analytic) = 0 y[1] (numeric) = 0.63336281498884716810590005844662 absolute error = 0.63336281498884716810590005844662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.948 y[1] (analytic) = 0 y[1] (numeric) = 0.63400421084782348176236137887072 absolute error = 0.63400421084782348176236137887072 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.949 y[1] (analytic) = 0 y[1] (numeric) = 0.63464543682557744304194371659748 absolute error = 0.63464543682557744304194371659748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.95 y[1] (analytic) = 0 y[1] (numeric) = 0.63528649310846716350874859097859 absolute error = 0.63528649310846716350874859097859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.951 y[1] (analytic) = 0 y[1] (numeric) = 0.63592737988258552929758727115354 absolute error = 0.63592737988258552929758727115354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.952 y[1] (analytic) = 0 y[1] (numeric) = 0.63656809733376080040690263293079 absolute error = 0.63656809733376080040690263293079 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=572.2MB, alloc=4.3MB, time=59.56 NO POLE x[1] = 0.953 y[1] (analytic) = 0 y[1] (numeric) = 0.6372086456475572081049749936969 absolute error = 0.6372086456475572081049749936969 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.954 y[1] (analytic) = 0 y[1] (numeric) = 0.63784902500927555045719520954712 absolute error = 0.63784902500927555045719520954712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.955 y[1] (analytic) = 0 y[1] (numeric) = 0.63848923560395378598214830342453 absolute error = 0.63848923560395378598214830342453 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.956 y[1] (analytic) = 0 y[1] (numeric) = 0.63912927761636762544421112468011 absolute error = 0.63912927761636762544421112468011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.957 y[1] (analytic) = 0 y[1] (numeric) = 0.63976915123103112179032801734162 absolute error = 0.63976915123103112179032801734162 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.958 y[1] (analytic) = 0 y[1] (numeric) = 0.64040885663219725823858919473783 absolute error = 0.64040885663219725823858919473783 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=576.0MB, alloc=4.3MB, time=59.98 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.959 y[1] (analytic) = 0 y[1] (numeric) = 0.64104839400385853452619748021401 absolute error = 0.64104839400385853452619748021401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.96 y[1] (analytic) = 0 y[1] (numeric) = 0.6416877635297475513243702757568 absolute error = 0.6416877635297475513243702757568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.961 y[1] (analytic) = 0 y[1] (numeric) = 0.642326965393337592827685060698 absolute error = 0.642326965393337592827685060698 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.962 y[1] (analytic) = 0 y[1] (numeric) = 0.64296599977784320752533839957768 absolute error = 0.64296599977784320752533839957768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.963 y[1] (analytic) = 0 y[1] (numeric) = 0.64360486686622078716175035002221 absolute error = 0.64360486686622078716175035002221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=579.8MB, alloc=4.3MB, time=60.37 NO POLE x[1] = 0.964 y[1] (analytic) = 0 y[1] (numeric) = 0.64424356684116914389390830645056 absolute error = 0.64424356684116914389390830645056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.965 y[1] (analytic) = 0 y[1] (numeric) = 0.64488209988513008565280669189465 absolute error = 0.64488209988513008565280669189465 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.966 y[1] (analytic) = 0 y[1] (numeric) = 0.64552046618028898971630151655282 absolute error = 0.64552046618028898971630151655282 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.967 y[1] (analytic) = 0 y[1] (numeric) = 0.64615866590857537450066165624867 absolute error = 0.64615866590857537450066165624867 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.968 y[1] (analytic) = 0 y[1] (numeric) = 0.64679669925166346957806176511367 absolute error = 0.64679669925166346957806176511367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.969 y[1] (analytic) = 0 y[1] (numeric) = 0.64743456639097278392722502293685 absolute error = 0.64743456639097278392722502293685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=583.6MB, alloc=4.3MB, time=60.76 NO POLE x[1] = 0.97 y[1] (analytic) = 0 y[1] (numeric) = 0.64807226750766867242438742712806 absolute error = 0.64807226750766867242438742712806 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.971 y[1] (analytic) = 0 y[1] (numeric) = 0.64870980278266290058171907053468 absolute error = 0.64870980278266290058171907053468 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.972 y[1] (analytic) = 0 y[1] (numeric) = 0.64934717239661420754030179786069 absolute error = 0.64934717239661420754030179786069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.973 y[1] (analytic) = 0 y[1] (numeric) = 0.64998437652992886732472680359944 absolute error = 0.64998437652992886732472680359944 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.974 y[1] (analytic) = 0 y[1] (numeric) = 0.65062141536276124836634012165805 absolute error = 0.65062141536276124836634012165805 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=587.4MB, alloc=4.3MB, time=61.14 x[1] = 0.975 y[1] (analytic) = 0 y[1] (numeric) = 0.6512582890750143713021285596853 absolute error = 0.6512582890750143713021285596853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.976 y[1] (analytic) = 0 y[1] (numeric) = 0.65189499784634046505620344799168 absolute error = 0.65189499784634046505620344799168 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.977 y[1] (analytic) = 0 y[1] (numeric) = 0.65253154185614152121080460235813 absolute error = 0.65253154185614152121080460235813 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.978 y[1] (analytic) = 0 y[1] (numeric) = 0.65316792128356984667371214046882 absolute error = 0.65316792128356984667371214046882 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.979 y[1] (analytic) = 0 y[1] (numeric) = 0.65380413630752861464891924168594 absolute error = 0.65380413630752861464891924168594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.98 y[1] (analytic) = 0 y[1] (numeric) = 0.6544401871066724139173845979345 absolute error = 0.6544401871066724139173845979345 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=591.2MB, alloc=4.3MB, time=61.52 NO POLE x[1] = 0.981 y[1] (analytic) = 0 y[1] (numeric) = 0.65507607385940779643464916811925 absolute error = 0.65507607385940779643464916811925 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.982 y[1] (analytic) = 0 y[1] (numeric) = 0.6557117967438938232520679183022 absolute error = 0.6557117967438938232520679183022 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.983 y[1] (analytic) = 0 y[1] (numeric) = 0.65634735593804260876837350338673 absolute error = 0.65634735593804260876837350338673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.984 y[1] (analytic) = 0 y[1] (numeric) = 0.65698275161951986331825532185509 absolute error = 0.65698275161951986331825532185509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.985 y[1] (analytic) = 0 y[1] (numeric) = 0.65761798396574543410460405177226 absolute error = 0.65761798396574543410460405177226 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.986 y[1] (analytic) = 0 y[1] (numeric) = 0.65825305315389384448103865239499 absolute error = 0.65825305315389384448103865239499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=595.1MB, alloc=4.3MB, time=61.91 NO POLE x[1] = 0.987 y[1] (analytic) = 0 y[1] (numeric) = 0.65888795936089483159129988991575 absolute error = 0.65888795936089483159129988991575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.988 y[1] (analytic) = 0 y[1] (numeric) = 0.65952270276343388237206171674354 absolute error = 0.65952270276343388237206171674354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.989 y[1] (analytic) = 0 y[1] (numeric) = 0.66015728353795276792567929990488 absolute error = 0.66015728353795276792567929990488 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.99 y[1] (analytic) = 0 y[1] (numeric) = 0.6607917018606500762693601542771 absolute error = 0.6607917018606500762693601542771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.991 y[1] (analytic) = 0 y[1] (numeric) = 0.66142595790748174346721268909174 absolute error = 0.66142595790748174346721268909174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=598.9MB, alloc=4.3MB, time=62.30 NO POLE x[1] = 0.992 y[1] (analytic) = 0 y[1] (numeric) = 0.66206005185416158315159452012851 absolute error = 0.66206005185416158315159452012851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.993 y[1] (analytic) = 0 y[1] (numeric) = 0.66269398387616181444015113393081 absolute error = 0.66269398387616181444015113393081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.994 y[1] (analytic) = 0 y[1] (numeric) = 0.66332775414871358825490391289338 absolute error = 0.66332775414871358825490391289338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.995 y[1] (analytic) = 0 y[1] (numeric) = 0.66396136284680751204971513989321 absolute error = 0.66396136284680751204971513989321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.996 y[1] (analytic) = 0 y[1] (numeric) = 0.66459481014519417295242639695887 absolute error = 0.66459481014519417295242639695887 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.997 y[1] (analytic) = 0 y[1] (numeric) = 0.66522809621838465932793575301261 absolute error = 0.66522809621838465932793575301261 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=602.7MB, alloc=4.3MB, time=62.69 NO POLE x[1] = 0.998 y[1] (analytic) = 0 y[1] (numeric) = 0.66586122124065108076844829969791 absolute error = 0.66586122124065108076844829969791 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 0.999 y[1] (analytic) = 0 y[1] (numeric) = 0.66649418538602708651710394045413 absolute error = 0.66649418538602708651710394045413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1 y[1] (analytic) = 0 y[1] (numeric) = 0.6671269888283083823311558650632 absolute error = 0.6671269888283083823311558650632 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.001 y[1] (analytic) = 0 y[1] (numeric) = 0.66775963174105324579084284862355 absolute error = 0.66775963174105324579084284862355 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.002 y[1] (analytic) = 0 y[1] (numeric) = 0.66839211429758304006006839906574 absolute error = 0.66839211429758304006006839906574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.003 y[1] (analytic) = 0 y[1] (numeric) = 0.66902443667098272610496983968579 absolute error = 0.66902443667098272610496983968579 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=606.5MB, alloc=4.3MB, time=63.08 NO POLE x[1] = 1.004 y[1] (analytic) = 0 y[1] (numeric) = 0.6696565990341013733764306515171 absolute error = 0.6696565990341013733764306515171 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.005 y[1] (analytic) = 0 y[1] (numeric) = 0.67028860155955266896255981348234 absolute error = 0.67028860155955266896255981348234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.006 y[1] (analytic) = 0 y[1] (numeric) = 0.67092044441971542521713246496368 absolute error = 0.67092044441971542521713246496368 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.007 y[1] (analytic) = 0 y[1] (numeric) = 0.67155212778673408586995697451341 absolute error = 0.67155212778673408586995697451341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.008 y[1] (analytic) = 0 y[1] (numeric) = 0.67218365183251923062510442871778 absolute error = 0.67218365183251923062510442871778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=610.3MB, alloc=4.3MB, time=63.47 NO POLE x[1] = 1.009 y[1] (analytic) = 0 y[1] (numeric) = 0.6728150167287480782529076555534 absolute error = 0.6728150167287480782529076555534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.01 y[1] (analytic) = 0 y[1] (numeric) = 0.6734462226468649881816081657759 absolute error = 0.6734462226468649881816081657759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.011 y[1] (analytic) = 0 y[1] (numeric) = 0.67407726975808196059450083280285 absolute error = 0.67407726975808196059450083280285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.012 y[1] (analytic) = 0 y[1] (numeric) = 0.6747081582333791350383977350523 absolute error = 0.6747081582333791350383977350523 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.013 y[1] (analytic) = 0 y[1] (numeric) = 0.67533888824350528754920435364121 absolute error = 0.67533888824350528754920435364121 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.014 y[1] (analytic) = 0 y[1] (numeric) = 0.67596945995897832630037325160757 absolute error = 0.67596945995897832630037325160757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=614.1MB, alloc=4.4MB, time=63.85 NO POLE x[1] = 1.015 y[1] (analytic) = 0 y[1] (numeric) = 0.67659987355008578577997245727967 absolute error = 0.67659987355008578577997245727967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.016 y[1] (analytic) = 0 y[1] (numeric) = 0.67723012918688531950207803296707 absolute error = 0.67723012918688531950207803296707 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.017 y[1] (analytic) = 0 y[1] (numeric) = 0.67786022703920519125817272969034 absolute error = 0.67786022703920519125817272969034 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.018 y[1] (analytic) = 0 y[1] (numeric) = 0.67849016727664476491420520810978 absolute error = 0.67849016727664476491420520810978 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.019 y[1] (analytic) = 0 y[1] (numeric) = 0.67911995006857499275893704407353 absolute error = 0.67911995006857499275893704407353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.02 y[1] (analytic) = 0 y[1] (numeric) = 0.67974957558413890240917763320918 absolute error = 0.67974957558413890240917763320918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=618.0MB, alloc=4.4MB, time=64.23 NO POLE x[1] = 1.021 y[1] (analytic) = 0 y[1] (numeric) = 0.68037904399225208227748016166306 absolute error = 0.68037904399225208227748016166306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.022 y[1] (analytic) = 0 y[1] (numeric) = 0.68100835546160316560784501839102 absolute error = 0.68100835546160316560784501839102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.023 y[1] (analytic) = 0 y[1] (numeric) = 0.68163751016065431308495038727287 absolute error = 0.68163751016065431308495038727287 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.024 y[1] (analytic) = 0 y[1] (numeric) = 0.6822665082576416940224032737193 absolute error = 0.6822665082576416940224032737193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.025 y[1] (analytic) = 0 y[1] (numeric) = 0.68289534992057596613547788933023 absolute error = 0.68289534992057596613547788933023 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=621.8MB, alloc=4.4MB, time=64.62 NO POLE x[1] = 1.026 y[1] (analytic) = 0 y[1] (numeric) = 0.68352403531724275390378213852275 absolute error = 0.68352403531724275390378213852275 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.027 y[1] (analytic) = 0 y[1] (numeric) = 0.68415256461520312552926692185641 absolute error = 0.68415256461520312552926692185641 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.028 y[1] (analytic) = 0 y[1] (numeric) = 0.68478093798179406849496709103423 absolute error = 0.68478093798179406849496709103423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.029 y[1] (analytic) = 0 y[1] (numeric) = 0.68540915558412896372983715924713 absolute error = 0.68540915558412896372983715924713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.03 y[1] (analytic) = 0 y[1] (numeric) = 0.68603721758909805838501928666314 absolute error = 0.68603721758909805838501928666314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.031 y[1] (analytic) = 0 y[1] (numeric) = 0.68666512416336893722685562345374 absolute error = 0.68666512416336893722685562345374 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=625.6MB, alloc=4.4MB, time=65.02 NO POLE x[1] = 1.032 y[1] (analytic) = 0 y[1] (numeric) = 0.68729287547338699265193180081901 absolute error = 0.68729287547338699265193180081901 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.033 y[1] (analytic) = 0 y[1] (numeric) = 0.68792047168537589332941321304885 absolute error = 0.68792047168537589332941321304885 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.034 y[1] (analytic) = 0 y[1] (numeric) = 0.68854791296533805147591072977524 absolute error = 0.68854791296533805147591072977524 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.035 y[1] (analytic) = 0 y[1] (numeric) = 0.68917519947905508876808761627323 absolute error = 0.68917519947905508876808761627323 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.036 y[1] (analytic) = 0 y[1] (numeric) = 0.6898023313920883008981947200066 absolute error = 0.6898023313920883008981947200066 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=629.4MB, alloc=4.4MB, time=65.42 x[1] = 1.037 y[1] (analytic) = 0 y[1] (numeric) = 0.69042930886977912077769640264498 absolute error = 0.69042930886977912077769640264498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.038 y[1] (analytic) = 0 y[1] (numeric) = 0.69105613207724958039412525756801 absolute error = 0.69105613207724958039412525756801 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.039 y[1] (analytic) = 0 y[1] (numeric) = 0.6916828011794027713262793524903 absolute error = 0.6916828011794027713262793524903 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.04 y[1] (analytic) = 0 y[1] (numeric) = 0.69230931634092330392285157436744 absolute error = 0.69230931634092330392285157436744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.041 y[1] (analytic) = 0 y[1] (numeric) = 0.69293567772627776514955662826411 absolute error = 0.69293567772627776514955662826411 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.042 y[1] (analytic) = 0 y[1] (numeric) = 0.69356188549971517510979735247321 absolute error = 0.69356188549971517510979735247321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=633.2MB, alloc=4.4MB, time=65.80 NO POLE x[1] = 1.043 y[1] (analytic) = 0 y[1] (numeric) = 0.69418793982526744224388825796964 absolute error = 0.69418793982526744224388825796964 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.044 y[1] (analytic) = 0 y[1] (numeric) = 0.69481384086674981721183058037011 absolute error = 0.69481384086674981721183058037011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.045 y[1] (analytic) = 0 y[1] (numeric) = 0.69543958878776134546460964606498 absolute error = 0.69543958878776134546460964606498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.046 y[1] (analytic) = 0 y[1] (numeric) = 0.69606518375168531850896200020893 absolute error = 0.69606518375168531850896200020893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.047 y[1] (analytic) = 0 y[1] (numeric) = 0.69669062592168972387053652193138 absolute error = 0.69669062592168972387053652193138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.048 y[1] (analytic) = 0 y[1] (numeric) = 0.69731591546072769376035066058792 absolute error = 0.69731591546072769376035066058792 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=637.0MB, alloc=4.4MB, time=66.19 NO POLE x[1] = 1.049 y[1] (analytic) = 0 y[1] (numeric) = 0.69794105253153795244941996526025 absolute error = 0.69794105253153795244941996526025 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.05 y[1] (analytic) = 0 y[1] (numeric) = 0.69856603729664526235641624717082 absolute error = 0.69856603729664526235641624717082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.051 y[1] (analytic) = 0 y[1] (numeric) = 0.6991908699183608688531870103617 absolute error = 0.6991908699183608688531870103617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.052 y[1] (analytic) = 0 y[1] (numeric) = 0.69981555055878294379294620905428 absolute error = 0.69981555055878294379294620905428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.053 y[1] (analytic) = 0 y[1] (numeric) = 0.7004400793797970277659239397229 absolute error = 0.7004400793797970277659239397229 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=640.8MB, alloc=4.4MB, time=66.59 NO POLE x[1] = 1.054 y[1] (analytic) = 0 y[1] (numeric) = 0.70106445654307647108724035125218 absolute error = 0.70106445654307647108724035125218 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.055 y[1] (analytic) = 0 y[1] (numeric) = 0.70168868221008287352174685678341 absolute error = 0.70168868221008287352174685678341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.056 y[1] (analytic) = 0 y[1] (numeric) = 0.70231275654206652275055565517274 absolute error = 0.70231275654206652275055565517274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.057 y[1] (analytic) = 0 y[1] (numeric) = 0.70293667970006683158395661757413 absolute error = 0.70293667970006683158395661757413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.058 y[1] (analytic) = 0 y[1] (numeric) = 0.70356045184491277392539876471817 absolute error = 0.70356045184491277392539876471817 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.059 y[1] (analytic) = 0 y[1] (numeric) = 0.70418407313722331949119185218674 absolute error = 0.70418407313722331949119185218674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=644.7MB, alloc=4.4MB, time=67.01 NO POLE x[1] = 1.06 y[1] (analytic) = 0 y[1] (numeric) = 0.70480754373740786729056199359076 absolute error = 0.70480754373740786729056199359076 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.061 y[1] (analytic) = 0 y[1] (numeric) = 0.70543086380566667787067378425779 absolute error = 0.70543086380566667787067378425779 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.062 y[1] (analytic) = 0 y[1] (numeric) = 0.70605403350199130433121004004797 absolute error = 0.70605403350199130433121004004797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.063 y[1] (analytic) = 0 y[1] (numeric) = 0.70667705298616502211307903646624 absolute error = 0.70667705298616502211307903646624 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.064 y[1] (analytic) = 0 y[1] (numeric) = 0.70729992241776325756579802155693 absolute error = 0.70729992241776325756579802155693 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.065 y[1] (analytic) = 0 y[1] (numeric) = 0.70792264195615401529808078139135 absolute error = 0.70792264195615401529808078139135 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=648.5MB, alloc=4.4MB, time=67.43 NO POLE x[1] = 1.066 y[1] (analytic) = 0 y[1] (numeric) = 0.70854521176049830431613615853184 absolute error = 0.70854521176049830431613615853184 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.067 y[1] (analytic) = 0 y[1] (numeric) = 0.70916763198975056295416366092568 absolute error = 0.70916763198975056295416366092568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.068 y[1] (analytic) = 0 y[1] (numeric) = 0.70978990280265908260151165050293 absolute error = 0.70978990280265908260151165050293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.069 y[1] (analytic) = 0 y[1] (numeric) = 0.71041202435776643023094306658306 absolute error = 0.71041202435776643023094306658306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.07 y[1] (analytic) = 0 y[1] (numeric) = 0.71103399681340986973243321830086 absolute error = 0.71103399681340986973243321830086 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=652.3MB, alloc=4.4MB, time=67.85 NO POLE x[1] = 1.071 y[1] (analytic) = 0 y[1] (numeric) = 0.71165582032772178205690387191318 absolute error = 0.71165582032772178205690387191318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.072 y[1] (analytic) = 0 y[1] (numeric) = 0.71227749505863008417427766231953 absolute error = 0.71227749505863008417427766231953 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.073 y[1] (analytic) = 0 y[1] (numeric) = 0.71289902116385864685021677270326 absolute error = 0.71289902116385864685021677270326 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.074 y[1] (analytic) = 0 y[1] (numeric) = 0.71352039880092771124588985116138 absolute error = 0.71352039880092771124588985116138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.075 y[1] (analytic) = 0 y[1] (numeric) = 0.71414162812715430434509126783216 absolute error = 0.71414162812715430434509126783216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.076 y[1] (analytic) = 0 y[1] (numeric) = 0.71476270929965265321301705964685 absolute error = 0.71476270929965265321301705964685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=656.1MB, alloc=4.4MB, time=68.26 NO POLE x[1] = 1.077 y[1] (analytic) = 0 y[1] (numeric) = 0.71538364247533459809098226172709 absolute error = 0.71538364247533459809098226172709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.078 y[1] (analytic) = 0 y[1] (numeric) = 0.71600442781091000433134478393011 absolute error = 0.71600442781091000433134478393011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.079 y[1] (analytic) = 0 y[1] (numeric) = 0.71662506546288717317688155742096 absolute error = 0.71662506546288717317688155742096 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.08 y[1] (analytic) = 0 y[1] (numeric) = 0.71724555558757325138884334874289 absolute error = 0.71724555558757325138884334874289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.081 y[1] (analytic) = 0 y[1] (numeric) = 0.71786589834107463972789541698487 absolute error = 0.71786589834107463972789541698487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.082 y[1] (analytic) = 0 y[1] (numeric) = 0.71848609387929740029213207263618 absolute error = 0.71848609387929740029213207263618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=659.9MB, alloc=4.4MB, time=68.68 NO POLE x[1] = 1.083 y[1] (analytic) = 0 y[1] (numeric) = 0.71910614235794766271633418390474 absolute error = 0.71910614235794766271633418390474 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.084 y[1] (analytic) = 0 y[1] (numeric) = 0.71972604393253202923661976699398 absolute error = 0.71972604393253202923661976699398 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.085 y[1] (analytic) = 0 y[1] (numeric) = 0.7203457987583579786246189904254 absolute error = 0.7203457987583579786246189904254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.086 y[1] (analytic) = 0 y[1] (numeric) = 0.72096540699053426899528621930597 absolute error = 0.72096540699053426899528621930597 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.087 y[1] (analytic) = 0 y[1] (numeric) = 0.72158486878397133949244312282315 absolute error = 0.72158486878397133949244312282315 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=663.7MB, alloc=4.4MB, time=69.09 NO POLE x[1] = 1.088 y[1] (analytic) = 0 y[1] (numeric) = 0.7222041842933817108561283665608 absolute error = 0.7222041842933817108561283665608 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.089 y[1] (analytic) = 0 y[1] (numeric) = 0.72282335367328038487581100982771 absolute error = 0.72282335367328038487581100982771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.09 y[1] (analytic) = 0 y[1] (numeric) = 0.72344237707798524273350642644176 absolute error = 0.72344237707798524273350642644176 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.091 y[1] (analytic) = 0 y[1] (numeric) = 0.72406125466161744224081536468655 absolute error = 0.72406125466161744224081536468655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.092 y[1] (analytic) = 0 y[1] (numeric) = 0.72467998657810181397388865782862 absolute error = 0.72467998657810181397388865782862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.093 y[1] (analytic) = 0 y[1] (numeric) = 0.72529857298116725631030209003025 absolute error = 0.72529857298116725631030209003025 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=667.5MB, alloc=4.4MB, time=69.51 NO POLE x[1] = 1.094 y[1] (analytic) = 0 y[1] (numeric) = 0.72591701402434712937180801309918 absolute error = 0.72591701402434712937180801309918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.095 y[1] (analytic) = 0 y[1] (numeric) = 0.72653530986097964787691249667 absolute error = 0.72653530986097964787691249667 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.096 y[1] (analytic) = 0 y[1] (numeric) = 0.72715346064420827290720907750482 absolute error = 0.72715346064420827290720907750482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.097 y[1] (analytic) = 0 y[1] (numeric) = 0.72777146652698210259138255202952 absolute error = 0.72777146652698210259138255202952 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.098 y[1] (analytic) = 0 y[1] (numeric) = 0.7283893276620562617107787293875 absolute error = 0.7283893276620562617107787293875 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=671.4MB, alloc=4.4MB, time=69.92 x[1] = 1.099 y[1] (analytic) = 0 y[1] (numeric) = 0.72900704420199229023041862960071 absolute error = 0.72900704420199229023041862960071 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.1 y[1] (analytic) = 0 y[1] (numeric) = 0.72962461629915853075931827228712 absolute error = 0.72962461629915853075931827228712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.101 y[1] (analytic) = 0 y[1] (numeric) = 0.73024204410573051494395795520875 absolute error = 0.73024204410573051494395795520875 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.102 y[1] (analytic) = 0 y[1] (numeric) = 0.73085932777369134879872776813263 absolute error = 0.73085932777369134879872776813263 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.103 y[1] (analytic) = 0 y[1] (numeric) = 0.7314764674548320969771590255009 absolute error = 0.7314764674548320969771590255009 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.104 y[1] (analytic) = 0 y[1] (numeric) = 0.73209346330075216598773433065194 absolute error = 0.73209346330075216598773433065194 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=675.2MB, alloc=4.4MB, time=70.32 NO POLE x[1] = 1.105 y[1] (analytic) = 0 y[1] (numeric) = 0.73271031546285968635805210424209 absolute error = 0.73271031546285968635805210424209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.106 y[1] (analytic) = 0 y[1] (numeric) = 0.7333270240923718937511046195221 absolute error = 0.7333270240923718937511046195221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.107 y[1] (analytic) = 0 y[1] (numeric) = 0.73394358934031550903741188666183 absolute error = 0.73394358934031550903741188666183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.108 y[1] (analytic) = 0 y[1] (numeric) = 0.73456001135752711732673711683379 absolute error = 0.73456001135752711732673711683379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.109 y[1] (analytic) = 0 y[1] (numeric) = 0.73517629029465354596309297370733 absolute error = 0.73517629029465354596309297370733 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.11 y[1] (analytic) = 0 y[1] (numeric) = 0.73579242630215224148673138482061 absolute error = 0.73579242630215224148673138482061 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=679.0MB, alloc=4.4MB, time=70.71 NO POLE x[1] = 1.111 y[1] (analytic) = 0 y[1] (numeric) = 0.73640841953029164556679333744194 absolute error = 0.73640841953029164556679333744194 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.112 y[1] (analytic) = 0 y[1] (numeric) = 0.7370242701291515699082788224629 absolute error = 0.7370242701291515699082788224629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.113 y[1] (analytic) = 0 y[1] (numeric) = 0.73763997824862357013698091504603 absolute error = 0.73763997824862357013698091504603 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.114 y[1] (analytic) = 0 y[1] (numeric) = 0.73825554403841131866601189164437 absolute error = 0.73825554403841131866601189164437 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.115 y[1] (analytic) = 0 y[1] (numeric) = 0.73887096764803097654753327908953 absolute error = 0.73887096764803097654753327908953 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=682.8MB, alloc=4.4MB, time=71.10 NO POLE x[1] = 1.116 y[1] (analytic) = 0 y[1] (numeric) = 0.73948624922681156431328581218177 absolute error = 0.73948624922681156431328581218177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.117 y[1] (analytic) = 0 y[1] (numeric) = 0.74010138892389533180749944108744 absolute error = 0.74010138892389533180749944108744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.118 y[1] (analytic) = 0 y[1] (numeric) = 0.74071638688823812701574777833662 absolute error = 0.74071638688823812701574777833662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.119 y[1] (analytic) = 0 y[1] (numeric) = 0.74133124326860976389329570680131 absolute error = 0.74133124326860976389329570680131 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.12 y[1] (analytic) = 0 y[1] (numeric) = 0.74194595821359438919647328421047 absolute error = 0.74194595821359438919647328421047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.121 y[1] (analytic) = 0 y[1] (numeric) = 0.74256053187159084832059357601389 absolute error = 0.74256053187159084832059357601389 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=686.6MB, alloc=4.4MB, time=71.49 NO POLE x[1] = 1.122 y[1] (analytic) = 0 y[1] (numeric) = 0.74317496439081305014791662623785 absolute error = 0.74317496439081305014791662623785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.123 y[1] (analytic) = 0 y[1] (numeric) = 0.74378925591929033090914643488066 absolute error = 0.74378925591929033090914643488066 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.124 y[1] (analytic) = 0 y[1] (numeric) = 0.74440340660486781706193254987767 absolute error = 0.74440340660486781706193254987767 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.125 y[1] (analytic) = 0 y[1] (numeric) = 0.74501741659520678718983270122899 absolute error = 0.74501741659520678718983270122899 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.126 y[1] (analytic) = 0 y[1] (numeric) = 0.74563128603778503292517780403862 absolute error = 0.74563128603778503292517780403862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.127 y[1] (analytic) = 0 y[1] (numeric) = 0.74624501507989721889926563547344 absolute error = 0.74624501507989721889926563547344 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=690.4MB, alloc=4.4MB, time=71.87 NO POLE x[1] = 1.128 y[1] (analytic) = 0 y[1] (numeric) = 0.74685860386865524172329454753077 absolute error = 0.74685860386865524172329454753077 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.129 y[1] (analytic) = 0 y[1] (numeric) = 0.7474720525509885880034337125235 absolute error = 0.7474720525509885880034337125235 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.13 y[1] (analytic) = 0 y[1] (numeric) = 0.74808536127364469139341161087542 absolute error = 0.74808536127364469139341161087542 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.131 y[1] (analytic) = 0 y[1] (numeric) = 0.74869853018318928868798976069178 absolute error = 0.74869853018318928868798976069178 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.132 y[1] (analytic) = 0 y[1] (numeric) = 0.74931155942600677496067405516184 absolute error = 0.74931155942600677496067405516184 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=694.3MB, alloc=4.4MB, time=72.25 NO POLE x[1] = 1.133 y[1] (analytic) = 0 y[1] (numeric) = 0.74992444914830055774900151669318 absolute error = 0.74992444914830055774900151669318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.134 y[1] (analytic) = 0 y[1] (numeric) = 0.75053719949609341029072579530864 absolute error = 0.75053719949609341029072579530864 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.135 y[1] (analytic) = 0 y[1] (numeric) = 0.75114981061522782381421033279456 absolute error = 0.75114981061522782381421033279456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.136 y[1] (analytic) = 0 y[1] (numeric) = 0.75176228265136635888632378291691 absolute error = 0.75176228265136635888632378291691 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.137 y[1] (analytic) = 0 y[1] (numeric) = 0.75237461574999199582111802126445 absolute error = 0.75237461574999199582111802126445 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.138 y[1] (analytic) = 0 y[1] (numeric) = 0.75298681005640848415255489548561 absolute error = 0.75298681005640848415255489548561 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=698.1MB, alloc=4.4MB, time=72.62 NO POLE x[1] = 1.139 y[1] (analytic) = 0 y[1] (numeric) = 0.75359886571574069117453375740861 absolute error = 0.75359886571574069117453375740861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.14 y[1] (analytic) = 0 y[1] (numeric) = 0.75421078287293494955145778232918 absolute error = 0.75421078287293494955145778232918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.141 y[1] (analytic) = 0 y[1] (numeric) = 0.75482256167275940400256311717398 absolute error = 0.75482256167275940400256311717398 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.142 y[1] (analytic) = 0 y[1] (numeric) = 0.75543420225980435706322100786239 absolute error = 0.75543420225980435706322100786239 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.143 y[1] (analytic) = 0 y[1] (numeric) = 0.75604570477848261392640923655897 absolute error = 0.75604570477848261392640923655897 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.144 y[1] (analytic) = 0 y[1] (numeric) = 0.7566570693730298263675354512003 absolute error = 0.7566570693730298263675354512003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=701.9MB, alloc=4.4MB, time=73.00 NO POLE x[1] = 1.145 y[1] (analytic) = 0 y[1] (numeric) = 0.75726829618750483575578129226424 absolute error = 0.75726829618750483575578129226424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.146 y[1] (analytic) = 0 y[1] (numeric) = 0.75787938536579001515512261479913 absolute error = 0.75787938536579001515512261479913 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.147 y[1] (analytic) = 0 y[1] (numeric) = 0.7584903370515916105181675668222 absolute error = 0.7584903370515916105181675668222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.148 y[1] (analytic) = 0 y[1] (numeric) = 0.75910115138844008097594081790871 absolute error = 0.75910115138844008097594081790871 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.149 y[1] (analytic) = 0 y[1] (numeric) = 0.75971182851969043822672883370866 absolute error = 0.75971182851969043822672883370866 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=705.7MB, alloc=4.4MB, time=73.36 NO POLE x[1] = 1.15 y[1] (analytic) = 0 y[1] (numeric) = 0.76032236858852258502708776283083 absolute error = 0.76032236858852258502708776283083 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.151 y[1] (analytic) = 0 y[1] (numeric) = 0.76093277173794165278810224161218 absolute error = 0.76093277173794165278810224161218 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.152 y[1] (analytic) = 0 y[1] (numeric) = 0.7615430381107783382799702293349 absolute error = 0.7615430381107783382799702293349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.153 y[1] (analytic) = 0 y[1] (numeric) = 0.76215316784968923944797586105669 absolute error = 0.76215316784968923944797586105669 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.154 y[1] (analytic) = 0 y[1] (numeric) = 0.76276316109715719034289924697866 absolute error = 0.76276316109715719034289924697866 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.155 y[1] (analytic) = 0 y[1] (numeric) = 0.76337301799549159516889915578807 absolute error = 0.76337301799549159516889915578807 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=709.5MB, alloc=4.4MB, time=73.75 NO POLE x[1] = 1.156 y[1] (analytic) = 0 y[1] (numeric) = 0.7639827386868287614518915942818 absolute error = 0.7639827386868287614518915942818 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.157 y[1] (analytic) = 0 y[1] (numeric) = 0.76459232331313223233143443640522 absolute error = 0.76459232331313223233143443640522 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.158 y[1] (analytic) = 0 y[1] (numeric) = 0.76520177201619311797911546123711 absolute error = 0.76520177201619311797911546123711 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.159 y[1] (analytic) = 0 y[1] (numeric) = 0.76581108493763042614642843102397 absolute error = 0.76581108493763042614642843102397 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.16 y[1] (analytic) = 0 y[1] (numeric) = 0.7664202622188913918451091767292 absolute error = 0.7664202622188913918451091767292 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=713.3MB, alloc=4.4MB, time=74.12 x[1] = 1.161 y[1] (analytic) = 0 y[1] (numeric) = 0.76702930400125180616289105932861 absolute error = 0.76702930400125180616289105932861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.162 y[1] (analytic) = 0 y[1] (numeric) = 0.76763821042581634421762663987194 absolute error = 0.76763821042581634421762663987194 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.163 y[1] (analytic) = 0 y[1] (numeric) = 0.76824698163351889225270991976014 absolute error = 0.76824698163351889225270991976014 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.164 y[1] (analytic) = 0 y[1] (numeric) = 0.76885561776512287387672110438293 absolute error = 0.76885561776512287387672110438293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.165 y[1] (analytic) = 0 y[1] (numeric) = 0.76946411896122157545020349784645 absolute error = 0.76946411896122157545020349784645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.166 y[1] (analytic) = 0 y[1] (numeric) = 0.77007248536223847062246985362391 absolute error = 0.77007248536223847062246985362391 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=717.1MB, alloc=4.4MB, time=74.49 NO POLE x[1] = 1.167 y[1] (analytic) = 0 y[1] (numeric) = 0.77068071710842754402132328521382 absolute error = 0.77068071710842754402132328521382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.168 y[1] (analytic) = 0 y[1] (numeric) = 0.77128881433987361409856568192354 absolute error = 0.77128881433987361409856568192354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.169 y[1] (analytic) = 0 y[1] (numeric) = 0.77189677719649265513415447734564 absolute error = 0.77189677719649265513415447734564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.17 y[1] (analytic) = 0 y[1] (numeric) = 0.77250460581803211840185658159907 absolute error = 0.77250460581803211840185658159907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.171 y[1] (analytic) = 0 y[1] (numeric) = 0.77311230034407125249923631260666 absolute error = 0.77311230034407125249923631260666 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.172 y[1] (analytic) = 0 y[1] (numeric) = 0.77371986091402142284480224621734 absolute error = 0.77371986091402142284480224621734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=721.0MB, alloc=4.4MB, time=74.86 NO POLE x[1] = 1.173 y[1] (analytic) = 0 y[1] (numeric) = 0.77432728766712643034512604950139 absolute error = 0.77432728766712643034512604950139 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.174 y[1] (analytic) = 0 y[1] (numeric) = 0.77493458074246282923473456569718 absolute error = 0.77493458074246282923473456569718 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.175 y[1] (analytic) = 0 y[1] (numeric) = 0.77554174027894024409156468271785 absolute error = 0.77554174027894024409156468271785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.176 y[1] (analytic) = 0 y[1] (numeric) = 0.77614876641530168603075883948934 absolute error = 0.77614876641530168603075883948934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.177 y[1] (analytic) = 0 y[1] (numeric) = 0.77675565929012386807956740534044 absolute error = 0.77675565929012386807956740534044 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=724.8MB, alloc=4.4MB, time=75.23 NO POLE x[1] = 1.178 y[1] (analytic) = 0 y[1] (numeric) = 0.77736241904181751973611260685909 absolute error = 0.77736241904181751973611260685909 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.179 y[1] (analytic) = 0 y[1] (numeric) = 0.77796904580862770071475717372564 absolute error = 0.77796904580862770071475717372564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.18 y[1] (analytic) = 0 y[1] (numeric) = 0.77857553972863411388080942969446 absolute error = 0.77857553972863411388080942969446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.181 y[1] (analytic) = 0 y[1] (numeric) = 0.77918190093975141737728516678453 absolute error = 0.77918190093975141737728516678453 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.182 y[1] (analytic) = 0 y[1] (numeric) = 0.77978812957972953594643530952296 absolute error = 0.77978812957972953594643530952296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.183 y[1] (analytic) = 0 y[1] (numeric) = 0.78039422578615397144873710143079 absolute error = 0.78039422578615397144873710143079 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=728.6MB, alloc=4.4MB, time=75.60 NO POLE x[1] = 1.184 y[1] (analytic) = 0 y[1] (numeric) = 0.78100018969644611258203532751921 absolute error = 0.78100018969644611258203532751921 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.185 y[1] (analytic) = 0 y[1] (numeric) = 0.7816060214478635438035089240478 absolute error = 0.7816060214478635438035089240478 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.186 y[1] (analytic) = 0 y[1] (numeric) = 0.78221172117750035345712721986082 absolute error = 0.78221172117750035345712721986082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.187 y[1] (analytic) = 0 y[1] (numeric) = 0.78281728902228744110924900193851 absolute error = 0.78281728902228744110924900193851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.188 y[1] (analytic) = 0 y[1] (numeric) = 0.78342272511899282409500660105803 absolute error = 0.78342272511899282409500660105803 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.189 y[1] (analytic) = 0 y[1] (numeric) = 0.78402802960422194327810625133358 absolute error = 0.78402802960422194327810625133358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=732.4MB, alloc=4.4MB, time=75.98 NO POLE x[1] = 1.19 y[1] (analytic) = 0 y[1] (numeric) = 0.78463320261441796802666508958115 absolute error = 0.78463320261441796802666508958115 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.191 y[1] (analytic) = 0 y[1] (numeric) = 0.78523824428586210040769432661552 absolute error = 0.78523824428586210040769432661552 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.192 y[1] (analytic) = 0 y[1] (numeric) = 0.78584315475467387860282734242315 absolute error = 0.78584315475467387860282734242315 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.193 y[1] (analytic) = 0 y[1] (numeric) = 0.78644793415681147954788073035416 absolute error = 0.78644793415681147954788073035416 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.194 y[1] (analytic) = 0 y[1] (numeric) = 0.78705258262807202079882564173117 absolute error = 0.78705258262807202079882564173117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=736.2MB, alloc=4.4MB, time=76.35 NO POLE x[1] = 1.195 y[1] (analytic) = 0 y[1] (numeric) = 0.78765710030409186162673616127622 absolute error = 0.78765710030409186162673616127622 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.196 y[1] (analytic) = 0 y[1] (numeric) = 0.7882614873203469033442708752051 absolute error = 0.7882614873203469033442708752051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.197 y[1] (analytic) = 0 y[1] (numeric) = 0.78886574381215288886623327742852 absolute error = 0.78886574381215288886623327742852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.198 y[1] (analytic) = 0 y[1] (numeric) = 0.78946986991466570150674619473198 absolute error = 0.78946986991466570150674619473198 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.199 y[1] (analytic) = 0 y[1] (numeric) = 0.79007386576288166301556499878205 absolute error = 0.79007386576288166301556499878205 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.2 y[1] (analytic) = 0 y[1] (numeric) = 0.79067773149163783085604401103026 absolute error = 0.79067773149163783085604401103026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=740.0MB, alloc=4.4MB, time=76.72 NO POLE x[1] = 1.201 y[1] (analytic) = 0 y[1] (numeric) = 0.79128146723561229472726019576183 absolute error = 0.79128146723561229472726019576183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.202 y[1] (analytic) = 0 y[1] (numeric) = 0.79188507312932447233278797637371 absolute error = 0.79188507312932447233278797637371 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.203 y[1] (analytic) = 0 y[1] (numeric) = 0.79248854930713540439860880017274 absolute error = 0.79248854930713540439860880017274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.204 y[1] (analytic) = 0 y[1] (numeric) = 0.79309189590324804894262891727344 absolute error = 0.79309189590324804894262891727344 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.205 y[1] (analytic) = 0 y[1] (numeric) = 0.79369511305170757479826872925722 absolute error = 0.79369511305170757479826872925722 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.206 y[1] (analytic) = 0 y[1] (numeric) = 0.79429820088640165439457700284792 absolute error = 0.79429820088640165439457700284792 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=743.8MB, alloc=4.4MB, time=77.09 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.207 y[1] (analytic) = 0 y[1] (numeric) = 0.79490115954106075579531323267751 absolute error = 0.79490115954106075579531323267751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.208 y[1] (analytic) = 0 y[1] (numeric) = 0.79550398914925843399943147498106 absolute error = 0.79550398914925843399943147498106 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.209 y[1] (analytic) = 0 y[1] (numeric) = 0.79610668984441162150538906049136 absolute error = 0.79610668984441162150538906049136 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.21 y[1] (analytic) = 0 y[1] (numeric) = 0.7967092617597809181416937296237 absolute error = 0.7967092617597809181416937296237 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.211 y[1] (analytic) = 0 y[1] (numeric) = 0.79731170502847088016609291597479 absolute error = 0.79731170502847088016609291597479 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=747.7MB, alloc=4.4MB, time=77.47 NO POLE x[1] = 1.212 y[1] (analytic) = 0 y[1] (numeric) = 0.79791401978343030863579913493235 absolute error = 0.79791401978343030863579913493235 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.213 y[1] (analytic) = 0 y[1] (numeric) = 0.79851620615745253705113571253193 absolute error = 0.79851620615745253705113571253193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.214 y[1] (analytic) = 0 y[1] (numeric) = 0.79911826428317571827497741533413 absolute error = 0.79911826428317571827497741533413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.215 y[1] (analytic) = 0 y[1] (numeric) = 0.7997201942930831107303509147606 absolute error = 0.7997201942930831107303509147606 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.216 y[1] (analytic) = 0 y[1] (numeric) = 0.8003219963195033638785504387537 absolute error = 0.8003219963195033638785504387537 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.217 y[1] (analytic) = 0 y[1] (numeric) = 0.80092367049461080298011442954778 absolute error = 0.80092367049461080298011442954778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=751.5MB, alloc=4.4MB, time=77.84 NO POLE x[1] = 1.218 y[1] (analytic) = 0 y[1] (numeric) = 0.80152521695042571314099953849605 absolute error = 0.80152521695042571314099953849605 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.219 y[1] (analytic) = 0 y[1] (numeric) = 0.80212663581881462264627884702435 absolute error = 0.80212663581881462264627884702435 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.22 y[1] (analytic) = 0 y[1] (numeric) = 0.80272792723149058558368180662216 absolute error = 0.80272792723149058558368180662216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.221 y[1] (analytic) = 0 y[1] (numeric) = 0.80332909132001346375928404007293 absolute error = 0.80332909132001346375928404007293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.222 y[1] (analytic) = 0 y[1] (numeric) = 0.80393012821579020790764584061438 absolute error = 0.80393012821579020790764584061438 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=755.3MB, alloc=4.4MB, time=78.21 NO POLE x[1] = 1.223 y[1] (analytic) = 0 y[1] (numeric) = 0.80453103805007513819868894514939 absolute error = 0.80453103805007513819868894514939 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.224 y[1] (analytic) = 0 y[1] (numeric) = 0.80513182095397022404359194174635 absolute error = 0.80513182095397022404359194174635 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.225 y[1] (analytic) = 0 y[1] (numeric) = 0.80573247705842536320197550022252 absolute error = 0.80573247705842536320197550022252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.226 y[1] (analytic) = 0 y[1] (numeric) = 0.80633300649423866019263948734531 absolute error = 0.80633300649423866019263948734531 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.227 y[1] (analytic) = 0 y[1] (numeric) = 0.80693340939205670401010494486557 absolute error = 0.80693340939205670401010494486557 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.228 y[1] (analytic) = 0 y[1] (numeric) = 0.80753368588237484514920486896746 absolute error = 0.80753368588237484514920486896746 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=759.1MB, alloc=4.4MB, time=78.58 NO POLE x[1] = 1.229 y[1] (analytic) = 0 y[1] (numeric) = 0.80813383609553747193995873353586 absolute error = 0.80813383609553747193995873353586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.23 y[1] (analytic) = 0 y[1] (numeric) = 0.8087338601617382861949567466608 absolute error = 0.8087338601617382861949567466608 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.231 y[1] (analytic) = 0 y[1] (numeric) = 0.80933375821102057817147091977709 absolute error = 0.80933375821102057817147091977709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.232 y[1] (analytic) = 0 y[1] (numeric) = 0.80993353037327750085050116153553 absolute error = 0.80993353037327750085050116153553 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.233 y[1] (analytic) = 0 y[1] (numeric) = 0.81053317677825234353495578368058 absolute error = 0.81053317677825234353495578368058 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.234 y[1] (analytic) = 0 y[1] (numeric) = 0.81113269755553880476915702363123 absolute error = 0.81113269755553880476915702363123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=762.9MB, alloc=4.4MB, time=78.95 NO POLE x[1] = 1.235 y[1] (analytic) = 0 y[1] (numeric) = 0.81173209283458126458185344789012 absolute error = 0.81173209283458126458185344789012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.236 y[1] (analytic) = 0 y[1] (numeric) = 0.81233136274467505605491240160737 absolute error = 0.81233136274467505605491240160737 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.237 y[1] (analytic) = 0 y[1] (numeric) = 0.81293050741496673621985701236588 absolute error = 0.81293050741496673621985701236588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.238 y[1] (analytic) = 0 y[1] (numeric) = 0.81352952697445435628440364030381 absolute error = 0.81352952697445435628440364030381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.239 y[1] (analytic) = 0 y[1] (numeric) = 0.81412842155198773119114709181636 absolute error = 0.81412842155198773119114709181636 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=766.7MB, alloc=4.4MB, time=79.34 NO POLE x[1] = 1.24 y[1] (analytic) = 0 y[1] (numeric) = 0.81472719127626870851053238005522 absolute error = 0.81472719127626870851053238005522 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.241 y[1] (analytic) = 0 y[1] (numeric) = 0.8153258362758514366702433220425 absolute error = 0.8153258362758514366702433220425 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.242 y[1] (analytic) = 0 y[1] (numeric) = 0.81592435667914263252312980921104 absolute error = 0.81592435667914263252312980921104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.243 y[1] (analytic) = 0 y[1] (numeric) = 0.81652275261440184825578717535065 absolute error = 0.81652275261440184825578717535065 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.244 y[1] (analytic) = 0 y[1] (numeric) = 0.81712102420974173763989271305724 absolute error = 0.81712102420974173763989271305724 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.245 y[1] (analytic) = 0 y[1] (numeric) = 0.81771917159312832162839605662716 absolute error = 0.81771917159312832162839605662716 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=770.5MB, alloc=4.4MB, time=79.71 NO POLE x[1] = 1.246 y[1] (analytic) = 0 y[1] (numeric) = 0.81831719489238125329865185569324 absolute error = 0.81831719489238125329865185569324 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.247 y[1] (analytic) = 0 y[1] (numeric) = 0.81891509423517408214457490954238 absolute error = 0.81891509423517408214457490954238 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.248 y[1] (analytic) = 0 y[1] (numeric) = 0.81951286974903451771988971677085 absolute error = 0.81951286974903451771988971677085 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.249 y[1] (analytic) = 0 y[1] (numeric) = 0.82011052156134469263453821850623 absolute error = 0.82011052156134469263453821850623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.25 y[1] (analytic) = 0 y[1] (numeric) = 0.82070804979934142490630137563986 absolute error = 0.82070804979934142490630137563986 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.251 y[1] (analytic) = 0 y[1] (numeric) = 0.82130545459011647966968212115791 absolute error = 0.82130545459011647966968212115791 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=774.4MB, alloc=4.4MB, time=80.09 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.252 y[1] (analytic) = 0 y[1] (numeric) = 0.82190273606061683024408916752052 absolute error = 0.82190273606061683024408916752052 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.253 y[1] (analytic) = 0 y[1] (numeric) = 0.82249989433764491856335312590692 absolute error = 0.82249989433764491856335312590692 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.254 y[1] (analytic) = 0 y[1] (numeric) = 0.82309692954785891496859840881043 absolute error = 0.82309692954785891496859840881043 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.255 y[1] (analytic) = 0 y[1] (numeric) = 0.82369384181777297736648643972354 absolute error = 0.82369384181777297736648643972354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.256 y[1] (analytic) = 0 y[1] (numeric) = 0.82429063127375750975483778329269 absolute error = 0.82429063127375750975483778329269 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=778.2MB, alloc=4.4MB, time=80.46 NO POLE x[1] = 1.257 y[1] (analytic) = 0 y[1] (numeric) = 0.82488729804203942011763293614044 absolute error = 0.82488729804203942011763293614044 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.258 y[1] (analytic) = 0 y[1] (numeric) = 0.82548384224870237769138368234503 absolute error = 0.82548384224870237769138368234503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.259 y[1] (analytic) = 0 y[1] (numeric) = 0.82608026401968706960485911813145 absolute error = 0.82608026401968706960485911813145 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.26 y[1] (analytic) = 0 y[1] (numeric) = 0.82667656348079145689414268746269 absolute error = 0.82667656348079145689414268746269 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.261 y[1] (analytic) = 0 y[1] (numeric) = 0.82727274075767102989498884372487 absolute error = 0.82727274075767102989498884372487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.262 y[1] (analytic) = 0 y[1] (numeric) = 0.82786879597583906301444026237618 absolute error = 0.82786879597583906301444026237618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=782.0MB, alloc=4.4MB, time=80.83 NO POLE x[1] = 1.263 y[1] (analytic) = 0 y[1] (numeric) = 0.82846472926066686888365887508003 absolute error = 0.82846472926066686888365887508003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.264 y[1] (analytic) = 0 y[1] (numeric) = 0.8290605407373840518939163772707 absolute error = 0.8290605407373840518939163772707 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.265 y[1] (analytic) = 0 y[1] (numeric) = 0.82965623053107876111768227810991 absolute error = 0.82965623053107876111768227810991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.266 y[1] (analytic) = 0 y[1] (numeric) = 0.83025179876669794261674001419173 absolute error = 0.83025179876669794261674001419173 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.267 y[1] (analytic) = 0 y[1] (numeric) = 0.83084724556904759113925413594766 absolute error = 0.83084724556904759113925413594766 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=785.8MB, alloc=4.4MB, time=81.20 NO POLE x[1] = 1.268 y[1] (analytic) = 0 y[1] (numeric) = 0.8314425710627930012077040983026 absolute error = 0.8314425710627930012077040983026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.269 y[1] (analytic) = 0 y[1] (numeric) = 0.83203777537245901759959274454525 absolute error = 0.83203777537245901759959274454525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.27 y[1] (analytic) = 0 y[1] (numeric) = 0.83263285862243028522283016441416 absolute error = 0.83263285862243028522283016441416 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.271 y[1] (analytic) = 0 y[1] (numeric) = 0.83322782093695149838768623387497 absolute error = 0.83322782093695149838768623387497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.272 y[1] (analytic) = 0 y[1] (numeric) = 0.83382266244012764947719780478922 absolute error = 0.83382266244012764947719780478922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.273 y[1] (analytic) = 0 y[1] (numeric) = 0.83441738325592427701790920746385 absolute error = 0.83441738325592427701790920746385 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=789.6MB, alloc=4.4MB, time=81.58 NO POLE x[1] = 1.274 y[1] (analytic) = 0 y[1] (numeric) = 0.83501198350816771315281745773969 absolute error = 0.83501198350816771315281745773969 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.275 y[1] (analytic) = 0 y[1] (numeric) = 0.83560646332054533051838632264275 absolute error = 0.83560646332054533051838632264275 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.276 y[1] (analytic) = 0 y[1] (numeric) = 0.83620082281660578852748619450214 absolute error = 0.83620082281660578852748619450214 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.277 y[1] (analytic) = 0 y[1] (numeric) = 0.83679506211975927906010955265182 absolute error = 0.83679506211975927906010955265182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.278 y[1] (analytic) = 0 y[1] (numeric) = 0.8373891813532777715637046542001 absolute error = 0.8373891813532777715637046542001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.279 y[1] (analytic) = 0 y[1] (numeric) = 0.8379831806402952575649629906921 absolute error = 0.8379831806402952575649629906921 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=793.4MB, alloc=4.4MB, time=81.98 NO POLE x[1] = 1.28 y[1] (analytic) = 0 y[1] (numeric) = 0.83857706010380799459488897562846 absolute error = 0.83857706010380799459488897562846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.281 y[1] (analytic) = 0 y[1] (numeric) = 0.8391708198666747495289732885617 absolute error = 0.8391708198666747495289732885617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.282 y[1] (analytic) = 0 y[1] (numeric) = 0.83976446005161704134428429469451 absolute error = 0.83976446005161704134428429469451 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.283 y[1] (analytic) = 0 y[1] (numeric) = 0.84035798078121938329528498437713 absolute error = 0.84035798078121938329528498437713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.284 y[1] (analytic) = 0 y[1] (numeric) = 0.84095138217792952451017593447047 absolute error = 0.84095138217792952451017593447047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=797.3MB, alloc=4.4MB, time=82.39 NO POLE x[1] = 1.285 y[1] (analytic) = 0 y[1] (numeric) = 0.84154466436405869100955788303566 absolute error = 0.84154466436405869100955788303566 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.286 y[1] (analytic) = 0 y[1] (numeric) = 0.84213782746178182614920063005768 absolute error = 0.84213782746178182614920063005768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.287 y[1] (analytic) = 0 y[1] (numeric) = 0.8427308715931378304886981297406 absolute error = 0.8427308715931378304886981297406 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.288 y[1] (analytic) = 0 y[1] (numeric) = 0.84332379688002980108778282415544 absolute error = 0.84332379688002980108778282415544 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.289 y[1] (analytic) = 0 y[1] (numeric) = 0.84391660344422527023206548351067 absolute error = 0.84391660344422527023206548351067 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.29 y[1] (analytic) = 0 y[1] (numeric) = 0.84450929140735644358996006488285 absolute error = 0.84450929140735644358996006488285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=801.1MB, alloc=4.4MB, time=82.78 NO POLE x[1] = 1.291 y[1] (analytic) = 0 y[1] (numeric) = 0.84510186089092043780254637872452 absolute error = 0.84510186089092043780254637872452 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.292 y[1] (analytic) = 0 y[1] (numeric) = 0.84569431201627951750811666069325 absolute error = 0.84569431201627951750811666069325 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.293 y[1] (analytic) = 0 y[1] (numeric) = 0.84628664490466133180314548515605 absolute error = 0.84628664490466133180314548515605 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.294 y[1] (analytic) = 0 y[1] (numeric) = 0.84687885967715915014141582595308 absolute error = 0.84687885967715915014141582595308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.295 y[1] (analytic) = 0 y[1] (numeric) = 0.84747095645473209767302746949287 absolute error = 0.84747095645473209767302746949287 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.296 y[1] (analytic) = 0 y[1] (numeric) = 0.84806293535820539002500741483602 memory used=804.9MB, alloc=4.4MB, time=83.18 absolute error = 0.84806293535820539002500741483602 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.297 y[1] (analytic) = 0 y[1] (numeric) = 0.84865479650827056752523535494621 absolute error = 0.84865479650827056752523535494621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.298 y[1] (analytic) = 0 y[1] (numeric) = 0.84924654002548572887139082258645 absolute error = 0.84924654002548572887139082258645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.299 y[1] (analytic) = 0 y[1] (numeric) = 0.84983816603027576424662210325756 absolute error = 0.84983816603027576424662210325756 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.3 y[1] (analytic) = 0 y[1] (numeric) = 0.85042967464293258788363056595658 absolute error = 0.85042967464293258788363056595658 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.301 y[1] (analytic) = 0 y[1] (numeric) = 0.85102106598361537007885764022022 absolute error = 0.85102106598361537007885764022022 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=808.7MB, alloc=4.4MB, time=83.57 NO POLE x[1] = 1.302 y[1] (analytic) = 0 y[1] (numeric) = 0.85161234017235076865845527475587 absolute error = 0.85161234017235076865845527475587 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.303 y[1] (analytic) = 0 y[1] (numeric) = 0.85220349732903315989771434879696 absolute error = 0.85220349732903315989771434879696 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.304 y[1] (analytic) = 0 y[1] (numeric) = 0.85279453757342486889561917199641 absolute error = 0.85279453757342486889561917199641 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.305 y[1] (analytic) = 0 y[1] (numeric) = 0.85338546102515639940618990203911 absolute error = 0.85338546102515639940618990203911 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.306 y[1] (analytic) = 0 y[1] (numeric) = 0.85397626780372666312826843106086 absolute error = 0.85397626780372666312826843106086 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.307 y[1] (analytic) = 0 y[1] (numeric) = 0.85456695802850320845539704225519 absolute error = 0.85456695802850320845539704225519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=812.5MB, alloc=4.4MB, time=83.96 NO POLE x[1] = 1.308 y[1] (analytic) = 0 y[1] (numeric) = 0.85515753181872244868743291658251 absolute error = 0.85515753181872244868743291658251 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.309 y[1] (analytic) = 0 y[1] (numeric) = 0.85574798929348988970553537611819 absolute error = 0.85574798929348988970553537611819 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.31 y[1] (analytic) = 0 y[1] (numeric) = 0.85633833057178035711215658514004 absolute error = 0.85633833057178035711215658514004 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.311 y[1] (analytic) = 0 y[1] (numeric) = 0.8569285557724382228376602924142 absolute error = 0.8569285557724382228376602924142 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.312 y[1] (analytic) = 0 y[1] (numeric) = 0.85751866501417763121518708814512 absolute error = 0.85751866501417763121518708814512 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=816.3MB, alloc=4.4MB, time=84.35 NO POLE x[1] = 1.313 y[1] (analytic) = 0 y[1] (numeric) = 0.85810865841558272452537856656521 absolute error = 0.85810865841558272452537856656521 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.314 y[1] (analytic) = 0 y[1] (numeric) = 0.85869853609510786801256673000822 absolute error = 0.85869853609510786801256673000822 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.315 y[1] (analytic) = 0 y[1] (numeric) = 0.85928829817107787437402894239398 absolute error = 0.85928829817107787437402894239398 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.316 y[1] (analytic) = 0 y[1] (numeric) = 0.85987794476168822772390273920801 absolute error = 0.85987794476168822772390273920801 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.317 y[1] (analytic) = 0 y[1] (numeric) = 0.86046747598500530703334882714608 absolute error = 0.86046747598500530703334882714608 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.318 y[1] (analytic) = 0 y[1] (numeric) = 0.86105689195896660904854465946984 absolute error = 0.86105689195896660904854465946984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=820.1MB, alloc=4.4MB, time=84.75 NO POLE x[1] = 1.319 y[1] (analytic) = 0 y[1] (numeric) = 0.86164619280138097068808505264503 absolute error = 0.86164619280138097068808505264503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.32 y[1] (analytic) = 0 y[1] (numeric) = 0.86223537862992879092136041586939 absolute error = 0.86223537862992879092136041586939 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.321 y[1] (analytic) = 0 y[1] (numeric) = 0.86282444956216225212947729750456 absolute error = 0.86282444956216225212947729750456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.322 y[1] (analytic) = 0 y[1] (numeric) = 0.86341340571550554095028011106743 absolute error = 0.86341340571550554095028011106743 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.323 y[1] (analytic) = 0 y[1] (numeric) = 0.86400224720725506860902708817469 absolute error = 0.86400224720725506860902708817469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.324 y[1] (analytic) = 0 y[1] (numeric) = 0.86459097415457969073626771653383 absolute error = 0.86459097415457969073626771653383 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=824.0MB, alloc=4.4MB, time=85.15 NO POLE x[1] = 1.325 y[1] (analytic) = 0 y[1] (numeric) = 0.86517958667452092667446315759919 absolute error = 0.86517958667452092667446315759919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.326 y[1] (analytic) = 0 y[1] (numeric) = 0.86576808488399317827488540072871 absolute error = 0.86576808488399317827488540072871 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.327 y[1] (analytic) = 0 y[1] (numeric) = 0.86635646889978394818632519845183 absolute error = 0.86635646889978394818632519845183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.328 y[1] (analytic) = 0 y[1] (numeric) = 0.86694473883855405763713314065914 absolute error = 0.86694473883855405763713314065914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.329 y[1] (analytic) = 0 y[1] (numeric) = 0.86753289481683786371211256401765 absolute error = 0.86753289481683786371211256401765 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=827.8MB, alloc=4.4MB, time=85.54 NO POLE x[1] = 1.33 y[1] (analytic) = 0 y[1] (numeric) = 0.86812093695104347612577735657049 absolute error = 0.86812093695104347612577735657049 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.331 y[1] (analytic) = 0 y[1] (numeric) = 0.86870886535745297349348210616677 absolute error = 0.86870886535745297349348210616677 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.332 y[1] (analytic) = 0 y[1] (numeric) = 0.86929668015222261910192645495543 absolute error = 0.86929668015222261910192645495543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.333 y[1] (analytic) = 0 y[1] (numeric) = 0.86988438145138307618052996053849 absolute error = 0.86988438145138307618052996053849 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.334 y[1] (analytic) = 0 y[1] (numeric) = 0.87047196937083962267516822738495 absolute error = 0.87047196937083962267516822738495 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.335 y[1] (analytic) = 0 y[1] (numeric) = 0.87105944402637236552575555963017 absolute error = 0.87105944402637236552575555963017 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=831.6MB, alloc=4.4MB, time=85.94 NO POLE x[1] = 1.336 y[1] (analytic) = 0 y[1] (numeric) = 0.87164680553363645444915389829961 absolute error = 0.87164680553363645444915389829961 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.337 y[1] (analytic) = 0 y[1] (numeric) = 0.87223405400816229522888234217489 absolute error = 0.87223405400816229522888234217489 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.338 y[1] (analytic) = 0 y[1] (numeric) = 0.87282118956535576251309611183874 absolute error = 0.87282118956535576251309611183874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.339 y[1] (analytic) = 0 y[1] (numeric) = 0.87340821232049841212229840076949 absolute error = 0.87340821232049841212229840076949 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.34 y[1] (analytic) = 0 y[1] (numeric) = 0.87399512238874769286824316558143 absolute error = 0.87399512238874769286824316558143 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=835.4MB, alloc=4.4MB, time=86.33 x[1] = 1.341 y[1] (analytic) = 0 y[1] (numeric) = 0.8745819198851371578854815395016 absolute error = 0.8745819198851371578854815395016 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.342 y[1] (analytic) = 0 y[1] (numeric) = 0.87516860492457667547699920881439 absolute error = 0.87516860492457667547699920881439 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.343 y[1] (analytic) = 0 y[1] (numeric) = 0.87575517762185263947538677117124 absolute error = 0.87575517762185263947538677117124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.344 y[1] (analytic) = 0 y[1] (numeric) = 0.87634163809162817912097979723255 absolute error = 0.87634163809162817912097979723255 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.345 y[1] (analytic) = 0 y[1] (numeric) = 0.87692798644844336845840004296301 absolute error = 0.87692798644844336845840004296301 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.346 y[1] (analytic) = 0 y[1] (numeric) = 0.87751422280671543525292400892048 absolute error = 0.87751422280671543525292400892048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=839.2MB, alloc=4.4MB, time=86.73 NO POLE x[1] = 1.347 y[1] (analytic) = 0 y[1] (numeric) = 0.87810034728073896942809981494331 absolute error = 0.87810034728073896942809981494331 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.348 y[1] (analytic) = 0 y[1] (numeric) = 0.87868635998468613102602815363406 absolute error = 0.87868635998468613102602815363406 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.349 y[1] (analytic) = 0 y[1] (numeric) = 0.87927226103260685769171790384123 absolute error = 0.87927226103260685769171790384123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.35 y[1] (analytic) = 0 y[1] (numeric) = 0.87985805053842907168292182583877 absolute error = 0.87985805053842907168292182583877 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.351 y[1] (analytic) = 0 y[1] (numeric) = 0.88044372861595888640685262297928 absolute error = 0.88044372861595888640685262297928 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.352 y[1] (analytic) = 0 y[1] (numeric) = 0.88102929537888081248517454013606 absolute error = 0.88102929537888081248517454013606 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=843.0MB, alloc=4.4MB, time=87.13 NO POLE x[1] = 1.353 y[1] (analytic) = 0 y[1] (numeric) = 0.88161475094075796334866057713717 absolute error = 0.88161475094075796334866057713717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.354 y[1] (analytic) = 0 y[1] (numeric) = 0.88220009541503226036290032551679 absolute error = 0.88220009541503226036290032551679 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.355 y[1] (analytic) = 0 y[1] (numeric) = 0.88278532891502463748643838915293 absolute error = 0.88278532891502463748643838915293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.356 y[1] (analytic) = 0 y[1] (numeric) = 0.88337045155393524546271832361312 absolute error = 0.88337045155393524546271832361312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.357 y[1] (analytic) = 0 y[1] (numeric) = 0.88395546344484365554720202517875 absolute error = 0.88395546344484365554720202517875 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=846.8MB, alloc=4.4MB, time=87.53 NO POLE x[1] = 1.358 y[1] (analytic) = 0 y[1] (numeric) = 0.88454036470070906277102951845378 absolute error = 0.88454036470070906277102951845378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.359 y[1] (analytic) = 0 y[1] (numeric) = 0.88512515543437048874257913107329 absolute error = 0.88512515543437048874257913107329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.36 y[1] (analytic) = 0 y[1] (numeric) = 0.88570983575854698398828310520197 absolute error = 0.88570983575854698398828310520197 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.361 y[1] (analytic) = 0 y[1] (numeric) = 0.88629440578583782983404877814318 absolute error = 0.88629440578583782983404877814318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.362 y[1] (analytic) = 0 y[1] (numeric) = 0.88687886562872273982863056835639 absolute error = 0.88687886562872273982863056835639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.363 y[1] (analytic) = 0 y[1] (numeric) = 0.88746321539956206071029312839678 absolute error = 0.88746321539956206071029312839678 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=850.7MB, alloc=4.4MB, time=87.93 NO POLE x[1] = 1.364 y[1] (analytic) = 0 y[1] (numeric) = 0.88804745521059697291810117263855 absolute error = 0.88804745521059697291810117263855 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.365 y[1] (analytic) = 0 y[1] (numeric) = 0.8886315851739496906491666550151 absolute error = 0.8886315851739496906491666550151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.366 y[1] (analytic) = 0 y[1] (numeric) = 0.88921560540162366146317916029977 absolute error = 0.88921560540162366146317916029977 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.367 y[1] (analytic) = 0 y[1] (numeric) = 0.88979951600550376543554058155389 absolute error = 0.88979951600550376543554058155389 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.368 y[1] (analytic) = 0 y[1] (numeric) = 0.89038331709735651386042038617942 absolute error = 0.89038331709735651386042038617942 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.369 y[1] (analytic) = 0 y[1] (numeric) = 0.89096700878883024750504302342774 absolute error = 0.89096700878883024750504302342774 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=854.5MB, alloc=4.4MB, time=88.33 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.37 y[1] (analytic) = 0 y[1] (numeric) = 0.89155059119145533441651429712973 absolute error = 0.89155059119145533441651429712973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.371 y[1] (analytic) = 0 y[1] (numeric) = 0.89213406441664436728248881872227 absolute error = 0.89213406441664436728248881872227 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.372 y[1] (analytic) = 0 y[1] (numeric) = 0.89271742857569236034697596725001 absolute error = 0.89271742857569236034697596725001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.373 y[1] (analytic) = 0 y[1] (numeric) = 0.89330068377977694588257711481696 absolute error = 0.89330068377977694588257711481696 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.374 y[1] (analytic) = 0 y[1] (numeric) = 0.8938838301399585702204422278482 absolute error = 0.8938838301399585702204422278482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=858.3MB, alloc=4.4MB, time=88.73 NO POLE x[1] = 1.375 y[1] (analytic) = 0 y[1] (numeric) = 0.89446686776718068933922932639747 absolute error = 0.89446686776718068933922932639747 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.376 y[1] (analytic) = 0 y[1] (numeric) = 0.8950497967722699640143456755011 absolute error = 0.8950497967722699640143456755011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.377 y[1] (analytic) = 0 y[1] (numeric) = 0.89563261726593645452874499413302 absolute error = 0.89563261726593645452874499413302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.378 y[1] (analytic) = 0 y[1] (numeric) = 0.89621532935877381494655039856021 absolute error = 0.89621532935877381494655039856021 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.379 y[1] (analytic) = 0 y[1] (numeric) = 0.89679793316125948695076824773481 absolute error = 0.89679793316125948695076824773481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.38 y[1] (analytic) = 0 y[1] (numeric) = 0.89738042878375489324635352868945 absolute error = 0.89738042878375489324635352868945 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=862.1MB, alloc=4.4MB, time=89.13 NO POLE x[1] = 1.381 y[1] (analytic) = 0 y[1] (numeric) = 0.89796281633650563052988290962983 absolute error = 0.89796281633650563052988290962983 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.382 y[1] (analytic) = 0 y[1] (numeric) = 0.89854509592964166202708709744513 absolute error = 0.89854509592964166202708709744513 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.383 y[1] (analytic) = 0 y[1] (numeric) = 0.89912726767317750959948966458715 absolute error = 0.89912726767317750959948966458715 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.384 y[1] (analytic) = 0 y[1] (numeric) = 0.8997093316770124454213950576069 absolute error = 0.8997093316770124454213950576069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.385 y[1] (analytic) = 0 y[1] (numeric) = 0.9002912880509306832284640659874 absolute error = 0.9002912880509306832284640659874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=865.9MB, alloc=4.4MB, time=89.53 NO POLE x[1] = 1.386 y[1] (analytic) = 0 y[1] (numeric) = 0.90087313690460156913911061517959 absolute error = 0.90087313690460156913911061517959 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.387 y[1] (analytic) = 0 y[1] (numeric) = 0.90145487834757977204994935183953 absolute error = 0.90145487834757977204994935183953 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.388 y[1] (analytic) = 0 y[1] (numeric) = 0.90203651248930547360651911208673 absolute error = 0.90203651248930547360651911208673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.389 y[1] (analytic) = 0 y[1] (numeric) = 0.90261803943910455775050300506184 absolute error = 0.90261803943910455775050300506184 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.39 y[1] (analytic) = 0 y[1] (numeric) = 0.90319945930618879984466150406471 absolute error = 0.90319945930618879984466150406471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.391 y[1] (analytic) = 0 y[1] (numeric) = 0.90378077219965605537669061600924 absolute error = 0.90378077219965605537669061600924 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=869.7MB, alloc=4.4MB, time=89.92 NO POLE x[1] = 1.392 y[1] (analytic) = 0 y[1] (numeric) = 0.90436197822849044824321289674729 absolute error = 0.90436197822849044824321289674729 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.393 y[1] (analytic) = 0 y[1] (numeric) = 0.9049430775015625586151047949003 absolute error = 0.9049430775015625586151047949003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.394 y[1] (analytic) = 0 y[1] (numeric) = 0.90552407012762961038535954010261 absolute error = 0.90552407012762961038535954010261 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.395 y[1] (analytic) = 0 y[1] (numeric) = 0.90610495621533565820068054291559 absolute error = 0.90610495621533565820068054291559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.396 y[1] (analytic) = 0 y[1] (numeric) = 0.90668573587321177407799604302705 absolute error = 0.90668573587321177407799604302705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.397 y[1] (analytic) = 0 y[1] (numeric) = 0.90726640920967623360708152961651 absolute error = 0.90726640920967623360708152961651 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=873.6MB, alloc=4.4MB, time=90.31 NO POLE x[1] = 1.398 y[1] (analytic) = 0 y[1] (numeric) = 0.90784697633303470174047226285631 absolute error = 0.90784697633303470174047226285631 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.399 y[1] (analytic) = 0 y[1] (numeric) = 0.90842743735148041817184404834232 absolute error = 0.90842743735148041817184404834232 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.4 y[1] (analytic) = 0 y[1] (numeric) = 0.90900779237309438230403625671954 absolute error = 0.90900779237309438230403625671954 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.401 y[1] (analytic) = 0 y[1] (numeric) = 0.90958804150584553780788693879957 absolute error = 0.90958804150584553780788693879957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.402 y[1] (analytic) = 0 y[1] (numeric) = 0.91016818485759095677304576197285 absolute error = 0.91016818485759095677304576197285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=877.4MB, alloc=4.4MB, time=90.70 NO POLE x[1] = 1.403 y[1] (analytic) = 0 y[1] (numeric) = 0.91074822253607602345192638661251 absolute error = 0.91074822253607602345192638661251 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.404 y[1] (analytic) = 0 y[1] (numeric) = 0.91132815464893461759795581136314 absolute error = 0.91132815464893461759795581136314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.405 y[1] (analytic) = 0 y[1] (numeric) = 0.91190798130368929739927414362182 absolute error = 0.91190798130368929739927414362182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.406 y[1] (analytic) = 0 y[1] (numeric) = 0.91248770260775148200903419606598 absolute error = 0.91248770260775148200903419606598 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.407 y[1] (analytic) = 0 y[1] (numeric) = 0.91306731866842163367344627167876 absolute error = 0.91306731866842163367344627167876 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.408 y[1] (analytic) = 0 y[1] (numeric) = 0.91364682959288943945870947828417 absolute error = 0.91364682959288943945870947828417 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=881.2MB, alloc=4.4MB, time=91.09 NO POLE x[1] = 1.409 y[1] (analytic) = 0 y[1] (numeric) = 0.91422623548823399257796690904829 absolute error = 0.91422623548823399257796690904829 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.41 y[1] (analytic) = 0 y[1] (numeric) = 0.9148055364614239733194180376465 absolute error = 0.9148055364614239733194180376465 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.411 y[1] (analytic) = 0 y[1] (numeric) = 0.91538473261931782957671770575769 absolute error = 0.91538473261931782957671770575769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.412 y[1] (analytic) = 0 y[1] (numeric) = 0.91596382406866395698278712614371 absolute error = 0.91596382406866395698278712614371 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.413 y[1] (analytic) = 0 y[1] (numeric) = 0.91654281091610087864815838672358 absolute error = 0.91654281091610087864815838672358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=885.0MB, alloc=4.4MB, time=91.49 NO POLE x[1] = 1.414 y[1] (analytic) = 0 y[1] (numeric) = 0.91712169326815742450497001967739 absolute error = 0.91712169326815742450497001967739 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.415 y[1] (analytic) = 0 y[1] (numeric) = 0.91770047123125291025772729463349 absolute error = 0.91770047123125291025772729463349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.416 y[1] (analytic) = 0 y[1] (numeric) = 0.91827914491169731594193700632471 absolute error = 0.91827914491169731594193700632471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.417 y[1] (analytic) = 0 y[1] (numeric) = 0.91885771441569146409172265466544 absolute error = 0.91885771441569146409172265466544 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.418 y[1] (analytic) = 0 y[1] (numeric) = 0.91943617984932719751752205892273 absolute error = 0.91943617984932719751752205892273 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.419 y[1] (analytic) = 0 y[1] (numeric) = 0.9200145413185875566949656074519 absolute error = 0.9200145413185875566949656074519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=888.8MB, alloc=4.4MB, time=91.88 NO POLE x[1] = 1.42 y[1] (analytic) = 0 y[1] (numeric) = 0.92059279892934695676602952026323 absolute error = 0.92059279892934695676602952026323 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.421 y[1] (analytic) = 0 y[1] (numeric) = 0.92117095278737136415355469340254 absolute error = 0.92117095278737136415355469340254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.422 y[1] (analytic) = 0 y[1] (numeric) = 0.92174900299831847279021790168835 absolute error = 0.92174900299831847279021790168835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.423 y[1] (analytic) = 0 y[1] (numeric) = 0.92232694966773787996303835967417 absolute error = 0.92232694966773787996303835967417 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.424 y[1] (analytic) = 0 y[1] (numeric) = 0.92290479290107126177449887972098 absolute error = 0.92290479290107126177449887972098 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.425 y[1] (analytic) = 0 y[1] (numeric) = 0.92348253280365254822135712069479 absolute error = 0.92348253280365254822135712069479 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=892.6MB, alloc=4.4MB, time=92.28 NO POLE x[1] = 1.426 y[1] (analytic) = 0 y[1] (numeric) = 0.924060169480708097892218690973 absolute error = 0.924060169480708097892218690973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.427 y[1] (analytic) = 0 y[1] (numeric) = 0.92463770303735687228494015507513 absolute error = 0.92463770303735687228494015507513 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.428 y[1] (analytic) = 0 y[1] (numeric) = 0.92521513357861060974492629425388 absolute error = 0.92521513357861060974492629425388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.429 y[1] (analytic) = 0 y[1] (numeric) = 0.92579246120937399902538228771709 absolute error = 0.92579246120937399902538228771709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.43 y[1] (analytic) = 0 y[1] (numeric) = 0.92636968603444485247057781272618 absolute error = 0.92636968603444485247057781272618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=896.4MB, alloc=4.4MB, time=92.66 NO POLE x[1] = 1.431 y[1] (analytic) = 0 y[1] (numeric) = 0.92694680815851427882317640855832 absolute error = 0.92694680815851427882317640855832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.432 y[1] (analytic) = 0 y[1] (numeric) = 0.92752382768616685565667981115487 absolute error = 0.92752382768616685565667981115487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.433 y[1] (analytic) = 0 y[1] (numeric) = 0.928100744721880801434033342135 absolute error = 0.928100744721880801434033342135 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.434 y[1] (analytic) = 0 y[1] (numeric) = 0.92867755937002814719343482765847 absolute error = 0.92867755937002814719343482765847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.435 y[1] (analytic) = 0 y[1] (numeric) = 0.92925427173487490786238592930306 absolute error = 0.92925427173487490786238592930306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.436 y[1] (analytic) = 0 y[1] (numeric) = 0.92983088192058125320102119060942 absolute error = 0.92983088192058125320102119060942 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=900.3MB, alloc=4.4MB, time=93.06 NO POLE x[1] = 1.437 y[1] (analytic) = 0 y[1] (numeric) = 0.93040739003120167837574653916689 absolute error = 0.93040739003120167837574653916689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.438 y[1] (analytic) = 0 y[1] (numeric) = 0.93098379617068517416421543499859 absolute error = 0.93098379617068517416421543499859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.439 y[1] (analytic) = 0 y[1] (numeric) = 0.93156010044287539679266732148157 absolute error = 0.93156010044287539679266732148157 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.44 y[1] (analytic) = 0 y[1] (numeric) = 0.93213630295151083740664951503835 absolute error = 0.93213630295151083740664951503835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.441 y[1] (analytic) = 0 y[1] (numeric) = 0.93271240380022499117614016429058 absolute error = 0.93271240380022499117614016429058 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=904.1MB, alloc=4.4MB, time=93.45 x[1] = 1.442 y[1] (analytic) = 0 y[1] (numeric) = 0.93328840309254652603608641820399 absolute error = 0.93328840309254652603608641820399 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.443 y[1] (analytic) = 0 y[1] (numeric) = 0.93386430093189945106336846590786 absolute error = 0.93386430093189945106336846590786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.444 y[1] (analytic) = 0 y[1] (numeric) = 0.93444009742160328449119664827355 absolute error = 0.93444009742160328449119664827355 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.445 y[1] (analytic) = 0 y[1] (numeric) = 0.93501579266487322136194539291673 absolute error = 0.93501579266487322136194539291673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.446 y[1] (analytic) = 0 y[1] (numeric) = 0.93559138676482030081942428997972 absolute error = 0.93559138676482030081942428997972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.447 y[1] (analytic) = 0 y[1] (numeric) = 0.93616687982445157304158320578579 absolute error = 0.93616687982445157304158320578579 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=907.9MB, alloc=4.4MB, time=93.84 NO POLE x[1] = 1.448 y[1] (analytic) = 0 y[1] (numeric) = 0.93674227194667026581464492517014 absolute error = 0.93674227194667026581464492517014 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.449 y[1] (analytic) = 0 y[1] (numeric) = 0.93731756323427595074965542091549 absolute error = 0.93731756323427595074965542091549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.45 y[1] (analytic) = 0 y[1] (numeric) = 0.93789275378996470914243847018758 absolute error = 0.93789275378996470914243847018758 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.451 y[1] (analytic) = 0 y[1] (numeric) = 0.93846784371632929747793797311203 absolute error = 0.93846784371632929747793797311203 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.452 y[1] (analytic) = 0 y[1] (numeric) = 0.93904283311585931257992797759262 absolute error = 0.93904283311585931257992797759262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.453 y[1] (analytic) = 0 y[1] (numeric) = 0.93961772209094135640706707707772 absolute error = 0.93961772209094135640706707707772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=911.7MB, alloc=4.4MB, time=94.24 NO POLE x[1] = 1.454 y[1] (analytic) = 0 y[1] (numeric) = 0.94019251074385920049627052417121 absolute error = 0.94019251074385920049627052417121 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.455 y[1] (analytic) = 0 y[1] (numeric) = 0.9407671991767939500543700926922 absolute error = 0.9407671991767939500543700926922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.456 y[1] (analytic) = 0 y[1] (numeric) = 0.94134178749182420769902842395041 absolute error = 0.94134178749182420769902842395041 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.457 y[1] (analytic) = 0 y[1] (numeric) = 0.94191627579092623684987130955725 absolute error = 0.94191627579092623684987130955725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.458 y[1] (analytic) = 0 y[1] (numeric) = 0.94249066417597412477079809297307 absolute error = 0.94249066417597412477079809297307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=915.5MB, alloc=4.4MB, time=94.63 NO POLE x[1] = 1.459 y[1] (analytic) = 0 y[1] (numeric) = 0.94306495274873994526442711513581 absolute error = 0.94306495274873994526442711513581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.46 y[1] (analytic) = 0 y[1] (numeric) = 0.9436391416108939210196298858623 absolute error = 0.9436391416108939210196298858623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.461 y[1] (analytic) = 0 y[1] (numeric) = 0.94421323086400458561310443219898 absolute error = 0.94421323086400458561310443219898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.462 y[1] (analytic) = 0 y[1] (numeric) = 0.94478722060953894516593505746099 absolute error = 0.94478722060953894516593505746099 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.463 y[1] (analytic) = 0 y[1] (numeric) = 0.94536111094886263965608254027653 absolute error = 0.94536111094886263965608254027653 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.464 y[1] (analytic) = 0 y[1] (numeric) = 0.94593490198324010388774561148508 absolute error = 0.94593490198324010388774561148508 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=919.3MB, alloc=4.4MB, time=95.03 NO POLE x[1] = 1.465 y[1] (analytic) = 0 y[1] (numeric) = 0.94650859381383472811853136816276 absolute error = 0.94650859381383472811853136816276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.466 y[1] (analytic) = 0 y[1] (numeric) = 0.94708218654170901834536911830521 absolute error = 0.94708218654170901834536911830521 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.467 y[1] (analytic) = 0 y[1] (numeric) = 0.94765568026782475625009899672716 absolute error = 0.94765568026782475625009899672716 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.468 y[1] (analytic) = 0 y[1] (numeric) = 0.9482290750930431588056635524785 absolute error = 0.9482290750930431588056635524785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.469 y[1] (analytic) = 0 y[1] (numeric) = 0.94880237111812503754382738046936 absolute error = 0.94880237111812503754382738046936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.47 y[1] (analytic) = 0 y[1] (numeric) = 0.94937556844373095748534675498213 absolute error = 0.94937556844373095748534675498213 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=923.1MB, alloc=4.4MB, time=95.42 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.471 y[1] (analytic) = 0 y[1] (numeric) = 0.94994866717042139573350812026717 absolute error = 0.94994866717042139573350812026717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.472 y[1] (analytic) = 0 y[1] (numeric) = 0.95052166739865689973195120341264 absolute error = 0.95052166739865689973195120341264 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.473 y[1] (analytic) = 0 y[1] (numeric) = 0.95109456922879824518768943708887 absolute error = 0.95109456922879824518768943708887 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.474 y[1] (analytic) = 0 y[1] (numeric) = 0.95166737276110659366023731453573 absolute error = 0.95166737276110659366023731453573 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.475 y[1] (analytic) = 0 y[1] (numeric) = 0.95224007809574364981775124622985 absolute error = 0.95224007809574364981775124622985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=927.0MB, alloc=4.4MB, time=95.81 NO POLE x[1] = 1.476 y[1] (analytic) = 0 y[1] (numeric) = 0.95281268533277181836108744697974 absolute error = 0.95281268533277181836108744697974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.477 y[1] (analytic) = 0 y[1] (numeric) = 0.95338519457215436061667735369356 absolute error = 0.95338519457215436061667735369356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.478 y[1] (analytic) = 0 y[1] (numeric) = 0.95395760591375555079911805768949 absolute error = 0.95395760591375555079911805768949 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.479 y[1] (analytic) = 0 y[1] (numeric) = 0.95452991945734083194437223111617 absolute error = 0.95452991945734083194437223111617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.48 y[1] (analytic) = 0 y[1] (numeric) = 0.95510213530257697151446903476353 absolute error = 0.95510213530257697151446903476353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.481 y[1] (analytic) = 0 y[1] (numeric) = 0.95567425354903221667459451421706 absolute error = 0.95567425354903221667459451421706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=930.8MB, alloc=4.4MB, time=96.21 NO POLE x[1] = 1.482 y[1] (analytic) = 0 y[1] (numeric) = 0.95624627429617644924345702288526 absolute error = 0.95624627429617644924345702288526 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.483 y[1] (analytic) = 0 y[1] (numeric) = 0.95681819764338134031781025385526 absolute error = 0.95681819764338134031781025385526 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.484 y[1] (analytic) = 0 y[1] (numeric) = 0.9573900236899205045720135177501 absolute error = 0.9573900236899205045720135177501 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.485 y[1] (analytic) = 0 y[1] (numeric) = 0.95796175253496965423350597071844 absolute error = 0.95796175253496965423350597071844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.486 y[1] (analytic) = 0 y[1] (numeric) = 0.95853338427760675273506857532882 absolute error = 0.95853338427760675273506857532882 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=934.6MB, alloc=4.4MB, time=96.60 NO POLE x[1] = 1.487 y[1] (analytic) = 0 y[1] (numeric) = 0.95910491901681216804474466741155 absolute error = 0.95910491901681216804474466741155 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.488 y[1] (analytic) = 0 y[1] (numeric) = 0.95967635685146882567428710373831 absolute error = 0.95967635685146882567428710373831 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.489 y[1] (analytic) = 0 y[1] (numeric) = 0.96024769788036236136699707879861 absolute error = 0.96024769788036236136699707879861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.49 y[1] (analytic) = 0 y[1] (numeric) = 0.96081894220218127346581682377018 absolute error = 0.96081894220218127346581682377018 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.491 y[1] (analytic) = 0 y[1] (numeric) = 0.96139008991551707496253553703382 absolute error = 0.96139008991551707496253553703382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.492 y[1] (analytic) = 0 y[1] (numeric) = 0.96196114111886444522896504319976 absolute error = 0.96196114111886444522896504319976 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=938.4MB, alloc=4.4MB, time=96.99 NO POLE x[1] = 1.493 y[1] (analytic) = 0 y[1] (numeric) = 0.96253209591062138143093883653916 absolute error = 0.96253209591062138143093883653916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.494 y[1] (analytic) = 0 y[1] (numeric) = 0.96310295438908934962598533489918 absolute error = 0.96310295438908934962598533489918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.495 y[1] (analytic) = 0 y[1] (numeric) = 0.96367371665247343554552335157081 absolute error = 0.96367371665247343554552335157081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.496 y[1] (analytic) = 0 y[1] (numeric) = 0.96424438279888249506242498512371 absolute error = 0.96424438279888249506242498512371 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.497 y[1] (analytic) = 0 y[1] (numeric) = 0.96481495292632930434478833087026 absolute error = 0.96481495292632930434478833087026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.498 y[1] (analytic) = 0 y[1] (numeric) = 0.96538542713273070969675963232072 absolute error = 0.96538542713273070969675963232072 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=942.2MB, alloc=4.4MB, time=97.39 NO POLE x[1] = 1.499 y[1] (analytic) = 0 y[1] (numeric) = 0.96595580551590777708724171669185 absolute error = 0.96595580551590777708724171669185 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.5 y[1] (analytic) = 0 y[1] (numeric) = 0.96652608817358594136732279518188 absolute error = 0.96652608817358594136732279518188 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.501 y[1] (analytic) = 0 y[1] (numeric) = 0.96709627520339515517725695627519 absolute error = 0.96709627520339515517725695627519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.502 y[1] (analytic) = 0 y[1] (numeric) = 0.96766636670287003754382493874017 absolute error = 0.96766636670287003754382493874017 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.503 y[1] (analytic) = 0 y[1] (numeric) = 0.96823636276945002216890104018347 absolute error = 0.96823636276945002216890104018347 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=946.0MB, alloc=4.4MB, time=97.78 NO POLE x[1] = 1.504 y[1] (analytic) = 0 y[1] (numeric) = 0.96880626350047950541004929697429 absolute error = 0.96880626350047950541004929697429 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.505 y[1] (analytic) = 0 y[1] (numeric) = 0.96937606899320799395396936200328 absolute error = 0.96937606899320799395396936200328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.506 y[1] (analytic) = 0 y[1] (numeric) = 0.96994577934479025218360980804363 absolute error = 0.96994577934479025218360980804363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.507 y[1] (analytic) = 0 y[1] (numeric) = 0.97051539465228644923976389638813 absolute error = 0.97051539465228644923976389638813 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.508 y[1] (analytic) = 0 y[1] (numeric) = 0.97108491501266230577796017289642 absolute error = 0.97108491501266230577796017289642 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.509 y[1] (analytic) = 0 y[1] (numeric) = 0.97165434052278924042145758655352 absolute error = 0.97165434052278924042145758655352 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=949.8MB, alloc=4.4MB, time=98.17 NO POLE x[1] = 1.51 y[1] (analytic) = 0 y[1] (numeric) = 0.97222367127944451591115216906583 absolute error = 0.97222367127944451591115216906583 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.511 y[1] (analytic) = 0 y[1] (numeric) = 0.97279290737931138495319966785594 absolute error = 0.97279290737931138495319966785594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.512 y[1] (analytic) = 0 y[1] (numeric) = 0.97336204891897923576515588901623 absolute error = 0.97336204891897923576515588901623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.513 y[1] (analytic) = 0 y[1] (numeric) = 0.97393109599494373732143388129458 absolute error = 0.97393109599494373732143388129458 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.514 y[1] (analytic) = 0 y[1] (numeric) = 0.97450004870360698429887447696832 absolute error = 0.97450004870360698429887447696832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=953.7MB, alloc=4.4MB, time=98.57 NO POLE x[1] = 1.515 y[1] (analytic) = 0 y[1] (numeric) = 0.9750689071412776417232241004662 absolute error = 0.9750689071412776417232241004662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.516 y[1] (analytic) = 0 y[1] (numeric) = 0.97563767140417108931731116077759 absolute error = 0.97563767140417108931731116077759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.517 y[1] (analytic) = 0 y[1] (numeric) = 0.97620634158840956555170975899603 absolute error = 0.97620634158840956555170975899603 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.518 y[1] (analytic) = 0 y[1] (numeric) = 0.97677491779002231139867686773515 absolute error = 0.97677491779002231139867686773515 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.519 y[1] (analytic) = 0 y[1] (numeric) = 0.97734340010494571379014657458261 absolute error = 0.97734340010494571379014657458261 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.52 y[1] (analytic) = 0 y[1] (numeric) = 0.97791178862902344878056242717684 absolute error = 0.97791178862902344878056242717684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=957.5MB, alloc=4.4MB, time=98.96 NO POLE x[1] = 1.521 y[1] (analytic) = 0 y[1] (numeric) = 0.97848008345800662441532637285638 absolute error = 0.97848008345800662441532637285638 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.522 y[1] (analytic) = 0 y[1] (numeric) = 0.97904828468755392330564025109746 absolute error = 0.97904828468755392330564025109746 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.523 y[1] (analytic) = 0 y[1] (numeric) = 0.97961639241323174491051327207742 absolute error = 0.97961639241323174491051327207742 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.524 y[1] (analytic) = 0 y[1] (numeric) = 0.98018440673051434752670639963461 absolute error = 0.98018440673051434752670639963461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.525 y[1] (analytic) = 0 y[1] (numeric) = 0.98075232773478398998738205159543 absolute error = 0.98075232773478398998738205159543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.526 y[1] (analytic) = 0 y[1] (numeric) = 0.98132015552133107307022503486199 absolute error = 0.98132015552133107307022503486199 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=961.3MB, alloc=4.4MB, time=99.36 NO POLE x[1] = 1.527 y[1] (analytic) = 0 y[1] (numeric) = 0.98188789018535428061579814675515 absolute error = 0.98188789018535428061579814675515 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.528 y[1] (analytic) = 0 y[1] (numeric) = 0.98245553182196072035689339784418 absolute error = 0.98245553182196072035689339784418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.529 y[1] (analytic) = 0 y[1] (numeric) = 0.98302308052616606445963734482197 absolute error = 0.98302308052616606445963734482197 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.53 y[1] (analytic) = 0 y[1] (numeric) = 0.98359053639289468977710656486098 absolute error = 0.98359053639289468977710656486098 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.531 y[1] (analytic) = 0 y[1] (numeric) = 0.98415789951697981781620685526593 absolute error = 0.98415789951697981781620685526593 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=965.1MB, alloc=4.4MB, time=99.76 NO POLE x[1] = 1.532 y[1] (analytic) = 0 y[1] (numeric) = 0.98472516999316365441856730408276 absolute error = 0.98472516999316365441856730408276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.533 y[1] (analytic) = 0 y[1] (numeric) = 0.98529234791609752915619794858637 absolute error = 0.98529234791609752915619794858637 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.534 y[1] (analytic) = 0 y[1] (numeric) = 0.98585943338034203444265731920972 absolute error = 0.98585943338034203444265731920972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.535 y[1] (analytic) = 0 y[1] (numeric) = 0.98642642648036716436047375645232 absolute error = 0.98642642648036716436047375645232 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.536 y[1] (analytic) = 0 y[1] (numeric) = 0.98699332731055245320556198757424 absolute error = 0.98699332731055245320556198757424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.537 y[1] (analytic) = 0 y[1] (numeric) = 0.98756013596518711374937405840159 absolute error = 0.98756013596518711374937405840159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=968.9MB, alloc=4.4MB, time=100.15 NO POLE x[1] = 1.538 y[1] (analytic) = 0 y[1] (numeric) = 0.98812685253847017521952133329865 absolute error = 0.98812685253847017521952133329865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.539 y[1] (analytic) = 0 y[1] (numeric) = 0.98869347712451062099960190325981 absolute error = 0.98869347712451062099960190325981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.54 y[1] (analytic) = 0 y[1] (numeric) = 0.98926000981732752604896537809966 absolute error = 0.98926000981732752604896537809966 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.541 y[1] (analytic) = 0 y[1] (numeric) = 0.98982645071085019404314468383104 absolute error = 0.98982645071085019404314468383104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.542 y[1] (analytic) = 0 y[1] (numeric) = 0.99039279989891829423568214047845 absolute error = 0.99039279989891829423568214047845 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=972.7MB, alloc=4.4MB, time=100.55 NO POLE x[1] = 1.543 y[1] (analytic) = 0 y[1] (numeric) = 0.99095905747528199804207475873663 absolute error = 0.99095905747528199804207475873663 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.544 y[1] (analytic) = 0 y[1] (numeric) = 0.99152522353360211534656136601177 absolute error = 0.99152522353360211534656136601177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.545 y[1] (analytic) = 0 y[1] (numeric) = 0.99209129816745023053247185343534 absolute error = 0.99209129816745023053247185343534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.546 y[1] (analytic) = 0 y[1] (numeric) = 0.99265728147030883823685652537794 absolute error = 0.99265728147030883823685652537794 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.547 y[1] (analytic) = 0 y[1] (numeric) = 0.99322317353557147883011123177352 absolute error = 0.99322317353557147883011123177352 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.548 y[1] (analytic) = 0 y[1] (numeric) = 0.99378897445654287362131167115311 absolute error = 0.99378897445654287362131167115311 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=976.6MB, alloc=4.4MB, time=100.95 NO POLE x[1] = 1.549 y[1] (analytic) = 0 y[1] (numeric) = 0.99435468432643905978996796864253 absolute error = 0.99435468432643905978996796864253 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.55 y[1] (analytic) = 0 y[1] (numeric) = 0.9949203032383875250449083582617 absolute error = 0.9949203032383875250449083582617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.551 y[1] (analytic) = 0 y[1] (numeric) = 0.99548583128542734201099853263481 absolute error = 0.99548583128542734201099853263481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.552 y[1] (analytic) = 0 y[1] (numeric) = 0.99605126856050930234440096564238 absolute error = 0.99605126856050930234440096564238 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.553 y[1] (analytic) = 0 y[1] (numeric) = 0.99661661515649605057707626457974 absolute error = 0.99661661515649605057707626457974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.554 y[1] (analytic) = 0 y[1] (numeric) = 0.997181871166162217691226367993 absolute error = 0.997181871166162217691226367993 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=980.4MB, alloc=4.4MB, time=101.34 NO POLE x[1] = 1.555 y[1] (analytic) = 0 y[1] (numeric) = 0.9977470366821945544243771735056 absolute error = 0.9977470366821945544243771735056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.556 y[1] (analytic) = 0 y[1] (numeric) = 0.99831211179719206430579595658789 absolute error = 0.99831211179719206430579595658789 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.557 y[1] (analytic) = 0 y[1] (numeric) = 0.99887709660366613642493672632095 absolute error = 0.99887709660366613642493672632095 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.558 y[1] (analytic) = 0 y[1] (numeric) = 0.9994419911940406779326044577272 absolute error = 0.9994419911940406779326044577272 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.559 y[1] (analytic) = 0 y[1] (numeric) = 1.0000067956606522462755269421461 absolute error = 1.0000067956606522462755269421461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=984.2MB, alloc=4.4MB, time=101.74 NO POLE x[1] = 1.56 y[1] (analytic) = 0 y[1] (numeric) = 1.0005715100957501811650208073872 absolute error = 1.0005715100957501811650208073872 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.561 y[1] (analytic) = 0 y[1] (numeric) = 1.001136134591496736280436077957 absolute error = 1.001136134591496736280436077957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.562 y[1] (analytic) = 0 y[1] (numeric) = 1.0017006692399672107080614724947 absolute error = 1.0017006692399672107080614724947 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.563 y[1] (analytic) = 0 y[1] (numeric) = 1.0022651141331500801161704706283 absolute error = 1.0022651141331500801161704706283 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.564 y[1] (analytic) = 0 y[1] (numeric) = 1.0028294693629471276668860247393 absolute error = 1.0028294693629471276668860247393 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.565 y[1] (analytic) = 0 y[1] (numeric) = 1.0033937350211735746655396435655 absolute error = 1.0033937350211735746655396435655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=988.0MB, alloc=4.4MB, time=102.14 NO POLE x[1] = 1.566 y[1] (analytic) = 0 y[1] (numeric) = 1.0039579111995582109481984341446 absolute error = 1.0039579111995582109481984341446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.567 y[1] (analytic) = 0 y[1] (numeric) = 1.004521997989743525008031556263 absolute error = 1.004521997989743525008031556263 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.568 y[1] (analytic) = 0 y[1] (numeric) = 1.0050859954832858338611854192963 absolute error = 1.0050859954832858338611854192963 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.569 y[1] (analytic) = 0 y[1] (numeric) = 1.0056499037716554126528348350727 absolute error = 1.0056499037716554126528348350727 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.57 y[1] (analytic) = 0 y[1] (numeric) = 1.0062137229462366240040752321185 absolute error = 1.0062137229462366240040752321185 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=991.8MB, alloc=4.4MB, time=102.54 x[1] = 1.571 y[1] (analytic) = 0 y[1] (numeric) = 1.0067774530983280471003189363277 absolute error = 1.0067774530983280471003189363277 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.572 y[1] (analytic) = 0 y[1] (numeric) = 1.0073410943191426065218564306966 absolute error = 1.0073410943191426065218564306966 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.573 y[1] (analytic) = 0 y[1] (numeric) = 1.0079046466998077008172414222423 absolute error = 1.0079046466998077008172414222423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.574 y[1] (analytic) = 0 y[1] (numeric) = 1.008468110331365330820156467553 absolute error = 1.008468110331365330820156467553 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.575 y[1] (analytic) = 0 y[1] (numeric) = 1.0090314853047722277104138395587 absolute error = 1.0090314853047722277104138395587 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.576 y[1] (analytic) = 0 y[1] (numeric) = 1.0095947717108999808197442570266 absolute error = 1.0095947717108999808197442570266 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=995.6MB, alloc=4.4MB, time=102.94 NO POLE x[1] = 1.577 y[1] (analytic) = 0 y[1] (numeric) = 1.0101579696405351651830240449536 absolute error = 1.0101579696405351651830240449536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.578 y[1] (analytic) = 0 y[1] (numeric) = 1.010721079184379468835589248397 absolute error = 1.010721079184379468835589248397 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.579 y[1] (analytic) = 0 y[1] (numeric) = 1.0112841004330498198572831843399 absolute error = 1.0112841004330498198572831843399 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.58 y[1] (analytic) = 0 y[1] (numeric) = 1.0118470334770785131638818858797 absolute error = 1.0118470334770785131638818858797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.581 y[1] (analytic) = 0 y[1] (numeric) = 1.0124098784069133370465398703314 absolute error = 1.0124098784069133370465398703314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.582 y[1] (analytic) = 0 y[1] (numeric) = 1.0129726353129176994598966477216 absolute error = 1.0129726353129176994598966477216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=999.4MB, alloc=4.4MB, time=103.33 NO POLE x[1] = 1.583 y[1] (analytic) = 0 y[1] (numeric) = 1.0135353042853707540594823785702 absolute error = 1.0135353042853707540594823785702 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.584 y[1] (analytic) = 0 y[1] (numeric) = 1.0140978854144675259890590897938 absolute error = 1.0140978854144675259890590897938 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.585 y[1] (analytic) = 0 y[1] (numeric) = 1.0146603787903190374185318649782 absolute error = 1.0146603787903190374185318649782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.586 y[1] (analytic) = 0 y[1] (numeric) = 1.015222784502952432833062440126 absolute error = 1.015222784502952432833062440126 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.587 y[1] (analytic) = 0 y[1] (numeric) = 1.0157851026423111040740156582567 absolute error = 1.0157851026423111040740156582567 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1003.3MB, alloc=4.4MB, time=103.73 NO POLE x[1] = 1.588 y[1] (analytic) = 0 y[1] (numeric) = 1.0163473332982548151323672658902 absolute error = 1.0163473332982548151323672658902 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.589 y[1] (analytic) = 0 y[1] (numeric) = 1.0169094765605598266951995714454 absolute error = 1.0169094765605598266951995714454 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.59 y[1] (analytic) = 0 y[1] (numeric) = 1.0174715325189190204459095299045 absolute error = 1.0174715325189190204459095299045 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.591 y[1] (analytic) = 0 y[1] (numeric) = 1.0180335012629420231187518696956 absolute error = 1.0180335012629420231187518696956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.592 y[1] (analytic) = 0 y[1] (numeric) = 1.0185953828821553303083379366047 absolute error = 1.0185953828821553303083379366047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.593 y[1] (analytic) = 0 y[1] (numeric) = 1.0191571774660024300347089956055 absolute error = 1.0191571774660024300347089956055 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1007.1MB, alloc=4.4MB, time=104.12 NO POLE x[1] = 1.594 y[1] (analytic) = 0 y[1] (numeric) = 1.0197188851038439260646008047645 absolute error = 1.0197188851038439260646008047645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.595 y[1] (analytic) = 0 y[1] (numeric) = 1.0202805058849576609895143558092 absolute error = 1.0202805058849576609895143558092 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.596 y[1] (analytic) = 0 y[1] (numeric) = 1.0208420398985388390612057635035 absolute error = 1.0208420398985388390612057635035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.597 y[1] (analytic) = 0 y[1] (numeric) = 1.0214034872337001487852063806293 absolute error = 1.0214034872337001487852063806293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.598 y[1] (analytic) = 0 y[1] (numeric) = 1.0219648479794718852729823170963 absolute error = 1.0219648479794718852729823170963 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1010.9MB, alloc=4.4MB, time=104.51 x[1] = 1.599 y[1] (analytic) = 0 y[1] (numeric) = 1.0225261222248020723533406504599 absolute error = 1.0225261222248020723533406504599 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.6 y[1] (analytic) = 0 y[1] (numeric) = 1.0230873100585565844436877308922 absolute error = 1.0230873100585565844436877308922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.601 y[1] (analytic) = 0 y[1] (numeric) = 1.0236484115695192681817431063914 absolute error = 1.0236484115695192681817431063914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.602 y[1] (analytic) = 0 y[1] (numeric) = 1.0242094268463920638183107237019 absolute error = 1.0242094268463920638183107237019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.603 y[1] (analytic) = 0 y[1] (numeric) = 1.0247703559777951263717071970184 absolute error = 1.0247703559777951263717071970184 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.604 y[1] (analytic) = 0 y[1] (numeric) = 1.0253311990522669465444450800372 absolute error = 1.0253311990522669465444450800372 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1014.7MB, alloc=4.4MB, time=104.90 NO POLE x[1] = 1.605 y[1] (analytic) = 0 y[1] (numeric) = 1.0258919561582644714027672272616 absolute error = 1.0258919561582644714027672272616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.606 y[1] (analytic) = 0 y[1] (numeric) = 1.0264526273841632248196264876404 absolute error = 1.0264526273841632248196264876404 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.607 y[1] (analytic) = 0 y[1] (numeric) = 1.0270132128182574276817031375878 absolute error = 1.0270132128182574276817031375878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.608 y[1] (analytic) = 0 y[1] (numeric) = 1.0275737125487601178610506311705 absolute error = 1.0275737125487601178610506311705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.609 y[1] (analytic) = 0 y[1] (numeric) = 1.0281341266638032699519584227254 absolute error = 1.0281341266638032699519584227254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.61 y[1] (analytic) = 0 y[1] (numeric) = 1.028694455251437914773618801358 absolute error = 1.028694455251437914773618801358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1018.5MB, alloc=4.4MB, time=105.30 NO POLE x[1] = 1.611 y[1] (analytic) = 0 y[1] (numeric) = 1.0292546983996342586391828676415 absolute error = 1.0292546983996342586391828676415 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.612 y[1] (analytic) = 0 y[1] (numeric) = 1.0298148561962818023917889803574 absolute error = 1.0298148561962818023917889803574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.613 y[1] (analytic) = 0 y[1] (numeric) = 1.0303749287291894602081452052673 absolute error = 1.0303749287291894602081452052673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.614 y[1] (analytic) = 0 y[1] (numeric) = 1.0309349160860856781702455086455 absolute error = 1.0309349160860856781702455086455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.615 y[1] (analytic) = 0 y[1] (numeric) = 1.0314948183546185526057976556149 absolute error = 1.0314948183546185526057976556149 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1022.3MB, alloc=4.4MB, time=105.70 NO POLE x[1] = 1.616 y[1] (analytic) = 0 y[1] (numeric) = 1.0320546356223559481979389971781 absolute error = 1.0320546356223559481979389971781 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.617 y[1] (analytic) = 0 y[1] (numeric) = 1.0326143679767856158648145601989 absolute error = 1.0326143679767856158648145601989 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.618 y[1] (analytic) = 0 y[1] (numeric) = 1.0331740155053153104095900914345 absolute error = 1.0331740155053153104095900914345 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.619 y[1] (analytic) = 0 y[1] (numeric) = 1.0337335782952729079414709500233 absolute error = 1.0337335782952729079414709500233 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.62 y[1] (analytic) = 0 y[1] (numeric) = 1.0342930564339065230682959925646 absolute error = 1.0342930564339065230682959925646 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.621 y[1] (analytic) = 0 y[1] (numeric) = 1.0348524500083846258612738510586 absolute error = 1.0348524500083846258612738510586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1026.1MB, alloc=4.4MB, time=106.09 NO POLE x[1] = 1.622 y[1] (analytic) = 0 y[1] (numeric) = 1.0354117591057961585924272664853 absolute error = 1.0354117591057961585924272664853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.623 y[1] (analytic) = 0 y[1] (numeric) = 1.0359709838131506522453094096523 absolute error = 1.0359709838131506522453094096523 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.624 y[1] (analytic) = 0 y[1] (numeric) = 1.0365301242173783427995543961199 absolute error = 1.0365301242173783427995543961199 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.625 y[1] (analytic) = 0 y[1] (numeric) = 1.0370891804053302872898224834769 absolute error = 1.0370891804053302872898224834769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.626 y[1] (analytic) = 0 y[1] (numeric) = 1.0376481524637784796396987269765 absolute error = 1.0376481524637784796396987269765 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.627 y[1] (analytic) = 0 y[1] (numeric) = 1.0382070404794159662711021635157 absolute error = 1.0382070404794159662711021635157 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1030.0MB, alloc=4.4MB, time=106.48 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.628 y[1] (analytic) = 0 y[1] (numeric) = 1.0387658445388569614897608941304 absolute error = 1.0387658445388569614897608941304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.629 y[1] (analytic) = 0 y[1] (numeric) = 1.0393245647286369626473067415503 absolute error = 1.0393245647286369626473067415503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.63 y[1] (analytic) = 0 y[1] (numeric) = 1.0398832011352128650805414718973 absolute error = 1.0398832011352128650805414718973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.631 y[1] (analytic) = 0 y[1] (numeric) = 1.0404417538449630768284248882779 absolute error = 1.0404417538449630768284248882779 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.632 y[1] (analytic) = 0 y[1] (numeric) = 1.0410002229441876331273334288015 absolute error = 1.0410002229441876331273334288015 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1033.8MB, alloc=4.4MB, time=106.87 NO POLE x[1] = 1.633 y[1] (analytic) = 0 y[1] (numeric) = 1.0415586085191083106851362324166 absolute error = 1.0415586085191083106851362324166 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.634 y[1] (analytic) = 0 y[1] (numeric) = 1.0421169106558687417346339728781 absolute error = 1.0421169106558687417346339728781 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.635 y[1] (analytic) = 0 y[1] (numeric) = 1.0426751294405345278669041041073 absolute error = 1.0426751294405345278669041041073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.636 y[1] (analytic) = 0 y[1] (numeric) = 1.0432332649590933536450945091648 absolute error = 1.0432332649590933536450945091648 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.637 y[1] (analytic) = 0 y[1] (numeric) = 1.0437913172974550999992058999928 absolute error = 1.0437913172974550999992058999928 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.638 y[1] (analytic) = 0 y[1] (numeric) = 1.0443492865414519574024016759772 absolute error = 1.0443492865414519574024016759772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1037.6MB, alloc=4.4MB, time=107.26 NO POLE x[1] = 1.639 y[1] (analytic) = 0 y[1] (numeric) = 1.0449071727768385388293823162027 absolute error = 1.0449071727768385388293823162027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.64 y[1] (analytic) = 0 y[1] (numeric) = 1.045464976089291992497359753003 absolute error = 1.045464976089291992497359753003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.641 y[1] (analytic) = 0 y[1] (numeric) = 1.0460226965644121143901655530183 absolute error = 1.0460226965644121143901655530183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.642 y[1] (analytic) = 0 y[1] (numeric) = 1.046580334287721460566025116437 absolute error = 1.046580334287721460566025116437 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.643 y[1] (analytic) = 0 y[1] (numeric) = 1.0471378893446654592495284953939 absolute error = 1.0471378893446654592495284953939 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1041.4MB, alloc=4.4MB, time=107.66 NO POLE x[1] = 1.644 y[1] (analytic) = 0 y[1] (numeric) = 1.0476953618206125227083268286028 absolute error = 1.0476953618206125227083268286028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.645 y[1] (analytic) = 0 y[1] (numeric) = 1.0482527518008541589150817911842 absolute error = 1.0482527518008541589150817911842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.646 y[1] (analytic) = 0 y[1] (numeric) = 1.0488100593706050829951938662934 absolute error = 1.0488100593706050829951938662934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.647 y[1] (analytic) = 0 y[1] (numeric) = 1.0493672846150033284608336585317 absolute error = 1.0493672846150033284608336585317 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.648 y[1] (analytic) = 0 y[1] (numeric) = 1.0499244276191103582317988882097 absolute error = 1.0499244276191103582317988882097 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.649 y[1] (analytic) = 0 y[1] (numeric) = 1.0504814884679111754437181303047 absolute error = 1.0504814884679111754437181303047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1045.2MB, alloc=4.4MB, time=108.06 NO POLE x[1] = 1.65 y[1] (analytic) = 0 y[1] (numeric) = 1.0510384672463144340441207923901 absolute error = 1.0510384672463144340441207923901 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.651 y[1] (analytic) = 0 y[1] (numeric) = 1.0515953640391525491768912618864 absolute error = 1.0515953640391525491768912618864 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.652 y[1] (analytic) = 0 y[1] (numeric) = 1.0521521789311818073556235946734 absolute error = 1.0521521789311818073556235946734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.653 y[1] (analytic) = 0 y[1] (numeric) = 1.0527089120070824764263915643808 absolute error = 1.0527089120070824764263915643808 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.654 y[1] (analytic) = 0 y[1] (numeric) = 1.0532655633514589153204473445229 absolute error = 1.0532655633514589153204473445229 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.655 y[1] (analytic) = 0 y[1] (numeric) = 1.0538221330488396835973605540355 absolute error = 1.0538221330488396835973605540355 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1049.0MB, alloc=4.4MB, time=108.46 NO POLE x[1] = 1.656 y[1] (analytic) = 0 y[1] (numeric) = 1.0543786211836776507791078606847 absolute error = 1.0543786211836776507791078606847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.657 y[1] (analytic) = 0 y[1] (numeric) = 1.0549350278403501054756218062328 absolute error = 1.0549350278403501054756218062328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.658 y[1] (analytic) = 0 y[1] (numeric) = 1.0554913531031588643023059921308 absolute error = 1.0554913531031588643023059921308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.659 y[1] (analytic) = 0 y[1] (numeric) = 1.0560475970563303805900222448498 absolute error = 1.0560475970563303805900222448498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.66 y[1] (analytic) = 0 y[1] (numeric) = 1.0566037597840158528880538657341 absolute error = 1.0566037597840158528880538657341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1052.8MB, alloc=4.4MB, time=108.85 NO POLE x[1] = 1.661 y[1] (analytic) = 0 y[1] (numeric) = 1.0571598413702913332605475614361 absolute error = 1.0571598413702913332605475614361 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.662 y[1] (analytic) = 0 y[1] (numeric) = 1.0577158418991578353769351475571 absolute error = 1.0577158418991578353769351475571 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.663 y[1] (analytic) = 0 y[1] (numeric) = 1.0582717614545414423968346200436 absolute error = 1.0582717614545414423968346200436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.664 y[1] (analytic) = 0 y[1] (numeric) = 1.0588276001202934146499286961561 absolute error = 1.0588276001202934146499286961561 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.665 y[1] (analytic) = 0 y[1] (numeric) = 1.0593833579801902971113174394098 absolute error = 1.0593833579801902971113174394098 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.666 y[1] (analytic) = 0 y[1] (numeric) = 1.0599390351179340266728401007691 absolute error = 1.0599390351179340266728401007691 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1056.7MB, alloc=4.4MB, time=109.25 NO POLE x[1] = 1.667 y[1] (analytic) = 0 y[1] (numeric) = 1.0604946316171520392108598315327 absolute error = 1.0604946316171520392108598315327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.668 y[1] (analytic) = 0 y[1] (numeric) = 1.0610501475613973764510034517514 absolute error = 1.0610501475613973764510034517514 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.669 y[1] (analytic) = 0 y[1] (numeric) = 1.061605583034148792630346991661 absolute error = 1.061605583034148792630346991661 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.67 y[1] (analytic) = 0 y[1] (numeric) = 1.0621609381188108609575362624575 absolute error = 1.0621609381188108609575362624575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.671 y[1] (analytic) = 0 y[1] (numeric) = 1.062716212898714079871330256777 absolute error = 1.062716212898714079871330256777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1060.5MB, alloc=4.4MB, time=109.63 NO POLE x[1] = 1.672 y[1] (analytic) = 0 y[1] (numeric) = 1.0632714074571149790980537284429 absolute error = 1.0632714074571149790980537284429 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.673 y[1] (analytic) = 0 y[1] (numeric) = 1.063826521877196225508443855387 absolute error = 1.063826521877196225508443855387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.674 y[1] (analytic) = 0 y[1] (numeric) = 1.0643815562420667287743744491199 absolute error = 1.0643815562420667287743744491199 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.675 y[1] (analytic) = 0 y[1] (numeric) = 1.0649365106347617468259397386961 absolute error = 1.0649365106347617468259397386961 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.676 y[1] (analytic) = 0 y[1] (numeric) = 1.0654913851382429911093783267715 absolute error = 1.0654913851382429911093783267715 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.677 y[1] (analytic) = 0 y[1] (numeric) = 1.0660461798353987316463164900618 absolute error = 1.0660461798353987316463164900618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1064.3MB, alloc=4.4MB, time=110.02 NO POLE x[1] = 1.678 y[1] (analytic) = 0 y[1] (numeric) = 1.0666008948090439018948085762624 absolute error = 1.0666008948090439018948085762624 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.679 y[1] (analytic) = 0 y[1] (numeric) = 1.06715553014192020341265083426 absolute error = 1.06715553014192020341265083426 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.68 y[1] (analytic) = 0 y[1] (numeric) = 1.0677100859166962103234436042346 absolute error = 1.0677100859166962103234436042346 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.681 y[1] (analytic) = 0 y[1] (numeric) = 1.0682645622159674735858753889947 absolute error = 1.0682645622159674735858753889947 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.682 y[1] (analytic) = 0 y[1] (numeric) = 1.0688189591222566250667009275932 absolute error = 1.0688189591222566250667009275932 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.683 y[1] (analytic) = 0 y[1] (numeric) = 1.0693732767180134814178839969083 absolute error = 1.0693732767180134814178839969083 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1068.1MB, alloc=4.4MB, time=110.42 NO POLE x[1] = 1.684 y[1] (analytic) = 0 y[1] (numeric) = 1.0699275150856151477583742764316 absolute error = 1.0699275150856151477583742764316 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.685 y[1] (analytic) = 0 y[1] (numeric) = 1.0704816743073661211609862259549 absolute error = 1.0704816743073661211609862259549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.686 y[1] (analytic) = 0 y[1] (numeric) = 1.0710357544654983939448465451773 absolute error = 1.0710357544654983939448465451773 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.687 y[1] (analytic) = 0 y[1] (numeric) = 1.0715897556421715567738754084381 absolute error = 1.0715897556421715567738754084381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.688 y[1] (analytic) = 0 y[1] (numeric) = 1.0721436779194729015617652967995 absolute error = 1.0721436779194729015617652967995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1071.9MB, alloc=4.4MB, time=110.81 NO POLE x[1] = 1.689 y[1] (analytic) = 0 y[1] (numeric) = 1.072697521379417524183919883543 absolute error = 1.072697521379417524183919883543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.69 y[1] (analytic) = 0 y[1] (numeric) = 1.0732512861039484269968140677751 absolute error = 1.0732512861039484269968140677751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.691 y[1] (analytic) = 0 y[1] (numeric) = 1.0738049721749366211652348942498 absolute error = 1.0738049721749366211652348942498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.692 y[1] (analytic) = 0 y[1] (numeric) = 1.074358579674181228797861745684 absolute error = 1.074358579674181228797861745684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.693 y[1] (analytic) = 0 y[1] (numeric) = 1.0749121086834095848916428467484 absolute error = 1.0749121086834095848916428467484 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.694 y[1] (analytic) = 0 y[1] (numeric) = 1.0754655592842773390854237765436 absolute error = 1.0754655592842773390854237765436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1075.7MB, alloc=4.4MB, time=111.21 NO POLE x[1] = 1.695 y[1] (analytic) = 0 y[1] (numeric) = 1.0760189315583685572232823486954 absolute error = 1.0760189315583685572232823486954 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.696 y[1] (analytic) = 0 y[1] (numeric) = 1.0765722255871958227280228852101 absolute error = 1.0765722255871958227280228852101 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.697 y[1] (analytic) = 0 y[1] (numeric) = 1.0771254414522003377852815818981 absolute error = 1.0771254414522003377852815818981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.698 y[1] (analytic) = 0 y[1] (numeric) = 1.0776785792347520243386933394844 absolute error = 1.0776785792347520243386933394844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.699 y[1] (analytic) = 0 y[1] (numeric) = 1.0782316390161496248965691154582 absolute error = 1.0782316390161496248965691154582 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1079.6MB, alloc=4.4MB, time=111.60 NO POLE x[1] = 1.7 y[1] (analytic) = 0 y[1] (numeric) = 1.0787846208776208031505315372516 absolute error = 1.0787846208776208031505315372516 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.701 y[1] (analytic) = 0 y[1] (numeric) = 1.0793375249003222444065552074638 absolute error = 1.0793375249003222444065552074638 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.702 y[1] (analytic) = 0 y[1] (numeric) = 1.0798903511653397558288568265372 absolute error = 1.0798903511653397558288568265372 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.703 y[1] (analytic) = 0 y[1] (numeric) = 1.0804430997536883664970789575344 absolute error = 1.0804430997536883664970789575344 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.704 y[1] (analytic) = 0 y[1] (numeric) = 1.0809957707463124272772099614356 absolute error = 1.0809957707463124272772099614356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.705 y[1] (analytic) = 0 y[1] (numeric) = 1.0815483642240857105066813396605 absolute error = 1.0815483642240857105066813396605 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1083.4MB, alloc=4.4MB, time=111.99 NO POLE x[1] = 1.706 y[1] (analytic) = 0 y[1] (numeric) = 1.0821008802678115094940824332945 absolute error = 1.0821008802678115094940824332945 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.707 y[1] (analytic) = 0 y[1] (numeric) = 1.0826533189582227378339311457546 absolute error = 1.0826533189582227378339311457546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.708 y[1] (analytic) = 0 y[1] (numeric) = 1.083205680375982028536938077338 absolute error = 1.083205680375982028536938077338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.709 y[1] (analytic) = 0 y[1] (numeric) = 1.0837579646016818329762001862496 absolute error = 1.0837579646016818329762001862496 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.71 y[1] (analytic) = 0 y[1] (numeric) = 1.0843101717158445196497588212727 absolute error = 1.0843101717158445196497588212727 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.711 y[1] (analytic) = 0 y[1] (numeric) = 1.0848623017989224727599557062259 absolute error = 1.0848623017989224727599557062259 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1087.2MB, alloc=4.4MB, time=112.38 NO POLE x[1] = 1.712 y[1] (analytic) = 0 y[1] (numeric) = 1.0854143549312981906100191957076 absolute error = 1.0854143549312981906100191957076 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.713 y[1] (analytic) = 0 y[1] (numeric) = 1.0859663311932843838183118653606 absolute error = 1.0859663311932843838183118653606 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.714 y[1] (analytic) = 0 y[1] (numeric) = 1.0865182306651240733506692479678 absolute error = 1.0865182306651240733506692479678 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.715 y[1] (analytic) = 0 y[1] (numeric) = 1.0870700534269906883712582791042 absolute error = 1.0870700534269906883712582791042 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.716 y[1] (analytic) = 0 y[1] (numeric) = 1.087621799558988163912382772798 absolute error = 1.087621799558988163912382772798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1091.0MB, alloc=4.4MB, time=112.78 NO POLE x[1] = 1.717 y[1] (analytic) = 0 y[1] (numeric) = 1.0881734691411510383636620086805 absolute error = 1.0881734691411510383636620086805 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.718 y[1] (analytic) = 0 y[1] (numeric) = 1.0887250622534445507810072774125 absolute error = 1.0887250622534445507810072774125 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.719 y[1] (analytic) = 0 y[1] (numeric) = 1.0892765789757647380158200007455 absolute error = 1.0892765789757647380158200007455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.72 y[1] (analytic) = 0 y[1] (numeric) = 1.0898280193879385316648338163941 absolute error = 1.0898280193879385316648338163941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.721 y[1] (analytic) = 0 y[1] (numeric) = 1.0903793835697238548410217959441 absolute error = 1.0903793835697238548410217959441 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.722 y[1] (analytic) = 0 y[1] (numeric) = 1.0909306716008097187659887462788 absolute error = 1.0909306716008097187659887462788 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1094.8MB, alloc=4.4MB, time=113.18 NO POLE x[1] = 1.723 y[1] (analytic) = 0 y[1] (numeric) = 1.0914818835608163191842673314634 absolute error = 1.0914818835608163191842673314634 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.724 y[1] (analytic) = 0 y[1] (numeric) = 1.0920330195292951325999355426607 absolute error = 1.0920330195292951325999355426607 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.725 y[1] (analytic) = 0 y[1] (numeric) = 1.0925840795857290123359718384471 absolute error = 1.0925840795857290123359718384471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.726 y[1] (analytic) = 0 y[1] (numeric) = 1.0931350638095322844167630768404 absolute error = 1.0931350638095322844167630768404 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.727 y[1] (analytic) = 0 y[1] (numeric) = 1.093685972280050843274179163421 absolute error = 1.093685972280050843274179163421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1098.6MB, alloc=4.4MB, time=113.57 NO POLE x[1] = 1.728 y[1] (analytic) = 0 y[1] (numeric) = 1.0942368050765622472776271471107 absolute error = 1.0942368050765622472776271471107 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.729 y[1] (analytic) = 0 y[1] (numeric) = 1.0947875622782758140884963064509 absolute error = 1.0947875622782758140884963064509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.73 y[1] (analytic) = 0 y[1] (numeric) = 1.0953382439643327158394045845816 absolute error = 1.0953382439643327158394045845816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.731 y[1] (analytic) = 0 y[1] (numeric) = 1.0958888502138060741386555505422 absolute error = 1.0958888502138060741386555505422 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.732 y[1] (analytic) = 0 y[1] (numeric) = 1.0964393811057010549003138879836 absolute error = 1.0964393811057010549003138879836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.733 y[1] (analytic) = 0 y[1] (numeric) = 1.0969898367189549630003062398795 absolute error = 1.0969898367189549630003062398795 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1102.4MB, alloc=4.4MB, time=113.96 NO POLE x[1] = 1.734 y[1] (analytic) = 0 y[1] (numeric) = 1.0975402171324373367589530693384 absolute error = 1.0975402171324373367589530693384 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.735 y[1] (analytic) = 0 y[1] (numeric) = 1.0980905224249500422503360321304 absolute error = 1.0980905224249500422503360321304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.736 y[1] (analytic) = 0 y[1] (numeric) = 1.0986407526752273674389041960366 absolute error = 1.0986407526752273674389041960366 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.737 y[1] (analytic) = 0 y[1] (numeric) = 1.0991909079619361161437212855921 absolute error = 1.0991909079619361161437212855921 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.738 y[1] (analytic) = 0 y[1] (numeric) = 1.0997409883636757018307549782052 absolute error = 1.0997409883636757018307549782052 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.739 y[1] (analytic) = 0 y[1] (numeric) = 1.1002909939589782412336081289851 absolute error = 1.1002909939589782412336081289851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1106.3MB, alloc=4.4MB, time=114.36 NO POLE x[1] = 1.74 y[1] (analytic) = 0 y[1] (numeric) = 1.1008409248263086478030906568778 absolute error = 1.1008409248263086478030906568778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.741 y[1] (analytic) = 0 y[1] (numeric) = 1.1013907810440647249860296838824 absolute error = 1.1013907810440647249860296838824 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.742 y[1] (analytic) = 0 y[1] (numeric) = 1.1019405626905772593337143821813 absolute error = 1.1019405626905772593337143821813 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.743 y[1] (analytic) = 0 y[1] (numeric) = 1.1024902698441101134403708509524 absolute error = 1.1024902698441101134403708509524 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.744 y[1] (analytic) = 0 y[1] (numeric) = 1.1030399025828603187120612154234 absolute error = 1.1030399025828603187120612154234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1110.1MB, alloc=4.4MB, time=114.75 NO POLE x[1] = 1.745 y[1] (analytic) = 0 y[1] (numeric) = 1.1035894609849581679664000153638 absolute error = 1.1035894609849581679664000153638 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.746 y[1] (analytic) = 0 y[1] (numeric) = 1.1041389451284673078634798286725 absolute error = 1.1041389451284673078634798286725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.747 y[1] (analytic) = 0 y[1] (numeric) = 1.1046883550913848311683969579936 absolute error = 1.1046883550913848311683969579936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.748 y[1] (analytic) = 0 y[1] (numeric) = 1.1052376909516413688457668943649 absolute error = 1.1052376909516413688457668943649 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.749 y[1] (analytic) = 0 y[1] (numeric) = 1.1057869527871011819866181617589 absolute error = 1.1057869527871011819866181617589 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.75 y[1] (analytic) = 0 y[1] (numeric) = 1.1063361406755622535680520399958 absolute error = 1.1063361406755622535680520399958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1113.9MB, alloc=4.4MB, time=115.15 NO POLE x[1] = 1.751 y[1] (analytic) = 0 y[1] (numeric) = 1.1068852546947563800460545608832 absolute error = 1.1068852546947563800460545608832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.752 y[1] (analytic) = 0 y[1] (numeric) = 1.1074342949223492627818460735482 absolute error = 1.1074342949223492627818460735482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.753 y[1] (analytic) = 0 y[1] (numeric) = 1.1079832614359405993021525797618 absolute error = 1.1079832614359405993021525797618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.754 y[1] (analytic) = 0 y[1] (numeric) = 1.1085321543130641743937819485979 absolute error = 1.1085321543130641743937819485979 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.755 y[1] (analytic) = 0 y[1] (numeric) = 1.1090809736311879510328870320048 absolute error = 1.1090809736311879510328870320048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1117.7MB, alloc=4.4MB, time=115.54 NO POLE x[1] = 1.756 y[1] (analytic) = 0 y[1] (numeric) = 1.1096297194677141611492966187836 absolute error = 1.1096297194677141611492966187836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.757 y[1] (analytic) = 0 y[1] (numeric) = 1.1101783918999793962262940840444 absolute error = 1.1101783918999793962262940840444 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.758 y[1] (analytic) = 0 y[1] (numeric) = 1.1107269910052546977362225144435 absolute error = 1.1107269910052546977362225144435 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.759 y[1] (analytic) = 0 y[1] (numeric) = 1.1112755168607456474122940163692 absolute error = 1.1112755168607456474122940163692 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.76 y[1] (analytic) = 0 y[1] (numeric) = 1.1118239695435924573569798447292 absolute error = 1.1118239695435924573569798447292 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.761 y[1] (analytic) = 0 y[1] (numeric) = 1.1123723491308700599873569240894 absolute error = 1.1123723491308700599873569240894 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1121.5MB, alloc=4.4MB, time=115.93 NO POLE x[1] = 1.762 y[1] (analytic) = 0 y[1] (numeric) = 1.1129206556995881978177852715972 absolute error = 1.1129206556995881978177852715972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.763 y[1] (analytic) = 0 y[1] (numeric) = 1.1134688893266915130802897723926 absolute error = 1.1134688893266915130802897723926 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.764 y[1] (analytic) = 0 y[1] (numeric) = 1.1140170500890596371830187030379 absolute error = 1.1140170500890596371830187030379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.765 y[1] (analytic) = 0 y[1] (numeric) = 1.1145651380635072800071503468807 absolute error = 1.1145651380635072800071503468807 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.766 y[1] (analytic) = 0 y[1] (numeric) = 1.1151131533267843190426179971839 absolute error = 1.1151131533267843190426179971839 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.767 y[1] (analytic) = 0 y[1] (numeric) = 1.1156610959555758883630225992973 absolute error = 1.1156610959555758883630225992973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1125.3MB, alloc=4.4MB, time=116.32 NO POLE x[1] = 1.768 y[1] (analytic) = 0 y[1] (numeric) = 1.1162089660265024674401012420994 absolute error = 1.1162089660265024674401012420994 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.769 y[1] (analytic) = 0 y[1] (numeric) = 1.1167567636161199697981186713833 absolute error = 1.1167567636161199697981186713833 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.77 y[1] (analytic) = 0 y[1] (numeric) = 1.1173044888009198315085479637918 absolute error = 1.1173044888009198315085479637918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.771 y[1] (analytic) = 0 y[1] (numeric) = 1.1178521416573290995254054693043 absolute error = 1.1178521416573290995254054693043 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.772 y[1] (analytic) = 0 y[1] (numeric) = 1.1183997222617105198616041031306 absolute error = 1.1183997222617105198616041031306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1129.1MB, alloc=4.4MB, time=116.71 NO POLE x[1] = 1.773 y[1] (analytic) = 0 y[1] (numeric) = 1.1189472306903626256066880441621 absolute error = 1.1189472306903626256066880441621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.774 y[1] (analytic) = 0 y[1] (numeric) = 1.119494667019519824786310876853 absolute error = 1.119494667019519824786310876853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.775 y[1] (analytic) = 0 y[1] (numeric) = 1.1200420313253524880638181965414 absolute error = 1.1200420313253524880638181965414 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.776 y[1] (analytic) = 0 y[1] (numeric) = 1.1205893236839670362842946847584 absolute error = 1.1205893236839670362842946847584 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.777 y[1] (analytic) = 0 y[1] (numeric) = 1.1211365441714060278614346510011 absolute error = 1.1211365441714060278614346510011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.778 y[1] (analytic) = 0 y[1] (numeric) = 1.1216836928636482460075940307462 absolute error = 1.1216836928636482460075940307462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1133.0MB, alloc=4.4MB, time=117.11 NO POLE x[1] = 1.779 y[1] (analytic) = 0 y[1] (numeric) = 1.1222307698366087858073808261446 absolute error = 1.1222307698366087858073808261446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.78 y[1] (analytic) = 0 y[1] (numeric) = 1.1227777751661391411351399758511 absolute error = 1.1227777751661391411351399758511 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.781 y[1] (analytic) = 0 y[1] (numeric) = 1.1233247089280272914166876437891 absolute error = 1.1233247089280272914166876437891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.782 y[1] (analytic) = 0 y[1] (numeric) = 1.1238715711979977882356489233239 absolute error = 1.1238715711979977882356489233239 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.783 y[1] (analytic) = 0 y[1] (numeric) = 1.1244183620517118417847519632975 absolute error = 1.1244183620517118417847519632975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1136.8MB, alloc=4.4MB, time=117.50 NO POLE x[1] = 1.784 y[1] (analytic) = 0 y[1] (numeric) = 1.1249650815647674071624305356558 absolute error = 1.1249650815647674071624305356558 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.785 y[1] (analytic) = 0 y[1] (numeric) = 1.1255117298126992705150860809635 absolute error = 1.1255117298126992705150860809635 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.786 y[1] (analytic) = 0 y[1] (numeric) = 1.1260583068709791350253592879334 absolute error = 1.1260583068709791350253592879334 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.787 y[1] (analytic) = 0 y[1] (numeric) = 1.1266048128150157067467602861921 absolute error = 1.1266048128150157067467602861921 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.788 y[1] (analytic) = 0 y[1] (numeric) = 1.1271512477201547802850055578422 absolute error = 1.1271512477201547802850055578422 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.789 y[1] (analytic) = 0 y[1] (numeric) = 1.1276976116616793243264087029549 absolute error = 1.1276976116616793243264087029549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1140.6MB, alloc=4.4MB, time=117.89 NO POLE x[1] = 1.79 y[1] (analytic) = 0 y[1] (numeric) = 1.1282439047148095670136712269209 absolute error = 1.1282439047148095670136712269209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.791 y[1] (analytic) = 0 y[1] (numeric) = 1.1287901269547030811694185535919 absolute error = 1.1287901269547030811694185535919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.792 y[1] (analytic) = 0 y[1] (numeric) = 1.1293362784564548693678255073438 absolute error = 1.1293362784564548693678255073438 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.793 y[1] (analytic) = 0 y[1] (numeric) = 1.1298823592950974488546745495768 absolute error = 1.1298823592950974488546745495768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.794 y[1] (analytic) = 0 y[1] (numeric) = 1.1304283695456009363161891007246 absolute error = 1.1304283695456009363161891007246 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.795 y[1] (analytic) = 0 y[1] (numeric) = 1.1309743092828731324969833275588 absolute error = 1.1309743092828731324969833275588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1144.4MB, alloc=4.4MB, time=118.29 NO POLE x[1] = 1.796 y[1] (analytic) = 0 y[1] (numeric) = 1.1315201785817596066674688274391 absolute error = 1.1315201785817596066674688274391 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.797 y[1] (analytic) = 0 y[1] (numeric) = 1.1320659775170437809410576961572 absolute error = 1.1320659775170437809410576961572 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.798 y[1] (analytic) = 0 y[1] (numeric) = 1.1326117061634470144415005241449 absolute error = 1.1326117061634470144415005241449 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.799 y[1] (analytic) = 0 y[1] (numeric) = 1.1331573645956286873206969270487 absolute error = 1.1331573645956286873206969270487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.8 y[1] (analytic) = 0 y[1] (numeric) = 1.1337029528881862846273152810069 absolute error = 1.1337029528881862846273152810069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1148.2MB, alloc=4.4MB, time=118.68 NO POLE x[1] = 1.801 y[1] (analytic) = 0 y[1] (numeric) = 1.1342484711156554800265574003839 absolute error = 1.1342484711156554800265574003839 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.802 y[1] (analytic) = 0 y[1] (numeric) = 1.1347939193525102193714029662119 absolute error = 1.1347939193525102193714029662119 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.803 y[1] (analytic) = 0 y[1] (numeric) = 1.1353392976731628041256675871497 absolute error = 1.1353392976731628041256675871497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.804 y[1] (analytic) = 0 y[1] (numeric) = 1.1358846061519639746392074513794 absolute error = 1.1358846061519639746392074513794 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.805 y[1] (analytic) = 0 y[1] (numeric) = 1.1364298448632029932756026075123 absolute error = 1.1364298448632029932756026075123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.806 y[1] (analytic) = 0 y[1] (numeric) = 1.1369750138811077273926499952572 absolute error = 1.1369750138811077273926499952572 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1152.0MB, alloc=4.4MB, time=119.08 NO POLE x[1] = 1.807 y[1] (analytic) = 0 y[1] (numeric) = 1.1375201132798447321759964322995 absolute error = 1.1375201132798447321759964322995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.808 y[1] (analytic) = 0 y[1] (numeric) = 1.1380651431335193333262408525442 absolute error = 1.1380651431335193333262408525442 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.809 y[1] (analytic) = 0 y[1] (numeric) = 1.1386101035161757095998341825713 absolute error = 1.1386101035161757095998341825713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.81 y[1] (analytic) = 0 y[1] (numeric) = 1.1391549945017969752041043378325 absolute error = 1.1391549945017969752041043378325 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.811 y[1] (analytic) = 0 y[1] (numeric) = 1.1396998161643052620467329177683 absolute error = 1.1396998161643052620467329177683 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1155.9MB, alloc=4.4MB, time=119.47 NO POLE x[1] = 1.812 y[1] (analytic) = 0 y[1] (numeric) = 1.1402445685775618018400092796349 absolute error = 1.1402445685775618018400092796349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.813 y[1] (analytic) = 0 y[1] (numeric) = 1.1407892518153670080601867743905 absolute error = 1.1407892518153670080601867743905 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.814 y[1] (analytic) = 0 y[1] (numeric) = 1.1413338659514605577622650344861 absolute error = 1.1413338659514605577622650344861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.815 y[1] (analytic) = 0 y[1] (numeric) = 1.1418784110595214732505213128281 absolute error = 1.1418784110595214732505213128281 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.816 y[1] (analytic) = 0 y[1] (numeric) = 1.1424228872131682036051129845196 absolute error = 1.1424228872131682036051129845196 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.817 y[1] (analytic) = 0 y[1] (numeric) = 1.1429672944859587060650724382262 absolute error = 1.1429672944859587060650724382262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1159.7MB, alloc=4.4MB, time=119.87 NO POLE x[1] = 1.818 y[1] (analytic) = 0 y[1] (numeric) = 1.1435116329513905272680147021483 absolute error = 1.1435116329513905272680147021483 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.819 y[1] (analytic) = 0 y[1] (numeric) = 1.1440559026829008843468772705978 absolute error = 1.1440559026829008843468772705978 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.82 y[1] (analytic) = 0 y[1] (numeric) = 1.1446001037538667458840107210629 absolute error = 1.1446001037538667458840107210629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.821 y[1] (analytic) = 0 y[1] (numeric) = 1.1451442362376049127229378383934 absolute error = 1.1451442362376049127229378383934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.822 y[1] (analytic) = 0 y[1] (numeric) = 1.1456883002073720986380980923342 absolute error = 1.1456883002073720986380980923342 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.823 y[1] (analytic) = 0 y[1] (numeric) = 1.1462322957363650108628934470689 absolute error = 1.1462322957363650108628934470689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1163.5MB, alloc=4.4MB, time=120.26 NO POLE x[1] = 1.824 y[1] (analytic) = 0 y[1] (numeric) = 1.1467762228977204304763506166983 absolute error = 1.1467762228977204304763506166983 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.825 y[1] (analytic) = 0 y[1] (numeric) = 1.1473200817645152926487140186563 absolute error = 1.1473200817645152926487140186563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.826 y[1] (analytic) = 0 y[1] (numeric) = 1.1478638724097667667462828179515 absolute error = 1.1478638724097667667462828179515 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.827 y[1] (analytic) = 0 y[1] (numeric) = 1.1484075949064323362958045988033 absolute error = 1.1484075949064323362958045988033 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.828 y[1] (analytic) = 0 y[1] (numeric) = 1.1489512493274098788087373467054 absolute error = 1.1489512493274098788087373467054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1167.3MB, alloc=4.4MB, time=120.66 NO POLE x[1] = 1.829 y[1] (analytic) = 0 y[1] (numeric) = 1.1494948357455377454656905731918 absolute error = 1.1494948357455377454656905731918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.83 y[1] (analytic) = 0 y[1] (numeric) = 1.1500383542335948406613555675815 absolute error = 1.1500383542335948406613555675815 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.831 y[1] (analytic) = 0 y[1] (numeric) = 1.1505818048643007014102339147372 absolute error = 1.1505818048643007014102339147372 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.832 y[1] (analytic) = 0 y[1] (numeric) = 1.1511251877103155766134725753728 absolute error = 1.1511251877103155766134725753728 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.833 y[1] (analytic) = 0 y[1] (numeric) = 1.1516685028442405061871129856772 absolute error = 1.1516685028442405061871129856772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.834 y[1] (analytic) = 0 y[1] (numeric) = 1.1522117503386174000520607959784 absolute error = 1.1522117503386174000520607959784 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1171.1MB, alloc=4.4MB, time=121.06 NO POLE x[1] = 1.835 y[1] (analytic) = 0 y[1] (numeric) = 1.1527549302659291169860820338376 absolute error = 1.1527549302659291169860820338376 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.836 y[1] (analytic) = 0 y[1] (numeric) = 1.1532980426985995433381306453347 absolute error = 1.1532980426985995433381306453347 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.837 y[1] (analytic) = 0 y[1] (numeric) = 1.1538410877089936716053115393655 absolute error = 1.1538410877089936716053115393655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.838 y[1] (analytic) = 0 y[1] (numeric) = 1.1543840653694176788727824335154 absolute error = 1.1543840653694176788727824335154 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.839 y[1] (analytic) = 0 y[1] (numeric) = 1.1549269757521190051168969764883 absolute error = 1.1549269757521190051168969764883 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1174.9MB, alloc=4.4MB, time=121.45 NO POLE x[1] = 1.84 y[1] (analytic) = 0 y[1] (numeric) = 1.1554698189292864313718908011437 absolute error = 1.1554698189292864313718908011437 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.841 y[1] (analytic) = 0 y[1] (numeric) = 1.1560125949730501577604113439252 absolute error = 1.1560125949730501577604113439252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.842 y[1] (analytic) = 0 y[1] (numeric) = 1.1565553039554818813881914508291 absolute error = 1.1565553039554818813881914508291 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.843 y[1] (analytic) = 0 y[1] (numeric) = 1.1570979459485948741031659770647 absolute error = 1.1570979459485948741031659770647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.844 y[1] (analytic) = 0 y[1] (numeric) = 1.1576405210243440601193297771785 absolute error = 1.1576405210243440601193297771785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.845 y[1] (analytic) = 0 y[1] (numeric) = 1.1581830292546260935056346746486 absolute error = 1.1581830292546260935056346746486 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1178.7MB, alloc=4.4MB, time=121.84 NO POLE x[1] = 1.846 y[1] (analytic) = 0 y[1] (numeric) = 1.1587254707112794355402221947923 absolute error = 1.1587254707112794355402221947923 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.847 y[1] (analytic) = 0 y[1] (numeric) = 1.1592678454660844319302880422575 absolute error = 1.1592678454660844319302880422575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.848 y[1] (analytic) = 0 y[1] (numeric) = 1.1598101535907633898978735043801 absolute error = 1.1598101535907633898978735043801 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.849 y[1] (analytic) = 0 y[1] (numeric) = 1.160352395156980655131878164273 absolute error = 1.160352395156980655131878164273 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.85 y[1] (analytic) = 0 y[1] (numeric) = 1.1608945702363426886065875126597 absolute error = 1.1608945702363426886065875126597 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.851 y[1] (analytic) = 0 y[1] (numeric) = 1.1614366789003981432670082551674 absolute error = 1.1614366789003981432670082551674 relative error = -1 % memory used=1182.6MB, alloc=4.4MB, time=122.24 Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.852 y[1] (analytic) = 0 y[1] (numeric) = 1.1619787212206379405813033220384 absolute error = 1.1619787212206379405813033220384 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.853 y[1] (analytic) = 0 y[1] (numeric) = 1.1625206972684953469606177999998 absolute error = 1.1625206972684953469606177999998 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.854 y[1] (analytic) = 0 y[1] (numeric) = 1.1630626071153460500465862213357 absolute error = 1.1630626071153460500465862213357 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.855 y[1] (analytic) = 0 y[1] (numeric) = 1.1636044508325082348668108630284 absolute error = 1.1636044508325082348668108630284 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.856 y[1] (analytic) = 0 y[1] (numeric) = 1.1641462284912426598585999291616 absolute error = 1.1641462284912426598585999291616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1186.4MB, alloc=4.4MB, time=122.63 NO POLE x[1] = 1.857 y[1] (analytic) = 0 y[1] (numeric) = 1.1646879401627527327612537126036 absolute error = 1.1646879401627527327612537126036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.858 y[1] (analytic) = 0 y[1] (numeric) = 1.1652295859181845863771860573011 absolute error = 1.1652295859181845863771860573011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.859 y[1] (analytic) = 0 y[1] (numeric) = 1.165771165828627154202167670305 absolute error = 1.165771165828627154202167670305 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.86 y[1] (analytic) = 0 y[1] (numeric) = 1.1663126799651122459249770629101 absolute error = 1.1663126799651122459249770629101 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.861 y[1] (analytic) = 0 y[1] (numeric) = 1.1668541283986146227967441330112 absolute error = 1.1668541283986146227967441330112 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.862 y[1] (analytic) = 0 y[1] (numeric) = 1.1673955112000520728702706359488 absolute error = 1.1673955112000520728702706359488 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1190.2MB, alloc=4.4MB, time=123.03 NO POLE x[1] = 1.863 y[1] (analytic) = 0 y[1] (numeric) = 1.1679368284402854861096110287321 absolute error = 1.1679368284402854861096110287321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.864 y[1] (analytic) = 0 y[1] (numeric) = 1.1684780801901189293701964125728 absolute error = 1.1684780801901189293701964125728 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.865 y[1] (analytic) = 0 y[1] (numeric) = 1.1690192665202997212497835411322 absolute error = 1.1690192665202997212497835411322 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.866 y[1] (analytic) = 0 y[1] (numeric) = 1.169560387501518506810510106771 absolute error = 1.169560387501518506810510106771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.867 y[1] (analytic) = 0 y[1] (numeric) = 1.1701014432044093321723367643793 absolute error = 1.1701014432044093321723367643793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1194.0MB, alloc=4.4MB, time=123.42 NO POLE x[1] = 1.868 y[1] (analytic) = 0 y[1] (numeric) = 1.1706424336995497189781556020549 absolute error = 1.1706424336995497189781556020549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.869 y[1] (analytic) = 0 y[1] (numeric) = 1.1711833590574607387308440199702 absolute error = 1.1711833590574607387308440199702 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.87 y[1] (analytic) = 0 y[1] (numeric) = 1.1717242193486070870025422332267 absolute error = 1.1717242193486070870025422332267 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.871 y[1] (analytic) = 0 y[1] (numeric) = 1.1722650146433971575164318713177 absolute error = 1.1722650146433971575164318713177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.872 y[1] (analytic) = 0 y[1] (numeric) = 1.1728057450121831161012924060102 absolute error = 1.1728057450121831161012924060102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.873 y[1] (analytic) = 0 y[1] (numeric) = 1.1733464105252609745191114009943 absolute error = 1.1733464105252609745191114009943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1197.8MB, alloc=4.4MB, time=123.81 NO POLE x[1] = 1.874 y[1] (analytic) = 0 y[1] (numeric) = 1.1738870112528706641660238405342 absolute error = 1.1738870112528706641660238405342 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.875 y[1] (analytic) = 0 y[1] (numeric) = 1.1744275472651961096468550605739 absolute error = 1.1744275472651961096468550605739 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.876 y[1] (analytic) = 0 y[1] (numeric) = 1.1749680186323653022235410742983 absolute error = 1.1749680186323653022235410742983 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.877 y[1] (analytic) = 0 y[1] (numeric) = 1.1755084254244503731376993550136 absolute error = 1.1755084254244503731376993550136 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.878 y[1] (analytic) = 0 y[1] (numeric) = 1.1760487677114676668076224123892 absolute error = 1.1760487677114676668076224123892 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1201.6MB, alloc=4.4MB, time=124.21 x[1] = 1.879 y[1] (analytic) = 0 y[1] (numeric) = 1.1765890455633778138999657735762 absolute error = 1.1765890455633778138999657735762 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.88 y[1] (analytic) = 0 y[1] (numeric) = 1.1771292590500858042764012584887 absolute error = 1.1771292590500858042764012584887 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.881 y[1] (analytic) = 0 y[1] (numeric) = 1.177669408241441059815505718588 absolute error = 1.177669408241441059815505718588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.882 y[1] (analytic) = 0 y[1] (numeric) = 1.1782094932072375071101546908382 absolute error = 1.1782094932072375071101546908382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.883 y[1] (analytic) = 0 y[1] (numeric) = 1.1787495140172136500406897030999 absolute error = 1.1787495140172136500406897030999 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.884 y[1] (analytic) = 0 y[1] (numeric) = 1.1792894707410526422241272540849 absolute error = 1.1792894707410526422241272540849 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1205.4MB, alloc=4.4MB, time=124.61 NO POLE x[1] = 1.885 y[1] (analytic) = 0 y[1] (numeric) = 1.1798293634483823593396767801036 absolute error = 1.1798293634483823593396767801036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.886 y[1] (analytic) = 0 y[1] (numeric) = 1.1803691922087754713308342121854 absolute error = 1.1803691922087754713308342121854 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.887 y[1] (analytic) = 0 y[1] (numeric) = 1.1809089570917495144843170207388 absolute error = 1.1809089570917495144843170207388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.888 y[1] (analytic) = 0 y[1] (numeric) = 1.1814486581667669633861059407294 absolute error = 1.1814486581667669633861059407294 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.889 y[1] (analytic) = 0 y[1] (numeric) = 1.1819882955032353027548578683822 absolute error = 1.1819882955032353027548578683822 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.89 y[1] (analytic) = 0 y[1] (numeric) = 1.1825278691705070991529537206559 absolute error = 1.1825278691705070991529537206559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1209.3MB, alloc=4.4MB, time=125.01 NO POLE x[1] = 1.891 y[1] (analytic) = 0 y[1] (numeric) = 1.1830673792378800725754443511769 absolute error = 1.1830673792378800725754443511769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.892 y[1] (analytic) = 0 y[1] (numeric) = 1.1836068257745971679171569209577 absolute error = 1.1836068257745971679171569209577 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.893 y[1] (analytic) = 0 y[1] (numeric) = 1.1841462088498466263182234290449 absolute error = 1.1841462088498466263182234290449 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.894 y[1] (analytic) = 0 y[1] (numeric) = 1.1846855285327620563882924172413 absolute error = 1.1846855285327620563882924172413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.895 y[1] (analytic) = 0 y[1] (numeric) = 1.1852247848924225053096841742163 absolute error = 1.1852247848924225053096841742163 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1213.1MB, alloc=4.4MB, time=125.40 NO POLE x[1] = 1.896 y[1] (analytic) = 0 y[1] (numeric) = 1.1857639779978525298197490776505 absolute error = 1.1857639779978525298197490776505 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.897 y[1] (analytic) = 0 y[1] (numeric) = 1.1863031079180222670726880285441 absolute error = 1.1863031079180222670726880285441 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.898 y[1] (analytic) = 0 y[1] (numeric) = 1.1868421747218475053810932494531 absolute error = 1.1868421747218475053810932494531 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.899 y[1] (analytic) = 0 y[1] (numeric) = 1.1873811784781897548374670381847 absolute error = 1.1873811784781897548374670381847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.9 y[1] (analytic) = 0 y[1] (numeric) = 1.1879201192558563178159753903866 absolute error = 1.1879201192558563178159753903866 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.901 y[1] (analytic) = 0 y[1] (numeric) = 1.1884589971236003593546927284867 absolute error = 1.1884589971236003593546927284867 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1216.9MB, alloc=4.4MB, time=125.79 NO POLE x[1] = 1.902 y[1] (analytic) = 0 y[1] (numeric) = 1.18899781215012097741859330058 absolute error = 1.18899781215012097741859330058 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.903 y[1] (analytic) = 0 y[1] (numeric) = 1.1895365644040632730435441411054 absolute error = 1.1895365644040632730435441411054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.904 y[1] (analytic) = 0 y[1] (numeric) = 1.1900752539540184203615538155014 absolute error = 1.1900752539540184203615538155014 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.905 y[1] (analytic) = 0 y[1] (numeric) = 1.1906138808685237365075305034675 absolute error = 1.1906138808685237365075305034675 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.906 y[1] (analytic) = 0 y[1] (numeric) = 1.191152445216062751407802309983 absolute error = 1.191152445216062751407802309983 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1220.7MB, alloc=4.4MB, time=126.18 x[1] = 1.907 y[1] (analytic) = 0 y[1] (numeric) = 1.1916909470650652774506520298326 absolute error = 1.1916909470650652774506520298326 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.908 y[1] (analytic) = 0 y[1] (numeric) = 1.1922293864839074790391179300591 absolute error = 1.1922293864839074790391179300591 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.909 y[1] (analytic) = 0 y[1] (numeric) = 1.1927677635409119420263114554957 absolute error = 1.1927677635409119420263114554957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.91 y[1] (analytic) = 0 y[1] (numeric) = 1.1933060783043477430335021053138 absolute error = 1.1933060783043477430335021053138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.911 y[1] (analytic) = 0 y[1] (numeric) = 1.1938443308424305186512190733586 absolute error = 1.1938443308424305186512190733586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.912 y[1] (analytic) = 0 y[1] (numeric) = 1.1943825212233225345236185919152 absolute error = 1.1943825212233225345236185919152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1224.5MB, alloc=4.4MB, time=126.57 NO POLE x[1] = 1.913 y[1] (analytic) = 0 y[1] (numeric) = 1.1949206495151327543163652674536 absolute error = 1.1949206495151327543163652674536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.914 y[1] (analytic) = 0 y[1] (numeric) = 1.1954587157859169085682750478311 absolute error = 1.1954587157859169085682750478311 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.915 y[1] (analytic) = 0 y[1] (numeric) = 1.1959967201036775634269668133782 absolute error = 1.1959967201036775634269668133782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.916 y[1] (analytic) = 0 y[1] (numeric) = 1.196534662536364189268768939251 absolute error = 1.196534662536364189268768939251 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.917 y[1] (analytic) = 0 y[1] (numeric) = 1.1970725431518732292031265333957 absolute error = 1.1970725431518732292031265333957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.918 y[1] (analytic) = 0 y[1] (numeric) = 1.1976103620180481674617544134258 absolute error = 1.1976103620180481674617544134258 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1228.3MB, alloc=4.4MB, time=126.96 NO POLE x[1] = 1.919 y[1] (analytic) = 0 y[1] (numeric) = 1.1981481192026795976727802466582 absolute error = 1.1981481192026795976727802466582 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.92 y[1] (analytic) = 0 y[1] (numeric) = 1.1986858147735052910201216404823 absolute error = 1.1986858147735052910201216404823 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.921 y[1] (analytic) = 0 y[1] (numeric) = 1.1992234487982102642883403351357 absolute error = 1.1992234487982102642883403351357 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.922 y[1] (analytic) = 0 y[1] (numeric) = 1.1997610213444268477932160178295 absolute error = 1.1997610213444268477932160178295 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.923 y[1] (analytic) = 0 y[1] (numeric) = 1.2002985324797347531982816459935 absolute error = 1.2002985324797347531982816459935 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1232.1MB, alloc=4.4MB, time=127.36 NO POLE x[1] = 1.924 y[1] (analytic) = 0 y[1] (numeric) = 1.2008359822716611412175615381934 absolute error = 1.2008359822716611412175615381934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.925 y[1] (analytic) = 0 y[1] (numeric) = 1.2013733707876806892047528640005 absolute error = 1.2013733707876806892047528640005 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.926 y[1] (analytic) = 0 y[1] (numeric) = 1.2019106980952156586290905387583 absolute error = 1.2019106980952156586290905387583 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.927 y[1] (analytic) = 0 y[1] (numeric) = 1.2024479642616359624381349057915 absolute error = 1.2024479642616359624381349057915 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.928 y[1] (analytic) = 0 y[1] (numeric) = 1.2029851693542592323077209671252 absolute error = 1.2029851693542592323077209671252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.929 y[1] (analytic) = 0 y[1] (numeric) = 1.2035223134403508857793073042234 absolute error = 1.2035223134403508857793073042234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1236.0MB, alloc=4.4MB, time=127.75 NO POLE x[1] = 1.93 y[1] (analytic) = 0 y[1] (numeric) = 1.2040593965871241932849622126102 absolute error = 1.2040593965871241932849622126102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.931 y[1] (analytic) = 0 y[1] (numeric) = 1.2045964188617403450602239584941 absolute error = 1.2045964188617403450602239584941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.932 y[1] (analytic) = 0 y[1] (numeric) = 1.2051333803313085179450714516707 absolute error = 1.2051333803313085179450714516707 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.933 y[1] (analytic) = 0 y[1] (numeric) = 1.2056702810628859420732410170258 absolute error = 1.2056702810628859420732410170258 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.934 y[1] (analytic) = 0 y[1] (numeric) = 1.2062071211234779674501243368905 absolute error = 1.2062071211234779674501243368905 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1239.8MB, alloc=4.4MB, time=128.14 x[1] = 1.935 y[1] (analytic) = 0 y[1] (numeric) = 1.2067439005800381304194820283079 absolute error = 1.2067439005800381304194820283079 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.936 y[1] (analytic) = 0 y[1] (numeric) = 1.2072806194994682200192067129487 absolute error = 1.2072806194994682200192067129487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.937 y[1] (analytic) = 0 y[1] (numeric) = 1.2078172779486183442263688329546 absolute error = 1.2078172779486183442263688329546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.938 y[1] (analytic) = 0 y[1] (numeric) = 1.2083538759942869960917778633893 absolute error = 1.2083538759942869960917778633893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.939 y[1] (analytic) = 0 y[1] (numeric) = 1.208890413703221119764290971225 absolute error = 1.208890413703221119764290971225 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.94 y[1] (analytic) = 0 y[1] (numeric) = 1.2094268911421161764051005718869 absolute error = 1.2094268911421161764051005718869 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1243.6MB, alloc=4.4MB, time=128.54 NO POLE x[1] = 1.941 y[1] (analytic) = 0 y[1] (numeric) = 1.2099633083776162099922316373102 absolute error = 1.2099633083776162099922316373102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.942 y[1] (analytic) = 0 y[1] (numeric) = 1.2104996654763139130154790142259 absolute error = 1.2104996654763139130154790142259 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.943 y[1] (analytic) = 0 y[1] (numeric) = 1.211035962504750692062014417978 absolute error = 1.211035962504750692062014417978 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.944 y[1] (analytic) = 0 y[1] (numeric) = 1.2115721995294167332928921755797 absolute error = 1.2115721995294167332928921755797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.945 y[1] (analytic) = 0 y[1] (numeric) = 1.212108376616751067810682201933 absolute error = 1.212108376616751067810682201933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.946 y[1] (analytic) = 0 y[1] (numeric) = 1.2126444938331416369184581051547 absolute error = 1.2126444938331416369184581051547 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1247.4MB, alloc=4.4MB, time=128.93 NO POLE x[1] = 1.947 y[1] (analytic) = 0 y[1] (numeric) = 1.2131805512449253572703677307737 absolute error = 1.2131805512449253572703677307737 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.948 y[1] (analytic) = 0 y[1] (numeric) = 1.2137165489183881859140128701747 absolute error = 1.2137165489183881859140128701747 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.949 y[1] (analytic) = 0 y[1] (numeric) = 1.2142524869197651852248642760609 absolute error = 1.2142524869197651852248642760609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.95 y[1] (analytic) = 0 y[1] (numeric) = 1.2147883653152405877329375468858 absolute error = 1.2147883653152405877329375468858 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.951 y[1] (analytic) = 0 y[1] (numeric) = 1.2153241841709478608419548631525 absolute error = 1.2153241841709478608419548631525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1251.2MB, alloc=4.4MB, time=129.32 NO POLE x[1] = 1.952 y[1] (analytic) = 0 y[1] (numeric) = 1.2158599435529697714412169811976 absolute error = 1.2158599435529697714412169811976 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.953 y[1] (analytic) = 0 y[1] (numeric) = 1.2163956435273384504104093145529 absolute error = 1.2163956435273384504104093145529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.954 y[1] (analytic) = 0 y[1] (numeric) = 1.2169312841600354570175653592093 absolute error = 1.2169312841600354570175653592093 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.955 y[1] (analytic) = 0 y[1] (numeric) = 1.2174668655169918432104101470877 absolute error = 1.2174668655169918432104101470877 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.956 y[1] (analytic) = 0 y[1] (numeric) = 1.2180023876640882178013058417438 absolute error = 1.2180023876640882178013058417438 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.957 y[1] (analytic) = 0 y[1] (numeric) = 1.2185378506671548105460210217889 absolute error = 1.2185378506671548105460210217889 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1255.0MB, alloc=4.4MB, time=129.72 NO POLE x[1] = 1.958 y[1] (analytic) = 0 y[1] (numeric) = 1.2190732545919715361165446306988 absolute error = 1.2190732545919715361165446306988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.959 y[1] (analytic) = 0 y[1] (numeric) = 1.2196085995042680579681650065896 absolute error = 1.2196085995042680579681650065896 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.96 y[1] (analytic) = 0 y[1] (numeric) = 1.2201438854697238521010338421708 absolute error = 1.2201438854697238521010338421708 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.961 y[1] (analytic) = 0 y[1] (numeric) = 1.2206791125539682707164343634225 absolute error = 1.2206791125539682707164343634225 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.962 y[1] (analytic) = 0 y[1] (numeric) = 1.2212142808225806057679724555886 absolute error = 1.2212142808225806057679724555886 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1258.9MB, alloc=4.4MB, time=130.11 x[1] = 1.963 y[1] (analytic) = 0 y[1] (numeric) = 1.2217493903410901524079089068228 absolute error = 1.2217493903410901524079089068228 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.964 y[1] (analytic) = 0 y[1] (numeric) = 1.2222844411749762723288503832589 absolute error = 1.2222844411749762723288503832589 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.965 y[1] (analytic) = 0 y[1] (numeric) = 1.2228194333896684570010161944036 absolute error = 1.2228194333896684570010161944036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.966 y[1] (analytic) = 0 y[1] (numeric) = 1.2233543670505463908052973545535 absolute error = 1.2233543670505463908052973545535 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.967 y[1] (analytic) = 0 y[1] (numeric) = 1.2238892422229400140623238944209 absolute error = 1.2238892422229400140623238944209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.968 y[1] (analytic) = 0 y[1] (numeric) = 1.2244240589721295859577558273022 absolute error = 1.2244240589721295859577558273022 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1262.7MB, alloc=4.4MB, time=130.52 NO POLE x[1] = 1.969 y[1] (analytic) = 0 y[1] (numeric) = 1.2249588173633457473640126259378 absolute error = 1.2249588173633457473640126259378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.97 y[1] (analytic) = 0 y[1] (numeric) = 1.2254935174617695835586555196838 absolute error = 1.2254935174617695835586555196838 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.971 y[1] (analytic) = 0 y[1] (numeric) = 1.2260281593325326868396363767416 absolute error = 1.2260281593325326868396363767416 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.972 y[1] (analytic) = 0 y[1] (numeric) = 1.2265627430407172190376263929592 absolute error = 1.2265627430407172190376263929592 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.973 y[1] (analytic) = 0 y[1] (numeric) = 1.2270972686513559739256372671307 absolute error = 1.2270972686513559739256372671307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.974 y[1] (analytic) = 0 y[1] (numeric) = 1.2276317362294324395261470027655 absolute error = 1.2276317362294324395261470027655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1266.5MB, alloc=4.4MB, time=130.91 NO POLE x[1] = 1.975 y[1] (analytic) = 0 y[1] (numeric) = 1.2281661458398808603159419379724 absolute error = 1.2281661458398808603159419379724 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.976 y[1] (analytic) = 0 y[1] (numeric) = 1.2287004975475862993288860684021 absolute error = 1.2287004975475862993288860684021 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.977 y[1] (analytic) = 0 y[1] (numeric) = 1.2292347914173847001568281931054 absolute error = 1.2292347914173847001568281931054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.978 y[1] (analytic) = 0 y[1] (numeric) = 1.2297690275140629488488568796929 absolute error = 1.2297690275140629488488568796929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.979 y[1] (analytic) = 0 y[1] (numeric) = 1.230303205902358935709112713314 absolute error = 1.230303205902358935709112713314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1270.3MB, alloc=4.4MB, time=131.30 NO POLE x[1] = 1.98 y[1] (analytic) = 0 y[1] (numeric) = 1.2308373266469616169933667637069 absolute error = 1.2308373266469616169933667637069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.981 y[1] (analytic) = 0 y[1] (numeric) = 1.2313713898125110765045736758999 absolute error = 1.2313713898125110765045736758999 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.982 y[1] (analytic) = 0 y[1] (numeric) = 1.2319053954635985870876072630631 absolute error = 1.2319053954635985870876072630631 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.983 y[1] (analytic) = 0 y[1] (numeric) = 1.2324393436647666720233859545109 absolute error = 1.2324393436647666720233859545109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.984 y[1] (analytic) = 0 y[1] (numeric) = 1.2329732344805091663225949279354 absolute error = 1.2329732344805091663225949279354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.985 y[1] (analytic) = 0 y[1] (numeric) = 1.2335070679752712779192112326064 absolute error = 1.2335070679752712779192112326064 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1274.1MB, alloc=4.4MB, time=131.69 NO POLE x[1] = 1.986 y[1] (analytic) = 0 y[1] (numeric) = 1.2340408442134496487640376894907 absolute error = 1.2340408442134496487640376894907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.987 y[1] (analytic) = 0 y[1] (numeric) = 1.2345745632593924158184508350291 absolute error = 1.2345745632593924158184508350291 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.988 y[1] (analytic) = 0 y[1] (numeric) = 1.2351082251773992719485676576463 absolute error = 1.2351082251773992719485676576463 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.989 y[1] (analytic) = 0 y[1] (numeric) = 1.2356418300317215267200353599591 absolute error = 1.2356418300317215267200353599591 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.99 y[1] (analytic) = 0 y[1] (numeric) = 1.2361753778865621670936478650839 absolute error = 1.2361753778865621670936478650839 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1277.9MB, alloc=4.4MB, time=132.08 NO POLE x[1] = 1.991 y[1] (analytic) = 0 y[1] (numeric) = 1.2367088688060759180219922724212 absolute error = 1.2367088688060759180219922724212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.992 y[1] (analytic) = 0 y[1] (numeric) = 1.2372423028543693029473279568027 absolute error = 1.2372423028543693029473279568027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.993 y[1] (analytic) = 0 y[1] (numeric) = 1.23777568009550070420090049493 absolute error = 1.23777568009550070420090049493 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.994 y[1] (analytic) = 0 y[1] (numeric) = 1.2383090005934804233038920945954 absolute error = 1.2383090005934804233038920945954 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.995 y[1] (analytic) = 0 y[1] (numeric) = 1.2388422644122707411702096952607 absolute error = 1.2388422644122707411702096952607 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.996 y[1] (analytic) = 0 y[1] (numeric) = 1.2393754716157859782113114031647 absolute error = 1.2393754716157859782113114031647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1281.7MB, alloc=4.4MB, time=132.48 NO POLE x[1] = 1.997 y[1] (analytic) = 0 y[1] (numeric) = 1.2399086222678925543432714202384 absolute error = 1.2399086222678925543432714202384 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.998 y[1] (analytic) = 0 y[1] (numeric) = 1.2404417164324090488962831237116 absolute error = 1.2404417164324090488962831237116 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 1.999 y[1] (analytic) = 0 y[1] (numeric) = 1.2409747541731062604267994524046 absolute error = 1.2409747541731062604267994524046 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2 y[1] (analytic) = 0 y[1] (numeric) = 1.2415077355537072664325092562959 absolute error = 1.2415077355537072664325092562959 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.001 y[1] (analytic) = 0 y[1] (numeric) = 1.2420406606378874829703477680444 absolute error = 1.2420406606378874829703477680444 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.002 y[1] (analytic) = 0 y[1] (numeric) = 1.2425735294892747241777388587132 absolute error = 1.2425735294892747241777388587132 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1285.6MB, alloc=4.4MB, time=132.87 NO POLE x[1] = 2.003 y[1] (analytic) = 0 y[1] (numeric) = 1.2431063421714492616972662449907 absolute error = 1.2431063421714492616972662449907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.004 y[1] (analytic) = 0 y[1] (numeric) = 1.2436390987479438840049703217205 absolute error = 1.2436390987479438840049703217205 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.005 y[1] (analytic) = 0 y[1] (numeric) = 1.2441717992822439556424668015404 absolute error = 1.2441717992822439556424668015404 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.006 y[1] (analytic) = 0 y[1] (numeric) = 1.244704443837787476353082852878 absolute error = 1.244704443837787476353082852878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.007 y[1] (analytic) = 0 y[1] (numeric) = 1.2452370324779651401222059384542 absolute error = 1.2452370324779651401222059384542 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1289.4MB, alloc=4.4MB, time=133.26 NO POLE x[1] = 2.008 y[1] (analytic) = 0 y[1] (numeric) = 1.2457695652661203941220400688056 absolute error = 1.2457695652661203941220400688056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.009 y[1] (analytic) = 0 y[1] (numeric) = 1.246302042265549497560963699138 absolute error = 1.246302042265549497560963699138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.01 y[1] (analytic) = 0 y[1] (numeric) = 1.246834463539501580437683013072 absolute error = 1.246834463539501580437683013072 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.011 y[1] (analytic) = 0 y[1] (numeric) = 1.2473668291511787022003738535224 absolute error = 1.2473668291511787022003738535224 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.012 y[1] (analytic) = 0 y[1] (numeric) = 1.24789913916373591031100507907 absolute error = 1.24789913916373591031100507907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.013 y[1] (analytic) = 0 y[1] (numeric) = 1.2484313936402812987150356437262 absolute error = 1.2484313936402812987150356437262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1293.2MB, alloc=4.4MB, time=133.65 NO POLE x[1] = 2.014 y[1] (analytic) = 0 y[1] (numeric) = 1.2489635926438760662166772189546 absolute error = 1.2489635926438760662166772189546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.015 y[1] (analytic) = 0 y[1] (numeric) = 1.2494957362375345747599136991973 absolute error = 1.2494957362375345747599136991973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.016 y[1] (analytic) = 0 y[1] (numeric) = 1.2500278244842244076154684559463 absolute error = 1.2500278244842244076154684559463 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.017 y[1] (analytic) = 0 y[1] (numeric) = 1.2505598574468664274739097306035 absolute error = 1.2505598574468664274739097306035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.018 y[1] (analytic) = 0 y[1] (numeric) = 1.2510918351883348344450840829774 absolute error = 1.2510918351883348344450840829774 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1297.0MB, alloc=4.4MB, time=134.04 NO POLE x[1] = 2.019 y[1] (analytic) = 0 y[1] (numeric) = 1.2516237577714572239640673402668 absolute error = 1.2516237577714572239640673402668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.02 y[1] (analytic) = 0 y[1] (numeric) = 1.2521556252590146446038220207786 absolute error = 1.2521556252590146446038220207786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.021 y[1] (analytic) = 0 y[1] (numeric) = 1.2526874377137416557947497374101 absolute error = 1.2526874377137416557947497374101 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.022 y[1] (analytic) = 0 y[1] (numeric) = 1.2532191951983263854513266180957 absolute error = 1.2532191951983263854513266180957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.023 y[1] (analytic) = 0 y[1] (numeric) = 1.2537508977754105875060093139625 absolute error = 1.2537508977754105875060093139625 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.024 y[1] (analytic) = 0 y[1] (numeric) = 1.2542825455075896993505987008628 absolute error = 1.2542825455075896993505987008628 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1300.8MB, alloc=4.4MB, time=134.43 NO POLE x[1] = 2.025 y[1] (analytic) = 0 y[1] (numeric) = 1.25481413845741289918524791624 absolute error = 1.25481413845741289918524791624 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.026 y[1] (analytic) = 0 y[1] (numeric) = 1.2553456766873831632753009109415 absolute error = 1.2553456766873831632753009109415 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.027 y[1] (analytic) = 0 y[1] (numeric) = 1.2558771602599573231161472346056 absolute error = 1.2558771602599573231161472346056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.028 y[1] (analytic) = 0 y[1] (numeric) = 1.2564085892375461225062783136222 absolute error = 1.2564085892375461225062783136222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.029 y[1] (analytic) = 0 y[1] (numeric) = 1.2569399636825142745287300223875 absolute error = 1.2569399636825142745287300223875 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.03 y[1] (analytic) = 0 y[1] (numeric) = 1.2574712836571805184410958916421 absolute error = 1.2574712836571805184410958916421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1304.6MB, alloc=4.4MB, time=134.83 NO POLE x[1] = 2.031 y[1] (analytic) = 0 y[1] (numeric) = 1.2580025492238176764742948420898 absolute error = 1.2580025492238176764742948420898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.032 y[1] (analytic) = 0 y[1] (numeric) = 1.2585337604446527105402768772431 absolute error = 1.2585337604446527105402768772431 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.033 y[1] (analytic) = 0 y[1] (numeric) = 1.2590649173818667788488497165187 absolute error = 1.2590649173818667788488497165187 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.034 y[1] (analytic) = 0 y[1] (numeric) = 1.2595960200975952924338088980152 absolute error = 1.2595960200975952924338088980152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.035 y[1] (analytic) = 0 y[1] (numeric) = 1.2601270686539279715885534301337 absolute error = 1.2601270686539279715885534301337 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1308.4MB, alloc=4.4MB, time=135.22 NO POLE x[1] = 2.036 y[1] (analytic) = 0 y[1] (numeric) = 1.2606580631129089022113686222541 absolute error = 1.2606580631129089022113686222541 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.037 y[1] (analytic) = 0 y[1] (numeric) = 1.2611890035365365920605572770413 absolute error = 1.2611890035365365920605572770413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.038 y[1] (analytic) = 0 y[1] (numeric) = 1.2617198899867640269195999806307 absolute error = 1.2617198899867640269195999806307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.039 y[1] (analytic) = 0 y[1] (numeric) = 1.2622507225254987266725247819228 absolute error = 1.2622507225254987266725247819228 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.04 y[1] (analytic) = 0 y[1] (numeric) = 1.2627815012146028012896661084945 absolute error = 1.2627815012146028012896661084945 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.041 y[1] (analytic) = 0 y[1] (numeric) = 1.2633122261158930067239923242151 absolute error = 1.2633122261158930067239923242151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1312.3MB, alloc=4.4MB, time=135.62 NO POLE x[1] = 2.042 y[1] (analytic) = 0 y[1] (numeric) = 1.2638428972911408007181808925218 absolute error = 1.2638428972911408007181808925218 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.043 y[1] (analytic) = 0 y[1] (numeric) = 1.2643735148020723985226196694687 absolute error = 1.2643735148020723985226196694687 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.044 y[1] (analytic) = 0 y[1] (numeric) = 1.2649040787103688285245124121034 absolute error = 1.2649040787103688285245124121034 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.045 y[1] (analytic) = 0 y[1] (numeric) = 1.2654345890776659877882661504447 absolute error = 1.2654345890776659877882661504447 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.046 y[1] (analytic) = 0 y[1] (numeric) = 1.2659650459655546975073376353314 absolute error = 1.2659650459655546975073376353314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1316.1MB, alloc=4.4MB, time=136.02 NO POLE x[1] = 2.047 y[1] (analytic) = 0 y[1] (numeric) = 1.2664954494355807583677156396763 absolute error = 1.2664954494355807583677156396763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.048 y[1] (analytic) = 0 y[1] (numeric) = 1.2670257995492450058232154571906 absolute error = 1.2670257995492450058232154571906 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.049 y[1] (analytic) = 0 y[1] (numeric) = 1.2675560963680033652827615104396 absolute error = 1.2675560963680033652827615104396 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.05 y[1] (analytic) = 0 y[1] (numeric) = 1.2680863399532669072098335491393 absolute error = 1.2680863399532669072098335491393 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.051 y[1] (analytic) = 0 y[1] (numeric) = 1.2686165303664019021342514899097 absolute error = 1.2686165303664019021342514899097 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.052 y[1] (analytic) = 0 y[1] (numeric) = 1.2691466676687298755764735202532 absolute error = 1.2691466676687298755764735202532 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1319.9MB, alloc=4.4MB, time=136.42 NO POLE x[1] = 2.053 y[1] (analytic) = 0 y[1] (numeric) = 1.269676751921527662884581662327 absolute error = 1.269676751921527662884581662327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.054 y[1] (analytic) = 0 y[1] (numeric) = 1.2702067831860274639841285661151 absolute error = 1.2702067831860274639841285661151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.055 y[1] (analytic) = 0 y[1] (numeric) = 1.2707367615234168980410188768843 absolute error = 1.2707367615234168980410188768843 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.056 y[1] (analytic) = 0 y[1] (numeric) = 1.2712666869948390580375980983159 absolute error = 1.2712666869948390580375980983159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.057 y[1] (analytic) = 0 y[1] (numeric) = 1.2717965596613925652621214504401 absolute error = 1.2717965596613925652621214504401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.058 y[1] (analytic) = 0 y[1] (numeric) = 1.272326379584131623711774800464 absolute error = 1.272326379584131623711774800464 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1323.7MB, alloc=4.4MB, time=136.81 NO POLE x[1] = 2.059 y[1] (analytic) = 0 y[1] (numeric) = 1.2728561468240660744094193247618 absolute error = 1.2728561468240660744094193247618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.06 y[1] (analytic) = 0 y[1] (numeric) = 1.2733858614421614496342311416945 absolute error = 1.2733858614421614496342311416945 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.061 y[1] (analytic) = 0 y[1] (numeric) = 1.2739155234993390270664067375335 absolute error = 1.2739155234993390270664067375335 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.062 y[1] (analytic) = 0 y[1] (numeric) = 1.2744451330564758838461045915799 absolute error = 1.2744451330564758838461045915799 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.063 y[1] (analytic) = 0 y[1] (numeric) = 1.27497469017440495054679299159 absolute error = 1.27497469017440495054679299159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1327.5MB, alloc=4.4MB, time=137.20 NO POLE x[1] = 2.064 y[1] (analytic) = 0 y[1] (numeric) = 1.2755041949139150650631736168378 absolute error = 1.2755041949139150650631736168378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.065 y[1] (analytic) = 0 y[1] (numeric) = 1.2760336473357510264138500535599 absolute error = 1.2760336473357510264138500535599 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.066 y[1] (analytic) = 0 y[1] (numeric) = 1.2765630475006136484589099961345 absolute error = 1.2765630475006136484589099961345 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.067 y[1] (analytic) = 0 y[1] (numeric) = 1.2770923954691598135325894771414 absolute error = 1.2770923954691598135325894771414 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.068 y[1] (analytic) = 0 y[1] (numeric) = 1.2776216913020025259911870604264 absolute error = 1.2776216913020025259911870604264 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.069 y[1] (analytic) = 0 y[1] (numeric) = 1.2781509350597109656763955234523 absolute error = 1.2781509350597109656763955234523 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1331.3MB, alloc=4.4MB, time=137.59 NO POLE x[1] = 2.07 y[1] (analytic) = 0 y[1] (numeric) = 1.2786801268028105412942181485499 absolute error = 1.2786801268028105412942181485499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.071 y[1] (analytic) = 0 y[1] (numeric) = 1.2792092665917829437096363371896 absolute error = 1.2792092665917829437096363371896 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.072 y[1] (analytic) = 0 y[1] (numeric) = 1.2797383544870661991571948570649 absolute error = 1.2797383544870661991571948570649 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.073 y[1] (analytic) = 0 y[1] (numeric) = 1.2802673905490547223676706286165 absolute error = 1.2802673905490547223676706286165 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.074 y[1] (analytic) = 0 y[1] (numeric) = 1.2807963748380993696109905556221 absolute error = 1.2807963748380993696109905556221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1335.1MB, alloc=4.4MB, time=137.98 NO POLE x[1] = 2.075 y[1] (analytic) = 0 y[1] (numeric) = 1.2813253074145074916555635036302 absolute error = 1.2813253074145074916555635036302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.076 y[1] (analytic) = 0 y[1] (numeric) = 1.2818541883385429866441911303204 absolute error = 1.2818541883385429866441911303204 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.077 y[1] (analytic) = 0 y[1] (numeric) = 1.2823830176704263528867218733267 absolute error = 1.2823830176704263528867218733267 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.078 y[1] (analytic) = 0 y[1] (numeric) = 1.2829117954703347415696120036588 absolute error = 1.2829117954703347415696120036588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.079 y[1] (analytic) = 0 y[1] (numeric) = 1.283440521798402009382557256594 absolute error = 1.283440521798402009382557256594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.08 y[1] (analytic) = 0 y[1] (numeric) = 1.2839691967147187710623581567892 absolute error = 1.2839691967147187710623581567892 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1339.0MB, alloc=4.4MB, time=138.38 NO POLE x[1] = 2.081 y[1] (analytic) = 0 y[1] (numeric) = 1.2844978202793324518541817603718 absolute error = 1.2844978202793324518541817603718 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.082 y[1] (analytic) = 0 y[1] (numeric) = 1.2850263925522473398903821439054 absolute error = 1.2850263925522473398903821439054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.083 y[1] (analytic) = 0 y[1] (numeric) = 1.2855549135934246384870415783916 absolute error = 1.2855549135934246384870415783916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.084 y[1] (analytic) = 0 y[1] (numeric) = 1.2860833834627825183583939358552 absolute error = 1.2860833834627825183583939358552 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.085 y[1] (analytic) = 0 y[1] (numeric) = 1.2866118022201961697492914865629 absolute error = 1.2866118022201961697492914865629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.086 y[1] (analytic) = 0 y[1] (numeric) = 1.2871401699254978544858758565469 absolute error = 1.2871401699254978544858758565469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1342.8MB, alloc=4.4MB, time=138.77 NO POLE x[1] = 2.087 y[1] (analytic) = 0 y[1] (numeric) = 1.2876684866384769579446135278316 absolute error = 1.2876684866384769579446135278316 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.088 y[1] (analytic) = 0 y[1] (numeric) = 1.2881967524188800409398558775999 absolute error = 1.2881967524188800409398558775999 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.089 y[1] (analytic) = 0 y[1] (numeric) = 1.2887249673264108915300833674748 absolute error = 1.2887249673264108915300833674748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.09 y[1] (analytic) = 0 y[1] (numeric) = 1.2892531314207305767429931101323 absolute error = 1.2892531314207305767429931101323 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.091 y[1] (analytic) = 0 y[1] (numeric) = 1.2897812447614574942195886575964 absolute error = 1.2897812447614574942195886575964 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1346.6MB, alloc=4.4MB, time=139.16 NO POLE x[1] = 2.092 y[1] (analytic) = 0 y[1] (numeric) = 1.2903093074081674237774304737968 absolute error = 1.2903093074081674237774304737968 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.093 y[1] (analytic) = 0 y[1] (numeric) = 1.2908373194203935788932051732851 absolute error = 1.2908373194203935788932051732851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.094 y[1] (analytic) = 0 y[1] (numeric) = 1.2913652808576266581047712284094 absolute error = 1.2913652808576266581047712284094 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.095 y[1] (analytic) = 0 y[1] (numeric) = 1.29189319177931489633283846873 absolute error = 1.29189319177931489633283846873 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.096 y[1] (analytic) = 0 y[1] (numeric) = 1.2924210522448641161224383190217 absolute error = 1.2924210522448641161224383190217 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.097 y[1] (analytic) = 0 y[1] (numeric) = 1.292948862313637778804341345844 absolute error = 1.292948862313637778804341345844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1350.4MB, alloc=4.4MB, time=139.55 NO POLE x[1] = 2.098 y[1] (analytic) = 0 y[1] (numeric) = 1.2934766220449570355765783073689 absolute error = 1.2934766220449570355765783073689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.099 y[1] (analytic) = 0 y[1] (numeric) = 1.2940043314981007785062205269298 absolute error = 1.2940043314981007785062205269298 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.1 y[1] (analytic) = 0 y[1] (numeric) = 1.2945319907323056914515750375948 absolute error = 1.2945319907323056914515750375948 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.101 y[1] (analytic) = 0 y[1] (numeric) = 1.2950595998067663009049495729668 absolute error = 1.2950595998067663009049495729668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.102 y[1] (analytic) = 0 y[1] (numeric) = 1.295587158780635026756142108367 absolute error = 1.295587158780635026756142108367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1354.2MB, alloc=4.4MB, time=139.95 NO POLE x[1] = 2.103 y[1] (analytic) = 0 y[1] (numeric) = 1.2961146677130222329768092865711 absolute error = 1.2961146677130222329768092865711 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.104 y[1] (analytic) = 0 y[1] (numeric) = 1.2966421266629962782258676933236 absolute error = 1.2966421266629962782258676933236 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.105 y[1] (analytic) = 0 y[1] (numeric) = 1.2971695356895835663760815799634 absolute error = 1.2971695356895835663760815799634 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.106 y[1] (analytic) = 0 y[1] (numeric) = 1.2976968948517685969619902636419 absolute error = 1.2976968948517685969619902636419 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.107 y[1] (analytic) = 0 y[1] (numeric) = 1.2982242042084940155493280698032 absolute error = 1.2982242042084940155493280698032 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.108 y[1] (analytic) = 0 y[1] (numeric) = 1.2987514638186606640260893168206 absolute error = 1.2987514638186606640260893168206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1358.0MB, alloc=4.4MB, time=140.34 NO POLE x[1] = 2.109 y[1] (analytic) = 0 y[1] (numeric) = 1.2992786737411276308153904789409 absolute error = 1.2992786737411276308153904789409 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.11 y[1] (analytic) = 0 y[1] (numeric) = 1.2998058340347123010102813009748 absolute error = 1.2998058340347123010102813009748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.111 y[1] (analytic) = 0 y[1] (numeric) = 1.3003329447581904064306562764834 absolute error = 1.3003329447581904064306562764834 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.112 y[1] (analytic) = 0 y[1] (numeric) = 1.3008600059702960756024175405476 absolute error = 1.3008600059702960756024175405476 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.113 y[1] (analytic) = 0 y[1] (numeric) = 1.3013870177297218836590398685595 absolute error = 1.3013870177297218836590398685595 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1361.9MB, alloc=4.4MB, time=140.74 x[1] = 2.114 y[1] (analytic) = 0 y[1] (numeric) = 1.3019139800951189021656881138473 absolute error = 1.3019139800951189021656881138473 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.115 y[1] (analytic) = 0 y[1] (numeric) = 1.3024408931250967488660370593268 absolute error = 1.3024408931250967488660370593268 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.116 y[1] (analytic) = 0 y[1] (numeric) = 1.3029677568782236373519433017649 absolute error = 1.3029677568782236373519433017649 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.117 y[1] (analytic) = 0 y[1] (numeric) = 1.3034945714130264266561184316388 absolute error = 1.3034945714130264266561184316388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.118 y[1] (analytic) = 0 y[1] (numeric) = 1.304021336787990670767952416976 absolute error = 1.304021336787990670767952416976 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.119 y[1] (analytic) = 0 y[1] (numeric) = 1.304548053061560668072635745958 absolute error = 1.304548053061560668072635745958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1365.7MB, alloc=4.4MB, time=141.13 NO POLE x[1] = 2.12 y[1] (analytic) = 0 y[1] (numeric) = 1.30507472029213951071372853047 absolute error = 1.30507472029213951071372853047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.121 y[1] (analytic) = 0 y[1] (numeric) = 1.3056013385380891338793244211654 absolute error = 1.3056013385380891338793244211654 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.122 y[1] (analytic) = 0 y[1] (numeric) = 1.306127907857730365011956833993 absolute error = 1.306127907857730365011956833993 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.123 y[1] (analytic) = 0 y[1] (numeric) = 1.3066544283093429729423946385011 absolute error = 1.3066544283093429729423946385011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.124 y[1] (analytic) = 0 y[1] (numeric) = 1.3071808999511657169474741095789 absolute error = 1.3071808999511657169474741095789 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.125 y[1] (analytic) = 0 y[1] (numeric) = 1.3077073228413963957321135966249 absolute error = 1.3077073228413963957321135966249 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1369.5MB, alloc=4.4MB, time=141.52 NO POLE x[1] = 2.126 y[1] (analytic) = 0 y[1] (numeric) = 1.3082336970381918963356570174363 absolute error = 1.3082336970381918963356570174363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.127 y[1] (analytic) = 0 y[1] (numeric) = 1.3087600225996682429626919383918 absolute error = 1.3087600225996682429626919383918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.128 y[1] (analytic) = 0 y[1] (numeric) = 1.3092862995839006457384876577486 absolute error = 1.3092862995839006457384876577486 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.129 y[1] (analytic) = 0 y[1] (numeric) = 1.3098125280489235493891983650908 absolute error = 1.3098125280489235493891983650908 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.13 y[1] (analytic) = 0 y[1] (numeric) = 1.3103387080527306818469761071456 absolute error = 1.3103387080527306818469761071456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1373.3MB, alloc=4.4MB, time=141.91 NO POLE x[1] = 2.131 y[1] (analytic) = 0 y[1] (numeric) = 1.3108648396532751027801379483253 absolute error = 1.3108648396532751027801379483253 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.132 y[1] (analytic) = 0 y[1] (numeric) = 1.311390922908469252048531373451 absolute error = 1.311390922908469252048531373451 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.133 y[1] (analytic) = 0 y[1] (numeric) = 1.3119169578761849980842416401677 absolute error = 1.3119169578761849980842416401677 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.134 y[1] (analytic) = 0 y[1] (numeric) = 1.3124429446142536861977844495656 absolute error = 1.3124429446142536861977844495656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.135 y[1] (analytic) = 0 y[1] (numeric) = 1.3129688831804661868099269654745 absolute error = 1.3129688831804661868099269654745 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.136 y[1] (analytic) = 0 y[1] (numeric) = 1.3134947736325729436092798757988 absolute error = 1.3134947736325729436092798757988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1377.1MB, alloc=4.4MB, time=142.31 NO POLE x[1] = 2.137 y[1] (analytic) = 0 y[1] (numeric) = 1.3140206160282840216358028531004 absolute error = 1.3140206160282840216358028531004 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.138 y[1] (analytic) = 0 y[1] (numeric) = 1.3145464104252691552903654364169 absolute error = 1.3145464104252691552903654364169 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.139 y[1] (analytic) = 0 y[1] (numeric) = 1.3150721568811577962705050220208 absolute error = 1.3150721568811577962705050220208 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.14 y[1] (analytic) = 0 y[1] (numeric) = 1.3155978554535391614325233174729 absolute error = 1.3155978554535391614325233174729 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.141 y[1] (analytic) = 0 y[1] (numeric) = 1.3161235061999622805800622809051 absolute error = 1.3161235061999622805800622809051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1380.9MB, alloc=4.4MB, time=142.71 NO POLE x[1] = 2.142 y[1] (analytic) = 0 y[1] (numeric) = 1.3166491091779360441793002359732 absolute error = 1.3166491091779360441793002359732 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.143 y[1] (analytic) = 0 y[1] (numeric) = 1.3171746644449292510009085223532 absolute error = 1.3171746644449292510009085223532 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.144 y[1] (analytic) = 0 y[1] (numeric) = 1.3177001720583706556889087120049 absolute error = 1.3177001720583706556889087120049 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.145 y[1] (analytic) = 0 y[1] (numeric) = 1.3182256320756490162565700926998 absolute error = 1.3182256320756490162565700926998 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.146 y[1] (analytic) = 0 y[1] (numeric) = 1.3187510445541131415094867924933 absolute error = 1.3187510445541131415094867924933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.147 y[1] (analytic) = 0 y[1] (numeric) = 1.3192764095510719383959735919219 absolute error = 1.3192764095510719383959735919219 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1384.7MB, alloc=4.4MB, time=143.10 NO POLE x[1] = 2.148 y[1] (analytic) = 0 y[1] (numeric) = 1.319801727123794459284919144711 absolute error = 1.319801727123794459284919144711 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.149 y[1] (analytic) = 0 y[1] (numeric) = 1.3203269973295099491712350026948 absolute error = 1.3203269973295099491712350026948 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.15 y[1] (analytic) = 0 y[1] (numeric) = 1.3208522202254078928090385164655 absolute error = 1.3208522202254078928090385164655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.151 y[1] (analytic) = 0 y[1] (numeric) = 1.321377395868638061772707359987 absolute error = 1.321377395868638061772707359987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.152 y[1] (analytic) = 0 y[1] (numeric) = 1.3219025243163105614459431050242 absolute error = 1.3219025243163105614459431050242 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.153 y[1] (analytic) = 0 y[1] (numeric) = 1.3224276056254958779389809497488 absolute error = 1.3224276056254958779389809497488 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1388.6MB, alloc=4.4MB, time=143.50 NO POLE x[1] = 2.154 y[1] (analytic) = 0 y[1] (numeric) = 1.3229526398532249249340823852833 absolute error = 1.3229526398532249249340823852833 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.155 y[1] (analytic) = 0 y[1] (numeric) = 1.3234776270564890904594472642381 absolute error = 1.3234776270564890904594472642381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.156 y[1] (analytic) = 0 y[1] (numeric) = 1.3240025672922402835916814164716 absolute error = 1.3240025672922402835916814164716 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.157 y[1] (analytic) = 0 y[1] (numeric) = 1.3245274606173909810869556393638 absolute error = 1.3245274606173909810869556393638 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.158 y[1] (analytic) = 0 y[1] (numeric) = 1.325052307088814273940991572836 absolute error = 1.325052307088814273940991572836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1392.4MB, alloc=4.4MB, time=143.89 NO POLE x[1] = 2.159 y[1] (analytic) = 0 y[1] (numeric) = 1.3255771067633439138780096531657 absolute error = 1.3255771067633439138780096531657 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.16 y[1] (analytic) = 0 y[1] (numeric) = 1.3261018596977743597687740243397 absolute error = 1.3261018596977743597687740243397 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.161 y[1] (analytic) = 0 y[1] (numeric) = 1.3266265659488608239778689712543 absolute error = 1.3266265659488608239778689712543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.162 y[1] (analytic) = 0 y[1] (numeric) = 1.3271512255733193186403411255035 absolute error = 1.3271512255733193186403411255035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.163 y[1] (analytic) = 0 y[1] (numeric) = 1.3276758386278267018678413817994 absolute error = 1.3276758386278267018678413817994 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.164 y[1] (analytic) = 0 y[1] (numeric) = 1.328200405169020723884400151231 absolute error = 1.328200405169020723884400151231 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1396.2MB, alloc=4.4MB, time=144.28 NO POLE x[1] = 2.165 y[1] (analytic) = 0 y[1] (numeric) = 1.3287249252535000730919692665941 absolute error = 1.3287249252535000730919692665941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.166 y[1] (analytic) = 0 y[1] (numeric) = 1.3292493989378244220658635449073 absolute error = 1.3292493989378244220658635449073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.167 y[1] (analytic) = 0 y[1] (numeric) = 1.3297738262785144734802347029674 absolute error = 1.3297738262785144734802347029674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.168 y[1] (analytic) = 0 y[1] (numeric) = 1.3302982073320520059637100133904 absolute error = 1.3302982073320520059637100133904 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.169 y[1] (analytic) = 0 y[1] (numeric) = 1.3308225421548799198853277810219 absolute error = 1.3308225421548799198853277810219 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1400.0MB, alloc=4.4MB, time=144.67 NO POLE x[1] = 2.17 y[1] (analytic) = 0 y[1] (numeric) = 1.3313468308034022830709014128919 absolute error = 1.3313468308034022830709014128919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.171 y[1] (analytic) = 0 y[1] (numeric) = 1.3318710733339843764499435490199 absolute error = 1.3318710733339843764499435490199 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.172 y[1] (analytic) = 0 y[1] (numeric) = 1.332395269802952739633281416351 absolute error = 1.332395269802952739633281416351 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.173 y[1] (analytic) = 0 y[1] (numeric) = 1.3329194202665952164214942639156 absolute error = 1.3329194202665952164214942639156 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.174 y[1] (analytic) = 0 y[1] (numeric) = 1.333443524781161000244303433958 absolute error = 1.333443524781161000244303433958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.175 y[1] (analytic) = 0 y[1] (numeric) = 1.3339675834028606795310453212587 absolute error = 1.3339675834028606795310453212587 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1403.8MB, alloc=4.4MB, time=145.06 NO POLE x[1] = 2.176 y[1] (analytic) = 0 y[1] (numeric) = 1.3344915961878662830123571711928 absolute error = 1.3344915961878662830123571711928 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.177 y[1] (analytic) = 0 y[1] (numeric) = 1.3350155631923113249532053662081 absolute error = 1.3350155631923113249532053662081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.178 y[1] (analytic) = 0 y[1] (numeric) = 1.3355394844722908503173855503747 absolute error = 1.3355394844722908503173855503747 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.179 y[1] (analytic) = 0 y[1] (numeric) = 1.3360633600838614798636236424514 absolute error = 1.3360633600838614798636236424514 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.18 y[1] (analytic) = 0 y[1] (numeric) = 1.3365871900830414551734064895244 absolute error = 1.3365871900830414551734064895244 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.181 y[1] (analytic) = 0 y[1] (numeric) = 1.3371109745258106836106706157044 absolute error = 1.3371109745258106836106706157044 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1407.6MB, alloc=4.4MB, time=145.46 NO POLE x[1] = 2.182 y[1] (analytic) = 0 y[1] (numeric) = 1.3376347134681107832134772236147 absolute error = 1.3376347134681107832134772236147 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.183 y[1] (analytic) = 0 y[1] (numeric) = 1.3381584069658451275178013104593 absolute error = 1.3381584069658451275178013104593 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.184 y[1] (analytic) = 0 y[1] (numeric) = 1.3386820550748788903135624653293 absolute error = 1.3386820550748788903135624653293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.185 y[1] (analytic) = 0 y[1] (numeric) = 1.3392056578510390903330246200808 absolute error = 1.3392056578510390903330246200808 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.186 y[1] (analytic) = 0 y[1] (numeric) = 1.339729215350114635871691732599 absolute error = 1.339729215350114635871691732599 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1411.4MB, alloc=4.4MB, time=145.85 NO POLE x[1] = 2.187 y[1] (analytic) = 0 y[1] (numeric) = 1.3402527276278563693418260885458 absolute error = 1.3402527276278563693418260885458 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.188 y[1] (analytic) = 0 y[1] (numeric) = 1.3407761947399771117587156157709 absolute error = 1.3407761947399771117587156157709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.189 y[1] (analytic) = 0 y[1] (numeric) = 1.3412996167421517071598163144476 absolute error = 1.3412996167421517071598163144476 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.19 y[1] (analytic) = 0 y[1] (numeric) = 1.3418229936900170669568956156688 absolute error = 1.3418229936900170669568956156688 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.191 y[1] (analytic) = 0 y[1] (numeric) = 1.342346325639172214221302191706 absolute error = 1.342346325639172214221302191706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.192 y[1] (analytic) = 0 y[1] (numeric) = 1.3428696126451783279024874523929 absolute error = 1.3428696126451783279024874523929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1415.3MB, alloc=4.4MB, time=146.25 NO POLE x[1] = 2.193 y[1] (analytic) = 0 y[1] (numeric) = 1.3433928547635587869799036741373 absolute error = 1.3433928547635587869799036741373 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.194 y[1] (analytic) = 0 y[1] (numeric) = 1.343916052049799214548403420896 absolute error = 1.343916052049799214548403420896 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.195 y[1] (analytic) = 0 y[1] (numeric) = 1.3444392045593475218372646300586 absolute error = 1.3444392045593475218372646300586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.196 y[1] (analytic) = 0 y[1] (numeric) = 1.3449623123476139521629654505771 absolute error = 1.3449623123476139521629654505771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.197 y[1] (analytic) = 0 y[1] (numeric) = 1.3454853754699711248158326358479 absolute error = 1.3454853754699711248158326358479 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1419.1MB, alloc=4.4MB, time=146.63 NO POLE x[1] = 2.198 y[1] (analytic) = 0 y[1] (numeric) = 1.3460083939817540788806870097951 absolute error = 1.3460083939817540788806870097951 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.199 y[1] (analytic) = 0 y[1] (numeric) = 1.3465313679382603169916092413218 absolute error = 1.3465313679382603169916092413218 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.2 y[1] (analytic) = 0 y[1] (numeric) = 1.3470542973947498490209488797814 absolute error = 1.3470542973947498490209488797814 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.201 y[1] (analytic) = 0 y[1] (numeric) = 1.3475771824064452357026993223748 absolute error = 1.3475771824064452357026993223748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.202 y[1] (analytic) = 0 y[1] (numeric) = 1.3481000230285316321903611033984 absolute error = 1.3481000230285316321903611033984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.203 y[1] (analytic) = 0 y[1] (numeric) = 1.3486228193161568315494156150505 absolute error = 1.3486228193161568315494156150505 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1422.9MB, alloc=4.4MB, time=147.03 NO POLE x[1] = 2.204 y[1] (analytic) = 0 y[1] (numeric) = 1.3491455713244313081845310900444 absolute error = 1.3491455713244313081845310900444 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.205 y[1] (analytic) = 0 y[1] (numeric) = 1.3496682791084282612016223975775 absolute error = 1.3496682791084282612016223975775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.206 y[1] (analytic) = 0 y[1] (numeric) = 1.3501909427231836577048859262619 absolute error = 1.3501909427231836577048859262619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.207 y[1] (analytic) = 0 y[1] (numeric) = 1.3507135622236962760289305504296 absolute error = 1.3507135622236962760289305504296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.208 y[1] (analytic) = 0 y[1] (numeric) = 1.351236137664927748906125399787 absolute error = 1.351236137664927748906125399787 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1426.7MB, alloc=4.4MB, time=147.43 x[1] = 2.209 y[1] (analytic) = 0 y[1] (numeric) = 1.3517586691018026065692848766994 absolute error = 1.3517586691018026065692848766994 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.21 y[1] (analytic) = 0 y[1] (numeric) = 1.3522811565892083197898110904434 absolute error = 1.3522811565892083197898110904434 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.211 y[1] (analytic) = 0 y[1] (numeric) = 1.3528036001819953428514136035609 absolute error = 1.3528036001819953428514136035609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.212 y[1] (analytic) = 0 y[1] (numeric) = 1.3533259999349771564595261119892 absolute error = 1.3533259999349771564595261119892 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.213 y[1] (analytic) = 0 y[1] (numeric) = 1.3538483559029303105865394079205 absolute error = 1.3538483559029303105865394079205 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.214 y[1] (analytic) = 0 y[1] (numeric) = 1.3543706681405944672529697023598 absolute error = 1.3543706681405944672529697023598 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1430.5MB, alloc=4.4MB, time=147.82 NO POLE x[1] = 2.215 y[1] (analytic) = 0 y[1] (numeric) = 1.3548929367026724432446811130997 absolute error = 1.3548929367026724432446811130997 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.216 y[1] (analytic) = 0 y[1] (numeric) = 1.3554151616438302527662808533137 absolute error = 1.3554151616438302527662808533137 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.217 y[1] (analytic) = 0 y[1] (numeric) = 1.3559373430186971500308053861811 absolute error = 1.3559373430186971500308053861811 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.218 y[1] (analytic) = 0 y[1] (numeric) = 1.3564594808818656717858155418976 absolute error = 1.3564594808818656717858155418976 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.219 y[1] (analytic) = 0 y[1] (numeric) = 1.3569815752878916797760183250891 absolute error = 1.3569815752878916797760183250891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.22 y[1] (analytic) = 0 y[1] (numeric) = 1.3575036262912944031425328730367 absolute error = 1.3575036262912944031425328730367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1434.3MB, alloc=4.4MB, time=148.21 NO POLE x[1] = 2.221 y[1] (analytic) = 0 y[1] (numeric) = 1.358025633946556480758917758228 absolute error = 1.358025633946556480758917758228 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.222 y[1] (analytic) = 0 y[1] (numeric) = 1.3585475983081240035040765625793 absolute error = 1.3585475983081240035040765625793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.223 y[1] (analytic) = 0 y[1] (numeric) = 1.359069519430406556472158385215 absolute error = 1.359069519430406556472158385215 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.224 y[1] (analytic) = 0 y[1] (numeric) = 1.3595913973677772611195696809514 absolute error = 1.3595913973677772611195696809514 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.225 y[1] (analytic) = 0 y[1] (numeric) = 1.3601132321745728173492135625997 absolute error = 1.3601132321745728173492135625997 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1438.1MB, alloc=4.4MB, time=148.60 NO POLE x[1] = 2.226 y[1] (analytic) = 0 y[1] (numeric) = 1.3606350239050935455320724368837 absolute error = 1.3606350239050935455320724368837 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.227 y[1] (analytic) = 0 y[1] (numeric) = 1.3611567726136034284662495811546 absolute error = 1.3611567726136034284662495811546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.228 y[1] (analytic) = 0 y[1] (numeric) = 1.3616784783543301532735850061769 absolute error = 1.3616784783543301532735850061769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.229 y[1] (analytic) = 0 y[1] (numeric) = 1.3622001411814651532339606890557 absolute error = 1.3622001411814651532339606890557 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.23 y[1] (analytic) = 0 y[1] (numeric) = 1.3627217611491636495574099998707 absolute error = 1.3627217611491636495574099998707 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.231 y[1] (analytic) = 0 y[1] (numeric) = 1.3632433383115446930941458857775 absolute error = 1.3632433383115446930941458857775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1442.0MB, alloc=4.4MB, time=149.00 NO POLE x[1] = 2.232 y[1] (analytic) = 0 y[1] (numeric) = 1.3637648727226912059826221172283 absolute error = 1.3637648727226912059826221172283 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.233 y[1] (analytic) = 0 y[1] (numeric) = 1.3642863644366500232357416425482 absolute error = 1.3642863644366500232357416425482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.234 y[1] (analytic) = 0 y[1] (numeric) = 1.3648078135074319342653258393827 absolute error = 1.3648078135074319342653258393827 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.235 y[1] (analytic) = 0 y[1] (numeric) = 1.3653292199890117243449581944989 absolute error = 1.3653292199890117243449581944989 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.236 y[1] (analytic) = 0 y[1] (numeric) = 1.3658505839353282160113156870776 absolute error = 1.3658505839353282160113156870776 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1445.8MB, alloc=4.4MB, time=149.39 NO POLE x[1] = 2.237 y[1] (analytic) = 0 y[1] (numeric) = 1.3663719054002843104041008949764 absolute error = 1.3663719054002843104041008949764 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.238 y[1] (analytic) = 0 y[1] (numeric) = 1.3668931844377470285446875884673 absolute error = 1.3668931844377470285446875884673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.239 y[1] (analytic) = 0 y[1] (numeric) = 1.3674144211015475525535923216588 absolute error = 1.3674144211015475525535923216588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.24 y[1] (analytic) = 0 y[1] (numeric) = 1.3679356154454812668068842781998 absolute error = 1.3679356154454812668068842781998 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.241 y[1] (analytic) = 0 y[1] (numeric) = 1.3684567675233077990316453749222 absolute error = 1.3684567675233077990316453749222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.242 y[1] (analytic) = 0 y[1] (numeric) = 1.3689778773887510613405923748213 absolute error = 1.3689778773887510613405923748213 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1449.6MB, alloc=4.4MB, time=149.79 NO POLE x[1] = 2.243 y[1] (analytic) = 0 y[1] (numeric) = 1.36949894509549929120597250918 absolute error = 1.36949894509549929120597250918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.244 y[1] (analytic) = 0 y[1] (numeric) = 1.3700199706972050923728438577289 absolute error = 1.3700199706972050923728438577289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.245 y[1] (analytic) = 0 y[1] (numeric) = 1.3705409542474854757118514854821 absolute error = 1.3705409542474854757118514854821 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.246 y[1] (analytic) = 0 y[1] (numeric) = 1.3710618957999219000116100853086 absolute error = 1.3710618957999219000116100853086 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.247 y[1] (analytic) = 0 y[1] (numeric) = 1.3715827954080603127108036263808 absolute error = 1.3715827954080603127108036263808 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.248 y[1] (analytic) = 0 y[1] (numeric) = 1.3721036531254111905701122603872 absolute error = 1.3721036531254111905701122603872 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1453.4MB, alloc=4.4MB, time=150.18 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.249 y[1] (analytic) = 0 y[1] (numeric) = 1.3726244690054495802840764898026 absolute error = 1.3726244690054495802840764898026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.25 y[1] (analytic) = 0 y[1] (numeric) = 1.3731452431016151390330083555734 absolute error = 1.3731452431016151390330083555734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.251 y[1] (analytic) = 0 y[1] (numeric) = 1.3736659754673121749750591552972 absolute error = 1.3736659754673121749750591552972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.252 y[1] (analytic) = 0 y[1] (numeric) = 1.374186666155909687678552957352 absolute error = 1.374186666155909687678552957352 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.253 y[1] (analytic) = 0 y[1] (numeric) = 1.3747073152207414084946949314581 absolute error = 1.3747073152207414084946949314581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1457.2MB, alloc=4.4MB, time=150.57 NO POLE x[1] = 2.254 y[1] (analytic) = 0 y[1] (numeric) = 1.3752279227151058408707632718351 absolute error = 1.3752279227151058408707632718351 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.255 y[1] (analytic) = 0 y[1] (numeric) = 1.3757484886922663006038932454438 absolute error = 1.3757484886922663006038932454438 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.256 y[1] (analytic) = 0 y[1] (numeric) = 1.3762690132054509560355616547777 absolute error = 1.3762690132054509560355616547777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.257 y[1] (analytic) = 0 y[1] (numeric) = 1.3767894963078528681868797622859 absolute error = 1.3767894963078528681868797622859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.258 y[1] (analytic) = 0 y[1] (numeric) = 1.3773099380526300308348024817719 absolute error = 1.3773099380526300308348024817719 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.259 y[1] (analytic) = 0 y[1] (numeric) = 1.3778303384929054105293614010132 absolute error = 1.3778303384929054105293614010132 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1461.0MB, alloc=4.4MB, time=150.97 NO POLE x[1] = 2.26 y[1] (analytic) = 0 y[1] (numeric) = 1.3783506976817669865520289593886 absolute error = 1.3783506976817669865520289593886 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.261 y[1] (analytic) = 0 y[1] (numeric) = 1.3788710156722677908153208644764 absolute error = 1.3788710156722677908153208644764 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.262 y[1] (analytic) = 0 y[1] (numeric) = 1.3793912925174259477037435923974 absolute error = 1.3793912925174259477037435923974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.263 y[1] (analytic) = 0 y[1] (numeric) = 1.3799115282702247138561935781243 absolute error = 1.3799115282702247138561935781243 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.264 y[1] (analytic) = 0 y[1] (numeric) = 1.3804317229836125178899144640508 absolute error = 1.3804317229836125178899144640508 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1464.9MB, alloc=4.4MB, time=151.35 NO POLE x[1] = 2.265 y[1] (analytic) = 0 y[1] (numeric) = 1.3809518767105030000661185378206 absolute error = 1.3809518767105030000661185378206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.266 y[1] (analytic) = 0 y[1] (numeric) = 1.3814719895037750518973782537471 absolute error = 1.3814719895037750518973782537471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.267 y[1] (analytic) = 0 y[1] (numeric) = 1.3819920614162728556968934961105 absolute error = 1.3819920614162728556968934961105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.268 y[1] (analytic) = 0 y[1] (numeric) = 1.3825120925008059240697400071984 absolute error = 1.3825120925008059240697400071984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.269 y[1] (analytic) = 0 y[1] (numeric) = 1.3830320828101491393462041681581 absolute error = 1.3830320828101491393462041681581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.27 y[1] (analytic) = 0 y[1] (numeric) = 1.3835520323970427929573090865461 absolute error = 1.3835520323970427929573090865461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1468.7MB, alloc=4.4MB, time=151.75 NO POLE x[1] = 2.271 y[1] (analytic) = 0 y[1] (numeric) = 1.3840719413141926247526367109007 absolute error = 1.3840719413141926247526367109007 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.272 y[1] (analytic) = 0 y[1] (numeric) = 1.384591809614269862260550459714 absolute error = 1.384591809614269862260550459714 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.273 y[1] (analytic) = 0 y[1] (numeric) = 1.3851116373499112598909226198482 absolute error = 1.3851116373499112598909226198482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.274 y[1] (analytic) = 0 y[1] (numeric) = 1.3856314245737191380804705377176 absolute error = 1.3856314245737191380804705377176 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.275 y[1] (analytic) = 0 y[1] (numeric) = 1.3861511713382614223808053954478 absolute error = 1.3861511713382614223808053954478 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1472.5MB, alloc=4.4MB, time=152.14 x[1] = 2.276 y[1] (analytic) = 0 y[1] (numeric) = 1.3866708776960716824892971337183 absolute error = 1.3866708776960716824892971337183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.277 y[1] (analytic) = 0 y[1] (numeric) = 1.3871905436996491712228588530986 absolute error = 1.3871905436996491712228588530986 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.278 y[1] (analytic) = 0 y[1] (numeric) = 1.3877101694014588634347537963933 absolute error = 1.3877101694014588634347537963933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.279 y[1] (analytic) = 0 y[1] (numeric) = 1.3882297548539314948745277858229 absolute error = 1.3882297548539314948745277858229 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.28 y[1] (analytic) = 0 y[1] (numeric) = 1.3887493001094636009911697607751 absolute error = 1.3887493001094636009911697607751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.281 y[1] (analytic) = 0 y[1] (numeric) = 1.3892688052204175556796028343717 absolute error = 1.3892688052204175556796028343717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1476.3MB, alloc=4.4MB, time=152.53 NO POLE x[1] = 2.282 y[1] (analytic) = 0 y[1] (numeric) = 1.3897882702391216099706080602009 absolute error = 1.3897882702391216099706080602009 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.283 y[1] (analytic) = 0 y[1] (numeric) = 1.3903076952178699306642828742677 absolute error = 1.3903076952178699306642828742677 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.284 y[1] (analytic) = 0 y[1] (numeric) = 1.3908270802089226389071359515066 absolute error = 1.3908270802089226389071359515066 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.285 y[1] (analytic) = 0 y[1] (numeric) = 1.3913464252645058487129199910903 absolute error = 1.3913464252645058487129199910903 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.286 y[1] (analytic) = 0 y[1] (numeric) = 1.3918657304368117054273037202412 absolute error = 1.3918657304368117054273037202412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.287 y[1] (analytic) = 0 y[1] (numeric) = 1.3923849957779984241364841823174 absolute error = 1.3923849957779984241364841823174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1480.1MB, alloc=4.4MB, time=152.94 NO POLE x[1] = 2.288 y[1] (analytic) = 0 y[1] (numeric) = 1.3929042213401903280198401515949 absolute error = 1.3929042213401903280198401515949 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.289 y[1] (analytic) = 0 y[1] (numeric) = 1.3934234071754778866467272944025 absolute error = 1.3934234071754778866467272944025 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.29 y[1] (analytic) = 0 y[1] (numeric) = 1.3939425533359177542175154740818 absolute error = 1.3939425533359177542175154740818 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.291 y[1] (analytic) = 0 y[1] (numeric) = 1.3944616598735328077489683756436 absolute error = 1.3944616598735328077489683756436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.292 y[1] (analytic) = 0 y[1] (numeric) = 1.3949807268403121852040654049695 absolute error = 1.3949807268403121852040654049695 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1483.9MB, alloc=4.4MB, time=153.33 NO POLE x[1] = 2.293 y[1] (analytic) = 0 y[1] (numeric) = 1.3954997542882113235663655969602 absolute error = 1.3954997542882113235663655969602 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.294 y[1] (analytic) = 0 y[1] (numeric) = 1.3960187422691519968590130471646 absolute error = 1.3960187422691519968590130471646 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.295 y[1] (analytic) = 0 y[1] (numeric) = 1.396537690835022354108483162125 absolute error = 1.396537690835022354108483162125 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.296 y[1] (analytic) = 0 y[1] (numeric) = 1.3970566000376769572531688049527 absolute error = 1.3970566000376769572531688049527 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.297 y[1] (analytic) = 0 y[1] (numeric) = 1.3975754699289368189969051944917 absolute error = 1.3975754699289368189969051944917 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.298 y[1] (analytic) = 0 y[1] (numeric) = 1.3980943005605894406075321988461 absolute error = 1.3980943005605894406075321988461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1487.7MB, alloc=4.4MB, time=153.72 NO POLE x[1] = 2.299 y[1] (analytic) = 0 y[1] (numeric) = 1.3986130919843888496605924470277 absolute error = 1.3986130919843888496605924470277 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.3 y[1] (analytic) = 0 y[1] (numeric) = 1.3991318442520556377282634660272 absolute error = 1.3991318442520556377282634660272 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.301 y[1] (analytic) = 0 y[1] (numeric) = 1.3996505574152769980136218347248 absolute error = 1.3996505574152769980136218347248 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.302 y[1] (analytic) = 0 y[1] (numeric) = 1.4001692315257067629303371307274 absolute error = 1.4001692315257067629303371307274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.303 y[1] (analytic) = 0 y[1] (numeric) = 1.4006878666349654416278932314534 absolute error = 1.4006878666349654416278932314534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1491.6MB, alloc=4.4MB, time=154.12 NO POLE x[1] = 2.304 y[1] (analytic) = 0 y[1] (numeric) = 1.4012064627946402574624343165768 absolute error = 1.4012064627946402574624343165768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.305 y[1] (analytic) = 0 y[1] (numeric) = 1.4017250200562851854133327052918 absolute error = 1.4017250200562851854133327052918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.306 y[1] (analytic) = 0 y[1] (numeric) = 1.4022435384714209894455754487604 absolute error = 1.4022435384714209894455754487604 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.307 y[1] (analytic) = 0 y[1] (numeric) = 1.4027620180915352598180663855636 absolute error = 1.4027620180915352598180663855636 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.308 y[1] (analytic) = 0 y[1] (numeric) = 1.4032804589680824503379401559853 absolute error = 1.4032804589680824503379401559853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.309 y[1] (analytic) = 0 y[1] (numeric) = 1.4037988611524839155609844595156 absolute error = 1.4037988611524839155609844595156 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1495.4MB, alloc=4.4MB, time=154.50 NO POLE x[1] = 2.31 y[1] (analytic) = 0 y[1] (numeric) = 1.4043172246961279479382666290678 absolute error = 1.4043172246961279479382666290678 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.311 y[1] (analytic) = 0 y[1] (numeric) = 1.4048355496503698149090603850572 absolute error = 1.4048355496503698149090603850572 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.312 y[1] (analytic) = 0 y[1] (numeric) = 1.4053538360665317959401684226888 absolute error = 1.4053538360665317959401684226888 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.313 y[1] (analytic) = 0 y[1] (numeric) = 1.4058720839959032195117362765426 absolute error = 1.4058720839959032195117362765426 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.314 y[1] (analytic) = 0 y[1] (numeric) = 1.4063902934897405000496526978308 absolute error = 1.4063902934897405000496526978308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.315 y[1] (analytic) = 0 y[1] (numeric) = 1.4069084645992671748046315715247 absolute error = 1.4069084645992671748046315715247 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1499.2MB, alloc=4.4MB, time=154.90 NO POLE x[1] = 2.316 y[1] (analytic) = 0 y[1] (numeric) = 1.4074265973756739406780701929131 absolute error = 1.4074265973756739406780701929131 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.317 y[1] (analytic) = 0 y[1] (numeric) = 1.4079446918701186909947785160532 absolute error = 1.4079446918701186909947785160532 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.318 y[1] (analytic) = 0 y[1] (numeric) = 1.408462748133726552222673780012 absolute error = 1.408462748133726552222673780012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.319 y[1] (analytic) = 0 y[1] (numeric) = 1.4089807662175899206395347127639 absolute error = 1.4089807662175899206395347127639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.32 y[1] (analytic) = 0 y[1] (numeric) = 1.4094987461727684989469093071135 absolute error = 1.4094987461727684989469093071135 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1503.0MB, alloc=4.4MB, time=155.29 NO POLE x[1] = 2.321 y[1] (analytic) = 0 y[1] (numeric) = 1.4100166880502893328312699580434 absolute error = 1.4100166880502893328312699580434 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.322 y[1] (analytic) = 0 y[1] (numeric) = 1.4105345919011468474725095464495 absolute error = 1.4105345919011468474725095464495 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.323 y[1] (analytic) = 0 y[1] (numeric) = 1.4110524577763028839998718503129 absolute error = 1.4110524577763028839998718503129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.324 y[1] (analytic) = 0 y[1] (numeric) = 1.4115702857266867358954094609744 absolute error = 1.4115702857266867358954094609744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.325 y[1] (analytic) = 0 y[1] (numeric) = 1.4120880758031951853450621793141 absolute error = 1.4120880758031951853450621793141 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.326 y[1] (analytic) = 0 y[1] (numeric) = 1.4126058280566925395374486643027 absolute error = 1.4126058280566925395374486643027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1506.8MB, alloc=4.4MB, time=155.69 NO POLE x[1] = 2.327 y[1] (analytic) = 0 y[1] (numeric) = 1.4131235425380106669104639045705 absolute error = 1.4131235425380106669104639045705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.328 y[1] (analytic) = 0 y[1] (numeric) = 1.4136412192979490333457748823455 absolute error = 1.4136412192979490333457748823455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.329 y[1] (analytic) = 0 y[1] (numeric) = 1.4141588583872747383113065983309 absolute error = 1.4141588583872747383113065983309 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.33 y[1] (analytic) = 0 y[1] (numeric) = 1.4146764598567225509518104258283 absolute error = 1.4146764598567225509518104258283 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.331 y[1] (analytic) = 0 y[1] (numeric) = 1.4151940237569949461276065626663 absolute error = 1.4151940237569949461276065626663 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1510.6MB, alloc=4.4MB, time=156.09 NO POLE x[1] = 2.332 y[1] (analytic) = 0 y[1] (numeric) = 1.4157115501387621404015921502591 absolute error = 1.4157115501387621404015921502591 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.333 y[1] (analytic) = 0 y[1] (numeric) = 1.4162290390526621279746064303952 absolute error = 1.4162290390526621279746064303952 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.334 y[1] (analytic) = 0 y[1] (numeric) = 1.416746490549300716569244112146 absolute error = 1.416746490549300716569244112146 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.335 y[1] (analytic) = 0 y[1] (numeric) = 1.4172639046792515632622079235793 absolute error = 1.4172639046792515632622079235793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.336 y[1] (analytic) = 0 y[1] (numeric) = 1.4177812814930562102652911257658 absolute error = 1.4177812814930562102652911257658 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.337 y[1] (analytic) = 0 y[1] (numeric) = 1.4182986210412241206550805698778 absolute error = 1.4182986210412241206550805698778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1514.4MB, alloc=4.4MB, time=156.48 NO POLE x[1] = 2.338 y[1] (analytic) = 0 y[1] (numeric) = 1.4188159233742327140514706819916 absolute error = 1.4188159233742327140514706819916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.339 y[1] (analytic) = 0 y[1] (numeric) = 1.4193331885425274022450785645226 absolute error = 1.4193331885425274022450785645226 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.34 y[1] (analytic) = 0 y[1] (numeric) = 1.4198504165965216247736502080398 absolute error = 1.4198504165965216247736502080398 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.341 y[1] (analytic) = 0 y[1] (numeric) = 1.4203676075865968844475476125246 absolute error = 1.4203676075865968844475476125246 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.342 y[1] (analytic) = 0 y[1] (numeric) = 1.4208847615631027828244064229539 absolute error = 1.4208847615631027828244064229539 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1518.3MB, alloc=4.4MB, time=156.87 NO POLE x[1] = 2.343 y[1] (analytic) = 0 y[1] (numeric) = 1.4214018785763570556330534904021 absolute error = 1.4214018785763570556330534904021 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.344 y[1] (analytic) = 0 y[1] (numeric) = 1.4219189586766456081467735766643 absolute error = 1.4219189586766456081467735766643 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.345 y[1] (analytic) = 0 y[1] (numeric) = 1.4224360019142225505060142277045 absolute error = 1.4224360019142225505060142277045 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.346 y[1] (analytic) = 0 y[1] (numeric) = 1.4229530083393102329906176490297 absolute error = 1.4229530083393102329906176490297 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.347 y[1] (analytic) = 0 y[1] (numeric) = 1.4234699780020992812416682243746 absolute error = 1.4234699780020992812416682243746 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.348 y[1] (analytic) = 0 y[1] (numeric) = 1.423986910952748631433044127858 absolute error = 1.423986910952748631433044127858 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1522.1MB, alloc=4.4MB, time=157.27 NO POLE x[1] = 2.349 y[1] (analytic) = 0 y[1] (numeric) = 1.4245038072413855653927612890356 absolute error = 1.4245038072413855653927612890356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.35 y[1] (analytic) = 0 y[1] (numeric) = 1.425020666918105745674197780024 absolute error = 1.425020666918105745674197780024 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.351 y[1] (analytic) = 0 y[1] (numeric) = 1.425537490032973250577286504106 absolute error = 1.425537490032973250577286504106 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.352 y[1] (analytic) = 0 y[1] (numeric) = 1.4260542766360206091197638759471 absolute error = 1.4260542766360206091197638759471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.353 y[1] (analytic) = 0 y[1] (numeric) = 1.4265710267772488359585619947539 absolute error = 1.4265710267772488359585619947539 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.354 y[1] (analytic) = 0 y[1] (numeric) = 1.4270877405066274662614316233882 absolute error = 1.4270877405066274662614316233882 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1525.9MB, alloc=4.4MB, time=157.66 NO POLE x[1] = 2.355 y[1] (analytic) = 0 y[1] (numeric) = 1.4276044178740945905288830986133 absolute error = 1.4276044178740945905288830986133 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.356 y[1] (analytic) = 0 y[1] (numeric) = 1.4281210589295568893665321102877 absolute error = 1.4281210589295568893665321102877 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.357 y[1] (analytic) = 0 y[1] (numeric) = 1.4286376637228896682079371004393 absolute error = 1.4286376637228896682079371004393 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.358 y[1] (analytic) = 0 y[1] (numeric) = 1.4291542323039368919880148467457 absolute error = 1.4291542323039368919880148467457 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.359 y[1] (analytic) = 0 y[1] (numeric) = 1.4296707647225112197671206090109 absolute error = 1.4296707647225112197671206090109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1529.7MB, alloc=4.4MB, time=158.05 NO POLE x[1] = 2.36 y[1] (analytic) = 0 y[1] (numeric) = 1.4301872610283940393058790317689 absolute error = 1.4301872610283940393058790317689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.361 y[1] (analytic) = 0 y[1] (numeric) = 1.4307037212713355015908518111533 absolute error = 1.4307037212713355015908518111533 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.362 y[1] (analytic) = 0 y[1] (numeric) = 1.4312201455010545553111279496509 absolute error = 1.4312201455010545553111279496509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.363 y[1] (analytic) = 0 y[1] (numeric) = 1.431736533767238981285922238307 absolute error = 1.431736533767238981285922238307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.364 y[1] (analytic) = 0 y[1] (numeric) = 1.4322528861195454268432674223626 absolute error = 1.4322528861195454268432674223626 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.365 y[1] (analytic) = 0 y[1] (numeric) = 1.4327692026075994401498853231846 absolute error = 1.4327692026075994401498853231846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1533.5MB, alloc=4.4MB, time=158.44 NO POLE x[1] = 2.366 y[1] (analytic) = 0 y[1] (numeric) = 1.4332854832809955044923220066955 absolute error = 1.4332854832809955044923220066955 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.367 y[1] (analytic) = 0 y[1] (numeric) = 1.4338017281892970725094319063151 absolute error = 1.4338017281892970725094319063151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.368 y[1] (analytic) = 0 y[1] (numeric) = 1.4343179373820366003762956266956 absolute error = 1.4343179373820366003762956266956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.369 y[1] (analytic) = 0 y[1] (numeric) = 1.4348341109087155819396559732616 absolute error = 1.4348341109087155819396559732616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.37 y[1] (analytic) = 0 y[1] (numeric) = 1.4353502488188045828049565717528 absolute error = 1.4353502488188045828049565717528 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1537.3MB, alloc=4.4MB, time=158.82 NO POLE x[1] = 2.371 y[1] (analytic) = 0 y[1] (numeric) = 1.4358663511617432743750672616126 absolute error = 1.4358663511617432743750672616126 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.372 y[1] (analytic) = 0 y[1] (numeric) = 1.4363824179869404678407802671682 absolute error = 1.4363824179869404678407802671682 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.373 y[1] (analytic) = 0 y[1] (numeric) = 1.4368984493437741481231609711019 absolute error = 1.4368984493437741481231609711019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.374 y[1] (analytic) = 0 y[1] (numeric) = 1.437414445281591507767836935724 absolute error = 1.437414445281591507767836935724 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.375 y[1] (analytic) = 0 y[1] (numeric) = 1.437930405849708980791308639019 absolute error = 1.437930405849708980791308639019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.376 y[1] (analytic) = 0 y[1] (numeric) = 1.4384463310974122764793652143486 absolute error = 1.4384463310974122764793652143486 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1541.2MB, alloc=4.4MB, time=159.20 NO POLE x[1] = 2.377 y[1] (analytic) = 0 y[1] (numeric) = 1.4389622210739564131376883050574 absolute error = 1.4389622210739564131376883050574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.378 y[1] (analytic) = 0 y[1] (numeric) = 1.4394780758285657517947269680361 absolute error = 1.4394780758285657517947269680361 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.379 y[1] (analytic) = 0 y[1] (numeric) = 1.4399938954104340298569263835552 absolute error = 1.4399938954104340298569263835552 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.38 y[1] (analytic) = 0 y[1] (numeric) = 1.4405096798687243947163929523827 absolute error = 1.4405096798687243947163929523827 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.381 y[1] (analytic) = 0 y[1] (numeric) = 1.4410254292525694373110781853469 absolute error = 1.4410254292525694373110781853469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1545.0MB, alloc=4.4MB, time=159.60 x[1] = 2.382 y[1] (analytic) = 0 y[1] (numeric) = 1.4415411436110712256375636150949 absolute error = 1.4415411436110712256375636150949 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.383 y[1] (analytic) = 0 y[1] (numeric) = 1.4420568229933013382165287848268 absolute error = 1.4420568229933013382165287848268 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.384 y[1] (analytic) = 0 y[1] (numeric) = 1.4425724674483008975109841942596 absolute error = 1.4425724674483008975109841942596 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.385 y[1] (analytic) = 0 y[1] (numeric) = 1.4430880770250806032973509089828 absolute error = 1.4430880770250806032973509089828 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.386 y[1] (analytic) = 0 y[1] (numeric) = 1.4436036517726207659894683657167 absolute error = 1.4436036517726207659894683657167 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.387 y[1] (analytic) = 0 y[1] (numeric) = 1.4441191917398713399156117327701 absolute error = 1.4441191917398713399156117327701 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1548.8MB, alloc=4.4MB, time=160.01 NO POLE x[1] = 2.388 y[1] (analytic) = 0 y[1] (numeric) = 1.4446346969757519565486000122125 absolute error = 1.4446346969757519565486000122125 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.389 y[1] (analytic) = 0 y[1] (numeric) = 1.4451501675291519576890758979307 absolute error = 1.4451501675291519576890758979307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.39 y[1] (analytic) = 0 y[1] (numeric) = 1.4456656034489304286020382318259 absolute error = 1.4456656034489304286020382318259 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.391 y[1] (analytic) = 0 y[1] (numeric) = 1.4461810047839162311067077289261 absolute error = 1.4461810047839162311067077289261 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.392 y[1] (analytic) = 0 y[1] (numeric) = 1.4466963715829080366198064711363 absolute error = 1.4466963715829080366198064711363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.393 y[1] (analytic) = 0 y[1] (numeric) = 1.4472117038946743591523314987254 absolute error = 1.4472117038946743591523314987254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1552.6MB, alloc=4.4MB, time=160.41 NO POLE x[1] = 2.394 y[1] (analytic) = 0 y[1] (numeric) = 1.447727001767953588259902658456 absolute error = 1.447727001767953588259902658456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.395 y[1] (analytic) = 0 y[1] (numeric) = 1.4482422652514540219467646974916 absolute error = 1.4482422652514540219467646974916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.396 y[1] (analytic) = 0 y[1] (numeric) = 1.4487574943938538995235234228749 absolute error = 1.4487574943938538995235234228749 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.397 y[1] (analytic) = 0 y[1] (numeric) = 1.4492726892438014344186955774492 absolute error = 1.4492726892438014344186955774492 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.398 y[1] (analytic) = 0 y[1] (numeric) = 1.4497878498499148469441519146001 absolute error = 1.4497878498499148469441519146001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1556.4MB, alloc=4.4MB, time=160.81 NO POLE x[1] = 2.399 y[1] (analytic) = 0 y[1] (numeric) = 1.4503029762607823970145327861182 absolute error = 1.4503029762607823970145327861182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.4 y[1] (analytic) = 0 y[1] (numeric) = 1.4508180685249624168207153898287 absolute error = 1.4508180685249624168207153898287 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.401 y[1] (analytic) = 0 y[1] (numeric) = 1.4513331266909833434574116563988 absolute error = 1.4513331266909833434574116563988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.402 y[1] (analytic) = 0 y[1] (numeric) = 1.4518481508073437515049755879152 absolute error = 1.4518481508073437515049755879152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.403 y[1] (analytic) = 0 y[1] (numeric) = 1.4523631409225123855654986944222 absolute error = 1.4523631409225123855654986944222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.404 y[1] (analytic) = 0 y[1] (numeric) = 1.4528780970849281927532720086269 absolute error = 1.4528780970849281927532720086269 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1560.2MB, alloc=4.4MB, time=161.21 NO POLE x[1] = 2.405 y[1] (analytic) = 0 y[1] (numeric) = 1.4533930193430003551396929934035 absolute error = 1.4533930193430003551396929934035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.406 y[1] (analytic) = 0 y[1] (numeric) = 1.4539079077451083221526954915735 absolute error = 1.4539079077451083221526954915735 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.407 y[1] (analytic) = 0 y[1] (numeric) = 1.4544227623396018429307807026892 absolute error = 1.4544227623396018429307807026892 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.408 y[1] (analytic) = 0 y[1] (numeric) = 1.4549375831748009986317270072133 absolute error = 1.4549375831748009986317270072133 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.409 y[1] (analytic) = 0 y[1] (numeric) = 1.4554523702989962346960562945604 absolute error = 1.4554523702989962346960562945604 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1564.0MB, alloc=4.4MB, time=161.60 NO POLE x[1] = 2.41 y[1] (analytic) = 0 y[1] (numeric) = 1.4559671237604483930653342879483 absolute error = 1.4559671237604483930653342879483 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.411 y[1] (analytic) = 0 y[1] (numeric) = 1.4564818436073887443553821958954 absolute error = 1.4564818436073887443553821958954 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.412 y[1] (analytic) = 0 y[1] (numeric) = 1.4569965298880190199844768574963 absolute error = 1.4569965298880190199844768574963 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.413 y[1] (analytic) = 0 y[1] (numeric) = 1.4575111826505114442566163863056 absolute error = 1.4575111826505114442566163863056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.414 y[1] (analytic) = 0 y[1] (numeric) = 1.4580258019430087663999281557652 absolute error = 1.4580258019430087663999281557652 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.415 y[1] (analytic) = 0 y[1] (numeric) = 1.4585403878136242925602958076148 absolute error = 1.4585403878136242925602958076148 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1567.9MB, alloc=4.4MB, time=162.00 NO POLE x[1] = 2.416 y[1] (analytic) = 0 y[1] (numeric) = 1.4590549403104419177502818036325 absolute error = 1.4590549403104419177502818036325 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.417 y[1] (analytic) = 0 y[1] (numeric) = 1.4595694594815161577534218803594 absolute error = 1.4595694594815161577534218803594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.418 y[1] (analytic) = 0 y[1] (numeric) = 1.4600839453748721809839676061692 absolute error = 1.4600839453748721809839676061692 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.419 y[1] (analytic) = 0 y[1] (numeric) = 1.4605983980385058403021530801458 absolute error = 1.4605983980385058403021530801458 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.42 y[1] (analytic) = 0 y[1] (numeric) = 1.4611128175203837047850616527348 absolute error = 1.4611128175203837047850616527348 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.421 y[1] (analytic) = 0 y[1] (numeric) = 1.4616272038684430914531683890292 absolute error = 1.4616272038684430914531683890292 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1571.7MB, alloc=4.4MB, time=162.40 NO POLE x[1] = 2.422 y[1] (analytic) = 0 y[1] (numeric) = 1.4621415571305920969526338368405 absolute error = 1.4621415571305920969526338368405 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.423 y[1] (analytic) = 0 y[1] (numeric) = 1.4626558773547096291934245033917 absolute error = 1.4626558773547096291934245033917 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.424 y[1] (analytic) = 0 y[1] (numeric) = 1.4631701645886454389433352865425 absolute error = 1.4631701645886454389433352865425 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.425 y[1] (analytic) = 0 y[1] (numeric) = 1.463684418880220151377988948926 absolute error = 1.463684418880220151377988948926 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.426 y[1] (analytic) = 0 y[1] (numeric) = 1.4641986402772252975868875662319 absolute error = 1.4641986402772252975868875662319 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1575.5MB, alloc=4.4MB, time=162.80 NO POLE x[1] = 2.427 y[1] (analytic) = 0 y[1] (numeric) = 1.4647128288274233460355907241173 absolute error = 1.4647128288274233460355907241173 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.428 y[1] (analytic) = 0 y[1] (numeric) = 1.4652269845785477339840950818605 absolute error = 1.4652269845785477339840950818605 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.429 y[1] (analytic) = 0 y[1] (numeric) = 1.4657411075783028988614897648913 absolute error = 1.4657411075783028988614897648913 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.43 y[1] (analytic) = 0 y[1] (numeric) = 1.4662551978743643095969618927386 absolute error = 1.4662551978743643095969618927386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.431 y[1] (analytic) = 0 y[1] (numeric) = 1.4667692555143784979072263937253 absolute error = 1.4667692555143784979072263937253 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.432 y[1] (analytic) = 0 y[1] (numeric) = 1.4672832805459630895404541029125 absolute error = 1.4672832805459630895404541029125 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1579.3MB, alloc=4.4MB, time=163.19 NO POLE x[1] = 2.433 y[1] (analytic) = 0 y[1] (numeric) = 1.467797273016706835476771985352 absolute error = 1.467797273016706835476771985352 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.434 y[1] (analytic) = 0 y[1] (numeric) = 1.4683112329741696430854091726412 absolute error = 1.4683112329741696430854091726412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.435 y[1] (analytic) = 0 y[1] (numeric) = 1.468825160465882607238562347091 absolute error = 1.468825160465882607238562347091 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.436 y[1] (analytic) = 0 y[1] (numeric) = 1.469339055539348041382053854512 absolute error = 1.469339055539348041382053854512 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.437 y[1] (analytic) = 0 y[1] (numeric) = 1.4698529182420395085628557736988 absolute error = 1.4698529182420395085628557736988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1583.1MB, alloc=4.4MB, time=163.59 NO POLE x[1] = 2.438 y[1] (analytic) = 0 y[1] (numeric) = 1.4703667486214018524135530181396 absolute error = 1.4703667486214018524135530181396 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.439 y[1] (analytic) = 0 y[1] (numeric) = 1.4708805467248512280938183933056 absolute error = 1.4708805467248512280938183933056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.44 y[1] (analytic) = 0 y[1] (numeric) = 1.4713943125997751331889723810732 absolute error = 1.4713943125997751331889723810732 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.441 y[1] (analytic) = 0 y[1] (numeric) = 1.4719080462935324385657002714068 absolute error = 1.4719080462935324385657002714068 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.442 y[1] (analytic) = 0 y[1] (numeric) = 1.4724217478534534191849991103743 absolute error = 1.4724217478534534191849991103743 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.443 y[1] (analytic) = 0 y[1] (numeric) = 1.4729354173268397848724267828859 absolute error = 1.4729354173268397848724267828859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1586.9MB, alloc=4.4MB, time=163.99 NO POLE x[1] = 2.444 y[1] (analytic) = 0 y[1] (numeric) = 1.4734490547609647110457253982337 absolute error = 1.4734490547609647110457253982337 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.445 y[1] (analytic) = 0 y[1] (numeric) = 1.4739626602030728693998909965671 absolute error = 1.4739626602030728693998909965671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.446 y[1] (analytic) = 0 y[1] (numeric) = 1.4744762337003804585497614448636 absolute error = 1.4744762337003804585497614448636 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.447 y[1] (analytic) = 0 y[1] (numeric) = 1.4749897753000752346301942417463 absolute error = 1.4749897753000752346301942417463 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.448 y[1] (analytic) = 0 y[1] (numeric) = 1.4755032850493165418539058016596 absolute error = 1.4755032850493165418539058016596 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1590.7MB, alloc=4.4MB, time=164.40 x[1] = 2.449 y[1] (analytic) = 0 y[1] (numeric) = 1.4760167629952353430270436404361 absolute error = 1.4760167629952353430270436404361 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.45 y[1] (analytic) = 0 y[1] (numeric) = 1.476530209184934250022562736177 absolute error = 1.476530209184934250022562736177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.451 y[1] (analytic) = 0 y[1] (numeric) = 1.4770436236654875542114771916167 absolute error = 1.4770436236654875542114771916167 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.452 y[1] (analytic) = 0 y[1] (numeric) = 1.4775570064839412568520581767579 absolute error = 1.4775570064839412568520581767579 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.453 y[1] (analytic) = 0 y[1] (numeric) = 1.4780703576873130994370489835339 absolute error = 1.4780703576873130994370489835339 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.454 y[1] (analytic) = 0 y[1] (numeric) = 1.4785836773225925939989678775903 absolute error = 1.4785836773225925939989678775903 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1594.6MB, alloc=4.4MB, time=164.81 NO POLE x[1] = 2.455 y[1] (analytic) = 0 y[1] (numeric) = 1.4790969654367410533735692859705 absolute error = 1.4790969654367410533735692859705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.456 y[1] (analytic) = 0 y[1] (numeric) = 1.4796102220766916214215337135387 absolute error = 1.4796102220766916214215337135387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.457 y[1] (analytic) = 0 y[1] (numeric) = 1.4801234472893493032084566353818 absolute error = 1.4801234472893493032084566353818 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.458 y[1] (analytic) = 0 y[1] (numeric) = 1.4806366411215909951432064671958 absolute error = 1.4806366411215909951432064671958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.459 y[1] (analytic) = 0 y[1] (numeric) = 1.4811498036202655150747215707778 absolute error = 1.4811498036202655150747215707778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.46 y[1] (analytic) = 0 y[1] (numeric) = 1.4816629348321936323473161072193 absolute error = 1.4816629348321936323473161072193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1598.4MB, alloc=4.4MB, time=165.21 NO POLE x[1] = 2.461 y[1] (analytic) = 0 y[1] (numeric) = 1.4821760348041680978145644062186 absolute error = 1.4821760348041680978145644062186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.462 y[1] (analytic) = 0 y[1] (numeric) = 1.482689103582953673811833376109 absolute error = 1.482689103582953673811833376109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.463 y[1] (analytic) = 0 y[1] (numeric) = 1.4832021412152871640875323357244 absolute error = 1.4832021412152871640875323357244 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.464 y[1] (analytic) = 0 y[1] (numeric) = 1.4837151477478774436931495061041 absolute error = 1.4837151477478774436931495061041 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.465 y[1] (analytic) = 0 y[1] (numeric) = 1.4842281232274054888321442572619 absolute error = 1.4842281232274054888321442572619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1602.2MB, alloc=4.4MB, time=165.61 NO POLE x[1] = 2.466 y[1] (analytic) = 0 y[1] (numeric) = 1.4847410677005244066677640628209 absolute error = 1.4847410677005244066677640628209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.467 y[1] (analytic) = 0 y[1] (numeric) = 1.4852539812138594650898549732351 absolute error = 1.4852539812138594650898549732351 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.468 y[1] (analytic) = 0 y[1] (numeric) = 1.4857668638140081224407342765865 absolute error = 1.4857668638140081224407342765865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.469 y[1] (analytic) = 0 y[1] (numeric) = 1.4862797155475400572001938745584 absolute error = 1.4862797155475400572001938745584 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.47 y[1] (analytic) = 0 y[1] (numeric) = 1.4867925364609971976297027601412 absolute error = 1.4867925364609971976297027601412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.471 y[1] (analytic) = 0 y[1] (numeric) = 1.4873053266008937513758768429256 absolute error = 1.4873053266008937513758768429256 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1606.0MB, alloc=4.4MB, time=166.01 NO POLE x[1] = 2.472 y[1] (analytic) = 0 y[1] (numeric) = 1.4878180860137162350332842274807 absolute error = 1.4878180860137162350332842274807 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.473 y[1] (analytic) = 0 y[1] (numeric) = 1.4883308147459235036666539102948 absolute error = 1.4883308147459235036666539102948 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.474 y[1] (analytic) = 0 y[1] (numeric) = 1.4888435128439467802925557210802 absolute error = 1.4888435128439467802925557210802 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.475 y[1] (analytic) = 0 y[1] (numeric) = 1.489356180354189685320619194904 absolute error = 1.489356180354189685320619194904 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.476 y[1] (analytic) = 0 y[1] (numeric) = 1.4898688173230282659543589226078 absolute error = 1.4898688173230282659543589226078 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1609.8MB, alloc=4.4MB, time=166.41 NO POLE x[1] = 2.477 y[1] (analytic) = 0 y[1] (numeric) = 1.490381423796811025551673788314 absolute error = 1.490381423796811025551673788314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.478 y[1] (analytic) = 0 y[1] (numeric) = 1.490893999821858952945087364493 absolute error = 1.490893999821858952945087364493 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.479 y[1] (analytic) = 0 y[1] (numeric) = 1.4914065454444655517217965970702 absolute error = 1.4914065454444655517217965970702 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.48 y[1] (analytic) = 0 y[1] (numeric) = 1.4919190607108968694635957753994 absolute error = 1.4919190607108968694635957753994 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.481 y[1] (analytic) = 0 y[1] (numeric) = 1.4924315456673915269467426446014 absolute error = 1.4924315456673915269467426446014 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.482 y[1] (analytic) = 0 y[1] (numeric) = 1.4929440003601607473018333807792 absolute error = 1.4929440003601607473018333807792 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1613.6MB, alloc=4.4MB, time=166.81 NO POLE x[1] = 2.483 y[1] (analytic) = 0 y[1] (numeric) = 1.4934564248353883851337530129612 absolute error = 1.4934564248353883851337530129612 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.484 y[1] (analytic) = 0 y[1] (numeric) = 1.4939688191392309556017677392933 absolute error = 1.4939688191392309556017677392933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.485 y[1] (analytic) = 0 y[1] (numeric) = 1.4944811833178176634598254490061 absolute error = 1.4944811833178176634598254490061 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.486 y[1] (analytic) = 0 y[1] (numeric) = 1.4949935174172504320571306260098 absolute error = 1.4949935174172504320571306260098 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.487 y[1] (analytic) = 0 y[1] (numeric) = 1.4955058214836039322990596746298 absolute error = 1.4955058214836039322990596746298 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1617.4MB, alloc=4.4MB, time=167.21 x[1] = 2.488 y[1] (analytic) = 0 y[1] (numeric) = 1.496018095562925611568482572981 absolute error = 1.496018095562925611568482572981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.489 y[1] (analytic) = 0 y[1] (numeric) = 1.4965303397012357226075566247888 absolute error = 1.4965303397012357226075566247888 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.49 y[1] (analytic) = 0 y[1] (numeric) = 1.497042553944527352360057946103 absolute error = 1.497042553944527352360057946103 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.491 y[1] (analytic) = 0 y[1] (numeric) = 1.4975547383387664507743161893106 absolute error = 1.4975547383387664507743161893106 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.492 y[1] (analytic) = 0 y[1] (numeric) = 1.4980668929298918595668178731374 absolute error = 1.4980668929298918595668178731374 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.493 y[1] (analytic) = 0 y[1] (numeric) = 1.4985790177638153409465435539359 absolute error = 1.4985790177638153409465435539359 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1621.3MB, alloc=4.4MB, time=167.61 NO POLE x[1] = 2.494 y[1] (analytic) = 0 y[1] (numeric) = 1.4990911128864216063001039404845 absolute error = 1.4990911128864216063001039404845 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.495 y[1] (analytic) = 0 y[1] (numeric) = 1.499603178343568344837739921772 absolute error = 1.499603178343568344837739921772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.496 y[1] (analytic) = 0 y[1] (numeric) = 1.50011521418108625220025134481 absolute error = 1.50011521418108625220025134481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.497 y[1] (analytic) = 0 y[1] (numeric) = 1.5006272204447790590269192474037 absolute error = 1.5006272204447790590269192474037 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.498 y[1] (analytic) = 0 y[1] (numeric) = 1.5011391971804235594844861190174 absolute error = 1.5011391971804235594844861190174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.499 y[1] (analytic) = 0 y[1] (numeric) = 1.5016511444337696397572586313919 absolute error = 1.5016511444337696397572586313919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1625.1MB, alloc=4.4MB, time=168.01 NO POLE x[1] = 2.5 y[1] (analytic) = 0 y[1] (numeric) = 1.5021630622505403064983971494128 absolute error = 1.5021630622505403064983971494128 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.501 y[1] (analytic) = 0 y[1] (numeric) = 1.5026749506764317152424562018804 absolute error = 1.5026749506764317152424562018804 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.502 y[1] (analytic) = 0 y[1] (numeric) = 1.5031868097571131987792399613019 absolute error = 1.5031868097571131987792399613019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.503 y[1] (analytic) = 0 y[1] (numeric) = 1.5036986395382272954890366516091 absolute error = 1.5036986395382272954890366516091 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.504 y[1] (analytic) = 0 y[1] (numeric) = 1.5042104400653897776392956727984 absolute error = 1.5042104400653897776392956727984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1628.9MB, alloc=4.4MB, time=168.41 NO POLE x[1] = 2.505 y[1] (analytic) = 0 y[1] (numeric) = 1.5047222113841896796428111018991 absolute error = 1.5047222113841896796428111018991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.506 y[1] (analytic) = 0 y[1] (numeric) = 1.5052339535401893262774751003919 absolute error = 1.5052339535401893262774751003919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.507 y[1] (analytic) = 0 y[1] (numeric) = 1.5057456665789243608676646292285 absolute error = 1.5057456665789243608676646292285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.508 y[1] (analytic) = 0 y[1] (numeric) = 1.5062573505459037734273247439403 absolute error = 1.5062573505459037734273247439403 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.509 y[1] (analytic) = 0 y[1] (numeric) = 1.50676900548660992876481161397 absolute error = 1.50676900548660992876481161397 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.51 y[1] (analytic) = 0 y[1] (numeric) = 1.5072806314464985945495582823128 absolute error = 1.5072806314464985945495582823128 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1632.7MB, alloc=4.4MB, time=168.81 NO POLE x[1] = 2.511 y[1] (analytic) = 0 y[1] (numeric) = 1.5077922284709989693406260538148 absolute error = 1.5077922284709989693406260538148 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.512 y[1] (analytic) = 0 y[1] (numeric) = 1.5083037966055137105772042730404 absolute error = 1.5083037966055137105772042730404 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.513 y[1] (analytic) = 0 y[1] (numeric) = 1.5088153358954189625311211254929 absolute error = 1.5088153358954189625311211254929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.514 y[1] (analytic) = 0 y[1] (numeric) = 1.5093268463860643842214279691469 absolute error = 1.5093268463860643842214279691469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.515 y[1] (analytic) = 0 y[1] (numeric) = 1.5098383281227731772911195767285 absolute error = 1.5098383281227731772911195767285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1636.5MB, alloc=4.4MB, time=169.21 NO POLE x[1] = 2.516 y[1] (analytic) = 0 y[1] (numeric) = 1.5103497811508421138460525429616 absolute error = 1.5103497811508421138460525429616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.517 y[1] (analytic) = 0 y[1] (numeric) = 1.5108612055155415642561239850802 absolute error = 1.5108612055155415642561239850802 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.518 y[1] (analytic) = 0 y[1] (numeric) = 1.511372601262115524918772539289 absolute error = 1.511372601262115524918772539289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.519 y[1] (analytic) = 0 y[1] (numeric) = 1.5118839684357816459848635305392 absolute error = 1.5118839684357816459848635305392 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.52 y[1] (analytic) = 0 y[1] (numeric) = 1.5123953070817312590470200679679 absolute error = 1.5123953070817312590470200679679 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.521 y[1] (analytic) = 0 y[1] (numeric) = 1.5129066172451294047904616936303 absolute error = 1.5129066172451294047904616936303 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1640.3MB, alloc=4.4MB, time=169.60 NO POLE x[1] = 2.522 y[1] (analytic) = 0 y[1] (numeric) = 1.5134178989711148606064120877312 absolute error = 1.5134178989711148606064120877312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.523 y[1] (analytic) = 0 y[1] (numeric) = 1.5139291523048001681681372094391 absolute error = 1.5139291523048001681681372094391 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.524 y[1] (analytic) = 0 y[1] (numeric) = 1.5144403772912716609696751285341 absolute error = 1.5144403772912716609696751285341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.525 y[1] (analytic) = 0 y[1] (numeric) = 1.5149515739755894918273186796088 absolute error = 1.5149515739755894918273186796088 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.526 y[1] (analytic) = 0 y[1] (numeric) = 1.5154627424027876603439119472994 absolute error = 1.5154627424027876603439119472994 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.527 y[1] (analytic) = 0 y[1] (numeric) = 1.5159738826178740403360214680796 absolute error = 1.5159738826178740403360214680796 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1644.2MB, alloc=4.4MB, time=170.00 NO POLE x[1] = 2.528 y[1] (analytic) = 0 y[1] (numeric) = 1.5164849946658304072240429114931 absolute error = 1.5164849946658304072240429114931 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.529 y[1] (analytic) = 0 y[1] (numeric) = 1.5169960785916124653853038813407 absolute error = 1.5169960785916124653853038813407 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.53 y[1] (analytic) = 0 y[1] (numeric) = 1.5175071344401498754702233552647 absolute error = 1.5175071344401498754702233552647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.531 y[1] (analytic) = 0 y[1] (numeric) = 1.5180181622563462816815881593937 absolute error = 1.5180181622563462816815881593937 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.532 y[1] (analytic) = 0 y[1] (numeric) = 1.5185291620850793390170067532178 absolute error = 1.5185291620850793390170067532178 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1648.0MB, alloc=4.4MB, time=170.40 NO POLE x[1] = 2.533 y[1] (analytic) = 0 y[1] (numeric) = 1.5190401339712007404746004786621 absolute error = 1.5190401339712007404746004786621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.534 y[1] (analytic) = 0 y[1] (numeric) = 1.5195510779595362442219923064104 absolute error = 1.5195510779595362442219923064104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.535 y[1] (analytic) = 0 y[1] (numeric) = 1.5200619940948857007286529919023 absolute error = 1.5200619940948857007286529919023 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.536 y[1] (analytic) = 0 y[1] (numeric) = 1.5205728824220230798616644330865 absolute error = 1.5205728824220230798616644330865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.537 y[1] (analytic) = 0 y[1] (numeric) = 1.5210837429856964979449599019536 absolute error = 1.5210837429856964979449599019536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.538 y[1] (analytic) = 0 y[1] (numeric) = 1.5215945758306282447821007021026 absolute error = 1.5215945758306282447821007021026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1651.8MB, alloc=4.4MB, time=170.79 NO POLE x[1] = 2.539 y[1] (analytic) = 0 y[1] (numeric) = 1.5221053810015148106426486851048 absolute error = 1.5221053810015148106426486851048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.54 y[1] (analytic) = 0 y[1] (numeric) = 1.5226161585430269132121939392249 absolute error = 1.5226161585430269132121939392249 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.541 y[1] (analytic) = 0 y[1] (numeric) = 1.5231269084998095245060968451365 absolute error = 1.5231269084998095245060968451365 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.542 y[1] (analytic) = 0 y[1] (numeric) = 1.5236376309164818977470035746267 absolute error = 1.5236376309164818977470035746267 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.543 y[1] (analytic) = 0 y[1] (numeric) = 1.5241483258376375942061939899256 absolute error = 1.5241483258376375942061939899256 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1655.6MB, alloc=4.4MB, time=171.19 NO POLE x[1] = 2.544 y[1] (analytic) = 0 y[1] (numeric) = 1.5246589933078445100088207832152 absolute error = 1.5246589933078445100088207832152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.545 y[1] (analytic) = 0 y[1] (numeric) = 1.5251696333716449029030985780706 absolute error = 1.5251696333716449029030985780706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.546 y[1] (analytic) = 0 y[1] (numeric) = 1.5256802460735554189935015970645 absolute error = 1.5256802460735554189935015970645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.547 y[1] (analytic) = 0 y[1] (numeric) = 1.5261908314580671194380283825212 absolute error = 1.5261908314580671194380283825212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.548 y[1] (analytic) = 0 y[1] (numeric) = 1.5267013895696455071095919404363 absolute error = 1.5267013895696455071095919404363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.549 y[1] (analytic) = 0 y[1] (numeric) = 1.5272119204527305532215935608887 absolute error = 1.5272119204527305532215935608887 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1659.4MB, alloc=4.4MB, time=171.59 NO POLE x[1] = 2.55 y[1] (analytic) = 0 y[1] (numeric) = 1.5277224241517367239177384518542 absolute error = 1.5277224241517367239177384518542 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.551 y[1] (analytic) = 0 y[1] (numeric) = 1.5282329007110530068261512071868 absolute error = 1.5282329007110530068261512071868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.552 y[1] (analytic) = 0 y[1] (numeric) = 1.5287433501750429375778490136691 absolute error = 1.5287433501750429375778490136691 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.553 y[1] (analytic) = 0 y[1] (numeric) = 1.529253772588044626289630386435 absolute error = 1.529253772588044626289630386435 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.554 y[1] (analytic) = 0 y[1] (numeric) = 1.5297641679943707840114371067481 absolute error = 1.5297641679943707840114371067481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1663.2MB, alloc=4.4MB, time=171.99 x[1] = 2.555 y[1] (analytic) = 0 y[1] (numeric) = 1.5302745364383087491382469210684 absolute error = 1.5302745364383087491382469210684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.556 y[1] (analytic) = 0 y[1] (numeric) = 1.530784877964120513786554445559 absolute error = 1.530784877964120513786554445559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.557 y[1] (analytic) = 0 y[1] (numeric) = 1.5312951926160427501354976056769 absolute error = 1.5312951926160427501354976056769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.558 y[1] (analytic) = 0 y[1] (numeric) = 1.5318054804382868367326868262503 absolute error = 1.5318054804382868367326868262503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.559 y[1] (analytic) = 0 y[1] (numeric) = 1.5323157414750388847647940734764 absolute error = 1.5323157414750388847647940734764 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.56 y[1] (analytic) = 0 y[1] (numeric) = 1.5328259757704597642929587365668 absolute error = 1.5328259757704597642929587365668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1667.0MB, alloc=4.4MB, time=172.40 NO POLE x[1] = 2.561 y[1] (analytic) = 0 y[1] (numeric) = 1.5333361833686851304530672233362 absolute error = 1.5333361833686851304530672233362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.562 y[1] (analytic) = 0 y[1] (numeric) = 1.5338463643138254496209630308567 absolute error = 1.5338463643138254496209630308567 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.563 y[1] (analytic) = 0 y[1] (numeric) = 1.5343565186499660255426439393999 absolute error = 1.5343565186499660255426439393999 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.564 y[1] (analytic) = 0 y[1] (numeric) = 1.5348666464211670254295028652485 absolute error = 1.5348666464211670254295028652485 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.565 y[1] (analytic) = 0 y[1] (numeric) = 1.5353767476714635060186687955868 absolute error = 1.5353767476714635060186687955868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.566 y[1] (analytic) = 0 y[1] (numeric) = 1.5358868224448654395985041165681 absolute error = 1.5358868224448654395985041165681 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1670.9MB, alloc=4.4MB, time=172.81 NO POLE x[1] = 2.567 y[1] (analytic) = 0 y[1] (numeric) = 1.53639687078535773999931453381 absolute error = 1.53639687078535773999931453381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.568 y[1] (analytic) = 0 y[1] (numeric) = 1.5369068927369002885493276729848 absolute error = 1.5369068927369002885493276729848 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.569 y[1] (analytic) = 0 y[1] (numeric) = 1.5374168883434279599959963368465 absolute error = 1.5374168883434279599959963368465 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.57 y[1] (analytic) = 0 y[1] (numeric) = 1.537926857648850648392682283976 absolute error = 1.537926857648850648392682283976 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.571 y[1] (analytic) = 0 y[1] (numeric) = 1.5384368006970532929507762837203 absolute error = 1.5384368006970532929507762837203 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1674.7MB, alloc=4.4MB, time=173.22 NO POLE x[1] = 2.572 y[1] (analytic) = 0 y[1] (numeric) = 1.5389467175318959038573100912621 absolute error = 1.5389467175318959038573100912621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.573 y[1] (analytic) = 0 y[1] (numeric) = 1.5394566081972135880581158764685 absolute error = 1.5394566081972135880581158764685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.574 y[1] (analytic) = 0 y[1] (numeric) = 1.5399664727368165750065885301431 absolute error = 1.5399664727368165750065885301431 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.575 y[1] (analytic) = 0 y[1] (numeric) = 1.5404763111944902423781061615363 absolute error = 1.5404763111944902423781061615363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.576 y[1] (analytic) = 0 y[1] (numeric) = 1.5409861236139951417501639914556 absolute error = 1.5409861236139951417501639914556 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.577 y[1] (analytic) = 0 y[1] (numeric) = 1.5414959100390670242482767360618 absolute error = 1.5414959100390670242482767360618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1678.5MB, alloc=4.4MB, time=173.62 NO POLE x[1] = 2.578 y[1] (analytic) = 0 y[1] (numeric) = 1.5420056705134168661577044674356 absolute error = 1.5420056705134168661577044674356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.579 y[1] (analytic) = 0 y[1] (numeric) = 1.5425154050807308945010568282516 absolute error = 1.5425154050807308945010568282516 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.58 y[1] (analytic) = 0 y[1] (numeric) = 1.5430251137846706125818303694052 absolute error = 1.5430251137846706125818303694052 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.581 y[1] (analytic) = 0 y[1] (numeric) = 1.5435347966688728254939336711967 absolute error = 1.5435347966688728254939336711967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.582 y[1] (analytic) = 0 y[1] (numeric) = 1.5440444537769496655972548006907 absolute error = 1.5440444537769496655972548006907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1682.3MB, alloc=4.4MB, time=174.01 NO POLE x[1] = 2.583 y[1] (analytic) = 0 y[1] (numeric) = 1.5445540851524886179593255501326 absolute error = 1.5445540851524886179593255501326 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.584 y[1] (analytic) = 0 y[1] (numeric) = 1.5450636908390525457631367938206 absolute error = 1.5450636908390525457631367938206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.585 y[1] (analytic) = 0 y[1] (numeric) = 1.5455732708801797156811591935966 absolute error = 1.5455732708801797156811591935966 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.586 y[1] (analytic) = 0 y[1] (numeric) = 1.5460828253193838232156233761363 absolute error = 1.5460828253193838232156233761363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.587 y[1] (analytic) = 0 y[1] (numeric) = 1.5465923542001540180051135984832 absolute error = 1.5465923542001540180051135984832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.588 y[1] (analytic) = 0 y[1] (numeric) = 1.5471018575659549290975288117849 absolute error = 1.5471018575659549290975288117849 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1686.1MB, alloc=4.4MB, time=174.42 NO POLE x[1] = 2.589 y[1] (analytic) = 0 y[1] (numeric) = 1.5476113354602266901894649269507 absolute error = 1.5476113354602266901894649269507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.59 y[1] (analytic) = 0 y[1] (numeric) = 1.5481207879263849648320719799585 absolute error = 1.5481207879263849648320719799585 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.591 y[1] (analytic) = 0 y[1] (numeric) = 1.5486302150078209716034397887934 absolute error = 1.5486302150078209716034397887934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.592 y[1] (analytic) = 0 y[1] (numeric) = 1.5491396167479015092475655885003 absolute error = 1.5491396167479015092475655885003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.593 y[1] (analytic) = 0 y[1] (numeric) = 1.5496489931899689817799570255795 absolute error = 1.5496489931899689817799570255795 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.594 y[1] (analytic) = 0 y[1] (numeric) = 1.5501583443773414235599237879428 absolute error = 1.5501583443773414235599237879428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1689.9MB, alloc=4.4MB, time=174.82 WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.595 y[1] (analytic) = 0 y[1] (numeric) = 1.5506676703533125243296110418829 absolute error = 1.5506676703533125243296110418829 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.596 y[1] (analytic) = 0 y[1] (numeric) = 1.5511769711611516542198277429845 absolute error = 1.5511769711611516542198277429845 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.597 y[1] (analytic) = 0 y[1] (numeric) = 1.551686246844103888722722783626 absolute error = 1.551686246844103888722722783626 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.598 y[1] (analytic) = 0 y[1] (numeric) = 1.5521954974453900336313618356806 absolute error = 1.5521954974453900336313618356806 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.599 y[1] (analytic) = 0 y[1] (numeric) = 1.5527047230082066499462576432296 absolute error = 1.5527047230082066499462576432296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1693.7MB, alloc=4.4MB, time=175.22 NO POLE x[1] = 2.6 y[1] (analytic) = 0 y[1] (numeric) = 1.5532139235757260787489064165422 absolute error = 1.5532139235757260787489064165422 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.601 y[1] (analytic) = 0 y[1] (numeric) = 1.5537230991910964660423828752596 absolute error = 1.5537230991910964660423828752596 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.602 y[1] (analytic) = 0 y[1] (numeric) = 1.5542322498974417875590463856432 absolute error = 1.5542322498974417875590463856432 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.603 y[1] (analytic) = 0 y[1] (numeric) = 1.5547413757378618735354105339075 absolute error = 1.5547413757378618735354105339075 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.604 y[1] (analytic) = 0 y[1] (numeric) = 1.5552504767554324334542283750563 absolute error = 1.5552504767554324334542283750563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.605 y[1] (analytic) = 0 y[1] (numeric) = 1.5557595529932050807538454942776 absolute error = 1.5557595529932050807538454942776 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1697.6MB, alloc=4.4MB, time=175.63 NO POLE x[1] = 2.606 y[1] (analytic) = 0 y[1] (numeric) = 1.5562686044942073575048729158243 absolute error = 1.5562686044942073575048729158243 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.607 y[1] (analytic) = 0 y[1] (numeric) = 1.5567776313014427590542317924181 absolute error = 1.5567776313014427590542317924181 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.608 y[1] (analytic) = 0 y[1] (numeric) = 1.5572866334578907586366217065555 absolute error = 1.5572866334578907586366217065555 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.609 y[1] (analytic) = 0 y[1] (numeric) = 1.5577956110065068319534643136771 absolute error = 1.5577956110065068319534643136771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.61 y[1] (analytic) = 0 y[1] (numeric) = 1.5583045639902224817193739559714 absolute error = 1.5583045639902224817193739559714 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1701.4MB, alloc=4.4MB, time=176.03 NO POLE x[1] = 2.611 y[1] (analytic) = 0 y[1] (numeric) = 1.5588134924519452621762067746329 absolute error = 1.5588134924519452621762067746329 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.612 y[1] (analytic) = 0 y[1] (numeric) = 1.5593223964345588035747397476732 absolute error = 1.5593223964345588035747397476732 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.613 y[1] (analytic) = 0 y[1] (numeric) = 1.5598312759809228366240309798958 absolute error = 1.5598312759809228366240309798958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.614 y[1] (analytic) = 0 y[1] (numeric) = 1.5603401311338732169085124713891 absolute error = 1.5603401311338732169085124713891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.615 y[1] (analytic) = 0 y[1] (numeric) = 1.5608489619362219492728664908659 absolute error = 1.5608489619362219492728664908659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.616 y[1] (analytic) = 0 y[1] (numeric) = 1.5613577684307572121747365803839 absolute error = 1.5613577684307572121747365803839 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1705.2MB, alloc=4.4MB, time=176.42 NO POLE x[1] = 2.617 y[1] (analytic) = 0 y[1] (numeric) = 1.5618665506602433820053241184161 absolute error = 1.5618665506602433820053241184161 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.618 y[1] (analytic) = 0 y[1] (numeric) = 1.5623753086674210573779212689039 absolute error = 1.5623753086674210573779212689039 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.619 y[1] (analytic) = 0 y[1] (numeric) = 1.5628840424950070833844310448191 absolute error = 1.5628840424950070833844310448191 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.62 y[1] (analytic) = 0 y[1] (numeric) = 1.5633927521856945758199251158806 absolute error = 1.5633927521856945758199251158806 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.621 y[1] (analytic) = 0 y[1] (numeric) = 1.5639014377821529453752898914218 absolute error = 1.5639014377821529453752898914218 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1709.0MB, alloc=4.4MB, time=176.82 NO POLE x[1] = 2.622 y[1] (analytic) = 0 y[1] (numeric) = 1.5644100993270279217980113109772 absolute error = 1.5644100993270279217980113109772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.623 y[1] (analytic) = 0 y[1] (numeric) = 1.5649187368629415780211486769598 absolute error = 1.5649187368629415780211486769598 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.624 y[1] (analytic) = 0 y[1] (numeric) = 1.5654273504324923542605477658264 absolute error = 1.5654273504324923542605477658264 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.625 y[1] (analytic) = 0 y[1] (numeric) = 1.5659359400782550820803433563807 absolute error = 1.5659359400782550820803433563807 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.626 y[1] (analytic) = 0 y[1] (numeric) = 1.5664445058427810084268012163388 absolute error = 1.5664445058427810084268012163388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.627 y[1] (analytic) = 0 y[1] (numeric) = 1.5669530477685978196305494909833 absolute error = 1.5669530477685978196305494909833 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1712.8MB, alloc=4.4MB, time=177.24 NO POLE x[1] = 2.628 y[1] (analytic) = 0 y[1] (numeric) = 1.5674615658982096653772493406535 absolute error = 1.5674615658982096653772493406535 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.629 y[1] (analytic) = 0 y[1] (numeric) = 1.5679700602740971826467545769668 absolute error = 1.5679700602740971826467545769668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.63 y[1] (analytic) = 0 y[1] (numeric) = 1.5684785309387175196208099510328 absolute error = 1.5684785309387175196208099510328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.631 y[1] (analytic) = 0 y[1] (numeric) = 1.5689869779345043595593376505105 absolute error = 1.5689869779345043595593376505105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.632 y[1] (analytic) = 0 y[1] (numeric) = 1.5694954013038679446453614661713 absolute error = 1.5694954013038679446453614661713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.633 y[1] (analytic) = 0 y[1] (numeric) = 1.5700038010891950997986179926574 absolute error = 1.5700038010891950997986179926574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1716.6MB, alloc=4.4MB, time=177.63 NO POLE x[1] = 2.634 y[1] (analytic) = 0 y[1] (numeric) = 1.5705121773328492564579041323782 absolute error = 1.5705121773328492564579041323782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.635 y[1] (analytic) = 0 y[1] (numeric) = 1.5710205300771704763322100759542 absolute error = 1.5710205300771704763322100759542 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.636 y[1] (analytic) = 0 y[1] (numeric) = 1.5715288593644754751206868373073 absolute error = 1.5715288593644754751206868373073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.637 y[1] (analytic) = 0 y[1] (numeric) = 1.5720371652370576462014973263997 absolute error = 1.5720371652370576462014973263997 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.638 y[1] (analytic) = 0 y[1] (numeric) = 1.5725454477371870842895998477492 absolute error = 1.5725454477371870842895998477492 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1720.4MB, alloc=4.4MB, time=178.03 NO POLE x[1] = 2.639 y[1] (analytic) = 0 y[1] (numeric) = 1.5730537069071106090635128181852 absolute error = 1.5730537069071106090635128181852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.64 y[1] (analytic) = 0 y[1] (numeric) = 1.5735619427890517887611094028685 absolute error = 1.5735619427890517887611094028685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.641 y[1] (analytic) = 0 y[1] (numeric) = 1.5740701554252109637444906743676 absolute error = 1.5740701554252109637444906743676 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.642 y[1] (analytic) = 0 y[1] (numeric) = 1.5745783448577652700339858055717 absolute error = 1.5745783448577652700339858055717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.643 y[1] (analytic) = 0 y[1] (numeric) = 1.575086511128868662811327713421 absolute error = 1.575086511128868662811327713421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.644 y[1] (analytic) = 0 y[1] (numeric) = 1.5755946542806519398920524768505 absolute error = 1.5755946542806519398920524768505 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1724.3MB, alloc=4.4MB, time=178.43 NO POLE x[1] = 2.645 y[1] (analytic) = 0 y[1] (numeric) = 1.5761027743552227651671707589718 absolute error = 1.5761027743552227651671707589718 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.646 y[1] (analytic) = 0 y[1] (numeric) = 1.5766108713946656920141593703584 absolute error = 1.5766108713946656920141593703584 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.647 y[1] (analytic) = 0 y[1] (numeric) = 1.5771189454410421866773210173532 absolute error = 1.5771189454410421866773210173532 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.648 y[1] (analytic) = 0 y[1] (numeric) = 1.5776269965363906516175601865835 absolute error = 1.5776269965363906516175601865835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.649 y[1] (analytic) = 0 y[1] (numeric) = 1.5781350247227264488316230243424 absolute error = 1.5781350247227264488316230243424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1728.1MB, alloc=4.4MB, time=178.84 NO POLE x[1] = 2.65 y[1] (analytic) = 0 y[1] (numeric) = 1.5786430300420419231408489771855 absolute error = 1.5786430300420419231408489771855 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.651 y[1] (analytic) = 0 y[1] (numeric) = 1.5791510125363064254494818679863 absolute error = 1.5791510125363064254494818679863 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.652 y[1] (analytic) = 0 y[1] (numeric) = 1.5796589722474663359725879898012 absolute error = 1.5796589722474663359725879898012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.653 y[1] (analytic) = 0 y[1] (numeric) = 1.58016690921744508743362870821 absolute error = 1.58016690921744508743362870821 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.654 y[1] (analytic) = 0 y[1] (numeric) = 1.5806748234881431882317349713216 absolute error = 1.5806748234881431882317349713216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.655 y[1] (analytic) = 0 y[1] (numeric) = 1.5811827151014382455787310353659 absolute error = 1.5811827151014382455787310353659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1731.9MB, alloc=4.4MB, time=179.24 NO POLE x[1] = 2.656 y[1] (analytic) = 0 y[1] (numeric) = 1.5816905840991849886059546227317 absolute error = 1.5816905840991849886059546227317 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.657 y[1] (analytic) = 0 y[1] (numeric) = 1.5821984305232152914409206384563 absolute error = 1.5821984305232152914409206384563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.658 y[1] (analytic) = 0 y[1] (numeric) = 1.5827062544153381962538754805231 absolute error = 1.5827062544153381962538754805231 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.659 y[1] (analytic) = 0 y[1] (numeric) = 1.583214055817339936274288888883 absolute error = 1.583214055817339936274288888883 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.66 y[1] (analytic) = 0 y[1] (numeric) = 1.5837218347709839587773301878748 absolute error = 1.5837218347709839587773301878748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE memory used=1735.7MB, alloc=4.4MB, time=179.63 x[1] = 2.661 y[1] (analytic) = 0 y[1] (numeric) = 1.5842295913180109480403756866898 absolute error = 1.5842295913180109480403756866898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.662 y[1] (analytic) = 0 y[1] (numeric) = 1.584737325500138848269593912695 absolute error = 1.584737325500138848269593912695 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.663 y[1] (analytic) = 0 y[1] (numeric) = 1.5852450373590628864966552628048 absolute error = 1.5852450373590628864966552628048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.664 y[1] (analytic) = 0 y[1] (numeric) = 1.585752726936455595445612568668 absolute error = 1.585752726936455595445612568668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.665 y[1] (analytic) = 0 y[1] (numeric) = 1.5862603942739668363699989822174 absolute error = 1.5862603942739668363699989822174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.666 y[1] (analytic) = 0 y[1] (numeric) = 1.5867680394132238218601894991108 absolute error = 1.5867680394132238218601894991108 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. memory used=1739.5MB, alloc=4.4MB, time=180.04 NO POLE x[1] = 2.667 y[1] (analytic) = 0 y[1] (numeric) = 1.5872756623958311386210723487764 absolute error = 1.5872756623958311386210723487764 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.668 y[1] (analytic) = 0 y[1] (numeric) = 1.5877832632633707702200763911581 absolute error = 1.5877832632633707702200763911581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop WARNING: no analytic solution found for testing of expt of full series to full series power. NO POLE x[1] = 2.669 y[1] (analytic) = 0 y[1] (numeric) = 1.5882908420574021198056005718422 absolute error = 1.5882908420574021198056005718422 relative error = -1 % Correct digits = -1 h = 0.001 Finished! Maximum Time Reached before Solution Completed! diff ( y , x , 1 ) = expt(sin(0.1 * x) , sin(0.2 * x)); Iterations = 2569 Total Elapsed Time = 3 Minutes 0 Seconds Elapsed Time(since restart) = 3 Minutes 0 Seconds Expected Time Remaining = 2 Minutes 43 Seconds Optimized Time Remaining = 2 Minutes 43 Seconds Expected Total Time = 5 Minutes 43 Seconds Time to Timeout Unknown Percent Done = 52.45 % > quit memory used=1741.2MB, alloc=4.4MB, time=180.21