|\^/| 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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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.0000000000000000000000000000000001) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, array_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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 0.1*10^(-33) < relerr then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0D1, > array_const_0D2, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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 > rad_c := glob_large_float; > ord_no := glob_large_float; > elif > (((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) or ((omniabs(array_y_higher[1,m]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-1]) <=(glob_small_float)) or (omniabs(array_y_higher[1,m-2]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-3]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-4]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-5]) <= (glob_small_float)))) then # if number 2 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, array_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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 rad_c := glob_large_float; ord_no := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) or omniabs(array_y_higher[1, m]) <= glob_small_float or omniabs(array_y_higher[1, m - 1]) <= glob_small_float or omniabs(array_y_higher[1, m - 2]) <= glob_small_float or omniabs(array_y_higher[1, m - 3]) <= glob_small_float or omniabs(array_y_higher[1, m - 4]) <= glob_small_float or omniabs(array_y_higher[1, m - 5]) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0D1, > array_const_0D2, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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 add LINEAR - CONST $eq_no = 1 i = 1 > array_tmp2[1] := array_tmp1[1] + array_const_0D2[1]; > #emit pre mult CONST - LINEAR $eq_no = 1 i = 1 > array_tmp3[1] := array_const_0D2[1] * array_x[1]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 1 > array_tmp4[1] := array_tmp3[1] + array_const_0D3[1]; > omniout_str(ALWAYS,"WARNING: expt of linear to linear power seems to have NO accuracy - needs more work."); > #emit pre expt LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp5[1] := expt(array_tmp2[1] , array_tmp4[1] ) ; > array_tmp5_a1[1] := ln(array_tmp2[1] ) ; > array_tmp5_a1[2] := array_tmp2[2] / 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 * (1.0); > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_const_0D1[1] * array_x[2]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp3[2] := array_const_0D2[1] * array_x[2]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 2 > array_tmp4[2] := array_tmp3[2]; > #emit pre expt LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp5_a2[1] := (array_tmp5_a1[1] * array_tmp4[2] + array_tmp5_a1[2] * array_tmp4[1]) / glob_h; > array_tmp5[2] := array_tmp5[1] * array_tmp5_a2[1] * glob_h; > #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 * (2.0); > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre expt LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp5_a1[3] := -array_tmp5_a1[2] * array_tmp2[2] * 1 / array_tmp2[1] / 2; > array_tmp5_a2[2] := (array_tmp5_a1[2] * array_tmp4[2] + array_tmp5_a1[3] * array_tmp4[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 * (3.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre expt LINEAR - LINEAR $eq_no = 1 i = 4 > array_tmp5_a1[4] := -array_tmp5_a1[3] * array_tmp2[2] * 2 / array_tmp2[1] / 3; > array_tmp5_a2[3] := (array_tmp5_a1[3] * array_tmp4[2] + array_tmp5_a1[4] * array_tmp4[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 * (4.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre expt LINEAR - LINEAR $eq_no = 1 i = 5 > array_tmp5_a1[5] := -array_tmp5_a1[4] * array_tmp2[2] * 3 / array_tmp2[1] / 4; > array_tmp5_a2[4] := (array_tmp5_a1[4] * array_tmp4[2] + array_tmp5_a1[5] * array_tmp4[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 * (5.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit expt LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp5_a1[kkk] := -array_tmp5_a1[kkk-1] * array_tmp4[2] * (kkk-2) / array_tmp2[1] / (kkk - 1); > array_tmp5_a2[kkk-1] := (array_tmp5_a1[kkk-1] * array_tmp4[2] + array_tmp5_a1[kkk] * array_tmp4[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 - 1; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, array_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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] := array_tmp1[1] + array_const_0D2[1]; array_tmp3[1] := array_const_0D2[1]*array_x[1]; array_tmp4[1] := array_tmp3[1] + array_const_0D3[1]; omniout_str(ALWAYS, "WARNING: expt of linear to linear power seems to\ have NO accuracy - needs more work."); array_tmp5[1] := expt(array_tmp2[1], array_tmp4[1]); array_tmp5_a1[1] := ln(array_tmp2[1]); array_tmp5_a1[2] := array_tmp2[2]/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*1.0/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_tmp1[2]; array_tmp3[2] := array_const_0D2[1]*array_x[2]; array_tmp4[2] := array_tmp3[2]; array_tmp5_a2[1] := ( array_tmp5_a1[1]*array_tmp4[2] + array_tmp5_a1[2]*array_tmp4[1])/ glob_h; array_tmp5[2] := array_tmp5[1]*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*2.0/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp5_a1[3] := -1/2*array_tmp5_a1[2]*array_tmp2[2]/array_tmp2[1]; array_tmp5_a2[2] := 2* (array_tmp5_a1[2]*array_tmp4[2] + array_tmp5_a1[3]*array_tmp4[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*3.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp5_a1[4] := -2/3*array_tmp5_a1[3]*array_tmp2[2]/array_tmp2[1]; array_tmp5_a2[3] := 3* (array_tmp5_a1[3]*array_tmp4[2] + array_tmp5_a1[4]*array_tmp4[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*4.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp5_a1[5] := -3/4*array_tmp5_a1[4]*array_tmp2[2]/array_tmp2[1]; array_tmp5_a2[4] := 4* (array_tmp5_a1[4]*array_tmp4[2] + array_tmp5_a1[5]*array_tmp4[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*5.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp5_a1[kkk] := -array_tmp5_a1[kkk - 1]*array_tmp4[2]* (kkk - 2)/(array_tmp2[1]*(kkk - 1)); array_tmp5_a2[kkk - 1] := (array_tmp5_a1[kkk - 1]*array_tmp4[2] + array_tmp5_a1[kkk]*array_tmp4[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 - 1; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary end if; array_y_higher[adj3, term] := temporary end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc > # End Function number 12 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 0.; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 15 > # Begin Function number 16 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc > # End Function number 16 > # Begin Function number 17 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc > # End Function number 17 > # Begin Function number 18 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc > # End Function number 18 > # Begin Function number 19 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error > + 0.0000000000000000000000000000000001) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if 0.1*10^(-33) < rel_error then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(0.0 ) ; > end; exact_soln_y := proc(x) return 0. end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h,repeat_it; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_0D1, > array_const_0D2, > array_const_0D3, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5_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_lin_linpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3));"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.1;"); > omniout_str(ALWAYS,"x_end := 5.0 ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.05;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 1000000;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"glob_subiter_method:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(0.0 ) ;"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_tmp4:= 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[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5_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 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp5_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_const_0D3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D3[1] := 0.3; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.1; > x_end := 5.0 ; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.05; > glob_look_poles := true; > glob_max_iter := 1000000; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > glob_subiter_method:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > glob_abserr := expt(10.0 , (glob_log10_abserr)); > glob_relerr := expt(10.0 , (glob_log10_relerr)); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_log10normmin := -glob_large_float ; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 3 > tmp := omniabs(array_y_higher[1,1]); > log10norm := (log10(tmp)); > if (log10norm < glob_log10normmin) then # if number 4 > glob_log10normmin := log10norm; > fi;# end if 4 > fi;# end if 3; > display_alot(current_iter) > ; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > display_alot(current_iter); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y; > order_diff := 2; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3));"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2013-01-12T22:53:28-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"expt_lin_lin") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3));") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 156 ") > ; > logitem_str(html_log_file,"expt_lin_lin diffeq.mxt") > ; > logitem_str(html_log_file,"expt_lin_lin maple results") > ; > logitem_str(html_log_file,"Languages compared - single equations") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h, repeat_it; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_0D1, array_const_0D2, array_const_0D3, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5_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_lin_linpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3));"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.1;"); omniout_str(ALWAYS, "x_end := 5.0 ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.05;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 1000000;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "glob_subiter_method:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(0.0 ) ;"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_tmp4 := 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[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5_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 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_tmp4 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4[term] := 0.; term := term + 1 end do; array_tmp5_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_const_0D3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D3[term] := 0.; term := term + 1 end do; array_const_0D3[1] := 0.3; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := 0.1; x_end := 5.0; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_subiter_method := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); glob_abserr := expt(10.0, glob_log10_abserr); glob_relerr := expt(10.0, glob_log10_relerr); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_log10normmin := -glob_large_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); log10norm := log10(tmp); if log10norm < glob_log10normmin then glob_log10normmin := log10norm end if end if; display_alot(current_iter); glob_clock_sec := elapsed_time_seconds(); glob_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); display_alot(current_iter); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 2; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3));") ; omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2013-01-12T22:53:28-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "expt_lin_lin"); logitem_str(html_log_file, "diff ( y , x , 1 ) = expt((0.1 * \ x + 0.2) , (0.2 * x + 0.3));"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 156 "); logitem_str(html_log_file, "expt_lin_lin diffeq.mxt"); logitem_str(html_log_file, "expt_lin_lin maple results"); logitem_str(html_log_file, "Languages compared - single equations"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/expt_lin_linpostode.ode################# diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3)); ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.1; x_end := 5.0 ; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; glob_subiter_method:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(0.0 ) ; end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. 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 = 3.4344783345460587794430718079823e-118 max_value3 = 3.4344783345460587794430718079823e-118 value3 = 3.4344783345460587794430718079823e-118 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: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.1 y[1] (analytic) = 0 y[1] (numeric) = 0 absolute error = 0 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.101 y[1] (analytic) = 0 y[1] (numeric) = 0.000606841809035800478308188804473 absolute error = 0.000606841809035800478308188804473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.102 y[1] (analytic) = 0 y[1] (numeric) = 0.0012135867552055962587783939529934 absolute error = 0.0012135867552055962587783939529934 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.103 y[1] (analytic) = 0 y[1] (numeric) = 0.0018202349254417860958030644596985 absolute error = 0.0018202349254417860958030644596985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.104 y[1] (analytic) = 0 y[1] (numeric) = 0.0024267864065995844121050782516994 absolute error = 0.0024267864065995844121050782516994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.105 y[1] (analytic) = 0 y[1] (numeric) = 0.0030332412854571283887001438601202 absolute error = 0.0030332412854571283887001438601202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=3.8MB, alloc=2.8MB, time=0.32 x[1] = 0.106 y[1] (analytic) = 0 y[1] (numeric) = 0.0036395996487155848656488098775193 absolute error = 0.0036395996487155848656488098775193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.107 y[1] (analytic) = 0 y[1] (numeric) = 0.0042458615829992570540188513397852 absolute error = 0.0042458615829992570540188513397852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.108 y[1] (analytic) = 0 y[1] (numeric) = 0.004852027174855691059477671871134 absolute error = 0.004852027174855691059477671871134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.109 y[1] (analytic) = 0 y[1] (numeric) = 0.0054580965107557822179332336842806 absolute error = 0.0054580965107557822179332336842806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.11 y[1] (analytic) = 0 y[1] (numeric) = 0.0060640696770938812436409043411996 absolute error = 0.0060640696770938812436409043411996 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.111 y[1] (analytic) = 0 y[1] (numeric) = 0.0066699467601879001901924895401886 absolute error = 0.0066699467601879001901924895401886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.112 y[1] (analytic) = 0 y[1] (numeric) = 0.007275727846279418224802605089294 absolute error = 0.007275727846279418224802605089294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.113 y[1] (analytic) = 0 y[1] (numeric) = 0.0078814130215337872163064286417126 absolute error = 0.0078814130215337872163064286417126 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.114 y[1] (analytic) = 0 y[1] (numeric) = 0.0084870023720402371372817626927496 absolute error = 0.0084870023720402371372817626927496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.115 y[1] (analytic) = 0 y[1] (numeric) = 0.0090924959838119812807072347575559 absolute error = 0.0090924959838119812807072347575559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.116 y[1] (analytic) = 0 y[1] (numeric) = 0.0096978939427863212915673585514912 absolute error = 0.0096978939427863212915673585514912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.117 y[1] (analytic) = 0 y[1] (numeric) = 0.01030319633482475201381408136794 absolute error = 0.01030319633482475201381408136794 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=7.6MB, alloc=3.9MB, time=0.67 x[1] = 0.118 y[1] (analytic) = 0 y[1] (numeric) = 0.010908403245713066153093347679151 absolute error = 0.010908403245713066153093347679151 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.119 y[1] (analytic) = 0 y[1] (numeric) = 0.011513514761161458755644117261645 absolute error = 0.011513514761161458755644117261645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.12 y[1] (analytic) = 0 y[1] (numeric) = 0.012118530966804631503776187856478 absolute error = 0.012118530966804631503776187856478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.121 y[1] (analytic) = 0 y[1] (numeric) = 0.012723451948201896828332087503697 absolute error = 0.012723451948201896828332087503697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.122 y[1] (analytic) = 0 y[1] (numeric) = 0.013328277790837281838537220227338 absolute error = 0.013328277790837281838537220227338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.123 y[1] (analytic) = 0 y[1] (numeric) = 0.013933008580119632069641370679931 absolute error = 0.013933008580119632069641370679931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.124 y[1] (analytic) = 0 y[1] (numeric) = 0.014537644401382715048753598671452 absolute error = 0.014537644401382715048753598671452 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.125 y[1] (analytic) = 0 y[1] (numeric) = 0.015142185339885323679271483194742 absolute error = 0.015142185339885323679271483194742 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.126 y[1] (analytic) = 0 y[1] (numeric) = 0.015746631480811379444304607605421 absolute error = 0.015746631480811379444304607605421 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.127 y[1] (analytic) = 0 y[1] (numeric) = 0.016350982909270035429491113007174 absolute error = 0.016350982909270035429491113007174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.128 y[1] (analytic) = 0 y[1] (numeric) = 0.016955239710295779165605085620833 absolute error = 0.016955239710295779165605085620833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.129 y[1] (analytic) = 0 y[1] (numeric) = 0.017559401968848535291351485965952 absolute error = 0.017559401968848535291351485965952 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.13 y[1] (analytic) = 0 y[1] (numeric) = 0.018163469769813768036744273044579 absolute error = 0.018163469769813768036744273044579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=11.4MB, alloc=4.1MB, time=1.04 x[1] = 0.131 y[1] (analytic) = 0 y[1] (numeric) = 0.018767443198002583527462325376694 absolute error = 0.018767443198002583527462325376694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.132 y[1] (analytic) = 0 y[1] (numeric) = 0.019371322338151831910576712683524 absolute error = 0.019371322338151831910576712683524 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.133 y[1] (analytic) = 0 y[1] (numeric) = 0.019975107274924209302041827236691 absolute error = 0.019975107274924209302041827236691 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.134 y[1] (analytic) = 0 y[1] (numeric) = 0.020578798092908359556341842376269 absolute error = 0.020578798092908359556341842376269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.135 y[1] (analytic) = 0 y[1] (numeric) = 0.021182394876618975858682927437451 absolute error = 0.021182394876618975858682927437451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.136 y[1] (analytic) = 0 y[1] (numeric) = 0.021785897710496902140120613302038 absolute error = 0.021785897710496902140120613302038 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.137 y[1] (analytic) = 0 y[1] (numeric) = 0.02238930667890923431601067099572 absolute error = 0.02238930667890923431601067099572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.138 y[1] (analytic) = 0 y[1] (numeric) = 0.022992621866149421348170837173487 absolute error = 0.022992621866149421348170837173487 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.139 y[1] (analytic) = 0 y[1] (numeric) = 0.023595843356437366131139694961977 absolute error = 0.023595843356437366131139694961977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.14 y[1] (analytic) = 0 y[1] (numeric) = 0.024198971233919526202917996447621 absolute error = 0.024198971233919526202917996447621 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.141 y[1] (analytic) = 0 y[1] (numeric) = 0.024802005582669014280576694101649 absolute error = 0.024802005582669014280576694101649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.142 y[1] (analytic) = 0 y[1] (numeric) = 0.025404946486685698621114932605913 absolute error = 0.025404946486685698621114932605913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.143 y[1] (analytic) = 0 y[1] (numeric) = 0.026007794029896303207950239875801 absolute error = 0.026007794029896303207950239875801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=15.2MB, alloc=4.2MB, time=1.42 x[1] = 0.144 y[1] (analytic) = 0 y[1] (numeric) = 0.026610548296154507763422146556824 absolute error = 0.026610548296154507763422146556824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.145 y[1] (analytic) = 0 y[1] (numeric) = 0.027213209369241047587689456888611 absolute error = 0.027213209369241047587689456888611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.146 y[1] (analytic) = 0 y[1] (numeric) = 0.027815777332863813224400390572704 absolute error = 0.027815777332863813224400390572704 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.147 y[1] (analytic) = 0 y[1] (numeric) = 0.028418252270657949953513815137644 absolute error = 0.028418252270657949953513815137644 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.148 y[1] (analytic) = 0 y[1] (numeric) = 0.029020634266185957111648791255135 absolute error = 0.029020634266185957111648791255135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.149 y[1] (analytic) = 0 y[1] (numeric) = 0.029622923402937787240338659513574 absolute error = 0.029622923402937787240338659513574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.15 y[1] (analytic) = 0 y[1] (numeric) = 0.030225119764330945062564906288849 absolute error = 0.030225119764330945062564906288849 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.151 y[1] (analytic) = 0 y[1] (numeric) = 0.030827223433710586287945058556027 absolute error = 0.030827223433710586287945058556027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.152 y[1] (analytic) = 0 y[1] (numeric) = 0.03142923449434961624694787274847 absolute error = 0.03142923449434961624694787274847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.153 y[1] (analytic) = 0 y[1] (numeric) = 0.03203115302944878835450810108209 absolute error = 0.03203115302944878835450810108209 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.154 y[1] (analytic) = 0 y[1] (numeric) = 0.032632979122136802403412140111013 absolute error = 0.032632979122136802403412140111013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.155 y[1] (analytic) = 0 y[1] (numeric) = 0.033234712855470402687824890656071 absolute error = 0.033234712855470402687824890656071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.156 y[1] (analytic) = 0 y[1] (numeric) = 0.033836354312434475957327185638484 absolute error = 0.033836354312434475957327185638484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=19.0MB, alloc=4.3MB, time=1.80 x[1] = 0.157 y[1] (analytic) = 0 y[1] (numeric) = 0.034437903575942149201832172747106 absolute error = 0.034437903575942149201832172747106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.158 y[1] (analytic) = 0 y[1] (numeric) = 0.035039360728834887267748072257989 absolute error = 0.035039360728834887267748072257989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.159 y[1] (analytic) = 0 y[1] (numeric) = 0.035640725853882590305753766699131 absolute error = 0.035640725853882590305753766699131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.16 y[1] (analytic) = 0 y[1] (numeric) = 0.03624199903378369105055271840051 absolute error = 0.03624199903378369105055271840051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.161 y[1] (analytic) = 0 y[1] (numeric) = 0.036843180351165251932969753279302 absolute error = 0.036843180351165251932969753279302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.162 y[1] (analytic) = 0 y[1] (numeric) = 0.037444269888583062024754294472001 absolute error = 0.037444269888583062024754294472001 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.163 y[1] (analytic) = 0 y[1] (numeric) = 0.038045267728521733816452677628579 absolute error = 0.038045267728521733816452677628579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.164 y[1] (analytic) = 0 y[1] (numeric) = 0.038646173953394799828711230818328 absolute error = 0.038646173953394799828711230818328 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.165 y[1] (analytic) = 0 y[1] (numeric) = 0.039246988645544809057370856052293 absolute error = 0.039246988645544809057370856052293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.166 y[1] (analytic) = 0 y[1] (numeric) = 0.039847711887243423252712906392855 absolute error = 0.039847711887243423252712906392855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.167 y[1] (analytic) = 0 y[1] (numeric) = 0.040448343760691513033215212486726 absolute error = 0.040448343760691513033215212486726 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.168 y[1] (analytic) = 0 y[1] (numeric) = 0.041048884348019253834176175113139 absolute error = 0.041048884348019253834176175113139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.169 y[1] (analytic) = 0 y[1] (numeric) = 0.04164933373128622169156390597412 absolute error = 0.04164933373128622169156390597412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=22.8MB, alloc=4.3MB, time=2.18 x[1] = 0.17 y[1] (analytic) = 0 y[1] (numeric) = 0.042249691992481488861446467458206 absolute error = 0.042249691992481488861446467458206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.171 y[1] (analytic) = 0 y[1] (numeric) = 0.042849959213523719275358333472701 absolute error = 0.042849959213523719275358333472701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.172 y[1] (analytic) = 0 y[1] (numeric) = 0.043450135476261263831957267652434 absolute error = 0.043450135476261263831957267652434 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.173 y[1] (analytic) = 0 y[1] (numeric) = 0.044050220862472255525324892304923 absolute error = 0.044050220862472255525324892304923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.174 y[1] (analytic) = 0 y[1] (numeric) = 0.044650215453864704410263301332841 absolute error = 0.044650215453864704410263301332841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.175 y[1] (analytic) = 0 y[1] (numeric) = 0.045250119332076592404939153074734 absolute error = 0.045250119332076592404939153074734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.176 y[1] (analytic) = 0 y[1] (numeric) = 0.045849932578675967931225764514117 absolute error = 0.045849932578675967931225764514117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.177 y[1] (analytic) = 0 y[1] (numeric) = 0.046449655275161040393092816615466 absolute error = 0.046449655275161040393092816615466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.178 y[1] (analytic) = 0 y[1] (numeric) = 0.047049287502960274493392371643376 absolute error = 0.047049287502960274493392371643376 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.179 y[1] (analytic) = 0 y[1] (numeric) = 0.047648829343432484389388997198402 absolute error = 0.047648829343432484389388997198402 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.18 y[1] (analytic) = 0 y[1] (numeric) = 0.048248280877866927687380888350123 absolute error = 0.048248280877866927687380888350123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.181 y[1] (analytic) = 0 y[1] (numeric) = 0.048847642187483399276757978654951 absolute error = 0.048847642187483399276757978654951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.182 y[1] (analytic) = 0 y[1] (numeric) = 0.049446913353432325003842133003494 absolute error = 0.049446913353432325003842133003494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=26.7MB, alloc=4.3MB, time=2.55 x[1] = 0.183 y[1] (analytic) = 0 y[1] (numeric) = 0.050046094456794855185853620140149 absolute error = 0.050046094456794855185853620140149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.184 y[1] (analytic) = 0 y[1] (numeric) = 0.050645185578582957965347170326488 absolute error = 0.050645185578582957965347170326488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.185 y[1] (analytic) = 0 y[1] (numeric) = 0.051244186799739512505460033970232 absolute error = 0.051244186799739512505460033970232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.186 y[1] (analytic) = 0 y[1] (numeric) = 0.0518430982011384020263135701037 absolute error = 0.0518430982011384020263135701037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.187 y[1] (analytic) = 0 y[1] (numeric) = 0.052441919863584606682909009360009 absolute error = 0.052441919863584606682909009360009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.188 y[1] (analytic) = 0 y[1] (numeric) = 0.053040651867814296284857154552527 absolute error = 0.053040651867814296284857154552527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.189 y[1] (analytic) = 0 y[1] (numeric) = 0.053639294294494922858280903103697 absolute error = 0.053639294294494922858280903103697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.19 y[1] (analytic) = 0 y[1] (numeric) = 0.054237847224225313050228599383971 absolute error = 0.054237847224225313050228599383971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.191 y[1] (analytic) = 0 y[1] (numeric) = 0.054836310737535760375935351500796 absolute error = 0.054836310737535760375935351500796 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.192 y[1] (analytic) = 0 y[1] (numeric) = 0.055434684914888117309268576212131 absolute error = 0.055434684914888117309268576212131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.193 y[1] (analytic) = 0 y[1] (numeric) = 0.056032969836675887216693167419472 absolute error = 0.056032969836675887216693167419472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.194 y[1] (analytic) = 0 y[1] (numeric) = 0.056631165583224316135090818112635 absolute error = 0.056631165583224316135090818112635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.195 y[1] (analytic) = 0 y[1] (numeric) = 0.057229272234790484393767162683303 absolute error = 0.057229272234790484393767162683303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.196 y[1] (analytic) = 0 y[1] (numeric) = 0.05782728987156339808097954618748 absolute error = 0.05782728987156339808097954618748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=30.5MB, alloc=4.3MB, time=2.94 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.197 y[1] (analytic) = 0 y[1] (numeric) = 0.058425218573664080355317369409288 absolute error = 0.058425218573664080355317369409288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.198 y[1] (analytic) = 0 y[1] (numeric) = 0.059023058421145662602266103450942 absolute error = 0.059023058421145662602266103450942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.199 y[1] (analytic) = 0 y[1] (numeric) = 0.059620809493993475436285215037134 absolute error = 0.059620809493993475436285215037134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.2 y[1] (analytic) = 0 y[1] (numeric) = 0.060218471872125139548729393767427 absolute error = 0.060218471872125139548729393767427 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.201 y[1] (analytic) = 0 y[1] (numeric) = 0.060816045635390656401941625168582 absolute error = 0.060816045635390656401941625168582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.202 y[1] (analytic) = 0 y[1] (numeric) = 0.061413530863572498769845808581086 absolute error = 0.061413530863572498769845808581086 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.203 y[1] (analytic) = 0 y[1] (numeric) = 0.062010927636385701125365776651549 absolute error = 0.062010927636385701125365776651549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.204 y[1] (analytic) = 0 y[1] (numeric) = 0.062608236033477949874996733486184 absolute error = 0.062608236033477949874996733486184 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.205 y[1] (analytic) = 0 y[1] (numeric) = 0.063205456134429673440854291341493 absolute error = 0.063205456134429673440854291341493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.206 y[1] (analytic) = 0 y[1] (numeric) = 0.063802588018754132190525451077618 absolute error = 0.063802588018754132190525451077618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.207 y[1] (analytic) = 0 y[1] (numeric) = 0.064399631765897508215045039468868 absolute error = 0.064399631765897508215045039468868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.208 y[1] (analytic) = 0 y[1] (numeric) = 0.064996587455238994955320286845925 absolute error = 0.064996587455238994955320286845925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.209 y[1] (analytic) = 0 y[1] (numeric) = 0.065593455166090886677325401426405 absolute error = 0.065593455166090886677325401426405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=34.3MB, alloc=4.3MB, time=3.31 x[1] = 0.21 y[1] (analytic) = 0 y[1] (numeric) = 0.066190234977698667796387172066177 absolute error = 0.066190234977698667796387172066177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.211 y[1] (analytic) = 0 y[1] (numeric) = 0.066786926969241102050881809024405 absolute error = 0.066786926969241102050881809024405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.212 y[1] (analytic) = 0 y[1] (numeric) = 0.067383531219830321525662412672113 absolute error = 0.067383531219830321525662412672113 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.213 y[1] (analytic) = 0 y[1] (numeric) = 0.06798004780851191552553564287855 absolute error = 0.06798004780851191552553564287855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.214 y[1] (analytic) = 0 y[1] (numeric) = 0.068576476814265019299105347073215 absolute error = 0.068576476814265019299105347073215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.215 y[1] (analytic) = 0 y[1] (numeric) = 0.06917281831600240261330009269559 absolute error = 0.06917281831600240261330009269559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.216 y[1] (analytic) = 0 y[1] (numeric) = 0.069769072392570558178900739900889 absolute error = 0.069769072392570558178900739900889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.217 y[1] (analytic) = 0 y[1] (numeric) = 0.070365239122749789927383382980076 absolute error = 0.070365239122749789927383382980076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.218 y[1] (analytic) = 0 y[1] (numeric) = 0.070961318585254301139392183967537 absolute error = 0.070961318585254301139392183967537 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.219 y[1] (analytic) = 0 y[1] (numeric) = 0.071557310858732282425155819341803 absolute error = 0.071557310858732282425155819341803 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.22 y[1] (analytic) = 0 y[1] (numeric) = 0.0721532160217659995571604605652 absolute error = 0.0721532160217659995571604605652 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.221 y[1] (analytic) = 0 y[1] (numeric) = 0.07274903415287188115539141144895 absolute error = 0.07274903415287188115539141144895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.222 y[1] (analytic) = 0 y[1] (numeric) = 0.073344765330500606225454729962794 absolute error = 0.073344765330500606225454729962794 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=38.1MB, alloc=4.3MB, time=3.69 x[1] = 0.223 y[1] (analytic) = 0 y[1] (numeric) = 0.073940409633037191549889369124334 absolute error = 0.073940409633037191549889369124334 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.224 y[1] (analytic) = 0 y[1] (numeric) = 0.074535967138801078932979580994879 absolute error = 0.074535967138801078932979580994879 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.225 y[1] (analytic) = 0 y[1] (numeric) = 0.075131437926046222299376539567312 absolute error = 0.075131437926046222299376539567312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.226 y[1] (analytic) = 0 y[1] (numeric) = 0.075726822072961174646837352449322 absolute error = 0.075726822072961174646837352449322 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.227 y[1] (analytic) = 0 y[1] (numeric) = 0.076322119657669174853388847714059 absolute error = 0.076322119657669174853388847714059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.228 y[1] (analytic) = 0 y[1] (numeric) = 0.076917330758228234339222741101841 absolute error = 0.076917330758228234339222741101841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.229 y[1] (analytic) = 0 y[1] (numeric) = 0.077512455452631223583628009902833 absolute error = 0.077512455452631223583628009902833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.23 y[1] (analytic) = 0 y[1] (numeric) = 0.078107493818805958497265523323669 absolute error = 0.078107493818805958497265523323669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.231 y[1] (analytic) = 0 y[1] (numeric) = 0.07870244593461528665008920493274 absolute error = 0.07870244593461528665008920493274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.232 y[1] (analytic) = 0 y[1] (numeric) = 0.079297311877857173355217230881393 absolute error = 0.079297311877857173355217230881393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.233 y[1] (analytic) = 0 y[1] (numeric) = 0.07989209172626478760905599800361 absolute error = 0.07989209172626478760905599800361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.234 y[1] (analytic) = 0 y[1] (numeric) = 0.080486785557506587887978828596966 absolute error = 0.080486785557506587887978828596966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.235 y[1] (analytic) = 0 y[1] (numeric) = 0.081081393449186407801860613674925 absolute error = 0.081081393449186407801860613674925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=41.9MB, alloc=4.3MB, time=4.06 x[1] = 0.236 y[1] (analytic) = 0 y[1] (numeric) = 0.081675915478843541604768833746973 absolute error = 0.081675915478843541604768833746973 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.237 y[1] (analytic) = 0 y[1] (numeric) = 0.082270351723952829563110635720883 absolute error = 0.082270351723952829563110635720883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.238 y[1] (analytic) = 0 y[1] (numeric) = 0.082864702261924743181534886322789 absolute error = 0.082864702261924743181534886322789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.239 y[1] (analytic) = 0 y[1] (numeric) = 0.083458967170105470286887366487925 absolute error = 0.083458967170105470286887366487925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.24 y[1] (analytic) = 0 y[1] (numeric) = 0.084053146525776999970516517480193 absolute error = 0.084053146525776999970516517480193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.241 y[1] (analytic) = 0 y[1] (numeric) = 0.084647240406157207389226398044382 absolute error = 0.084647240406157207389226398044382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.242 y[1] (analytic) = 0 y[1] (numeric) = 0.0852412488883999384251727626733 absolute error = 0.0852412488883999384251727626733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.243 y[1] (analytic) = 0 y[1] (numeric) = 0.085835172049595094204997424075553 absolute error = 0.085835172049595094204997424075553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.244 y[1] (analytic) = 0 y[1] (numeric) = 0.086429009966768715478495318150733 absolute error = 0.086429009966768715478495318150733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.245 y[1] (analytic) = 0 y[1] (numeric) = 0.087022762716883066857107947209637 absolute error = 0.087022762716883066857107947209637 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.246 y[1] (analytic) = 0 y[1] (numeric) = 0.087616430376836720912536136810433 absolute error = 0.087616430376836720912536136810433 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.247 y[1] (analytic) = 0 y[1] (numeric) = 0.088210013023464642135764303409748 absolute error = 0.088210013023464642135764303409748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.248 y[1] (analytic) = 0 y[1] (numeric) = 0.088803510733538270756787694043138 absolute error = 0.088803510733538270756787694043138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=45.7MB, alloc=4.3MB, time=4.44 x[1] = 0.249 y[1] (analytic) = 0 y[1] (numeric) = 0.089396923583765606425333325444703 absolute error = 0.089396923583765606425333325444703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.25 y[1] (analytic) = 0 y[1] (numeric) = 0.089990251650791291752864618383418 absolute error = 0.089990251650791291752864618383418 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.251 y[1] (analytic) = 0 y[1] (numeric) = 0.090583495011196695716158993526582 absolute error = 0.090583495011196695716158993526582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.252 y[1] (analytic) = 0 y[1] (numeric) = 0.09117665374149999692274696783132 absolute error = 0.09117665374149999692274696783132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.253 y[1] (analytic) = 0 y[1] (numeric) = 0.091769727918156266738500565305905 absolute error = 0.091769727918156266738500565305905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.254 y[1] (analytic) = 0 y[1] (numeric) = 0.09236271761755755227765813296653 absolute error = 0.09236271761755755227765813296653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.255 y[1] (analytic) = 0 y[1] (numeric) = 0.092955622916032959255571931934749 absolute error = 0.092955622916032959255571931934749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.256 y[1] (analytic) = 0 y[1] (numeric) = 0.093548443889848734704464154868835 absolute error = 0.093548443889848734704464154868835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.257 y[1] (analytic) = 0 y[1] (numeric) = 0.094141180615208349552476304291565 absolute error = 0.094141180615208349552476304291565 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.258 y[1] (analytic) = 0 y[1] (numeric) = 0.094733833168252581066296151860227 absolute error = 0.094733833168252581066296151860227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.259 y[1] (analytic) = 0 y[1] (numeric) = 0.095326401625059595157645786214765 absolute error = 0.095326401625059595157645786214765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.26 y[1] (analytic) = 0 y[1] (numeric) = 0.095918886061645028553913546729778 absolute error = 0.095918886061645028553913546729778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.261 y[1] (analytic) = 0 y[1] (numeric) = 0.096511286553962070833211932278463 absolute error = 0.096511286553962070833211932278463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=49.5MB, alloc=4.4MB, time=4.82 x[1] = 0.262 y[1] (analytic) = 0 y[1] (numeric) = 0.097103603177901546324142867984434 absolute error = 0.097103603177901546324142867984434 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.263 y[1] (analytic) = 0 y[1] (numeric) = 0.097695836009291995870551008883589 absolute error = 0.097695836009291995870551008883589 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.264 y[1] (analytic) = 0 y[1] (numeric) = 0.098287985123899758461545057435778 absolute error = 0.098287985123899758461545057435778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.265 y[1] (analytic) = 0 y[1] (numeric) = 0.098880050597429052727066371907987 absolute error = 0.098880050597429052727066371907987 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.266 y[1] (analytic) = 0 y[1] (numeric) = 0.099472032505522058299283444790014 absolute error = 0.099472032505522058299283444790014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.267 y[1] (analytic) = 0 y[1] (numeric) = 0.10006393092375899704009013459332 absolute error = 0.10006393092375899704009013459332 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.268 y[1] (analytic) = 0 y[1] (numeric) = 0.10065574592765821413498484061688 absolute error = 0.10065574592765821413498484061688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.269 y[1] (analytic) = 0 y[1] (numeric) = 0.10124747759267625905360711853351 absolute error = 0.10124747759267625905360711853351 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.27 y[1] (analytic) = 0 y[1] (numeric) = 0.10183912599420796637720754494957 absolute error = 0.10183912599420796637720754494957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.271 y[1] (analytic) = 0 y[1] (numeric) = 0.10243069120758653649332595141309 absolute error = 0.10243069120758653649332595141309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.272 y[1] (analytic) = 0 y[1] (numeric) = 0.10302217330808361615795246268345 absolute error = 0.10302217330808361615795246268345 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.273 y[1] (analytic) = 0 y[1] (numeric) = 0.10361357237090937892544509042324 absolute error = 0.10361357237090937892544509042324 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.274 y[1] (analytic) = 0 y[1] (numeric) = 0.10420488847121260544647695182254 absolute error = 0.10420488847121260544647695182254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.275 y[1] (analytic) = 0 y[1] (numeric) = 0.10479612168408076363428550301125 absolute error = 0.10479612168408076363428550301125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=53.4MB, alloc=4.4MB, time=5.20 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.276 y[1] (analytic) = 0 y[1] (numeric) = 0.1053872720845400886994954994495 absolute error = 0.1053872720845400886994954994495 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.277 y[1] (analytic) = 0 y[1] (numeric) = 0.10597833974755566305378671980273 absolute error = 0.10597833974755566305378671980273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.278 y[1] (analytic) = 0 y[1] (numeric) = 0.10656932474803149608267681610002 absolute error = 0.10656932474803149608267681610002 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.279 y[1] (analytic) = 0 y[1] (numeric) = 0.10716022716081060378768898123535 absolute error = 0.10716022716081060378768898123535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.28 y[1] (analytic) = 0 y[1] (numeric) = 0.10775104706067508829817345509473 absolute error = 0.10775104706067508829817345509473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.281 y[1] (analytic) = 0 y[1] (numeric) = 0.10834178452234621725305122277119 absolute error = 0.10834178452234621725305122277119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.282 y[1] (analytic) = 0 y[1] (numeric) = 0.10893243962048450305274759245751 absolute error = 0.10893243962048450305274759245751 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.283 y[1] (analytic) = 0 y[1] (numeric) = 0.10952301242968978198158267667748 absolute error = 0.10952301242968978198158267667748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.284 y[1] (analytic) = 0 y[1] (numeric) = 0.11011350302450129320088513852293 absolute error = 0.11011350302450129320088513852293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.285 y[1] (analytic) = 0 y[1] (numeric) = 0.11070391147939775761309490450017 absolute error = 0.11070391147939775761309490450017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.286 y[1] (analytic) = 0 y[1] (numeric) = 0.11129423786879745659711988744864 absolute error = 0.11129423786879745659711988744864 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.287 y[1] (analytic) = 0 y[1] (numeric) = 0.11188448226705831061521110677059 absolute error = 0.11188448226705831061521110677059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.288 y[1] (analytic) = 0 y[1] (numeric) = 0.11247464474847795769161993889668 absolute error = 0.11247464474847795769161993889668 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=57.2MB, alloc=4.4MB, time=5.58 x[1] = 0.289 y[1] (analytic) = 0 y[1] (numeric) = 0.11306472538729383176330057850222 absolute error = 0.11306472538729383176330057850222 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.29 y[1] (analytic) = 0 y[1] (numeric) = 0.11365472425768324090292014047622 absolute error = 0.11365472425768324090292014047622 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.291 y[1] (analytic) = 0 y[1] (numeric) = 0.1142446414337634454144381840237 absolute error = 0.1142446414337634454144381840237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.292 y[1] (analytic) = 0 y[1] (numeric) = 0.11483447698959173580151679354483 absolute error = 0.11483447698959173580151679354483 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.293 y[1] (analytic) = 0 y[1] (numeric) = 0.11542423099916551060902170607616 absolute error = 0.11542423099916551060902170607616 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.294 y[1] (analytic) = 0 y[1] (numeric) = 0.11601390353642235413787433209267 absolute error = 0.11601390353642235413787433209267 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.295 y[1] (analytic) = 0 y[1] (numeric) = 0.11660349467524011403351387534923 absolute error = 0.11660349467524011403351387534923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.296 y[1] (analytic) = 0 y[1] (numeric) = 0.11719300448943697874822811817919 absolute error = 0.11719300448943697874822811817919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.297 y[1] (analytic) = 0 y[1] (numeric) = 0.11778243305277155487761080126054 absolute error = 0.11778243305277155487761080126054 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.298 y[1] (analytic) = 0 y[1] (numeric) = 0.11837178043894294437140289130019 absolute error = 0.11837178043894294437140289130019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.299 y[1] (analytic) = 0 y[1] (numeric) = 0.11896104672159082161897439636794 absolute error = 0.11896104672159082161897439636794 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.3 y[1] (analytic) = 0 y[1] (numeric) = 0.11955023197429551040970275672779 absolute error = 0.11955023197429551040970275672779 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.301 y[1] (analytic) = 0 y[1] (numeric) = 0.12013933627057806076850320895931 absolute error = 0.12013933627057806076850320895931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=61.0MB, alloc=4.4MB, time=5.96 x[1] = 0.302 y[1] (analytic) = 0 y[1] (numeric) = 0.12072835968390032566676589292927 absolute error = 0.12072835968390032566676589292927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.303 y[1] (analytic) = 0 y[1] (numeric) = 0.12131730228766503760895384475836 absolute error = 0.12131730228766503760895384475836 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.304 y[1] (analytic) = 0 y[1] (numeric) = 0.12190616415521588509511539432269 absolute error = 0.12190616415521588509511539432269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.305 y[1] (analytic) = 0 y[1] (numeric) = 0.12249494535983758895956386302957 absolute error = 0.12249494535983758895956386302957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.306 y[1] (analytic) = 0 y[1] (numeric) = 0.12308364597475597858597683660518 absolute error = 0.12308364597475597858597683660518 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.307 y[1] (analytic) = 0 y[1] (numeric) = 0.12367226607313806799916666842288 absolute error = 0.12367226607313806799916666842288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.308 y[1] (analytic) = 0 y[1] (numeric) = 0.12426080572809213183377325147839 absolute error = 0.12426080572809213183377325147839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.309 y[1] (analytic) = 0 y[1] (numeric) = 0.12484926501266778118012948147643 absolute error = 0.12484926501266778118012948147643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.31 y[1] (analytic) = 0 y[1] (numeric) = 0.12543764399985603930754921962672 absolute error = 0.12543764399985603930754921962672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.311 y[1] (analytic) = 0 y[1] (numeric) = 0.1260259427625894172652869516493 absolute error = 0.1260259427625894172652869516493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.312 y[1] (analytic) = 0 y[1] (numeric) = 0.12661416137374198936141772915449 absolute error = 0.12661416137374198936141772915449 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.313 y[1] (analytic) = 0 y[1] (numeric) = 0.12720229990612946851988537098515 absolute error = 0.12720229990612946851988537098515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.314 y[1] (analytic) = 0 y[1] (numeric) = 0.12779035843250928151596629528299 absolute error = 0.12779035843250928151596629528299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=64.8MB, alloc=4.4MB, time=6.34 x[1] = 0.315 y[1] (analytic) = 0 y[1] (numeric) = 0.12837833702558064409039574796002 absolute error = 0.12837833702558064409039574796002 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.316 y[1] (analytic) = 0 y[1] (numeric) = 0.12896623575798463594240258991576 absolute error = 0.12896623575798463594240258991576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.317 y[1] (analytic) = 0 y[1] (numeric) = 0.12955405470230427560189820373412 absolute error = 0.12955405470230427560189820373412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.318 y[1] (analytic) = 0 y[1] (numeric) = 0.13014179393106459518106448071579 absolute error = 0.13014179393106459518106448071579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.319 y[1] (analytic) = 0 y[1] (numeric) = 0.13072945351673271500558525094617 absolute error = 0.13072945351673271500558525094617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.32 y[1] (analytic) = 0 y[1] (numeric) = 0.13131703353171791812576492266056 absolute error = 0.13131703353171791812576492266056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.321 y[1] (analytic) = 0 y[1] (numeric) = 0.13190453404837172470777750244051 absolute error = 0.13190453404837172470777750244051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.322 y[1] (analytic) = 0 y[1] (numeric) = 0.13249195513898796630528857475383 absolute error = 0.13249195513898796630528857475383 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.323 y[1] (analytic) = 0 y[1] (numeric) = 0.13307929687580286001169222802872 absolute error = 0.13307929687580286001169222802872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.324 y[1] (analytic) = 0 y[1] (numeric) = 0.13366655933099508249320432482512 absolute error = 0.13366655933099508249320432482512 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.325 y[1] (analytic) = 0 y[1] (numeric) = 0.13425374257668584390305292572778 absolute error = 0.13425374257668584390305292572778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.326 y[1] (analytic) = 0 y[1] (numeric) = 0.13484084668493896167700609033006 absolute error = 0.13484084668493896167700609033006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.327 y[1] (analytic) = 0 y[1] (numeric) = 0.13542787172776093421047669409973 absolute error = 0.13542787172776093421047669409973 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=68.6MB, alloc=4.4MB, time=6.73 x[1] = 0.328 y[1] (analytic) = 0 y[1] (numeric) = 0.1360148177771010144174433170125 absolute error = 0.1360148177771010144174433170125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.329 y[1] (analytic) = 0 y[1] (numeric) = 0.1366016849048512831714256785999 absolute error = 0.1366016849048512831714256785999 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.33 y[1] (analytic) = 0 y[1] (numeric) = 0.1371884731828467226287525144805 absolute error = 0.1371884731828467226287525144805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.331 y[1] (analytic) = 0 y[1] (numeric) = 0.13777518268286528943435921152118 absolute error = 0.13777518268286528943435921152118 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.332 y[1] (analytic) = 0 y[1] (numeric) = 0.13836181347662798781035194250343 absolute error = 0.13836181347662798781035194250343 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.333 y[1] (analytic) = 0 y[1] (numeric) = 0.13894836563579894252757446654248 absolute error = 0.13894836563579894252757446654248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.334 y[1] (analytic) = 0 y[1] (numeric) = 0.13953483923198547176041318851961 absolute error = 0.13953483923198547176041318851961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.335 y[1] (analytic) = 0 y[1] (numeric) = 0.14012123433673815982507549943423 absolute error = 0.14012123433673815982507549943423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.336 y[1] (analytic) = 0 y[1] (numeric) = 0.14070755102155092980157584985759 absolute error = 0.14070755102155092980157584985759 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.337 y[1] (analytic) = 0 y[1] (numeric) = 0.14129378935786111603966344056831 absolute error = 0.14129378935786111603966344056831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.338 y[1] (analytic) = 0 y[1] (numeric) = 0.14187994941704953654892484796634 absolute error = 0.14187994941704953654892484796634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.339 y[1] (analytic) = 0 y[1] (numeric) = 0.14246603127044056527329433699124 absolute error = 0.14246603127044056527329433699124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.34 y[1] (analytic) = 0 y[1] (numeric) = 0.14305203498930220425020405100713 absolute error = 0.14305203498930220425020405100713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.341 y[1] (analytic) = 0 y[1] (numeric) = 0.14363796064484615565460570645544 absolute error = 0.14363796064484615565460570645544 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=72.4MB, alloc=4.4MB, time=7.11 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.342 y[1] (analytic) = 0 y[1] (numeric) = 0.14422380830822789372809486001218 absolute error = 0.14422380830822789372809486001218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.343 y[1] (analytic) = 0 y[1] (numeric) = 0.1448095780505467365933682575139 absolute error = 0.1448095780505467365933682575139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.344 y[1] (analytic) = 0 y[1] (numeric) = 0.14539526994284591795424421703024 absolute error = 0.14539526994284591795424421703024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.345 y[1] (analytic) = 0 y[1] (numeric) = 0.14598088405611265868147544315607 absolute error = 0.14598088405611265868147544315607 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.346 y[1] (analytic) = 0 y[1] (numeric) = 0.14656642046127823828458311586755 absolute error = 0.14656642046127823828458311586755 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.347 y[1] (analytic) = 0 y[1] (numeric) = 0.14715187922921806626994054512859 absolute error = 0.14715187922921806626994054512859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.348 y[1] (analytic) = 0 y[1] (numeric) = 0.14773726043075175338533413184229 absolute error = 0.14773726043075175338533413184229 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.349 y[1] (analytic) = 0 y[1] (numeric) = 0.14832256413664318275122882671075 absolute error = 0.14832256413664318275122882671075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.35 y[1] (analytic) = 0 y[1] (numeric) = 0.14890779041760058087896473109115 absolute error = 0.14890779041760058087896473109115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.351 y[1] (analytic) = 0 y[1] (numeric) = 0.14949293934427658857611093801092 absolute error = 0.14949293934427658857611093801092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.352 y[1] (analytic) = 0 y[1] (numeric) = 0.15007801098726833173920216712554 absolute error = 0.15007801098726833173920216712554 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.353 y[1] (analytic) = 0 y[1] (numeric) = 0.15066300541711749203408320456347 absolute error = 0.15066300541711749203408320456347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.354 y[1] (analytic) = 0 y[1] (numeric) = 0.15124792270431037746408561729918 absolute error = 0.15124792270431037746408561729918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=76.2MB, alloc=4.4MB, time=7.49 x[1] = 0.355 y[1] (analytic) = 0 y[1] (numeric) = 0.15183276291927799282626067192241 absolute error = 0.15183276291927799282626067192241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.356 y[1] (analytic) = 0 y[1] (numeric) = 0.15241752613239611005589184942408 absolute error = 0.15241752613239611005589184942408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.357 y[1] (analytic) = 0 y[1] (numeric) = 0.15300221241398533845950981089242 absolute error = 0.15300221241398533845950981089242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.358 y[1] (analytic) = 0 y[1] (numeric) = 0.15358682183431119483663213380145 absolute error = 0.15358682183431119483663213380145 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.359 y[1] (analytic) = 0 y[1] (numeric) = 0.15417135446358417349044960487317 absolute error = 0.15417135446358417349044960487317 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.36 y[1] (analytic) = 0 y[1] (numeric) = 0.15475581037195981612768032329993 absolute error = 0.15475581037195981612768032329993 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.361 y[1] (analytic) = 0 y[1] (numeric) = 0.15534018962953878164781233741922 absolute error = 0.15534018962953878164781233741922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.362 y[1] (analytic) = 0 y[1] (numeric) = 0.15592449230636691582195500873507 absolute error = 0.15592449230636691582195500873507 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.363 y[1] (analytic) = 0 y[1] (numeric) = 0.15650871847243532086151876947333 absolute error = 0.15650871847243532086151876947333 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.364 y[1] (analytic) = 0 y[1] (numeric) = 0.15709286819768042487694241363727 absolute error = 0.15709286819768042487694241363727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.365 y[1] (analytic) = 0 y[1] (numeric) = 0.15767694155198405122668653679095 absolute error = 0.15767694155198405122668653679095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.366 y[1] (analytic) = 0 y[1] (numeric) = 0.15826093860517348775671121653512 absolute error = 0.15826093860517348775671121653512 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.367 y[1] (analytic) = 0 y[1] (numeric) = 0.15884485942702155593065550385007 absolute error = 0.15884485942702155593065550385007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=80.1MB, alloc=4.4MB, time=7.88 x[1] = 0.368 y[1] (analytic) = 0 y[1] (numeric) = 0.15942870408724667985093577515619 absolute error = 0.15942870408724667985093577515619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.369 y[1] (analytic) = 0 y[1] (numeric) = 0.16001247265551295517097947608202 absolute error = 0.16001247265551295517097947608202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.37 y[1] (analytic) = 0 y[1] (numeric) = 0.16059616520143021789881027052636 absolute error = 0.16059616520143021789881027052636 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.371 y[1] (analytic) = 0 y[1] (numeric) = 0.16117978179455411309220009265028 absolute error = 0.16117978179455411309220009265028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.372 y[1] (analytic) = 0 y[1] (numeric) = 0.16176332250438616344560308493299 absolute error = 0.16176332250438616344560308493299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.373 y[1] (analytic) = 0 y[1] (numeric) = 0.16234678740037383776908589236678 absolute error = 0.16234678740037383776908589236678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.374 y[1] (analytic) = 0 y[1] (numeric) = 0.16293017655191061935946827124664 absolute error = 0.16293017655191061935946827124664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.375 y[1] (analytic) = 0 y[1] (numeric) = 0.16351349002833607426388746082476 absolute error = 0.16351349002833607426388746082476 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.376 y[1] (analytic) = 0 y[1] (numeric) = 0.16409672789893591943599925734435 absolute error = 0.16409672789893591943599925734435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.377 y[1] (analytic) = 0 y[1] (numeric) = 0.16467989023294209078502822263659 absolute error = 0.16467989023294209078502822263659 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.378 y[1] (analytic) = 0 y[1] (numeric) = 0.16526297709953281111787895355413 absolute error = 0.16526297709953281111787895355413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.379 y[1] (analytic) = 0 y[1] (numeric) = 0.16584598856783265797451983402036 absolute error = 0.16584598856783265797451983402036 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.38 y[1] (analytic) = 0 y[1] (numeric) = 0.16642892470691263135685018839034 absolute error = 0.16642892470691263135685018839034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=83.9MB, alloc=4.4MB, time=8.26 x[1] = 0.381 y[1] (analytic) = 0 y[1] (numeric) = 0.1670117855857902213512612531432 absolute error = 0.1670117855857902213512612531432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.382 y[1] (analytic) = 0 y[1] (numeric) = 0.16759457127342947564510088365163 absolute error = 0.16759457127342947564510088365163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.383 y[1] (analytic) = 0 y[1] (numeric) = 0.16817728183874106693725141389767 absolute error = 0.16817728183874106693725141389767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.384 y[1] (analytic) = 0 y[1] (numeric) = 0.16875991735058236024302958952104 absolute error = 0.16875991735058236024302958952104 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.385 y[1] (analytic) = 0 y[1] (numeric) = 0.1693424778777574800936169984918 absolute error = 0.1693424778777574800936169984918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.386 y[1] (analytic) = 0 y[1] (numeric) = 0.16992496348901737763022892898903 absolute error = 0.16992496348901737763022892898903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.387 y[1] (analytic) = 0 y[1] (numeric) = 0.17050737425305989759322909073719 absolute error = 0.17050737425305989759322909073719 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.388 y[1] (analytic) = 0 y[1] (numeric) = 0.17108971023852984520639714409672 absolute error = 0.17108971023852984520639714409672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.389 y[1] (analytic) = 0 y[1] (numeric) = 0.17167197151401905295655549062206 absolute error = 0.17167197151401905295655549062206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.39 y[1] (analytic) = 0 y[1] (numeric) = 0.17225415814806644726876128958273 absolute error = 0.17225415814806644726876128958273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.391 y[1] (analytic) = 0 y[1] (numeric) = 0.17283627020915811507726917708842 absolute error = 0.17283627020915811507726917708842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.392 y[1] (analytic) = 0 y[1] (numeric) = 0.17341830776572737029246967796192 absolute error = 0.17341830776572737029246967796192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.393 y[1] (analytic) = 0 y[1] (numeric) = 0.17400027088615482016400781536004 absolute error = 0.17400027088615482016400781536004 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=87.7MB, alloc=4.4MB, time=8.65 x[1] = 0.394 y[1] (analytic) = 0 y[1] (numeric) = 0.17458215963876843154028593934863 absolute error = 0.17458215963876843154028593934863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.395 y[1] (analytic) = 0 y[1] (numeric) = 0.17516397409184359702455431318787 absolute error = 0.17516397409184359702455431318787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.396 y[1] (analytic) = 0 y[1] (numeric) = 0.17574571431360320102779251497554 absolute error = 0.17574571431360320102779251497554 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.397 y[1] (analytic) = 0 y[1] (numeric) = 0.17632738037221768571858423252298 absolute error = 0.17632738037221768571858423252298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.398 y[1] (analytic) = 0 y[1] (numeric) = 0.17690897233580511687018755089802 absolute error = 0.17690897233580511687018755089802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.399 y[1] (analytic) = 0 y[1] (numeric) = 0.1774904902724312496050023549562 absolute error = 0.1774904902724312496050023549562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.4 y[1] (analytic) = 0 y[1] (numeric) = 0.17807193425010959403663599339221 absolute error = 0.17807193425010959403663599339221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.401 y[1] (analytic) = 0 y[1] (numeric) = 0.17865330433680148080976787637353 absolute error = 0.17865330433680148080976787637353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.402 y[1] (analytic) = 0 y[1] (numeric) = 0.17923460060041612653801320566309 absolute error = 0.17923460060041612653801320566309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.403 y[1] (analytic) = 0 y[1] (numeric) = 0.17981582310881069913998556429377 absolute error = 0.17981582310881069913998556429377 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.404 y[1] (analytic) = 0 y[1] (numeric) = 0.18039697192979038307375762232015 absolute error = 0.18039697192979038307375762232015 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.405 y[1] (analytic) = 0 y[1] (numeric) = 0.18097804713110844446991874593796 absolute error = 0.18097804713110844446991874593796 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.406 y[1] (analytic) = 0 y[1] (numeric) = 0.18155904878046629616342782932542 absolute error = 0.18155904878046629616342782932542 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.407 y[1] (analytic) = 0 y[1] (numeric) = 0.18213997694551356262445920191822 absolute error = 0.18213997694551356262445920191822 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=91.5MB, alloc=4.4MB, time=9.04 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.408 y[1] (analytic) = 0 y[1] (numeric) = 0.18272083169384814478843899847799 absolute error = 0.18272083169384814478843899847799 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.409 y[1] (analytic) = 0 y[1] (numeric) = 0.18330161309301628478546891524807 absolute error = 0.18330161309301628478546891524807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.41 y[1] (analytic) = 0 y[1] (numeric) = 0.1838823212105126305693338127062 absolute error = 0.1838823212105126305693338127062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.411 y[1] (analytic) = 0 y[1] (numeric) = 0.18446295611378030044628916391771 absolute error = 0.18446295611378030044628916391771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.412 y[1] (analytic) = 0 y[1] (numeric) = 0.18504351787021094750382388726027 absolute error = 0.18504351787021094750382388726027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.413 y[1] (analytic) = 0 y[1] (numeric) = 0.18562400654714482393959364332868 absolute error = 0.18562400654714482393959364332868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.414 y[1] (analytic) = 0 y[1] (numeric) = 0.18620442221187084529071921813137 absolute error = 0.18620442221187084529071921813137 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.415 y[1] (analytic) = 0 y[1] (numeric) = 0.18678476493162665456364415825498 absolute error = 0.18678476493162665456364415825498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.416 y[1] (analytic) = 0 y[1] (numeric) = 0.18736503477359868626474536849602 absolute error = 0.18736503477359868626474536849602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.417 y[1] (analytic) = 0 y[1] (numeric) = 0.18794523180492223033188992853494 absolute error = 0.18794523180492223033188992853494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.418 y[1] (analytic) = 0 y[1] (numeric) = 0.18852535609268149596713093255386 absolute error = 0.18852535609268149596713093255386 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.419 y[1] (analytic) = 0 y[1] (numeric) = 0.18910540770390967537073470427117 absolute error = 0.18910540770390967537073470427117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.42 y[1] (analytic) = 0 y[1] (numeric) = 0.18968538670558900737673128967984 absolute error = 0.18968538670558900737673128967984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=95.3MB, alloc=4.4MB, time=9.42 x[1] = 0.421 y[1] (analytic) = 0 y[1] (numeric) = 0.19026529316465084099017968082792 absolute error = 0.19026529316465084099017968082792 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.422 y[1] (analytic) = 0 y[1] (numeric) = 0.19084512714797569882633877626534 absolute error = 0.19084512714797569882633877626534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.423 y[1] (analytic) = 0 y[1] (numeric) = 0.19142488872239334045193463729677 absolute error = 0.19142488872239334045193463729677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.424 y[1] (analytic) = 0 y[1] (numeric) = 0.19200457795468282562871415392241 absolute error = 0.19200457795468282562871415392241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.425 y[1] (analytic) = 0 y[1] (numeric) = 0.19258419491157257745947479031268 absolute error = 0.19258419491157257745947479031268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.426 y[1] (analytic) = 0 y[1] (numeric) = 0.19316373965974044543675963684568 absolute error = 0.19316373965974044543675963684568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.427 y[1] (analytic) = 0 y[1] (numeric) = 0.19374321226581376839440655413359 absolute error = 0.19374321226581376839440655413359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.428 y[1] (analytic) = 0 y[1] (numeric) = 0.19432261279636943736213975407241 absolute error = 0.19432261279636943736213975407241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.429 y[1] (analytic) = 0 y[1] (numeric) = 0.19490194131793395832339172376465 absolute error = 0.19490194131793395832339172376465 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.43 y[1] (analytic) = 0 y[1] (numeric) = 0.19548119789698351487654296018286 absolute error = 0.19548119789698351487654296018286 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.431 y[1] (analytic) = 0 y[1] (numeric) = 0.1960603825999440307997665466597 absolute error = 0.1960603825999440307997665466597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.432 y[1] (analytic) = 0 y[1] (numeric) = 0.19663949549319123251966416670341 absolute error = 0.19663949549319123251966416670341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.433 y[1] (analytic) = 0 y[1] (numeric) = 0.19721853664305071148387971624298 absolute error = 0.19721853664305071148387971624298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=99.1MB, alloc=4.4MB, time=9.82 x[1] = 0.434 y[1] (analytic) = 0 y[1] (numeric) = 0.1977975061157979864378762422003 absolute error = 0.1977975061157979864378762422003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.435 y[1] (analytic) = 0 y[1] (numeric) = 0.19837640397765856560606150326432 absolute error = 0.19837640397765856560606150326432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.436 y[1] (analytic) = 0 y[1] (numeric) = 0.19895523029480800877744701790045 absolute error = 0.19895523029480800877744701790045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.437 y[1] (analytic) = 0 y[1] (numeric) = 0.19953398513337198929602503496348 absolute error = 0.19953398513337198929602503496348 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.438 y[1] (analytic) = 0 y[1] (numeric) = 0.20011266855942635595604743379074 absolute error = 0.20011266855942635595604743379074 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.439 y[1] (analytic) = 0 y[1] (numeric) = 0.20069128063899719480239013333003 absolute error = 0.20069128063899719480239013333003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.44 y[1] (analytic) = 0 y[1] (numeric) = 0.2012698214380608908361861637005 absolute error = 0.2012698214380608908361861637005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.441 y[1] (analytic) = 0 y[1] (numeric) = 0.20184829102254418962591012859071 absolute error = 0.20184829102254418962591012859071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.442 y[1] (analytic) = 0 y[1] (numeric) = 0.2024266894583242588240963630624 absolute error = 0.2024266894583242588240963630624 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.443 y[1] (analytic) = 0 y[1] (numeric) = 0.20300501681122874958987266864798 absolute error = 0.20300501681122874958987266864798 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.444 y[1] (analytic) = 0 y[1] (numeric) = 0.20358327314703585791749108610028 absolute error = 0.20358327314703585791749108610028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.445 y[1] (analytic) = 0 y[1] (numeric) = 0.20416145853147438587103674577157 absolute error = 0.20416145853147438587103674577157 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.446 y[1] (analytic) = 0 y[1] (numeric) = 0.20473957303022380272549541636117 absolute error = 0.20473957303022380272549541636117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=103.0MB, alloc=4.4MB, time=10.20 x[1] = 0.447 y[1] (analytic) = 0 y[1] (numeric) = 0.20531761670891430601435995467399 absolute error = 0.20531761670891430601435995467399 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.448 y[1] (analytic) = 0 y[1] (numeric) = 0.20589558963312688248395544207213 absolute error = 0.20589558963312688248395544207213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.449 y[1] (analytic) = 0 y[1] (numeric) = 0.20647349186839336895466237747496 absolute error = 0.20647349186839336895466237747496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.45 y[1] (analytic) = 0 y[1] (numeric) = 0.20705132348019651308921688206621 absolute error = 0.20705132348019651308921688206621 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.451 y[1] (analytic) = 0 y[1] (numeric) = 0.2076290845339700340682664572959 absolute error = 0.2076290845339700340682664572959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.452 y[1] (analytic) = 0 y[1] (numeric) = 0.20820677509509868317335942531714 absolute error = 0.20820677509509868317335942531714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.453 y[1] (analytic) = 0 y[1] (numeric) = 0.20878439522891830427754576966943 absolute error = 0.20878439522891830427754576966943 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.454 y[1] (analytic) = 0 y[1] (numeric) = 0.20936194500071589424376668380701 absolute error = 0.20936194500071589424376668380701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.455 y[1] (analytic) = 0 y[1] (numeric) = 0.2099394244757296632312097259706 absolute error = 0.2099394244757296632312097259706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.456 y[1] (analytic) = 0 y[1] (numeric) = 0.21051683371914909490980607090919 absolute error = 0.21051683371914909490980607090919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.457 y[1] (analytic) = 0 y[1] (numeric) = 0.21109417279611500658304594207214 absolute error = 0.21109417279611500658304594207214 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.458 y[1] (analytic) = 0 y[1] (numeric) = 0.21167144177171960921928790210767 absolute error = 0.21167144177171960921928790210767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.459 y[1] (analytic) = 0 y[1] (numeric) = 0.21224864071100656739173727481786 absolute error = 0.21224864071100656739173727481786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=106.8MB, alloc=4.4MB, time=10.59 x[1] = 0.46 y[1] (analytic) = 0 y[1] (numeric) = 0.21282576967897105912726856812964 absolute error = 0.21282576967897105912726856812964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.461 y[1] (analytic) = 0 y[1] (numeric) = 0.21340282874055983566426636514193 absolute error = 0.21340282874055983566426636514193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.462 y[1] (analytic) = 0 y[1] (numeric) = 0.21397981796067128111965874889855 absolute error = 0.21397981796067128111965874889855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.463 y[1] (analytic) = 0 y[1] (numeric) = 0.2145567374041554720653169262103 absolute error = 0.2145567374041554720653169262103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.464 y[1] (analytic) = 0 y[1] (numeric) = 0.21513358713581423701399431660528 absolute error = 0.21513358713581423701399431660528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.465 y[1] (analytic) = 0 y[1] (numeric) = 0.21571036722040121581497797432023 absolute error = 0.21571036722040121581497797432023 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.466 y[1] (analytic) = 0 y[1] (numeric) = 0.21628707772262191895962481415415 absolute error = 0.21628707772262191895962481415415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.467 y[1] (analytic) = 0 y[1] (numeric) = 0.21686371870713378679695471598543 absolute error = 0.21686371870713378679695471598543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.468 y[1] (analytic) = 0 y[1] (numeric) = 0.21744029023854624865947218780178 absolute error = 0.21744029023854624865947218780178 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.469 y[1] (analytic) = 0 y[1] (numeric) = 0.21801679238142078189938787320522 absolute error = 0.21801679238142078189938787320522 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.47 y[1] (analytic) = 0 y[1] (numeric) = 0.21859322520027097083541079652877 absolute error = 0.21859322520027097083541079652877 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.471 y[1] (analytic) = 0 y[1] (numeric) = 0.21916958875956256561028184693426 absolute error = 0.21916958875956256561028184693426 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.472 y[1] (analytic) = 0 y[1] (numeric) = 0.21974588312371354095921861214806 absolute error = 0.21974588312371354095921861214806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.473 y[1] (analytic) = 0 y[1] (numeric) = 0.22032210835709415488944128283111 absolute error = 0.22032210835709415488944128283111 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=110.6MB, alloc=4.4MB, time=10.97 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.474 y[1] (analytic) = 0 y[1] (numeric) = 0.22089826452402700727094895996706 absolute error = 0.22089826452402700727094895996706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.475 y[1] (analytic) = 0 y[1] (numeric) = 0.22147435168878709833871531008546 absolute error = 0.22147435168878709833871531008546 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.476 y[1] (analytic) = 0 y[1] (numeric) = 0.22205036991560188710647212661159 absolute error = 0.22205036991560188710647212661159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.477 y[1] (analytic) = 0 y[1] (numeric) = 0.22262631926865134969224897014819 absolute error = 0.22262631926865134969224897014819 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.478 y[1] (analytic) = 0 y[1] (numeric) = 0.22320219981206803755583667604336 absolute error = 0.22320219981206803755583667604336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.479 y[1] (analytic) = 0 y[1] (numeric) = 0.22377801160993713564834213418026 absolute error = 0.22377801160993713564834213418026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.48 y[1] (analytic) = 0 y[1] (numeric) = 0.22435375472629652047400136353484 absolute error = 0.22435375472629652047400136353484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.481 y[1] (analytic) = 0 y[1] (numeric) = 0.22492942922513681806441752268412 absolute error = 0.22492942922513681806441752268412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.482 y[1] (analytic) = 0 y[1] (numeric) = 0.22550503517040146186539011710688 absolute error = 0.22550503517040146186539011710688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.483 y[1] (analytic) = 0 y[1] (numeric) = 0.22608057262598675053650128479742 absolute error = 0.22608057262598675053650128479742 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.484 y[1] (analytic) = 0 y[1] (numeric) = 0.22665604165574190566362466340833 absolute error = 0.22665604165574190566362466340833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.485 y[1] (analytic) = 0 y[1] (numeric) = 0.22723144232346912938452196484697 absolute error = 0.22723144232346912938452196484697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.486 y[1] (analytic) = 0 y[1] (numeric) = 0.22780677469292366192769200696912 absolute error = 0.22780677469292366192769200696912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=114.4MB, alloc=4.4MB, time=11.35 x[1] = 0.487 y[1] (analytic) = 0 y[1] (numeric) = 0.22838203882781383906463657673937 absolute error = 0.22838203882781383906463657673937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.488 y[1] (analytic) = 0 y[1] (numeric) = 0.22895723479180114947570712495777 absolute error = 0.22895723479180114947570712495777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.489 y[1] (analytic) = 0 y[1] (numeric) = 0.22953236264850029202969591938317 absolute error = 0.22953236264850029202969591938317 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.49 y[1] (analytic) = 0 y[1] (numeric) = 0.23010742246147923297733491081247 absolute error = 0.23010742246147923297733491081247 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.491 y[1] (analytic) = 0 y[1] (numeric) = 0.23068241429425926305886519539859 absolute error = 0.23068241429425926305886519539859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.492 y[1] (analytic) = 0 y[1] (numeric) = 0.23125733821031505452583958620506 absolute error = 0.23125733821031505452583958620506 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.493 y[1] (analytic) = 0 y[1] (numeric) = 0.23183219427307471807732043769927 absolute error = 0.23183219427307471807732043769927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.494 y[1] (analytic) = 0 y[1] (numeric) = 0.23240698254591985971063449857577 absolute error = 0.23240698254591985971063449857577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.495 y[1] (analytic) = 0 y[1] (numeric) = 0.23298170309218563748684620097327 absolute error = 0.23298170309218563748684620097327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.496 y[1] (analytic) = 0 y[1] (numeric) = 0.23355635597516081821111042780073 absolute error = 0.23355635597516081821111042780073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.497 y[1] (analytic) = 0 y[1] (numeric) = 0.2341309412580878340280654345162 absolute error = 0.2341309412580878340280654345162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.498 y[1] (analytic) = 0 y[1] (numeric) = 0.23470545900416283893242623730405 absolute error = 0.23470545900416283893242623730405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.499 y[1] (analytic) = 0 y[1] (numeric) = 0.23527990927653576519493841616869 absolute error = 0.23527990927653576519493841616869 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=118.2MB, alloc=4.4MB, time=11.74 x[1] = 0.5 y[1] (analytic) = 0 y[1] (numeric) = 0.23585429213831037970385191900309 absolute error = 0.23585429213831037970385191900309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.501 y[1] (analytic) = 0 y[1] (numeric) = 0.23642860765254434022207409119516 absolute error = 0.23642860765254434022207409119516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.502 y[1] (analytic) = 0 y[1] (numeric) = 0.23700285588224925156016079480167 absolute error = 0.23700285588224925156016079480167 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.503 y[1] (analytic) = 0 y[1] (numeric) = 0.23757703689039072166530412174462 absolute error = 0.23757703689039072166530412174462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.504 y[1] (analytic) = 0 y[1] (numeric) = 0.23815115073988841762647484686618 absolute error = 0.23815115073988841762647484686618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.505 y[1] (analytic) = 0 y[1] (numeric) = 0.23872519749361612159587740901224 absolute error = 0.23872519749361612159587740901224 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.506 y[1] (analytic) = 0 y[1] (numeric) = 0.23929917721440178662687485159894 absolute error = 0.23929917721440178662687485159894 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.507 y[1] (analytic) = 0 y[1] (numeric) = 0.2398730899650275924285407983474 absolute error = 0.2398730899650275924285407983474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.508 y[1] (analytic) = 0 y[1] (numeric) = 0.24044693580823000103699518504745 absolute error = 0.24044693580823000103699518504745 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.509 y[1] (analytic) = 0 y[1] (numeric) = 0.24102071480669981240368011432784 absolute error = 0.24102071480669981240368011432784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.51 y[1] (analytic) = 0 y[1] (numeric) = 0.24159442702308221990073184746545 absolute error = 0.24159442702308221990073184746545 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.511 y[1] (analytic) = 0 y[1] (numeric) = 0.24216807251997686574360459525687 absolute error = 0.24216807251997686574360459525687 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.512 y[1] (analytic) = 0 y[1] (numeric) = 0.24274165135993789633110141889917 absolute error = 0.24274165135993789633110141889917 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=122.0MB, alloc=4.4MB, time=12.13 x[1] = 0.513 y[1] (analytic) = 0 y[1] (numeric) = 0.24331516360547401750296720168003 absolute error = 0.24331516360547401750296720168003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.514 y[1] (analytic) = 0 y[1] (numeric) = 0.24388860931904854971519830305788 absolute error = 0.24388860931904854971519830305788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.515 y[1] (analytic) = 0 y[1] (numeric) = 0.24446198856307948313322315841735 absolute error = 0.24446198856307948313322315841735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.516 y[1] (analytic) = 0 y[1] (numeric) = 0.24503530139993953264310774041141 absolute error = 0.24503530139993953264310774041141 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.517 y[1] (analytic) = 0 y[1] (numeric) = 0.24560854789195619278093945134636 absolute error = 0.24560854789195619278093945134636 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.518 y[1] (analytic) = 0 y[1] (numeric) = 0.24618172810141179258054267052639 absolute error = 0.24618172810141179258054267052639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.519 y[1] (analytic) = 0 y[1] (numeric) = 0.24675484209054355033967883584786 absolute error = 0.24675484209054355033967883584786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.52 y[1] (analytic) = 0 y[1] (numeric) = 0.24732788992154362830488359521761 absolute error = 0.24732788992154362830488359521761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.521 y[1] (analytic) = 0 y[1] (numeric) = 0.24790087165655918727509322056064 absolute error = 0.24790087165655918727509322056064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.522 y[1] (analytic) = 0 y[1] (numeric) = 0.24847378735769244112421213527889 absolute error = 0.24847378735769244112421213527889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.523 y[1] (analytic) = 0 y[1] (numeric) = 0.24904663708700071124277306502077 absolute error = 0.24904663708700071124277306502077 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.524 y[1] (analytic) = 0 y[1] (numeric) = 0.2496194209064964808988409815186 absolute error = 0.2496194209064964808988409815186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.525 y[1] (analytic) = 0 y[1] (numeric) = 0.25019213887814744951831167004486 absolute error = 0.25019213887814744951831167004486 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.526 y[1] (analytic) = 0 y[1] (numeric) = 0.25076479106387658688475541272608 absolute error = 0.25076479106387658688475541272608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=125.8MB, alloc=4.4MB, time=12.55 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.527 y[1] (analytic) = 0 y[1] (numeric) = 0.25133737752556218725895594253187 absolute error = 0.25133737752556218725895594253187 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.528 y[1] (analytic) = 0 y[1] (numeric) = 0.25190989832503792341829448622392 absolute error = 0.25190989832503792341829448622392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.529 y[1] (analytic) = 0 y[1] (numeric) = 0.25248235352409290061612837890268 absolute error = 0.25248235352409290061612837890268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.53 y[1] (analytic) = 0 y[1] (numeric) = 0.25305474318447171046131339802553 absolute error = 0.25305474318447171046131339802553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.531 y[1] (analytic) = 0 y[1] (numeric) = 0.25362706736787448471801863088649 absolute error = 0.25362706736787448471801863088649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.532 y[1] (analytic) = 0 y[1] (numeric) = 0.25419932613595694902598235654172 absolute error = 0.25419932613595694902598235654172 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.533 y[1] (analytic) = 0 y[1] (numeric) = 0.25477151955033047654135709103398 absolute error = 0.25477151955033047654135709103398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.534 y[1] (analytic) = 0 y[1] (numeric) = 0.25534364767256214149829161351097 absolute error = 0.25534364767256214149829161351097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.535 y[1] (analytic) = 0 y[1] (numeric) = 0.2559157105641747726913974604435 absolute error = 0.2559157105641747726913974604435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.536 y[1] (analytic) = 0 y[1] (numeric) = 0.25648770828664700687924704562805 absolute error = 0.25648770828664700687924704562805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.537 y[1] (analytic) = 0 y[1] (numeric) = 0.25705964090141334210905023500119 absolute error = 0.25705964090141334210905023500119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.538 y[1] (analytic) = 0 y[1] (numeric) = 0.25763150846986419096265587749804 absolute error = 0.25763150846986419096265587749804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.539 y[1] (analytic) = 0 y[1] (numeric) = 0.25820331105334593372402446625135 absolute error = 0.25820331105334593372402446625135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=129.7MB, alloc=4.4MB, time=12.97 x[1] = 0.54 y[1] (analytic) = 0 y[1] (numeric) = 0.25877504871316097146831777834853 absolute error = 0.25877504871316097146831777834853 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.541 y[1] (analytic) = 0 y[1] (numeric) = 0.25934672151056777907275101613901 absolute error = 0.25934672151056777907275101613901 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.542 y[1] (analytic) = 0 y[1] (numeric) = 0.25991832950678095814935264871096 absolute error = 0.25991832950678095814935264871096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.543 y[1] (analytic) = 0 y[1] (numeric) = 0.26048987276297128989977682863203 absolute error = 0.26048987276297128989977682863203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.544 y[1] (analytic) = 0 y[1] (numeric) = 0.26106135134026578789231293637075 absolute error = 0.26106135134026578789231293637075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.545 y[1] (analytic) = 0 y[1] (numeric) = 0.26163276529974775076123648298128 absolute error = 0.26163276529974775076123648298128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.546 y[1] (analytic) = 0 y[1] (numeric) = 0.26220411470245681482864528064142 absolute error = 0.26220411470245681482864528064142 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.547 y[1] (analytic) = 0 y[1] (numeric) = 0.26277539960938900664892447048014 absolute error = 0.26277539960938900664892447048014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.548 y[1] (analytic) = 0 y[1] (numeric) = 0.26334662008149679547598367781308 absolute error = 0.26334662008149679547598367781308 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.549 y[1] (analytic) = 0 y[1] (numeric) = 0.26391777617968914565340924642101 absolute error = 0.26391777617968914565340924642101 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.55 y[1] (analytic) = 0 y[1] (numeric) = 0.26448886796483156892767418585365 absolute error = 0.26448886796483156892767418585365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.551 y[1] (analytic) = 0 y[1] (numeric) = 0.26505989549774617668454814891766 absolute error = 0.26505989549774617668454814891766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.552 y[1] (analytic) = 0 y[1] (numeric) = 0.26563085883921173210884944051027 absolute error = 0.26563085883921173210884944051027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=133.5MB, alloc=4.4MB, time=13.40 x[1] = 0.553 y[1] (analytic) = 0 y[1] (numeric) = 0.26620175804996370226768074378658 absolute error = 0.26620175804996370226768074378658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.554 y[1] (analytic) = 0 y[1] (numeric) = 0.26677259319069431011728993529643 absolute error = 0.26677259319069431011728993529643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.555 y[1] (analytic) = 0 y[1] (numeric) = 0.26734336432205258643369704719338 absolute error = 0.26734336432205258643369704719338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.556 y[1] (analytic) = 0 y[1] (numeric) = 0.26791407150464442166722812190186 absolute error = 0.26791407150464442166722812190186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.557 y[1] (analytic) = 0 y[1] (numeric) = 0.26848471479903261772109639272548 absolute error = 0.26848471479903261772109639272548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.558 y[1] (analytic) = 0 y[1] (numeric) = 0.26905529426573693965417091278846 absolute error = 0.26905529426573693965417091278846 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.559 y[1] (analytic) = 0 y[1] (numeric) = 0.26962580996523416730807244442008 absolute error = 0.26962580996523416730807244442008 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.56 y[1] (analytic) = 0 y[1] (numeric) = 0.27019626195795814685873611161663 absolute error = 0.27019626195795814685873611161663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.561 y[1] (analytic) = 0 y[1] (numeric) = 0.27076665030429984229258000954432 absolute error = 0.27076665030429984229258000954432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.562 y[1] (analytic) = 0 y[1] (numeric) = 0.2713369750646073868074186571776 absolute error = 0.2713369750646073868074186571776 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.563 y[1] (analytic) = 0 y[1] (numeric) = 0.27190723629918613413825987209747 absolute error = 0.27190723629918613413825987209747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.564 y[1] (analytic) = 0 y[1] (numeric) = 0.27247743406829870980812334020211 absolute error = 0.27247743406829870980812334020211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.565 y[1] (analytic) = 0 y[1] (numeric) = 0.27304756843216506230401884760422 absolute error = 0.27304756843216506230401884760422 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=137.3MB, alloc=4.4MB, time=13.82 x[1] = 0.566 y[1] (analytic) = 0 y[1] (numeric) = 0.27361763945096251417822183730412 absolute error = 0.27361763945096251417822183730412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.567 y[1] (analytic) = 0 y[1] (numeric) = 0.27418764718482581307498364933221 absolute error = 0.27418764718482581307498364933221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.568 y[1] (analytic) = 0 y[1] (numeric) = 0.27475759169384718268281349994675 absolute error = 0.27475759169384718268281349994675 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.569 y[1] (analytic) = 0 y[1] (numeric) = 0.27532747303807637361246895315035 absolute error = 0.27532747303807637361246895315035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.57 y[1] (analytic) = 0 y[1] (numeric) = 0.27589729127752071420079133624905 absolute error = 0.27589729127752071420079133624905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.571 y[1] (analytic) = 0 y[1] (numeric) = 0.27646704647214516124052225041921 absolute error = 0.27646704647214516124052225041921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.572 y[1] (analytic) = 0 y[1] (numeric) = 0.27703673868187235063623702726661 absolute error = 0.27703673868187235063623702726661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.573 y[1] (analytic) = 0 y[1] (numeric) = 0.27760636796658264798653068315773 absolute error = 0.27760636796658264798653068315773 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.574 y[1] (analytic) = 0 y[1] (numeric) = 0.2781759343861141990925916246723 absolute error = 0.2781759343861141990925916246723 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.575 y[1] (analytic) = 0 y[1] (numeric) = 0.27874543800026298039329806086665 absolute error = 0.27874543800026298039329806086665 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.576 y[1] (analytic) = 0 y[1] (numeric) = 0.27931487886878284932697178114694 absolute error = 0.27931487886878284932697178114694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.577 y[1] (analytic) = 0 y[1] (numeric) = 0.2798842570513855946199236614278 absolute error = 0.2798842570513855946199236614278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.578 y[1] (analytic) = 0 y[1] (numeric) = 0.28045357260774098650192496589279 absolute error = 0.28045357260774098650192496589279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.579 y[1] (analytic) = 0 y[1] (numeric) = 0.28102282559747682684873821707612 absolute error = 0.28102282559747682684873821707612 relative error = -1 % Correct digits = -1 h = 0.001 memory used=141.1MB, alloc=4.4MB, time=14.25 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.58 y[1] (analytic) = 0 y[1] (numeric) = 0.28159201608017899925184111314844 absolute error = 0.28159201608017899925184111314844 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.581 y[1] (analytic) = 0 y[1] (numeric) = 0.28216114411539151901547667821017 absolute error = 0.28216114411539151901547667821017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.582 y[1] (analytic) = 0 y[1] (numeric) = 0.28273020976261658308116253907233 absolute error = 0.28273020976261658308116253907233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.583 y[1] (analytic) = 0 y[1] (numeric) = 0.28329921308131461987979193043443 absolute error = 0.28329921308131461987979193043443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.584 y[1] (analytic) = 0 y[1] (numeric) = 0.28386815413090433911145873954959 absolute error = 0.28386815413090433911145873954959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.585 y[1] (analytic) = 0 y[1] (numeric) = 0.28443703297076278145313861139649 absolute error = 0.28443703297076278145313861139649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.586 y[1] (analytic) = 0 y[1] (numeric) = 0.28500584966022536819435784605382 absolute error = 0.28500584966022536819435784605382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.587 y[1] (analytic) = 0 y[1] (numeric) = 0.2855746042585859508009815313932 absolute error = 0.2855746042585859508009815313932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.588 y[1] (analytic) = 0 y[1] (numeric) = 0.28614329682509686040725206636905 absolute error = 0.28614329682509686040725206636905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.589 y[1] (analytic) = 0 y[1] (numeric) = 0.28671192741896895723620894308657 absolute error = 0.28671192741896895723620894308657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.59 y[1] (analytic) = 0 y[1] (numeric) = 0.28728049609937167994862036946904 absolute error = 0.28728049609937167994862036946904 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.591 y[1] (analytic) = 0 y[1] (numeric) = 0.28784900292543309492055702872175 absolute error = 0.28784900292543309492055702872175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.592 y[1] (analytic) = 0 y[1] (numeric) = 0.28841744795623994544973798689902 absolute error = 0.28841744795623994544973798689902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=144.9MB, alloc=4.4MB, time=14.67 x[1] = 0.593 y[1] (analytic) = 0 y[1] (numeric) = 0.28898583125083770089077847572154 absolute error = 0.28898583125083770089077847572154 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.594 y[1] (analytic) = 0 y[1] (numeric) = 0.28955415286823060571946899436075 absolute error = 0.28955415286823060571946899436075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.595 y[1] (analytic) = 0 y[1] (numeric) = 0.29012241286738172852621489120376 absolute error = 0.29012241286738172852621489120376 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.596 y[1] (analytic) = 0 y[1] (numeric) = 0.29069061130721301093876530463369 absolute error = 0.29069061130721301093876530463369 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.597 y[1] (analytic) = 0 y[1] (numeric) = 0.29125874824660531647436006060454 absolute error = 0.29125874824660531647436006060454 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.598 y[1] (analytic) = 0 y[1] (numeric) = 0.29182682374439847932142284425417 absolute error = 0.29182682374439847932142284425417 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.599 y[1] (analytic) = 0 y[1] (numeric) = 0.29239483785939135305092868298229 absolute error = 0.29239483785939135305092868298229 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.6 y[1] (analytic) = 0 y[1] (numeric) = 0.29296279065034185925757349931956 absolute error = 0.29296279065034185925757349931956 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.601 y[1] (analytic) = 0 y[1] (numeric) = 0.29353068217596703613087321352761 absolute error = 0.29353068217596703613087321352761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.602 y[1] (analytic) = 0 y[1] (numeric) = 0.29409851249494308695631959819542 absolute error = 0.29409851249494308695631959819542 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.603 y[1] (analytic) = 0 y[1] (numeric) = 0.29466628166590542854671981013323 absolute error = 0.29466628166590542854671981013323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.604 y[1] (analytic) = 0 y[1] (numeric) = 0.29523398974744873960384624860863 absolute error = 0.29523398974744873960384624860863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.605 y[1] (analytic) = 0 y[1] (numeric) = 0.29580163679812700901052311341906 absolute error = 0.29580163679812700901052311341906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=148.7MB, alloc=4.4MB, time=15.10 x[1] = 0.606 y[1] (analytic) = 0 y[1] (numeric) = 0.29636922287645358405327576144808 absolute error = 0.29636922287645358405327576144808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.607 y[1] (analytic) = 0 y[1] (numeric) = 0.29693674804090121857566868620756 absolute error = 0.29693674804090121857566868620756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.608 y[1] (analytic) = 0 y[1] (numeric) = 0.29750421234990212106245767142258 absolute error = 0.29750421234990212106245767142258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.609 y[1] (analytic) = 0 y[1] (numeric) = 0.29807161586184800265468139696788 absolute error = 0.29807161586184800265468139696788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.61 y[1] (analytic) = 0 y[1] (numeric) = 0.29863895863509012509581750341226 absolute error = 0.29863895863509012509581750341226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.611 y[1] (analytic) = 0 y[1] (numeric) = 0.2992062407279393486091278500685 absolute error = 0.2992062407279393486091278500685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.612 y[1] (analytic) = 0 y[1] (numeric) = 0.29977346219866617970631743077899 absolute error = 0.29977346219866617970631743077899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.613 y[1] (analytic) = 0 y[1] (numeric) = 0.30034062310550081892763114168911 absolute error = 0.30034062310550081892763114168911 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.614 y[1] (analytic) = 0 y[1] (numeric) = 0.30090772350663320851351232597001 absolute error = 0.30090772350663320851351232597001 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.615 y[1] (analytic) = 0 y[1] (numeric) = 0.30147476346021308000794675184717 absolute error = 0.30147476346021308000794675184717 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.616 y[1] (analytic) = 0 y[1] (numeric) = 0.30204174302435000179361541236935 absolute error = 0.30204174302435000179361541236935 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.617 y[1] (analytic) = 0 y[1] (numeric) = 0.30260866225711342655897926811211 absolute error = 0.30260866225711342655897926811211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.618 y[1] (analytic) = 0 y[1] (numeric) = 0.30317552121653273869741878744927 absolute error = 0.30317552121653273869741878744927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=152.5MB, alloc=4.4MB, time=15.52 x[1] = 0.619 y[1] (analytic) = 0 y[1] (numeric) = 0.30374231996059730163855087314194 absolute error = 0.30374231996059730163855087314194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.62 y[1] (analytic) = 0 y[1] (numeric) = 0.30430905854725650511184549878673 absolute error = 0.30430905854725650511184549878673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.621 y[1] (analytic) = 0 y[1] (numeric) = 0.30487573703441981234266411413006 absolute error = 0.30487573703441981234266411413006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.622 y[1] (analytic) = 0 y[1] (numeric) = 0.3054423554799568071808416143924 absolute error = 0.3054423554799568071808416143924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.623 y[1] (analytic) = 0 y[1] (numeric) = 0.30600891394169724116193340555258 absolute error = 0.30600891394169724116193340555258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.624 y[1] (analytic) = 0 y[1] (numeric) = 0.30657541247743108050124883501636 absolute error = 0.30657541247743108050124883501636 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.625 y[1] (analytic) = 0 y[1] (numeric) = 0.30714185114490855302079199523299 absolute error = 0.30714185114490855302079199523299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.626 y[1] (analytic) = 0 y[1] (numeric) = 0.30770823000184019500923064662688 absolute error = 0.30770823000184019500923064662688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.627 y[1] (analytic) = 0 y[1] (numeric) = 0.30827454910589689801501374567656 absolute error = 0.30827454910589689801501374567656 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.628 y[1] (analytic) = 0 y[1] (numeric) = 0.30884080851470995557275780409795 absolute error = 0.30884080851470995557275780409795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.629 y[1] (analytic) = 0 y[1] (numeric) = 0.30940700828587110986302204587197 absolute error = 0.30940700828587110986302204587197 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.63 y[1] (analytic) = 0 y[1] (numeric) = 0.30997314847693259830559207029512 absolute error = 0.30997314847693259830559207029512 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.631 y[1] (analytic) = 0 y[1] (numeric) = 0.31053922914540720008639147132482 absolute error = 0.31053922914540720008639147132482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=156.4MB, alloc=4.4MB, time=15.94 x[1] = 0.632 y[1] (analytic) = 0 y[1] (numeric) = 0.31110525034876828261814060623622 absolute error = 0.31110525034876828261814060623622 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.633 y[1] (analytic) = 0 y[1] (numeric) = 0.31167121214444984793488145000278 absolute error = 0.31167121214444984793488145000278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.634 y[1] (analytic) = 0 y[1] (numeric) = 0.31223711458984657902048721585656 absolute error = 0.31223711458984657902048721585656 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.635 y[1] (analytic) = 0 y[1] (numeric) = 0.3128029577423138860712751671746 absolute error = 0.3128029577423138860712751671746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.636 y[1] (analytic) = 0 y[1] (numeric) = 0.31336874165916795269284079117272 absolute error = 0.31336874165916795269284079117272 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.637 y[1] (analytic) = 0 y[1] (numeric) = 0.31393446639768578203123125086587 absolute error = 0.31393446639768578203123125086587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.638 y[1] (analytic) = 0 y[1] (numeric) = 0.31450013201510524283857577837259 absolute error = 0.31450013201510524283857577837259 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.639 y[1] (analytic) = 0 y[1] (numeric) = 0.31506573856862511547329041989923 absolute error = 0.31506573856862511547329041989923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.64 y[1] (analytic) = 0 y[1] (numeric) = 0.315631286115405137834974290634 absolute error = 0.315631286115405137834974290634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.641 y[1] (analytic) = 0 y[1] (numeric) = 0.31619677471256605123411424631159 absolute error = 0.31619677471256605123411424631159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.642 y[1] (analytic) = 0 y[1] (numeric) = 0.31676220441718964619671462737252 absolute error = 0.31676220441718964619671462737252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.643 y[1] (analytic) = 0 y[1] (numeric) = 0.31732757528631880820396848143697 absolute error = 0.31732757528631880820396848143697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.644 y[1] (analytic) = 0 y[1] (numeric) = 0.31789288737695756336708642023801 absolute error = 0.31789288737695756336708642023801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.645 y[1] (analytic) = 0 y[1] (numeric) = 0.31845814074607112403739901821251 absolute error = 0.31845814074607112403739901821251 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=160.2MB, alloc=4.4MB, time=16.36 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.646 y[1] (analytic) = 0 y[1] (numeric) = 0.31902333545058593435184841162731 absolute error = 0.31902333545058593435184841162731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.647 y[1] (analytic) = 0 y[1] (numeric) = 0.31958847154738971571398450942232 absolute error = 0.31958847154738971571398450942232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.648 y[1] (analytic) = 0 y[1] (numeric) = 0.3201535490933315122105809798785 absolute error = 0.3201535490933315122105809798785 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.649 y[1] (analytic) = 0 y[1] (numeric) = 0.32071856814522173596398593076594 absolute error = 0.32071856814522173596398593076594 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.65 y[1] (analytic) = 0 y[1] (numeric) = 0.32128352875983221242032195479357 absolute error = 0.32128352875983221242032195479357 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.651 y[1] (analytic) = 0 y[1] (numeric) = 0.32184843099389622557364996696535 absolute error = 0.32184843099389622557364996696535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.652 y[1] (analytic) = 0 y[1] (numeric) = 0.32241327490410856312621101584674 absolute error = 0.32241327490410856312621101584674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.653 y[1] (analytic) = 0 y[1] (numeric) = 0.32297806054712556158486000675771 absolute error = 0.32297806054712556158486000675771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.654 y[1] (analytic) = 0 y[1] (numeric) = 0.32354278797956515129380503153293 absolute error = 0.32354278797956515129380503153293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.655 y[1] (analytic) = 0 y[1] (numeric) = 0.32410745725800690140376575672435 absolute error = 0.32410745725800690140376575672435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.656 y[1] (analytic) = 0 y[1] (numeric) = 0.32467206843899206477766407996418 absolute error = 0.32467206843899206477766407996418 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.657 y[1] (analytic) = 0 y[1] (numeric) = 0.32523662157902362283296002265569 absolute error = 0.32523662157902362283296002265569 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.658 y[1] (analytic) = 0 y[1] (numeric) = 0.32580111673456633032074558621374 absolute error = 0.32580111673456633032074558621374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=164.0MB, alloc=4.4MB, time=16.78 x[1] = 0.659 y[1] (analytic) = 0 y[1] (numeric) = 0.32636555396204676004170905873415 absolute error = 0.32636555396204676004170905873415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.66 y[1] (analytic) = 0 y[1] (numeric) = 0.32692993331785334749908201923011 absolute error = 0.32692993331785334749908201923011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.661 y[1] (analytic) = 0 y[1] (numeric) = 0.32749425485833643548868104743198 absolute error = 0.32749425485833643548868104743198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.662 y[1] (analytic) = 0 y[1] (numeric) = 0.32805851863980831862615590860351 absolute error = 0.32805851863980831862615590860351 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.663 y[1] (analytic) = 0 y[1] (numeric) = 0.32862272471854328781155574487995 absolute error = 0.32862272471854328781155574487995 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.664 y[1] (analytic) = 0 y[1] (numeric) = 0.32918687315077767463132456728056 absolute error = 0.32918687315077767463132456728056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.665 y[1] (analytic) = 0 y[1] (numeric) = 0.32975096399270989569783710578809 absolute error = 0.32975096399270989569783710578809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.666 y[1] (analytic) = 0 y[1] (numeric) = 0.33031499730050049692658583871864 absolute error = 0.33031499730050049692658583871864 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.667 y[1] (analytic) = 0 y[1] (numeric) = 0.3308789731302721977511297870256 absolute error = 0.3308789731302721977511297870256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.668 y[1] (analytic) = 0 y[1] (numeric) = 0.33144289153810993527591542418954 absolute error = 0.33144289153810993527591542418954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.669 y[1] (analytic) = 0 y[1] (numeric) = 0.33200675258006090836707981793998 absolute error = 0.33200675258006090836707981793998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.67 y[1] (analytic) = 0 y[1] (numeric) = 0.33257055631213462168134588623322 absolute error = 0.33257055631213462168134588623322 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.671 y[1] (analytic) = 0 y[1] (numeric) = 0.33313430279030292963311941667155 absolute error = 0.33313430279030292963311941667155 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=167.8MB, alloc=4.4MB, time=17.21 x[1] = 0.672 y[1] (analytic) = 0 y[1] (numeric) = 0.33369799207050008029989726589127 absolute error = 0.33369799207050008029989726589127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.673 y[1] (analytic) = 0 y[1] (numeric) = 0.3342616242086227592660959233681 absolute error = 0.3342616242086227592660959233681 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.674 y[1] (analytic) = 0 y[1] (numeric) = 0.3348251992605301334054093925878 absolute error = 0.3348251992605301334054093925878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.675 y[1] (analytic) = 0 y[1] (numeric) = 0.33538871728204389460180511160471 absolute error = 0.33538871728204389460180511160471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.676 y[1] (analytic) = 0 y[1] (numeric) = 0.33595217832894830340926640466039 absolute error = 0.33595217832894830340926640466039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.677 y[1] (analytic) = 0 y[1] (numeric) = 0.33651558245699023265038972675663 absolute error = 0.33651558245699023265038972675663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.678 y[1] (analytic) = 0 y[1] (numeric) = 0.33707892972187921095394473387033 absolute error = 0.33707892972187921095394473387033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.679 y[1] (analytic) = 0 y[1] (numeric) = 0.33764222017928746623150498286044 absolute error = 0.33764222017928746623150498286044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.68 y[1] (analytic) = 0 y[1] (numeric) = 0.33820545388484996909325683704756 absolute error = 0.33820545388484996909325683704756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.681 y[1] (analytic) = 0 y[1] (numeric) = 0.33876863089416447620309392594358 absolute error = 0.33876863089416447620309392594358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.682 y[1] (analytic) = 0 y[1] (numeric) = 0.33933175126279157357310428067 absolute error = 0.33933175126279157357310428067 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.683 y[1] (analytic) = 0 y[1] (numeric) = 0.33989481504625471979755704022782 absolute error = 0.33989481504625471979755704022782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.684 y[1] (analytic) = 0 y[1] (numeric) = 0.34045782230004028922649539796762 absolute error = 0.34045782230004028922649539796762 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=171.6MB, alloc=4.4MB, time=17.63 x[1] = 0.685 y[1] (analytic) = 0 y[1] (numeric) = 0.34102077307959761507904223235373 absolute error = 0.34102077307959761507904223235373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.686 y[1] (analytic) = 0 y[1] (numeric) = 0.34158366744033903249652464142011 absolute error = 0.34158366744033903249652464142011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.687 y[1] (analytic) = 0 y[1] (numeric) = 0.3421465054376399215355233761757 absolute error = 0.3421465054376399215355233761757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.688 y[1] (analytic) = 0 y[1] (numeric) = 0.34270928712683875010095294463219 absolute error = 0.34270928712683875010095294463219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.689 y[1] (analytic) = 0 y[1] (numeric) = 0.34327201256323711681927793509582 absolute error = 0.34327201256323711681927793509582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.69 y[1] (analytic) = 0 y[1] (numeric) = 0.34383468180209979385197088488522 absolute error = 0.34383468180209979385197088488522 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.691 y[1] (analytic) = 0 y[1] (numeric) = 0.34439729489865476964931679870808 absolute error = 0.34439729489865476964931679870808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.692 y[1] (analytic) = 0 y[1] (numeric) = 0.344959851908093291644669199549 absolute error = 0.344959851908093291644669199549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.693 y[1] (analytic) = 0 y[1] (numeric) = 0.34552235288556990888926237408727 absolute error = 0.34552235288556990888926237408727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.694 y[1] (analytic) = 0 y[1] (numeric) = 0.34608479788620251462768425437577 absolute error = 0.34608479788620251462768425437577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.695 y[1] (analytic) = 0 y[1] (numeric) = 0.3466471869650723888141141577684 absolute error = 0.3466471869650723888141141577684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.696 y[1] (analytic) = 0 y[1] (numeric) = 0.34720952017722424056942938788212 absolute error = 0.34720952017722424056942938788212 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.697 y[1] (analytic) = 0 y[1] (numeric) = 0.3477717975776662505792844807196 absolute error = 0.3477717975776662505792844807196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.698 y[1] (analytic) = 0 y[1] (numeric) = 0.34833401922137011343326666195753 absolute error = 0.34833401922137011343326666195753 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=175.4MB, alloc=4.4MB, time=18.05 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.699 y[1] (analytic) = 0 y[1] (numeric) = 0.34889618516327107990523086382283 absolute error = 0.34889618516327107990523086382283 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.7 y[1] (analytic) = 0 y[1] (numeric) = 0.34945829545826799917491743293243 absolute error = 0.34945829545826799917491743293243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.701 y[1] (analytic) = 0 y[1] (numeric) = 0.35002035016122336099095544396056 absolute error = 0.35002035016122336099095544396056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.702 y[1] (analytic) = 0 y[1] (numeric) = 0.35058234932696333777535431801927 absolute error = 0.35058234932696333777535431801927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.703 y[1] (analytic) = 0 y[1] (numeric) = 0.35114429301027782666958622919136 absolute error = 0.35114429301027782666958622919136 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.704 y[1] (analytic) = 0 y[1] (numeric) = 0.35170618126592049152236156773874 absolute error = 0.35170618126592049152236156773874 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.705 y[1] (analytic) = 0 y[1] (numeric) = 0.35226801414860880481919951412181 absolute error = 0.35226801414860880481919951412181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.706 y[1] (analytic) = 0 y[1] (numeric) = 0.35282979171302408955389556410568 absolute error = 0.35282979171302408955389556410568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.707 y[1] (analytic) = 0 y[1] (numeric) = 0.35339151401381156104198763189464 absolute error = 0.35339151401381156104198763189464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.708 y[1] (analytic) = 0 y[1] (numeric) = 0.35395318110558036867632214542663 absolute error = 0.35395318110558036867632214542663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.709 y[1] (analytic) = 0 y[1] (numeric) = 0.35451479304290363762482133567248 absolute error = 0.35451479304290363762482133567248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.71 y[1] (analytic) = 0 y[1] (numeric) = 0.35507634988031851047055271001915 absolute error = 0.35507634988031851047055271001915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.711 y[1] (analytic) = 0 y[1] (numeric) = 0.35563785167232618879420148857068 absolute error = 0.35563785167232618879420148857068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=179.3MB, alloc=4.4MB, time=18.48 x[1] = 0.712 y[1] (analytic) = 0 y[1] (numeric) = 0.35619929847339197469904657147321 absolute error = 0.35619929847339197469904657147321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.713 y[1] (analytic) = 0 y[1] (numeric) = 0.35676069033794531227854039516055 absolute error = 0.35676069033794531227854039516055 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.714 y[1] (analytic) = 0 y[1] (numeric) = 0.35732202732037982902659282572187 absolute error = 0.35732202732037982902659282572187 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.715 y[1] (analytic) = 0 y[1] (numeric) = 0.35788330947505337719065902841281 absolute error = 0.35788330947505337719065902841281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.716 y[1] (analytic) = 0 y[1] (numeric) = 0.35844453685628807506773104366323 absolute error = 0.35844453685628807506773104366323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.717 y[1] (analytic) = 0 y[1] (numeric) = 0.35900570951837034824333259177824 absolute error = 0.35900570951837034824333259177824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.718 y[1] (analytic) = 0 y[1] (numeric) = 0.35956682751555097077361642088206 absolute error = 0.35956682751555097077361642088206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.719 y[1] (analytic) = 0 y[1] (numeric) = 0.36012789090204510631066330551576 absolute error = 0.36012789090204510631066330551576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.72 y[1] (analytic) = 0 y[1] (numeric) = 0.36068889973203234917108159666816 absolute error = 0.36068889973203234917108159666816 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.721 y[1] (analytic) = 0 y[1] (numeric) = 0.3612498540596567653480060178928 absolute error = 0.3612498540596567653480060178928 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.722 y[1] (analytic) = 0 y[1] (numeric) = 0.36181075393902693346659419654169 absolute error = 0.36181075393902693346659419654169 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.723 y[1] (analytic) = 0 y[1] (numeric) = 0.36237159942421598568311921402701 absolute error = 0.36237159942421598568311921402701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.724 y[1] (analytic) = 0 y[1] (numeric) = 0.36293239056926164852775625440341 absolute error = 0.36293239056926164852775625440341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=183.1MB, alloc=4.4MB, time=18.89 x[1] = 0.725 y[1] (analytic) = 0 y[1] (numeric) = 0.36349312742816628369116122644497 absolute error = 0.36349312742816628369116122644497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.726 y[1] (analytic) = 0 y[1] (numeric) = 0.36405381005489692875493903077076 absolute error = 0.36405381005489692875493903077076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.727 y[1] (analytic) = 0 y[1] (numeric) = 0.36461443850338533786609894044964 absolute error = 0.36461443850338533786609894044964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.728 y[1] (analytic) = 0 y[1] (numeric) = 0.36517501282752802235559436088743 absolute error = 0.36517501282752802235559436088743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.729 y[1] (analytic) = 0 y[1] (numeric) = 0.36573553308118629130104403266611 absolute error = 0.36573553308118629130104403266611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.73 y[1] (analytic) = 0 y[1] (numeric) = 0.36629599931818629203373153936428 absolute error = 0.36629599931818629203373153936428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.731 y[1] (analytic) = 0 y[1] (numeric) = 0.36685641159231905058997978123895 absolute error = 0.36685641159231905058997978123895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.732 y[1] (analytic) = 0 y[1] (numeric) = 0.36741676995734051210699687498967 absolute error = 0.36741676995734051210699687498967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.733 y[1] (analytic) = 0 y[1] (numeric) = 0.36797707446697158116328973965585 absolute error = 0.36797707446697158116328973965585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.734 y[1] (analytic) = 0 y[1] (numeric) = 0.36853732517489816206374142901497 absolute error = 0.36853732517489816206374142901497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.735 y[1] (analytic) = 0 y[1] (numeric) = 0.3690975221347711990694480716525 absolute error = 0.3690975221347711990694480716525 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.736 y[1] (analytic) = 0 y[1] (numeric) = 0.36965766540020671657241108116186 absolute error = 0.36965766540020671657241108116186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.737 y[1] (analytic) = 0 y[1] (numeric) = 0.37021775502478585921518010070372 absolute error = 0.37021775502478585921518010070372 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=186.9MB, alloc=4.5MB, time=19.32 x[1] = 0.738 y[1] (analytic) = 0 y[1] (numeric) = 0.37077779106205493195554194840657 absolute error = 0.37077779106205493195554194840657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.739 y[1] (analytic) = 0 y[1] (numeric) = 0.37133777356552544007635063282398 absolute error = 0.37133777356552544007635063282398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.74 y[1] (analytic) = 0 y[1] (numeric) = 0.37189770258867412914059331087636 absolute error = 0.37189770258867412914059331087636 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.741 y[1] (analytic) = 0 y[1] (numeric) = 0.37245757818494302489178686439556 absolute error = 0.37245757818494302489178686439556 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.742 y[1] (analytic) = 0 y[1] (numeric) = 0.37301740040773947309979957555756 absolute error = 0.37301740040773947309979957555756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.743 y[1] (analytic) = 0 y[1] (numeric) = 0.37357716931043617935219218613076 absolute error = 0.37357716931043617935219218613076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.744 y[1] (analytic) = 0 y[1] (numeric) = 0.37413688494637124879117243058335 absolute error = 0.37413688494637124879117243058335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.745 y[1] (analytic) = 0 y[1] (numeric) = 0.37469654736884822579625693868203 absolute error = 0.37469654736884822579625693868203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.746 y[1] (analytic) = 0 y[1] (numeric) = 0.37525615663113613361273420927405 absolute error = 0.37525615663113613361273420927405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.747 y[1] (analytic) = 0 y[1] (numeric) = 0.37581571278646951392602216347464 absolute error = 0.37581571278646951392602216347464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.748 y[1] (analytic) = 0 y[1] (numeric) = 0.37637521588804846638201359248012 absolute error = 0.37637521588804846638201359248012 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.749 y[1] (analytic) = 0 y[1] (numeric) = 0.37693466598903868805350262269293 absolute error = 0.37693466598903868805350262269293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.75 y[1] (analytic) = 0 y[1] (numeric) = 0.37749406314257151285278512877667 absolute error = 0.37749406314257151285278512877667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.751 y[1] (analytic) = 0 y[1] (numeric) = 0.3780534074017439508905258336556 absolute error = 0.3780534074017439508905258336556 relative error = -1 % Correct digits = -1 h = 0.001 memory used=190.7MB, alloc=4.5MB, time=19.74 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.752 y[1] (analytic) = 0 y[1] (numeric) = 0.37861269881961872778098464333329 absolute error = 0.37861269881961872778098464333329 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.753 y[1] (analytic) = 0 y[1] (numeric) = 0.37917193744922432389369457372709 absolute error = 0.37917193744922432389369457372709 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.754 y[1] (analytic) = 0 y[1] (numeric) = 0.37973112334355501355168343649815 absolute error = 0.37973112334355501355168343649815 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.755 y[1] (analytic) = 0 y[1] (numeric) = 0.38029025655557090417633126109932 absolute error = 0.38029025655557090417633126109932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.756 y[1] (analytic) = 0 y[1] (numeric) = 0.38084933713819797537895524096411 absolute error = 0.38084933713819797537895524096411 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.757 y[1] (analytic) = 0 y[1] (numeric) = 0.38140836514432811799921380291791 absolute error = 0.38140836514432811799921380291791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.758 y[1] (analytic) = 0 y[1] (numeric) = 0.38196734062681917309042121050635 absolute error = 0.38196734062681917309042121050635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.759 y[1] (analytic) = 0 y[1] (numeric) = 0.38252626363849497085186392400381 absolute error = 0.38252626363849497085186392400381 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.76 y[1] (analytic) = 0 y[1] (numeric) = 0.3830851342321453695082097523867 absolute error = 0.3830851342321453695082097523867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.761 y[1] (analytic) = 0 y[1] (numeric) = 0.38364395246052629413610064552943 absolute error = 0.38364395246052629413610064552943 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.762 y[1] (analytic) = 0 y[1] (numeric) = 0.38420271837635977543801978830523 absolute error = 0.38420271837635977543801978830523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.763 y[1] (analytic) = 0 y[1] (numeric) = 0.38476143203233398846352347214776 absolute error = 0.38476143203233398846352347214776 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.764 y[1] (analytic) = 0 y[1] (numeric) = 0.38532009348110329127792803395108 absolute error = 0.38532009348110329127792803395108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=194.5MB, alloc=4.5MB, time=20.17 x[1] = 0.765 y[1] (analytic) = 0 y[1] (numeric) = 0.38587870277528826357854196695479 absolute error = 0.38587870277528826357854196695479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.766 y[1] (analytic) = 0 y[1] (numeric) = 0.38643725996747574525853312347563 absolute error = 0.38643725996747574525853312347563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.767 y[1] (analytic) = 0 y[1] (numeric) = 0.38699576511021887491852074500606 absolute error = 0.38699576511021887491852074500606 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.768 y[1] (analytic) = 0 y[1] (numeric) = 0.387554218256037128325981871303 absolute error = 0.387554218256037128325981871303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.769 y[1] (analytic) = 0 y[1] (numeric) = 0.38811261945741635682256149663427 absolute error = 0.38811261945741635682256149663427 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.77 y[1] (analytic) = 0 y[1] (numeric) = 0.388670968766808825679375658336 absolute error = 0.388670968766808825679375658336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.771 y[1] (analytic) = 0 y[1] (numeric) = 0.38922926623663325240039646025915 absolute error = 0.38922926623663325240039646025915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.772 y[1] (analytic) = 0 y[1] (numeric) = 0.38978751191927484497400785154695 absolute error = 0.38978751191927484497400785154695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.773 y[1] (analytic) = 0 y[1] (numeric) = 0.39034570586708534007282079948571 absolute error = 0.39034570586708534007282079948571 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.774 y[1] (analytic) = 0 y[1] (numeric) = 0.39090384813238304120183631390831 absolute error = 0.39090384813238304120183631390831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.775 y[1] (analytic) = 0 y[1] (numeric) = 0.39146193876745285679504459980116 absolute error = 0.39146193876745285679504459980116 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.776 y[1] (analytic) = 0 y[1] (numeric) = 0.39201997782454633826054843437058 absolute error = 0.39201997782454633826054843437058 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.777 y[1] (analytic) = 0 y[1] (numeric) = 0.39257796535588171797429868486226 absolute error = 0.39257796535588171797429868486226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=198.3MB, alloc=4.5MB, time=20.60 x[1] = 0.778 y[1] (analytic) = 0 y[1] (numeric) = 0.3931359014136439472225297038961 absolute error = 0.3931359014136439472225297038961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.779 y[1] (analytic) = 0 y[1] (numeric) = 0.39369378604998473409298215997775 absolute error = 0.39369378604998473409298215997775 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.78 y[1] (analytic) = 0 y[1] (numeric) = 0.39425161931702258131500068217572 absolute error = 0.39425161931702258131500068217572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.781 y[1] (analytic) = 0 y[1] (numeric) = 0.39480940126684282404859351970842 absolute error = 0.39480940126684282404859351970842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.782 y[1] (analytic) = 0 y[1] (numeric) = 0.39536713195149766762254123936729 absolute error = 0.39536713195149766762254123936729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.783 y[1] (analytic) = 0 y[1] (numeric) = 0.39592481142300622522164130630947 absolute error = 0.39592481142300622522164130630947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.784 y[1] (analytic) = 0 y[1] (numeric) = 0.39648243973335455552317521678467 absolute error = 0.39648243973335455552317521678467 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.785 y[1] (analytic) = 0 y[1] (numeric) = 0.39704001693449570028268467481538 absolute error = 0.39704001693449570028268467481538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.786 y[1] (analytic) = 0 y[1] (numeric) = 0.39759754307834972186914312872564 absolute error = 0.39759754307834972186914312872564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.787 y[1] (analytic) = 0 y[1] (numeric) = 0.39815501821680374074960880771051 absolute error = 0.39815501821680374074960880771051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.788 y[1] (analytic) = 0 y[1] (numeric) = 0.39871244240171197292344522335465 absolute error = 0.39871244240171197292344522335465 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.789 y[1] (analytic) = 0 y[1] (numeric) = 0.39926981568489576730619492614322 absolute error = 0.39926981568489576730619492614322 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.79 y[1] (analytic) = 0 y[1] (numeric) = 0.39982713811814364306319213256014 absolute error = 0.39982713811814364306319213256014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=202.1MB, alloc=4.5MB, time=21.03 x[1] = 0.791 y[1] (analytic) = 0 y[1] (numeric) = 0.400384409753211326892999664337 absolute error = 0.400384409753211326892999664337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.792 y[1] (analytic) = 0 y[1] (numeric) = 0.40094163064182179026075546779845 absolute error = 0.40094163064182179026075546779845 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.793 y[1] (analytic) = 0 y[1] (numeric) = 0.40149880083566528658151380804712 absolute error = 0.40149880083566528658151380804712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.794 y[1] (analytic) = 0 y[1] (numeric) = 0.4020559203863993883536660599401 absolute error = 0.4020559203863993883536660599401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.795 y[1] (analytic) = 0 y[1] (numeric) = 0.40261298934564902424252584543025 absolute error = 0.40261298934564902424252584543025 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.796 y[1] (analytic) = 0 y[1] (numeric) = 0.40317000776500651611416309487678 absolute error = 0.40317000776500651611416309487678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.797 y[1] (analytic) = 0 y[1] (numeric) = 0.40372697569603161601957143837023 absolute error = 0.40372697569603161601957143837023 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.798 y[1] (analytic) = 0 y[1] (numeric) = 0.40428389319025154312925316196582 absolute error = 0.40428389319025154312925316196582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.799 y[1] (analytic) = 0 y[1] (numeric) = 0.40484076029916102061830579297481 absolute error = 0.40484076029916102061830579297481 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.8 y[1] (analytic) = 0 y[1] (numeric) = 0.40539757707422231250209420812558 absolute error = 0.40539757707422231250209420812558 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.801 y[1] (analytic) = 0 y[1] (numeric) = 0.40595434356686526042259198847245 absolute error = 0.40595434356686526042259198847245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.802 y[1] (analytic) = 0 y[1] (numeric) = 0.40651105982848732038547557540075 absolute error = 0.40651105982848732038547557540075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.803 y[1] (analytic) = 0 y[1] (numeric) = 0.40706772591045359944805461294964 absolute error = 0.40706772591045359944805461294964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=206.0MB, alloc=4.5MB, time=21.45 x[1] = 0.804 y[1] (analytic) = 0 y[1] (numeric) = 0.40762434186409689235812169294847 absolute error = 0.40762434186409689235812169294847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.805 y[1] (analytic) = 0 y[1] (numeric) = 0.40818090774071771814380455113761 absolute error = 0.40818090774071771814380455113761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.806 y[1] (analytic) = 0 y[1] (numeric) = 0.40873742359158435665450359451866 absolute error = 0.40873742359158435665450359451866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.807 y[1] (analytic) = 0 y[1] (numeric) = 0.40929388946793288505299747265169 absolute error = 0.40929388946793288505299747265169 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.808 y[1] (analytic) = 0 y[1] (numeric) = 0.40985030542096721425879923848653 absolute error = 0.40985030542096721425879923848653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.809 y[1] (analytic) = 0 y[1] (numeric) = 0.41040667150185912534284547758116 absolute error = 0.41040667150185912534284547758116 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.81 y[1] (analytic) = 0 y[1] (numeric) = 0.4109629877617483058736006182206 absolute error = 0.4109629877617483058736006182206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.811 y[1] (analytic) = 0 y[1] (numeric) = 0.41151925425174238621465846900472 absolute error = 0.41151925425174238621465846900472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.812 y[1] (analytic) = 0 y[1] (numeric) = 0.41207547102291697577392286492064 absolute error = 0.41207547102291697577392286492064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.813 y[1] (analytic) = 0 y[1] (numeric) = 0.41263163812631569920444913775471 absolute error = 0.41263163812631569920444913775471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.814 y[1] (analytic) = 0 y[1] (numeric) = 0.41318775561295023255702796192923 absolute error = 0.41318775561295023255702796192923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.815 y[1] (analytic) = 0 y[1] (numeric) = 0.41374382353380033938459296246845 absolute error = 0.41374382353380033938459296246845 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.816 y[1] (analytic) = 0 y[1] (numeric) = 0.41429984193981390679853330780694 absolute error = 0.41429984193981390679853330780694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.817 y[1] (analytic) = 0 y[1] (numeric) = 0.41485581088190698147699234654902 absolute error = 0.41485581088190698147699234654902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=209.8MB, alloc=4.5MB, time=21.87 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.818 y[1] (analytic) = 0 y[1] (numeric) = 0.41541173041096380562523318407033 absolute error = 0.41541173041096380562523318407033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.819 y[1] (analytic) = 0 y[1] (numeric) = 0.41596760057783685288815193202035 absolute error = 0.41596760057783685288815193202035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.82 y[1] (analytic) = 0 y[1] (numeric) = 0.41652342143334686421501920133674 absolute error = 0.41652342143334686421501920133674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.821 y[1] (analytic) = 0 y[1] (numeric) = 0.41707919302828288367653024731802 absolute error = 0.41707919302828288367653024731802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.822 y[1] (analytic) = 0 y[1] (numeric) = 0.41763491541340229423424401361872 absolute error = 0.41763491541340229423424401361872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.823 y[1] (analytic) = 0 y[1] (numeric) = 0.41819058863943085346249116073031 absolute error = 0.41819058863943085346249116073031 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.824 y[1] (analytic) = 0 y[1] (numeric) = 0.41874621275706272922283100359064 absolute error = 0.41874621275706272922283100359064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.825 y[1] (analytic) = 0 y[1] (numeric) = 0.41930178781696053529113712242292 absolute error = 0.41930178781696053529113712242292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.826 y[1] (analytic) = 0 y[1] (numeric) = 0.4198573138697553669373912507422 absolute error = 0.4198573138697553669373912507422 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.827 y[1] (analytic) = 0 y[1] (numeric) = 0.4204127909660468364582648846812 absolute error = 0.4204127909660468364582648846812 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.828 y[1] (analytic) = 0 y[1] (numeric) = 0.42096821915640310866256789837723 absolute error = 0.42096821915640310866256789837723 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.829 y[1] (analytic) = 0 y[1] (numeric) = 0.42152359849136093630964329112729 absolute error = 0.42152359849136093630964329112729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.83 y[1] (analytic) = 0 y[1] (numeric) = 0.42207892902142569550078703335752 absolute error = 0.42207892902142569550078703335752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=213.6MB, alloc=4.5MB, time=22.30 x[1] = 0.831 y[1] (analytic) = 0 y[1] (numeric) = 0.42263421079707142102377182016585 absolute error = 0.42263421079707142102377182016585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.832 y[1] (analytic) = 0 y[1] (numeric) = 0.42318944386874084165055338328077 absolute error = 0.42318944386874084165055338328077 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.833 y[1] (analytic) = 0 y[1] (numeric) = 0.42374462828684541538823785473514 absolute error = 0.42374462828684541538823785473514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.834 y[1] (analytic) = 0 y[1] (numeric) = 0.42429976410176536468338851837927 absolute error = 0.42429976410176536468338851837927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.835 y[1] (analytic) = 0 y[1] (numeric) = 0.42485485136384971157975012855241 absolute error = 0.42485485136384971157975012855241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.836 y[1] (analytic) = 0 y[1] (numeric) = 0.42540989012341631282946881879465 absolute error = 0.42540989012341631282946881879465 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.837 y[1] (analytic) = 0 y[1] (numeric) = 0.42596488043075189495788546741102 absolute error = 0.42596488043075189495788546741102 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.838 y[1] (analytic) = 0 y[1] (numeric) = 0.42651982233611208928198023099578 absolute error = 0.42651982233611208928198023099578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.839 y[1] (analytic) = 0 y[1] (numeric) = 0.427074715889721466882545801686 absolute error = 0.427074715889721466882545801686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.84 y[1] (analytic) = 0 y[1] (numeric) = 0.42762956114177357353016678893877 absolute error = 0.42762956114177357353016678893877 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.841 y[1] (analytic) = 0 y[1] (numeric) = 0.42818435814243096456508247201498 absolute error = 0.42818435814243096456508247201498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.842 y[1] (analytic) = 0 y[1] (numeric) = 0.4287391069418252397310100151032 absolute error = 0.4287391069418252397310100151032 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.843 y[1] (analytic) = 0 y[1] (numeric) = 0.42929380759005707796300508312898 absolute error = 0.42929380759005707796300508312898 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=217.4MB, alloc=4.5MB, time=22.72 x[1] = 0.844 y[1] (analytic) = 0 y[1] (numeric) = 0.42984846013719627212943664276718 absolute error = 0.42984846013719627212943664276718 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.845 y[1] (analytic) = 0 y[1] (numeric) = 0.43040306463328176372815258000598 absolute error = 0.43040306463328176372815258000598 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.846 y[1] (analytic) = 0 y[1] (numeric) = 0.43095762112832167753691261280132 absolute error = 0.43095762112832167753691261280132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.847 y[1] (analytic) = 0 y[1] (numeric) = 0.43151212967229335621816482490705 absolute error = 0.43151212967229335621816482490705 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.848 y[1] (analytic) = 0 y[1] (numeric) = 0.43206659031514339487824199486982 absolute error = 0.43206659031514339487824199486982 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.849 y[1] (analytic) = 0 y[1] (numeric) = 0.43262100310678767558105374243636 absolute error = 0.43262100310678767558105374243636 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.85 y[1] (analytic) = 0 y[1] (numeric) = 0.43317536809711140181635036323406 absolute error = 0.43317536809711140181635036323406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.851 y[1] (analytic) = 0 y[1] (numeric) = 0.43372968533596913292263407155268 absolute error = 0.43372968533596913292263407155268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.852 y[1] (analytic) = 0 y[1] (numeric) = 0.43428395487318481846479322037414 absolute error = 0.43428395487318481846479322037414 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.853 y[1] (analytic) = 0 y[1] (numeric) = 0.43483817675855183256653491746861 absolute error = 0.43483817675855183256653491746861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.854 y[1] (analytic) = 0 y[1] (numeric) = 0.43539235104183300819769130639647 absolute error = 0.43539235104183300819769130639647 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.855 y[1] (analytic) = 0 y[1] (numeric) = 0.43594647777276067141647463162732 absolute error = 0.43594647777276067141647463162732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.856 y[1] (analytic) = 0 y[1] (numeric) = 0.43650055700103667556675605770728 absolute error = 0.43650055700103667556675605770728 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=221.2MB, alloc=4.5MB, time=23.14 x[1] = 0.857 y[1] (analytic) = 0 y[1] (numeric) = 0.43705458877633243543044306347402 absolute error = 0.43705458877633243543044306347402 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.858 y[1] (analytic) = 0 y[1] (numeric) = 0.43760857314828896133503008373378 absolute error = 0.43760857314828896133503008373378 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.859 y[1] (analytic) = 0 y[1] (numeric) = 0.43816251016651689321639692257579 absolute error = 0.43816251016651689321639692257579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.86 y[1] (analytic) = 0 y[1] (numeric) = 0.43871639988059653463692931460558 absolute error = 0.43871639988059653463692931460558 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.861 y[1] (analytic) = 0 y[1] (numeric) = 0.43927024234007788675903586282882 absolute error = 0.43927024234007788675903586282882 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.862 y[1] (analytic) = 0 y[1] (numeric) = 0.43982403759448068227413543471092 absolute error = 0.43982403759448068227413543471092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.863 y[1] (analytic) = 0 y[1] (numeric) = 0.44037778569329441928718895107346 absolute error = 0.44037778569329441928718895107346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.864 y[1] (analytic) = 0 y[1] (numeric) = 0.44093148668597839515684935596564 absolute error = 0.44093148668597839515684935596564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.865 y[1] (analytic) = 0 y[1] (numeric) = 0.44148514062196174029130340946672 absolute error = 0.44148514062196174029130340946672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.866 y[1] (analytic) = 0 y[1] (numeric) = 0.44203874755064345189987879953274 absolute error = 0.44203874755064345189987879953274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.867 y[1] (analytic) = 0 y[1] (numeric) = 0.44259230752139242770048992349683 absolute error = 0.44259230752139242770048992349683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.868 y[1] (analytic) = 0 y[1] (numeric) = 0.44314582058354749958299554466613 absolute error = 0.44314582058354749958299554466613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.869 y[1] (analytic) = 0 y[1] (numeric) = 0.44369928678641746722854138462898 absolute error = 0.44369928678641746722854138462898 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.87 y[1] (analytic) = 0 y[1] (numeric) = 0.44425270617928113168496056739277 absolute error = 0.44425270617928113168496056739277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=225.0MB, alloc=4.5MB, time=23.57 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.871 y[1] (analytic) = 0 y[1] (numeric) = 0.44480607881138732889830468731445 absolute error = 0.44480607881138732889830468731445 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.872 y[1] (analytic) = 0 y[1] (numeric) = 0.4453594047319549632005781289617 absolute error = 0.4453594047319549632005781289617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.873 y[1] (analytic) = 0 y[1] (numeric) = 0.44591268399017304075374812355183 absolute error = 0.44591268399017304075374812355183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.874 y[1] (analytic) = 0 y[1] (numeric) = 0.44646591663520070295010288345729 absolute error = 0.44646591663520070295010288345729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.875 y[1] (analytic) = 0 y[1] (numeric) = 0.44701910271616725976903001343969 absolute error = 0.44701910271616725976903001343969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.876 y[1] (analytic) = 0 y[1] (numeric) = 0.44757224228217222309028725477802 absolute error = 0.44757224228217222309028725477802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.877 y[1] (analytic) = 0 y[1] (numeric) = 0.44812533538228533996383747629045 absolute error = 0.44812533538228533996383747629045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.878 y[1] (analytic) = 0 y[1] (numeric) = 0.4486783820655466258363196844115 absolute error = 0.4486783820655466258363196844115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.879 y[1] (analytic) = 0 y[1] (numeric) = 0.44923138238096639773422768297672 absolute error = 0.44923138238096639773422768297672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.88 y[1] (analytic) = 0 y[1] (numeric) = 0.44978433637752530740386787218493 absolute error = 0.44978433637752530740386787218493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.881 y[1] (analytic) = 0 y[1] (numeric) = 0.45033724410417437440816753535168 absolute error = 0.45033724410417437440816753535168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.882 y[1] (analytic) = 0 y[1] (numeric) = 0.45089010560983501918040482153716 absolute error = 0.45089010560983501918040482153716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.883 y[1] (analytic) = 0 y[1] (numeric) = 0.45144292094339909603493149192545 absolute error = 0.45144292094339909603493149192545 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=228.8MB, alloc=4.5MB, time=23.99 x[1] = 0.884 y[1] (analytic) = 0 y[1] (numeric) = 0.45199569015372892613495935794974 absolute error = 0.45199569015372892613495935794974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.885 y[1] (analytic) = 0 y[1] (numeric) = 0.4525484132896573304174811995984 absolute error = 0.4525484132896573304174811995984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.886 y[1] (analytic) = 0 y[1] (numeric) = 0.45310109039998766247539681309923 absolute error = 0.45310109039998766247539681309923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.887 y[1] (analytic) = 0 y[1] (numeric) = 0.45365372153349384139691469826262 absolute error = 0.45365372153349384139691469826262 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.888 y[1] (analytic) = 0 y[1] (numeric) = 0.45420630673892038456229975716826 absolute error = 0.45420630673892038456229975716826 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.889 y[1] (analytic) = 0 y[1] (numeric) = 0.45475884606498244039803723760295 absolute error = 0.45475884606498244039803723760295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.89 y[1] (analytic) = 0 y[1] (numeric) = 0.45531133956036582108848301669908 absolute error = 0.45531133956036582108848301669908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.891 y[1] (analytic) = 0 y[1] (numeric) = 0.45586378727372703524507018258268 absolute error = 0.45586378727372703524507018258268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.892 y[1] (analytic) = 0 y[1] (numeric) = 0.45641618925369332053314173451635 absolute error = 0.45641618925369332053314173451635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.893 y[1] (analytic) = 0 y[1] (numeric) = 0.45696854554886267625647908501482 absolute error = 0.45696854554886267625647908501482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.894 y[1] (analytic) = 0 y[1] (numeric) = 0.45752085620780389589959591071855 absolute error = 0.45752085620780389589959591071855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.895 y[1] (analytic) = 0 y[1] (numeric) = 0.45807312127905659962786676243277 absolute error = 0.45807312127905659962786676243277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.896 y[1] (analytic) = 0 y[1] (numeric) = 0.458625340811131266745559708675 absolute error = 0.458625340811131266745559708675 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=232.7MB, alloc=4.5MB, time=24.41 x[1] = 0.897 y[1] (analytic) = 0 y[1] (numeric) = 0.45917751485250926811184215132242 absolute error = 0.45917751485250926811184215132242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.898 y[1] (analytic) = 0 y[1] (numeric) = 0.45972964345164289851482881651062 absolute error = 0.45972964345164289851482881651062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.899 y[1] (analytic) = 0 y[1] (numeric) = 0.46028172665695540900374078880661 absolute error = 0.46028172665695540900374078880661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.9 y[1] (analytic) = 0 y[1] (numeric) = 0.46083376451684103917924432186052 absolute error = 0.46083376451684103917924432186052 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.901 y[1] (analytic) = 0 y[1] (numeric) = 0.46138575707966504944203802423146 absolute error = 0.46138575707966504944203802423146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.902 y[1] (analytic) = 0 y[1] (numeric) = 0.46193770439376375319975688488251 absolute error = 0.46193770439376375319975688488251 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.903 y[1] (analytic) = 0 y[1] (numeric) = 0.4624896065074445490322614689474 absolute error = 0.4624896065074445490322614689474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.904 y[1] (analytic) = 0 y[1] (numeric) = 0.46304146346898595281538048078579 absolute error = 0.46304146346898595281538048078579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.905 y[1] (analytic) = 0 y[1] (numeric) = 0.46359327532663762980317475806473 absolute error = 0.46359327532663762980317475806473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.906 y[1] (analytic) = 0 y[1] (numeric) = 0.4641450421286204266687906276298 absolute error = 0.4641450421286204266687906276298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.907 y[1] (analytic) = 0 y[1] (numeric) = 0.46469676392312640350397042126021 absolute error = 0.46469676392312640350397042126021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.908 y[1] (analytic) = 0 y[1] (numeric) = 0.4652484407583188657772878170363 absolute error = 0.4652484407583188657772878170363 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.909 y[1] (analytic) = 0 y[1] (numeric) = 0.46580007268233239625117553998543 absolute error = 0.46580007268233239625117553998543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=236.5MB, alloc=4.5MB, time=24.83 x[1] = 0.91 y[1] (analytic) = 0 y[1] (numeric) = 0.4663516597432728868578128239117 absolute error = 0.4663516597432728868578128239117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.911 y[1] (analytic) = 0 y[1] (numeric) = 0.46690320198921757053393990485582 absolute error = 0.46690320198921757053393990485582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.912 y[1] (analytic) = 0 y[1] (numeric) = 0.46745469946821505301466668547319 absolute error = 0.46745469946821505301466668547319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.913 y[1] (analytic) = 0 y[1] (numeric) = 0.46800615222828534458634257875934 absolute error = 0.46800615222828534458634257875934 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.914 y[1] (analytic) = 0 y[1] (numeric) = 0.46855756031741989179855440899249 absolute error = 0.46855756031741989179855440899249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.915 y[1] (analytic) = 0 y[1] (numeric) = 0.46910892378358160913531911750138 absolute error = 0.46910892378358160913531911750138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.916 y[1] (analytic) = 0 y[1] (numeric) = 0.46966024267470491064553789090281 absolute error = 0.46966024267470491064553789090281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.917 y[1] (analytic) = 0 y[1] (numeric) = 0.47021151703869574153277819978585 absolute error = 0.47021151703869574153277819978585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.918 y[1] (analytic) = 0 y[1] (numeric) = 0.47076274692343160970445010644848 absolute error = 0.47076274692343160970445010644848 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.919 y[1] (analytic) = 0 y[1] (numeric) = 0.47131393237676161728044307121613 absolute error = 0.47131393237676161728044307121613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.92 y[1] (analytic) = 0 y[1] (numeric) = 0.47186507344650649206128935808969 absolute error = 0.47186507344650649206128935808969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.921 y[1] (analytic) = 0 y[1] (numeric) = 0.47241617018045861895592001198223 absolute error = 0.47241617018045861895592001198223 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.922 y[1] (analytic) = 0 y[1] (numeric) = 0.47296722262638207136907925160827 absolute error = 0.47296722262638207136907925160827 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.923 y[1] (analytic) = 0 y[1] (numeric) = 0.47351823083201264254846299418582 absolute error = 0.47351823083201264254846299418582 relative error = -1 % Correct digits = -1 h = 0.001 memory used=240.3MB, alloc=4.5MB, time=25.25 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.924 y[1] (analytic) = 0 y[1] (numeric) = 0.47406919484505787689164710049944 absolute error = 0.47406919484505787689164710049944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.925 y[1] (analytic) = 0 y[1] (numeric) = 0.47462011471319710121287080155068 absolute error = 0.47462011471319710121287080155068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.926 y[1] (analytic) = 0 y[1] (numeric) = 0.47517099048408145596974064099059 absolute error = 0.47517099048408145596974064099059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.927 y[1] (analytic) = 0 y[1] (numeric) = 0.47572182220533392644992014078592 absolute error = 0.47572182220533392644992014078592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.928 y[1] (analytic) = 0 y[1] (numeric) = 0.47627260992454937391787027111603 absolute error = 0.47627260992454937391787027111603 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.929 y[1] (analytic) = 0 y[1] (numeric) = 0.47682335368929456672170567933044 absolute error = 0.47682335368929456672170567933044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.93 y[1] (analytic) = 0 y[1] (numeric) = 0.4773740535471082113602315069164 absolute error = 0.4773740535471082113602315069164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.931 y[1] (analytic) = 0 y[1] (numeric) = 0.47792470954550098351022549783157 absolute error = 0.47792470954550098351022549783157 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.932 y[1] (analytic) = 0 y[1] (numeric) = 0.47847532173195555901402997624761 absolute error = 0.47847532173195555901402997624761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.933 y[1] (analytic) = 0 y[1] (numeric) = 0.47902589015392664482751814672591 absolute error = 0.47902589015392664482751814672591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.934 y[1] (analytic) = 0 y[1] (numeric) = 0.47957641485884100992849904510572 absolute error = 0.47957641485884100992849904510572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.935 y[1] (analytic) = 0 y[1] (numeric) = 0.48012689589409751618562534392705 absolute error = 0.48012689589409751618562534392705 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.936 y[1] (analytic) = 0 y[1] (numeric) = 0.48067733330706714918786809203512 absolute error = 0.48067733330706714918786809203512 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=244.1MB, alloc=4.5MB, time=25.67 x[1] = 0.937 y[1] (analytic) = 0 y[1] (numeric) = 0.48122772714509304903462234411916 absolute error = 0.48122772714509304903462234411916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.938 y[1] (analytic) = 0 y[1] (numeric) = 0.48177807745549054108650751232497 absolute error = 0.48177807745549054108650751232497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.939 y[1] (analytic) = 0 y[1] (numeric) = 0.48232838428554716667692614874766 absolute error = 0.48232838428554716667692614874766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.94 y[1] (analytic) = 0 y[1] (numeric) = 0.48287864768252271378444474455712 absolute error = 0.48287864768252271378444474455712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.941 y[1] (analytic) = 0 y[1] (numeric) = 0.48342886769364924766606000873358 absolute error = 0.48342886769364924766606000873358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.942 y[1] (analytic) = 0 y[1] (numeric) = 0.48397904436613114145141396689346 absolute error = 0.48397904436613114145141396689346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.943 y[1] (analytic) = 0 y[1] (numeric) = 0.48452917774714510669802109846555 absolute error = 0.48452917774714510669802109846555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.944 y[1] (analytic) = 0 y[1] (numeric) = 0.485079267883840223907570608534 absolute error = 0.485079267883840223907570608534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.945 y[1] (analytic) = 0 y[1] (numeric) = 0.48562931482333797300336680899673 absolute error = 0.48562931482333797300336680899673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.946 y[1] (analytic) = 0 y[1] (numeric) = 0.48617931861273226376897046229501 absolute error = 0.48617931861273226376897046229501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.947 y[1] (analytic) = 0 y[1] (numeric) = 0.48672927929908946624810381985149 absolute error = 0.48672927929908946624810381985149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.948 y[1] (analytic) = 0 y[1] (numeric) = 0.48727919692944844110588196650903 absolute error = 0.48727919692944844110588196650903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.949 y[1] (analytic) = 0 y[1] (numeric) = 0.4878290715508205699514329616906 absolute error = 0.4878290715508205699514329616906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=247.9MB, alloc=4.5MB, time=26.10 x[1] = 0.95 y[1] (analytic) = 0 y[1] (numeric) = 0.48837890321018978562196914770076 absolute error = 0.48837890321018978562196914770076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.951 y[1] (analytic) = 0 y[1] (numeric) = 0.48892869195451260242837187556093 absolute error = 0.48892869195451260242837187556093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.952 y[1] (analytic) = 0 y[1] (numeric) = 0.48947843783071814636235177901285 absolute error = 0.48947843783071814636235177901285 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.953 y[1] (analytic) = 0 y[1] (numeric) = 0.49002814088570818526524660783744 absolute error = 0.49002814088570818526524660783744 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.954 y[1] (analytic) = 0 y[1] (numeric) = 0.49057780116635715895851851241791 absolute error = 0.49057780116635715895851851241791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.955 y[1] (analytic) = 0 y[1] (numeric) = 0.49112741871951220933601255252663 absolute error = 0.49112741871951220933601255252663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.956 y[1] (analytic) = 0 y[1] (numeric) = 0.49167699359199321041803808463378 absolute error = 0.49167699359199321041803808463378 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.957 y[1] (analytic) = 0 y[1] (numeric) = 0.49222652583059279836733456362168 absolute error = 0.49222652583059279836733456362168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.958 y[1] (analytic) = 0 y[1] (numeric) = 0.49277601548207640146698317664097 absolute error = 0.49277601548207640146698317664097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.959 y[1] (analytic) = 0 y[1] (numeric) = 0.49332546259318227006032560896342 absolute error = 0.49332546259318227006032560896342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.96 y[1] (analytic) = 0 y[1] (numeric) = 0.49387486721062150645295112406945 absolute error = 0.49387486721062150645295112406945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.961 y[1] (analytic) = 0 y[1] (numeric) = 0.49442422938107809477681302285664 absolute error = 0.49442422938107809477681302285664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.962 y[1] (analytic) = 0 y[1] (numeric) = 0.49497354915120893081653542976754 absolute error = 0.49497354915120893081653542976754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=251.7MB, alloc=4.5MB, time=26.52 x[1] = 0.963 y[1] (analytic) = 0 y[1] (numeric) = 0.49552282656764385179797123681008 absolute error = 0.49552282656764385179797123681008 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.964 y[1] (analytic) = 0 y[1] (numeric) = 0.49607206167698566613907191988158 absolute error = 0.49607206167698566613907191988158 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.965 y[1] (analytic) = 0 y[1] (numeric) = 0.4966212545258101831631298255068 absolute error = 0.4966212545258101831631298255068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.966 y[1] (analytic) = 0 y[1] (numeric) = 0.497170405160666242774453410061 absolute error = 0.497170405160666242774453410061 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.967 y[1] (analytic) = 0 y[1] (numeric) = 0.49771951362807574509653579777007 absolute error = 0.49771951362807574509653579777007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.968 y[1] (analytic) = 0 y[1] (numeric) = 0.49826857997453368007277690826068 absolute error = 0.49826857997453368007277690826068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.969 y[1] (analytic) = 0 y[1] (numeric) = 0.49881760424650815702981928917319 absolute error = 0.49881760424650815702981928917319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.97 y[1] (analytic) = 0 y[1] (numeric) = 0.49936658649044043420355767434874 absolute error = 0.49936658649044043420355767434874 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.971 y[1] (analytic) = 0 y[1] (numeric) = 0.49991552675274494822788217335795 absolute error = 0.49991552675274494822788217335795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.972 y[1] (analytic) = 0 y[1] (numeric) = 0.50046442507980934358621488365221 absolute error = 0.50046442507980934358621488365221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.973 y[1] (analytic) = 0 y[1] (numeric) = 0.50101328151799450202589960238817 absolute error = 0.50101328151799450202589960238817 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.974 y[1] (analytic) = 0 y[1] (numeric) = 0.50156209611363457193550420100185 absolute error = 0.50156209611363457193550420100185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.975 y[1] (analytic) = 0 y[1] (numeric) = 0.50211086891303699768509511188946 absolute error = 0.50211086891303699768509511188946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=255.5MB, alloc=4.5MB, time=26.94 x[1] = 0.976 y[1] (analytic) = 0 y[1] (numeric) = 0.50265959996248254892954326308741 absolute error = 0.50265959996248254892954326308741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.977 y[1] (analytic) = 0 y[1] (numeric) = 0.50320828930822534987492068363298 absolute error = 0.50320828930822534987492068363298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.978 y[1] (analytic) = 0 y[1] (numeric) = 0.50375693699649290850804688932964 absolute error = 0.50375693699649290850804688932964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.979 y[1] (analytic) = 0 y[1] (numeric) = 0.50430554307348614578924404593564 absolute error = 0.50430554307348614578924404593564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.98 y[1] (analytic) = 0 y[1] (numeric) = 0.50485410758537942480835979434142 absolute error = 0.50485410758537942480835979434142 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.981 y[1] (analytic) = 0 y[1] (numeric) = 0.50540263057832057990411651009931 absolute error = 0.50540263057832057990411651009931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.982 y[1] (analytic) = 0 y[1] (numeric) = 0.50595111209843094574684565771761 absolute error = 0.50595111209843094574684565771761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.983 y[1] (analytic) = 0 y[1] (numeric) = 0.50649955219180538638466578842965 absolute error = 0.50649955219180538638466578842965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.984 y[1] (analytic) = 0 y[1] (numeric) = 0.50704795090451232425316261869641 absolute error = 0.50704795090451232425316261869641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.985 y[1] (analytic) = 0 y[1] (numeric) = 0.50759630828259376914862951549768 absolute error = 0.50759630828259376914862951549768 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.986 y[1] (analytic) = 0 y[1] (numeric) = 0.50814462437206534716492660351153 absolute error = 0.50814462437206534716492660351153 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.987 y[1] (analytic) = 0 y[1] (numeric) = 0.50869289921891632959401659857368 absolute error = 0.50869289921891632959401659857368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.988 y[1] (analytic) = 0 y[1] (numeric) = 0.50924113286910966179023536134722 absolute error = 0.50924113286910966179023536134722 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.989 y[1] (analytic) = 0 y[1] (numeric) = 0.50978932536858199199835505491808 absolute error = 0.50978932536858199199835505491808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=259.4MB, alloc=4.5MB, time=27.37 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.99 y[1] (analytic) = 0 y[1] (numeric) = 0.51033747676324370014549768006199 absolute error = 0.51033747676324370014549768006199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.991 y[1] (analytic) = 0 y[1] (numeric) = 0.51088558709897892659695665220409 absolute error = 0.51088558709897892659695665220409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.992 y[1] (analytic) = 0 y[1] (numeric) = 0.5114336564216456008759839746118 absolute error = 0.5114336564216456008759839746118 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.993 y[1] (analytic) = 0 y[1] (numeric) = 0.51198168477707547034760045312488 absolute error = 0.51198168477707547034760045312488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.994 y[1] (analytic) = 0 y[1] (numeric) = 0.51252967221107412886648628873277 absolute error = 0.51252967221107412886648628873277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.995 y[1] (analytic) = 0 y[1] (numeric) = 0.51307761876942104538900927555789 absolute error = 0.51307761876942104538900927555789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.996 y[1] (analytic) = 0 y[1] (numeric) = 0.51362552449786959254944772329402 absolute error = 0.51362552449786959254944772329402 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.997 y[1] (analytic) = 0 y[1] (numeric) = 0.51417338944214707520046511488035 absolute error = 0.51417338944214707520046511488035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.998 y[1] (analytic) = 0 y[1] (numeric) = 0.51472121364795475891789340216392 absolute error = 0.51472121364795475891789340216392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 0.999 y[1] (analytic) = 0 y[1] (numeric) = 0.51526899716096789846988173451509 absolute error = 0.51526899716096789846988173451509 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1 y[1] (analytic) = 0 y[1] (numeric) = 0.51581674002683576625046730781215 absolute error = 0.51581674002683576625046730781215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.001 y[1] (analytic) = 0 y[1] (numeric) = 0.51636444229118168067762491390096 absolute error = 0.51636444229118168067762491390096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.002 y[1] (analytic) = 0 y[1] (numeric) = 0.51691210399960303455585166356389 absolute error = 0.51691210399960303455585166356389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=263.2MB, alloc=4.5MB, time=27.80 x[1] = 1.003 y[1] (analytic) = 0 y[1] (numeric) = 0.51745972519767132340334324919769 absolute error = 0.51745972519767132340334324919769 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.004 y[1] (analytic) = 0 y[1] (numeric) = 0.51800730593093217374381800680261 absolute error = 0.51800730593093217374381800680261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.005 y[1] (analytic) = 0 y[1] (numeric) = 0.5185548462449053713630449305237 absolute error = 0.5185548462449053713630449305237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.006 y[1] (analytic) = 0 y[1] (numeric) = 0.51910234618508488953013168685981 absolute error = 0.51910234618508488953013168685981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.007 y[1] (analytic) = 0 y[1] (numeric) = 0.5196498057969389171836285697652 absolute error = 0.5196498057969389171836285697652 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.008 y[1] (analytic) = 0 y[1] (numeric) = 0.52019722512590988708250423221283 absolute error = 0.52019722512590988708250423221283 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.009 y[1] (analytic) = 0 y[1] (numeric) = 0.52074460421741450392204892436614 absolute error = 0.52074460421741450392204892436614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.01 y[1] (analytic) = 0 y[1] (numeric) = 0.52129194311684377241476086331752 absolute error = 0.52129194311684377241476086331752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.011 y[1] (analytic) = 0 y[1] (numeric) = 0.52183924186956302533627125439538 absolute error = 0.52183924186956302533627125439538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.012 y[1] (analytic) = 0 y[1] (numeric) = 0.52238650052091195153636337931784 absolute error = 0.52238650052091195153636337931784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.013 y[1] (analytic) = 0 y[1] (numeric) = 0.52293371911620462391514106197852 absolute error = 0.52293371911620462391514106197852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.014 y[1] (analytic) = 0 y[1] (numeric) = 0.5234808977007295273644017183885 absolute error = 0.5234808977007295273644017183885 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.015 y[1] (analytic) = 0 y[1] (numeric) = 0.52402803631974958667426909326709 absolute error = 0.52402803631974958667426909326709 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=267.0MB, alloc=4.5MB, time=28.23 x[1] = 1.016 y[1] (analytic) = 0 y[1] (numeric) = 0.52457513501850219440514068197282 absolute error = 0.52457513501850219440514068197282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.017 y[1] (analytic) = 0 y[1] (numeric) = 0.52512219384219923872500473289377 absolute error = 0.52512219384219923872500473289377 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.018 y[1] (analytic) = 0 y[1] (numeric) = 0.52566921283602713121218162207256 absolute error = 0.52566921283602713121218162207256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.019 y[1] (analytic) = 0 y[1] (numeric) = 0.52621619204514683462354428872586 absolute error = 0.52621619204514683462354428872586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.02 y[1] (analytic) = 0 y[1] (numeric) = 0.52676313151469389062827231743 absolute error = 0.52676313151469389062827231743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.021 y[1] (analytic) = 0 y[1] (numeric) = 0.52731003128977844750719415008292 absolute error = 0.52731003128977844750719415008292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.022 y[1] (analytic) = 0 y[1] (numeric) = 0.52785689141548528781777180831771 absolute error = 0.52785689141548528781777180831771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.023 y[1] (analytic) = 0 y[1] (numeric) = 0.52840371193687385602478240483361 absolute error = 0.52840371193687385602478240483361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.024 y[1] (analytic) = 0 y[1] (numeric) = 0.52895049289897828609675062012624 absolute error = 0.52895049289897828609675062012624 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.025 y[1] (analytic) = 0 y[1] (numeric) = 0.52949723434680742906818621933915 absolute error = 0.52949723434680742906818621933915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.026 y[1] (analytic) = 0 y[1] (numeric) = 0.53004393632534488056768058242335 absolute error = 0.53004393632534488056768058242335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.027 y[1] (analytic) = 0 y[1] (numeric) = 0.53059059887954900831191611947914 absolute error = 0.53059059887954900831191611947914 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.028 y[1] (analytic) = 0 y[1] (numeric) = 0.53113722205435297956564234206549 absolute error = 0.53113722205435297956564234206549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=270.8MB, alloc=4.5MB, time=28.67 x[1] = 1.029 y[1] (analytic) = 0 y[1] (numeric) = 0.53168380589466478856767226039519 absolute error = 0.53168380589466478856767226039519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.03 y[1] (analytic) = 0 y[1] (numeric) = 0.5322303504453672839229526756888 absolute error = 0.5322303504453672839229526756888 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.031 y[1] (analytic) = 0 y[1] (numeric) = 0.53277685575131819596076183653657 absolute error = 0.53277685575131819596076183653657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.032 y[1] (analytic) = 0 y[1] (numeric) = 0.53332332185735016405908782791393 absolute error = 0.53332332185735016405908782791393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.033 y[1] (analytic) = 0 y[1] (numeric) = 0.53386974880827076393524096151319 absolute error = 0.53386974880827076393524096151319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.034 y[1] (analytic) = 0 y[1] (numeric) = 0.53441613664886253490275333629005 absolute error = 0.53441613664886253490275333629005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.035 y[1] (analytic) = 0 y[1] (numeric) = 0.53496248542388300709461863857901 absolute error = 0.53496248542388300709461863857901 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.036 y[1] (analytic) = 0 y[1] (numeric) = 0.53550879517806472865292515180529 absolute error = 0.53550879517806472865292515180529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.037 y[1] (analytic) = 0 y[1] (numeric) = 0.53605506595611529288493484671248 absolute error = 0.53605506595611529288493484671248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.038 y[1] (analytic) = 0 y[1] (numeric) = 0.53660129780271736538566132413391 absolute error = 0.53660129780271736538566132413391 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.039 y[1] (analytic) = 0 y[1] (numeric) = 0.53714749076252871112699928366155 absolute error = 0.53714749076252871112699928366155 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.04 y[1] (analytic) = 0 y[1] (numeric) = 0.53769364488018222151345809310787 absolute error = 0.53769364488018222151345809310787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.041 y[1] (analytic) = 0 y[1] (numeric) = 0.53823976020028594140455193541391 absolute error = 0.53823976020028594140455193541391 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.042 y[1] (analytic) = 0 y[1] (numeric) = 0.5387858367674230961038989116293 absolute error = 0.5387858367674230961038989116293 relative error = -1 % Correct digits = -1 h = 0.001 memory used=274.6MB, alloc=4.5MB, time=29.07 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.043 y[1] (analytic) = 0 y[1] (numeric) = 0.53933187462615211831508138077743 absolute error = 0.53933187462615211831508138077743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.044 y[1] (analytic) = 0 y[1] (numeric) = 0.53987787382100667506431971982022 absolute error = 0.53987787382100667506431971982022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.045 y[1] (analytic) = 0 y[1] (numeric) = 0.54042383439649569459001158955195 absolute error = 0.54042383439649569459001158955195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.046 y[1] (analytic) = 0 y[1] (numeric) = 0.54096975639710339319918869507946 absolute error = 0.54096975639710339319918869507946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.047 y[1] (analytic) = 0 y[1] (numeric) = 0.54151563986728930209094293258637 absolute error = 0.54151563986728930209094293258637 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.048 y[1] (analytic) = 0 y[1] (numeric) = 0.54206148485148829414687371733122 absolute error = 0.54206148485148829414687371733122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.049 y[1] (analytic) = 0 y[1] (numeric) = 0.54260729139411061068860819129318 absolute error = 0.54260729139411061068860819129318 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.05 y[1] (analytic) = 0 y[1] (numeric) = 0.54315305953954188820244591255343 absolute error = 0.54315305953954188820244591255343 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.051 y[1] (analytic) = 0 y[1] (numeric) = 0.54369878933214318503117953238518 absolute error = 0.54369878933214318503117953238518 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.052 y[1] (analytic) = 0 y[1] (numeric) = 0.54424448081625100803314287012006 absolute error = 0.54424448081625100803314287012006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.053 y[1] (analytic) = 0 y[1] (numeric) = 0.54479013403617733920853770016235 absolute error = 0.54479013403617733920853770016235 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.054 y[1] (analytic) = 0 y[1] (numeric) = 0.54533574903620966229309047003548 absolute error = 0.54533574903620966229309047003548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.055 y[1] (analytic) = 0 y[1] (numeric) = 0.54588132586061098931909007306599 absolute error = 0.54588132586061098931909007306599 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=278.4MB, alloc=4.5MB, time=29.46 x[1] = 1.056 y[1] (analytic) = 0 y[1] (numeric) = 0.54642686455361988714385770423879 absolute error = 0.54642686455361988714385770423879 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.057 y[1] (analytic) = 0 y[1] (numeric) = 0.54697236515945050394569973289359 absolute error = 0.54697236515945050394569973289359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.058 y[1] (analytic) = 0 y[1] (numeric) = 0.54751782772229259568739443127459 absolute error = 0.54751782772229259568739443127459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.059 y[1] (analytic) = 0 y[1] (numeric) = 0.54806325228631155254726330349444 absolute error = 0.54806325228631155254726330349444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.06 y[1] (analytic) = 0 y[1] (numeric) = 0.54860863889564842531787766522772 absolute error = 0.54860863889564842531787766522772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.061 y[1] (analytic) = 0 y[1] (numeric) = 0.54915398759441995177245103040858 absolute error = 0.54915398759441995177245103040858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.062 y[1] (analytic) = 0 y[1] (numeric) = 0.54969929842671858299896776737128 absolute error = 0.54969929842671858299896776737128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.063 y[1] (analytic) = 0 y[1] (numeric) = 0.55024457143661250970209839324059 absolute error = 0.55024457143661250970209839324059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.064 y[1] (analytic) = 0 y[1] (numeric) = 0.55078980666814568847295178195066 absolute error = 0.55078980666814568847295178195066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.065 y[1] (analytic) = 0 y[1] (numeric) = 0.5513350041653378680267144680459 absolute error = 0.5513350041653378680267144680459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.066 y[1] (analytic) = 0 y[1] (numeric) = 0.55188016397218461540822713539484 absolute error = 0.55188016397218461540822713539484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.067 y[1] (analytic) = 0 y[1] (numeric) = 0.55242528613265734216554828712739 absolute error = 0.55242528613265734216554828712739 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.068 y[1] (analytic) = 0 y[1] (numeric) = 0.55297037069070333049155500048701 absolute error = 0.55297037069070333049155500048701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=282.3MB, alloc=4.5MB, time=29.85 x[1] = 1.069 y[1] (analytic) = 0 y[1] (numeric) = 0.55351541769024575933363057787152 absolute error = 0.55351541769024575933363057787152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.07 y[1] (analytic) = 0 y[1] (numeric) = 0.55406042717518373047148881311886 absolute error = 0.55406042717518373047148881311886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.071 y[1] (analytic) = 0 y[1] (numeric) = 0.55460539918939229456318450007702 absolute error = 0.55460539918939229456318450007702 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.072 y[1] (analytic) = 0 y[1] (numeric) = 0.55515033377672247715935971867965 absolute error = 0.55515033377672247715935971867965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.073 y[1] (analytic) = 0 y[1] (numeric) = 0.55569523098100130468577534213027 absolute error = 0.55569523098100130468577534213027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.074 y[1] (analytic) = 0 y[1] (numeric) = 0.55624009084603183039417711737804 absolute error = 0.55624009084603183039417711737804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.075 y[1] (analytic) = 0 y[1] (numeric) = 0.55678491341559316028154557984617 absolute error = 0.55678491341559316028154557984617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.076 y[1] (analytic) = 0 y[1] (numeric) = 0.55732969873344047897777897234962 absolute error = 0.55732969873344047897777897234962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.077 y[1] (analytic) = 0 y[1] (numeric) = 0.55787444684330507560185824731165 absolute error = 0.55787444684330507560185824731165 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.078 y[1] (analytic) = 0 y[1] (numeric) = 0.55841915778889436958654314075809 absolute error = 0.55841915778889436958654314075809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.079 y[1] (analytic) = 0 y[1] (numeric) = 0.55896383161389193647164821613375 absolute error = 0.55896383161389193647164821613375 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.08 y[1] (analytic) = 0 y[1] (numeric) = 0.55950846836195753366594768574655 absolute error = 0.55950846836195753366594768574655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.081 y[1] (analytic) = 0 y[1] (numeric) = 0.56005306807672712617775772760119 absolute error = 0.56005306807672712617775772760119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=286.1MB, alloc=4.5MB, time=30.24 x[1] = 1.082 y[1] (analytic) = 0 y[1] (numeric) = 0.56059763080181291231424492553523 absolute error = 0.56059763080181291231424492553523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.083 y[1] (analytic) = 0 y[1] (numeric) = 0.56114215658080334934950937091556 absolute error = 0.56114215658080334934950937091556 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.084 y[1] (analytic) = 0 y[1] (numeric) = 0.56168664545726317916149087469208 absolute error = 0.56168664545726317916149087469208 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.085 y[1] (analytic) = 0 y[1] (numeric) = 0.56223109747473345383774664933746 absolute error = 0.56223109747473345383774664933746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.086 y[1] (analytic) = 0 y[1] (numeric) = 0.56277551267673156125014873112679 absolute error = 0.56277551267673156125014873112679 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.087 y[1] (analytic) = 0 y[1] (numeric) = 0.56331989110675125059854932432775 absolute error = 0.56331989110675125059854932432775 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.088 y[1] (analytic) = 0 y[1] (numeric) = 0.56386423280826265792346216018115 absolute error = 0.56386423280826265792346216018115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.089 y[1] (analytic) = 0 y[1] (numeric) = 0.56440853782471233158780787505149 absolute error = 0.56440853782471233158780787505149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.09 y[1] (analytic) = 0 y[1] (numeric) = 0.5649528061995232577277713238185 absolute error = 0.5649528061995232577277713238185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.091 y[1] (analytic) = 0 y[1] (numeric) = 0.56549703797609488567281865646186 absolute error = 0.56549703797609488567281865646186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.092 y[1] (analytic) = 0 y[1] (numeric) = 0.56604123319780315333492189786261 absolute error = 0.56604123319780315333492189786261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.093 y[1] (analytic) = 0 y[1] (numeric) = 0.56658539190800051256703868310546 absolute error = 0.56658539190800051256703868310546 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.094 y[1] (analytic) = 0 y[1] (numeric) = 0.5671295141500159544908947130159 absolute error = 0.5671295141500159544908947130159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=289.9MB, alloc=4.5MB, time=30.67 x[1] = 1.095 y[1] (analytic) = 0 y[1] (numeric) = 0.56767359996715503479411640730415 absolute error = 0.56767359996715503479411640730415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.096 y[1] (analytic) = 0 y[1] (numeric) = 0.56821764940269989899676114551416 absolute error = 0.56821764940269989899676114551416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.097 y[1] (analytic) = 0 y[1] (numeric) = 0.56876166249990930768729239898962 absolute error = 0.56876166249990930768729239898962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.098 y[1] (analytic) = 0 y[1] (numeric) = 0.56930563930201866172804697026985 absolute error = 0.56930563930201866172804697026985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.099 y[1] (analytic) = 0 y[1] (numeric) = 0.56984957985224002743024146971573 absolute error = 0.56984957985224002743024146971573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.1 y[1] (analytic) = 0 y[1] (numeric) = 0.57039348419376216169856507273976 absolute error = 0.57039348419376216169856507273976 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.101 y[1] (analytic) = 0 y[1] (numeric) = 0.57093735236975053714540551477346 absolute error = 0.57093735236975053714540551477346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.102 y[1] (analytic) = 0 y[1] (numeric) = 0.57148118442334736717475519505004 absolute error = 0.57148118442334736717475519505004 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.103 y[1] (analytic) = 0 y[1] (numeric) = 0.57202498039767163103584417440982 absolute error = 0.57202498039767163103584417440982 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.104 y[1] (analytic) = 0 y[1] (numeric) = 0.57256874033581909884654676664941 absolute error = 0.57256874033581909884654676664941 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.105 y[1] (analytic) = 0 y[1] (numeric) = 0.57311246428086235658660833743359 absolute error = 0.57311246428086235658660833743359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.106 y[1] (analytic) = 0 y[1] (numeric) = 0.57365615227585083106073883946974 absolute error = 0.57365615227585083106073883946974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.107 y[1] (analytic) = 0 y[1] (numeric) = 0.57419980436381081483161952750886 absolute error = 0.57419980436381081483161952750886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.108 y[1] (analytic) = 0 y[1] (numeric) = 0.57474342058774549112286921178392 absolute error = 0.57474342058774549112286921178392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=293.7MB, alloc=4.5MB, time=31.08 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.109 y[1] (analytic) = 0 y[1] (numeric) = 0.57528700099063495869201632372481 absolute error = 0.57528700099063495869201632372481 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.11 y[1] (analytic) = 0 y[1] (numeric) = 0.57583054561543625667352298319973 absolute error = 0.57583054561543625667352298319973 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.111 y[1] (analytic) = 0 y[1] (numeric) = 0.57637405450508338939190717212432 absolute error = 0.57637405450508338939190717212432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.112 y[1] (analytic) = 0 y[1] (numeric) = 0.57691752770248735114500903505216 absolute error = 0.57691752770248735114500903505216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.113 y[1] (analytic) = 0 y[1] (numeric) = 0.57746096525053615095744724331283 absolute error = 0.57746096525053615095744724331283 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.114 y[1] (analytic) = 0 y[1] (numeric) = 0.57800436719209483730431127539627 absolute error = 0.57800436719209483730431127539627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.115 y[1] (analytic) = 0 y[1] (numeric) = 0.57854773357000552280513538259413 absolute error = 0.57854773357000552280513538259413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.116 y[1] (analytic) = 0 y[1] (numeric) = 0.57909106442708740888819992539944 absolute error = 0.57909106442708740888819992539944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.117 y[1] (analytic) = 0 y[1] (numeric) = 0.57963435980613681042520568283562 absolute error = 0.57963435980613681042520568283562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.118 y[1] (analytic) = 0 y[1] (numeric) = 0.58017761974992718033636665373321 absolute error = 0.58017761974992718033636665373321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.119 y[1] (analytic) = 0 y[1] (numeric) = 0.5807208443012091341659667859979 absolute error = 0.5807208443012091341659667859979 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.12 y[1] (analytic) = 0 y[1] (numeric) = 0.58126403350271047462842598711593 absolute error = 0.58126403350271047462842598711593 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.121 y[1] (analytic) = 0 y[1] (numeric) = 0.58180718739713621612492068652207 absolute error = 0.58180718739713621612492068652207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=297.5MB, alloc=4.5MB, time=31.52 x[1] = 1.122 y[1] (analytic) = 0 y[1] (numeric) = 0.58235030602716860923060413801093 absolute error = 0.58235030602716860923060413801093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.123 y[1] (analytic) = 0 y[1] (numeric) = 0.58289338943546716515247156810397 absolute error = 0.58289338943546716515247156810397 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.124 y[1] (analytic) = 0 y[1] (numeric) = 0.58343643766466868015791519419152 absolute error = 0.58343643766466868015791519419152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.125 y[1] (analytic) = 0 y[1] (numeric) = 0.58397945075738725997401405435116 absolute error = 0.58397945075738725997401405435116 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.126 y[1] (analytic) = 0 y[1] (numeric) = 0.58452242875621434415760350900058 absolute error = 0.58452242875621434415760350900058 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.127 y[1] (analytic) = 0 y[1] (numeric) = 0.58506537170371873043616919297393 absolute error = 0.58506537170371873043616919297393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.128 y[1] (analytic) = 0 y[1] (numeric) = 0.58560827964244659901961011521549 absolute error = 0.58560827964244659901961011521549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.129 y[1] (analytic) = 0 y[1] (numeric) = 0.58615115261492153688291552206241 absolute error = 0.58615115261492153688291552206241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.13 y[1] (analytic) = 0 y[1] (numeric) = 0.58669399066364456201980005903942 absolute error = 0.58669399066364456201980005903942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.131 y[1] (analytic) = 0 y[1] (numeric) = 0.58723679383109414766734168521194 absolute error = 0.58723679383109414766734168521194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.132 y[1] (analytic) = 0 y[1] (numeric) = 0.58777956215972624650166671343961 absolute error = 0.58777956215972624650166671343961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.133 y[1] (analytic) = 0 y[1] (numeric) = 0.58832229569197431480472626933962 absolute error = 0.58832229569197431480472626933962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.134 y[1] (analytic) = 0 y[1] (numeric) = 0.58886499447024933660220838140777 absolute error = 0.58886499447024933660220838140777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=301.3MB, alloc=4.5MB, time=31.94 x[1] = 1.135 y[1] (analytic) = 0 y[1] (numeric) = 0.58940765853693984777262983455461 absolute error = 0.58940765853693984777262983455461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.136 y[1] (analytic) = 0 y[1] (numeric) = 0.58995028793441196012765183929385 absolute error = 0.58995028793441196012765183929385 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.137 y[1] (analytic) = 0 y[1] (numeric) = 0.59049288270500938546366348897009 absolute error = 0.59049288270500938546366348897009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.138 y[1] (analytic) = 0 y[1] (numeric) = 0.59103544289105345958467689773228 absolute error = 0.59103544289105345958467689773228 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.139 y[1] (analytic) = 0 y[1] (numeric) = 0.5915779685348431662965778324481 absolute error = 0.5915779685348431662965778324481 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.14 y[1] (analytic) = 0 y[1] (numeric) = 0.59212045967865516137277557241161 absolute error = 0.59212045967865516137277557241161 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.141 y[1] (analytic) = 0 y[1] (numeric) = 0.59266291636474379649129565152245 absolute error = 0.59266291636474379649129565152245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.142 y[1] (analytic) = 0 y[1] (numeric) = 0.5932053386353411431433590586085 absolute error = 0.5932053386353411431433590586085 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.143 y[1] (analytic) = 0 y[1] (numeric) = 0.59374772653265701651349139272504 absolute error = 0.59374772653265701651349139272504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.144 y[1] (analytic) = 0 y[1] (numeric) = 0.59429008009887899933120539159199 absolute error = 0.59429008009887899933120539159199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.145 y[1] (analytic) = 0 y[1] (numeric) = 0.59483239937617246569430017282572 absolute error = 0.59483239937617246569430017282572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.146 y[1] (analytic) = 0 y[1] (numeric) = 0.59537468440668060486382044928341 absolute error = 0.59537468440668060486382044928341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.147 y[1] (analytic) = 0 y[1] (numeric) = 0.59591693523252444503071890166523 absolute error = 0.59591693523252444503071890166523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=305.1MB, alloc=4.5MB, time=32.37 x[1] = 1.148 y[1] (analytic) = 0 y[1] (numeric) = 0.59645915189580287705426481351243 absolute error = 0.59645915189580287705426481351243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.149 y[1] (analytic) = 0 y[1] (numeric) = 0.59700133443859267817224199589737 absolute error = 0.59700133443859267817224199589737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.15 y[1] (analytic) = 0 y[1] (numeric) = 0.59754348290294853568297895142418 absolute error = 0.59754348290294853568297895142418 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.151 y[1] (analytic) = 0 y[1] (numeric) = 0.59808559733090307059925414964564 absolute error = 0.59808559733090307059925414964564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.152 y[1] (analytic) = 0 y[1] (numeric) = 0.59862767776446686127411920865274 absolute error = 0.59862767776446686127411920865274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.153 y[1] (analytic) = 0 y[1] (numeric) = 0.59916972424562846699868270040786 absolute error = 0.59916972424562846699868270040786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.154 y[1] (analytic) = 0 y[1] (numeric) = 0.59971173681635445157189722036984 absolute error = 0.59971173681635445157189722036984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.155 y[1] (analytic) = 0 y[1] (numeric) = 0.60025371551858940684239228509947 absolute error = 0.60025371551858940684239228509947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.156 y[1] (analytic) = 0 y[1] (numeric) = 0.60079566039425597622239554483656 absolute error = 0.60079566039425597622239554483656 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.157 y[1] (analytic) = 0 y[1] (numeric) = 0.60133757148525487817378472150405 absolute error = 0.60133757148525487817378472150405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.158 y[1] (analytic) = 0 y[1] (numeric) = 0.60187944883346492966631260622081 absolute error = 0.60187944883346492966631260622081 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.159 y[1] (analytic) = 0 y[1] (numeric) = 0.60242129248074306960804737419175 absolute error = 0.60242129248074306960804737419175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.16 y[1] (analytic) = 0 y[1] (numeric) = 0.60296310246892438224807039879192 absolute error = 0.60296310246892438224807039879192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.161 memory used=309.0MB, alloc=4.5MB, time=32.79 y[1] (analytic) = 0 y[1] (numeric) = 0.60350487883982212055147367076947 absolute error = 0.60350487883982212055147367076947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.162 y[1] (analytic) = 0 y[1] (numeric) = 0.60404662163522772954669885276072 absolute error = 0.60404662163522772954669885276072 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.163 y[1] (analytic) = 0 y[1] (numeric) = 0.60458833089691086964525992373825 absolute error = 0.60458833089691086964525992373825 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.164 y[1] (analytic) = 0 y[1] (numeric) = 0.60513000666661943993389129260026 absolute error = 0.60513000666661943993389129260026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.165 y[1] (analytic) = 0 y[1] (numeric) = 0.6056716489860796014391631848551 absolute error = 0.6056716489860796014391631848551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.166 y[1] (analytic) = 0 y[1] (numeric) = 0.60621325789699580036460603125938 absolute error = 0.60621325789699580036460603125938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.167 y[1] (analytic) = 0 y[1] (numeric) = 0.60675483344105079130038551233034 absolute error = 0.60675483344105079130038551233034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.168 y[1] (analytic) = 0 y[1] (numeric) = 0.60729637565990566040556983787331 absolute error = 0.60729637565990566040556983787331 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.169 y[1] (analytic) = 0 y[1] (numeric) = 0.60783788459519984856303076604248 absolute error = 0.60783788459519984856303076604248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.17 y[1] (analytic) = 0 y[1] (numeric) = 0.60837936028855117450701979198734 absolute error = 0.60837936028855117450701979198734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.171 y[1] (analytic) = 0 y[1] (numeric) = 0.60892080278155585792346086182819 absolute error = 0.60892080278155585792346086182819 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.172 y[1] (analytic) = 0 y[1] (numeric) = 0.60946221211578854252300089355089 absolute error = 0.60946221211578854252300089355089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.173 y[1] (analytic) = 0 y[1] (numeric) = 0.61000358833280231908685931241393 absolute error = 0.61000358833280231908685931241393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.174 y[1] (analytic) = 0 y[1] (numeric) = 0.61054493147412874848551773461899 absolute error = 0.61054493147412874848551773461899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=312.8MB, alloc=4.5MB, time=33.22 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.175 y[1] (analytic) = 0 y[1] (numeric) = 0.61108624158127788467029085930946 absolute error = 0.61108624158127788467029085930946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.176 y[1] (analytic) = 0 y[1] (numeric) = 0.61162751869573829763781955542916 absolute error = 0.61162751869573829763781955542916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.177 y[1] (analytic) = 0 y[1] (numeric) = 0.61216876285897709636752705659574 absolute error = 0.61216876285897709636752705659574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.178 y[1] (analytic) = 0 y[1] (numeric) = 0.61270997411243995173207910391921 absolute error = 0.61270997411243995173207910391921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.179 y[1] (analytic) = 0 y[1] (numeric) = 0.61325115249755111938088880362584 absolute error = 0.61325115249755111938088880362584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.18 y[1] (analytic) = 0 y[1] (numeric) = 0.61379229805571346259670689343035 absolute error = 0.61379229805571346259670689343035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.181 y[1] (analytic) = 0 y[1] (numeric) = 0.61433341082830847512533803883483 absolute error = 0.61433341082830847512533803883483 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.182 y[1] (analytic) = 0 y[1] (numeric) = 0.61487449085669630397852370792122 absolute error = 0.61487449085669630397852370792122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.183 y[1] (analytic) = 0 y[1] (numeric) = 0.61541553818221577221003210074382 absolute error = 0.61541553818221577221003210074382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.184 y[1] (analytic) = 0 y[1] (numeric) = 0.61595655284618440166499553712062 absolute error = 0.61595655284618440166499553712062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.185 y[1] (analytic) = 0 y[1] (numeric) = 0.61649753488989843570253563446508 absolute error = 0.61649753488989843570253563446508 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.186 y[1] (analytic) = 0 y[1] (numeric) = 0.61703848435463286189171653529428 absolute error = 0.61703848435463286189171653529428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.187 y[1] (analytic) = 0 y[1] (numeric) = 0.61757940128164143468086637219421 absolute error = 0.61757940128164143468086637219421 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=316.6MB, alloc=4.5MB, time=33.64 x[1] = 1.188 y[1] (analytic) = 0 y[1] (numeric) = 0.61812028571215669804030708631788 absolute error = 0.61812028571215669804030708631788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.189 y[1] (analytic) = 0 y[1] (numeric) = 0.61866113768739000807853264393694 absolute error = 0.61866113768739000807853264393694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.19 y[1] (analytic) = 0 y[1] (numeric) = 0.61920195724853155563187562416205 absolute error = 0.61920195724853155563187562416205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.191 y[1] (analytic) = 0 y[1] (numeric) = 0.61974274443675038882770207969072 absolute error = 0.61974274443675038882770207969072 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.192 y[1] (analytic) = 0 y[1] (numeric) = 0.62028349929319443562117450133404 absolute error = 0.62028349929319443562117450133404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.193 y[1] (analytic) = 0 y[1] (numeric) = 0.62082422185899052630562264611447 absolute error = 0.62082422185899052630562264611447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.194 y[1] (analytic) = 0 y[1] (numeric) = 0.6213649121752444159965619179161 absolute error = 0.6213649121752444159965619179161 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.195 y[1] (analytic) = 0 y[1] (numeric) = 0.62190557028304080708939891900547 absolute error = 0.62190557028304080708939891900547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.196 y[1] (analytic) = 0 y[1] (numeric) = 0.62244619622344337169086372022532 absolute error = 0.62244619622344337169086372022532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.197 y[1] (analytic) = 0 y[1] (numeric) = 0.62298679003749477402420832729494 absolute error = 0.62298679003749477402420832729494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.198 y[1] (analytic) = 0 y[1] (numeric) = 0.6235273517662166928082107504287 absolute error = 0.6235273517662166928082107504287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.199 y[1] (analytic) = 0 y[1] (numeric) = 0.62406788145060984361002401440863 absolute error = 0.62406788145060984361002401440863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.2 y[1] (analytic) = 0 y[1] (numeric) = 0.6246083791316540011719093763174 absolute error = 0.6246083791316540011719093763174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=320.4MB, alloc=4.5MB, time=34.07 x[1] = 1.201 y[1] (analytic) = 0 y[1] (numeric) = 0.62514884485030802171189294835379 absolute error = 0.62514884485030802171189294835379 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.202 y[1] (analytic) = 0 y[1] (numeric) = 0.62568927864750986519838485351414 absolute error = 0.62568927864750986519838485351414 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.203 y[1] (analytic) = 0 y[1] (numeric) = 0.62622968056417661759879997242951 absolute error = 0.62622968056417661759879997242951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.204 y[1] (analytic) = 0 y[1] (numeric) = 0.62677005064120451310221927029894 absolute error = 0.62677005064120451310221927029894 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.205 y[1] (analytic) = 0 y[1] (numeric) = 0.62731038891946895631613062365455 absolute error = 0.62731038891946895631613062365455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.206 y[1] (analytic) = 0 y[1] (numeric) = 0.62785069543982454443728799763292 absolute error = 0.62785069543982454443728799763292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.207 y[1] (analytic) = 0 y[1] (numeric) = 0.62839097024310508939672775551003 absolute error = 0.62839097024310508939672775551003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.208 y[1] (analytic) = 0 y[1] (numeric) = 0.62893121337012363997898081348274 absolute error = 0.62893121337012363997898081348274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.209 y[1] (analytic) = 0 y[1] (numeric) = 0.62947142486167250391551928504846 absolute error = 0.62947142486167250391551928504846 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.21 y[1] (analytic) = 0 y[1] (numeric) = 0.63001160475852326995247619084601 absolute error = 0.63001160475852326995247619084601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.211 y[1] (analytic) = 0 y[1] (numeric) = 0.63055175310142682989267674147409 absolute error = 0.63055175310142682989267674147409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.212 y[1] (analytic) = 0 y[1] (numeric) = 0.63109186993111340061201963259907 absolute error = 0.63109186993111340061201963259907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.213 y[1] (analytic) = 0 y[1] (numeric) = 0.63163195528829254605024672360086 absolute error = 0.63163195528829254605024672360086 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=324.2MB, alloc=4.5MB, time=34.50 x[1] = 1.214 y[1] (analytic) = 0 y[1] (numeric) = 0.63217200921365319917613940308341 absolute error = 0.63217200921365319917613940308341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.215 y[1] (analytic) = 0 y[1] (numeric) = 0.63271203174786368392717987679563 absolute error = 0.63271203174786368392717987679563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.216 y[1] (analytic) = 0 y[1] (numeric) = 0.63325202293157173712371554586778 absolute error = 0.63325202293157173712371554586778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.217 y[1] (analytic) = 0 y[1] (numeric) = 0.63379198280540453035766457576811 absolute error = 0.63379198280540453035766457576811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.218 y[1] (analytic) = 0 y[1] (numeric) = 0.63433191140996869185580068902401 absolute error = 0.63433191140996869185580068902401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.219 y[1] (analytic) = 0 y[1] (numeric) = 0.63487180878585032831765514753109 absolute error = 0.63487180878585032831765514753109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.22 y[1] (analytic) = 0 y[1] (numeric) = 0.63541167497361504672807382319164 absolute error = 0.63541167497361504672807382319164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.221 y[1] (analytic) = 0 y[1] (numeric) = 0.63595151001380797614446718868121 absolute error = 0.63595151001380797614446718868121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.222 y[1] (analytic) = 0 y[1] (numeric) = 0.63649131394695378945879099333766 absolute error = 0.63649131394695378945879099333766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.223 y[1] (analytic) = 0 y[1] (numeric) = 0.63703108681355672513429532250074 absolute error = 0.63703108681355672513429532250074 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.224 y[1] (analytic) = 0 y[1] (numeric) = 0.63757082865410060891707967210222 absolute error = 0.63757082865410060891707967210222 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.225 y[1] (analytic) = 0 y[1] (numeric) = 0.63811053950904887552249160391562 absolute error = 0.63811053950904887552249160391562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.226 y[1] (analytic) = 0 y[1] (numeric) = 0.63865021941884459029640648062128 absolute error = 0.63865021941884459029640648062128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.227 y[1] (analytic) = 0 y[1] (numeric) = 0.63918986842391047085142571372585 absolute error = 0.63918986842391047085142571372585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=328.0MB, alloc=4.5MB, time=34.93 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.228 y[1] (analytic) = 0 y[1] (numeric) = 0.63972948656464890867803089139525 absolute error = 0.63972948656464890867803089139525 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.229 y[1] (analytic) = 0 y[1] (numeric) = 0.6402690738814419907307310874164 absolute error = 0.6402690738814419907307310874164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.23 y[1] (analytic) = 0 y[1] (numeric) = 0.64080863041465152098924058679513 absolute error = 0.64080863041465152098924058679513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.231 y[1] (analytic) = 0 y[1] (numeric) = 0.64134815620461904199472419792563 absolute error = 0.64134815620461904199472419792563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.232 y[1] (analytic) = 0 y[1] (numeric) = 0.64188765129166585636114725582958 absolute error = 0.64188765129166585636114725582958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.233 y[1] (analytic) = 0 y[1] (numeric) = 0.6424271157160930482617673556614 absolute error = 0.6424271157160930482617673556614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.234 y[1] (analytic) = 0 y[1] (numeric) = 0.64296654951818150489080479050855 absolute error = 0.64296654951818150489080479050855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.235 y[1] (analytic) = 0 y[1] (numeric) = 0.64350595273819193790032860248291 absolute error = 0.64350595273819193790032860248291 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.236 y[1] (analytic) = 0 y[1] (numeric) = 0.64404532541636490481239509120022 absolute error = 0.64404532541636490481239509120022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.237 y[1] (analytic) = 0 y[1] (numeric) = 0.64458466759292083040647555897938 absolute error = 0.64458466759292083040647555897938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.238 y[1] (analytic) = 0 y[1] (numeric) = 0.64512397930806002808221000746134 absolute error = 0.64512397930806002808221000746134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.239 y[1] (analytic) = 0 y[1] (numeric) = 0.64566326060196272119752343584861 absolute error = 0.64566326060196272119752343584861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.24 y[1] (analytic) = 0 y[1] (numeric) = 0.64620251151478906438214132660029 absolute error = 0.64620251151478906438214132660029 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=331.8MB, alloc=4.5MB, time=35.35 x[1] = 1.241 y[1] (analytic) = 0 y[1] (numeric) = 0.64674173208667916482654084018377 absolute error = 0.64674173208667916482654084018377 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.242 y[1] (analytic) = 0 y[1] (numeric) = 0.64728092235775310354637417638288 absolute error = 0.64728092235775310354637417638288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.243 y[1] (analytic) = 0 y[1] (numeric) = 0.64782008236811095662240049569243 absolute error = 0.64782008236811095662240049569243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.244 y[1] (analytic) = 0 y[1] (numeric) = 0.64835921215783281641596273049084 absolute error = 0.64835921215783281641596273049084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.245 y[1] (analytic) = 0 y[1] (numeric) = 0.6488983117669788127600455519757 absolute error = 0.6488983117669788127600455519757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.246 y[1] (analytic) = 0 y[1] (numeric) = 0.64943738123558913412595069527078 absolute error = 0.64943738123558913412595069527078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.247 y[1] (analytic) = 0 y[1] (numeric) = 0.64997642060368404876562578166754 absolute error = 0.64997642060368404876562578166754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.248 y[1] (analytic) = 0 y[1] (numeric) = 0.65051542991126392582968271364883 absolute error = 0.65051542991126392582968271364883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.249 y[1] (analytic) = 0 y[1] (numeric) = 0.65105440919830925646114165515721 absolute error = 0.65105440919830925646114165515721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.25 y[1] (analytic) = 0 y[1] (numeric) = 0.6515933585047806748649365465146 absolute error = 0.6515933585047806748649365465146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.251 y[1] (analytic) = 0 y[1] (numeric) = 0.65213227787061897935321804047352 absolute error = 0.65213227787061897935321804047352 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.252 y[1] (analytic) = 0 y[1] (numeric) = 0.65267116733574515336648968308316 absolute error = 0.65267116733574515336648968308316 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.253 y[1] (analytic) = 0 y[1] (numeric) = 0.65321002694006038647061310038464 absolute error = 0.65321002694006038647061310038464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=335.7MB, alloc=4.5MB, time=35.78 x[1] = 1.254 y[1] (analytic) = 0 y[1] (numeric) = 0.65374885672344609532971788941 absolute error = 0.65374885672344609532971788941 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.255 y[1] (analytic) = 0 y[1] (numeric) = 0.65428765672576394465505184954731 absolute error = 0.65428765672576394465505184954731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.256 y[1] (analytic) = 0 y[1] (numeric) = 0.65482642698685586812980712805021 absolute error = 0.65482642698685586812980712805021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.257 y[1] (analytic) = 0 y[1] (numeric) = 0.65536516754654408930995779131359 absolute error = 0.65536516754654408930995779131359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.258 y[1] (analytic) = 0 y[1] (numeric) = 0.6559038784446311425011442715078 absolute error = 0.6559038784446311425011442715078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.259 y[1] (analytic) = 0 y[1] (numeric) = 0.65644255972089989361164007626125 absolute error = 0.65644255972089989361164007626125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.26 y[1] (analytic) = 0 y[1] (numeric) = 0.65698121141511356098143608730557 absolute error = 0.65698121141511356098143608730557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.261 y[1] (analytic) = 0 y[1] (numeric) = 0.65751983356701573618747771234804 absolute error = 0.65751983356701573618747771234804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.262 y[1] (analytic) = 0 y[1] (numeric) = 0.65805842621633040482509009291256 absolute error = 0.65805842621633040482509009291256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.263 y[1] (analytic) = 0 y[1] (numeric) = 0.65859698940276196726562650949285 absolute error = 0.65859698940276196726562650949285 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.264 y[1] (analytic) = 0 y[1] (numeric) = 0.65913552316599525939037506408929 absolute error = 0.65913552316599525939037506408929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.265 y[1] (analytic) = 0 y[1] (numeric) = 0.65967402754569557330075865905398 absolute error = 0.65967402754569557330075865905398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.266 y[1] (analytic) = 0 y[1] (numeric) = 0.66021250258150867800486323014612 absolute error = 0.66021250258150867800486323014612 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=339.5MB, alloc=4.5MB, time=36.20 x[1] = 1.267 y[1] (analytic) = 0 y[1] (numeric) = 0.66075094831306084008032913080261 absolute error = 0.66075094831306084008032913080261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.268 y[1] (analytic) = 0 y[1] (numeric) = 0.66128936477995884431364050385516 absolute error = 0.66128936477995884431364050385516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.269 y[1] (analytic) = 0 y[1] (numeric) = 0.66182775202179001431584741627613 absolute error = 0.66182775202179001431584741627613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.27 y[1] (analytic) = 0 y[1] (numeric) = 0.66236611007812223311475547200954 absolute error = 0.66236611007812223311475547200954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.271 y[1] (analytic) = 0 y[1] (numeric) = 0.6629044389885039637236175575417 absolute error = 0.6629044389885039637236175575417 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.272 y[1] (analytic) = 0 y[1] (numeric) = 0.66344273879246426968636231458671 absolute error = 0.66344273879246426968636231458671 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.273 y[1] (analytic) = 0 y[1] (numeric) = 0.66398100952951283559939387410591 absolute error = 0.66398100952951283559939387410591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.274 y[1] (analytic) = 0 y[1] (numeric) = 0.66451925123913998760999732584677 absolute error = 0.66451925123913998760999732584677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.275 y[1] (analytic) = 0 y[1] (numeric) = 0.66505746396081671389138433767523 absolute error = 0.66505746396081671389138433767523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.276 y[1] (analytic) = 0 y[1] (numeric) = 0.66559564773399468509441327918609 absolute error = 0.66559564773399468509441327918609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.277 y[1] (analytic) = 0 y[1] (numeric) = 0.66613380259810627477601814440843 absolute error = 0.66613380259810627477601814440843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.278 y[1] (analytic) = 0 y[1] (numeric) = 0.66667192859256457980438050887662 absolute error = 0.66667192859256457980438050887662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.279 y[1] (analytic) = 0 y[1] (numeric) = 0.6672100257567634407408786969123 absolute error = 0.6672100257567634407408786969123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=343.3MB, alloc=4.5MB, time=36.63 x[1] = 1.28 y[1] (analytic) = 0 y[1] (numeric) = 0.66774809413007746219884827565858 absolute error = 0.66774809413007746219884827565858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.281 y[1] (analytic) = 0 y[1] (numeric) = 0.66828613375186203317918793322361 absolute error = 0.66828613375186203317918793322361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.282 y[1] (analytic) = 0 y[1] (numeric) = 0.66882414466145334738284473922748 absolute error = 0.66882414466145334738284473922748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.283 y[1] (analytic) = 0 y[1] (numeric) = 0.66936212689816842350021272710277 absolute error = 0.66936212689816842350021272710277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.284 y[1] (analytic) = 0 y[1] (numeric) = 0.66990008050130512547747867867538 absolute error = 0.66990008050130512547747867867538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.285 y[1] (analytic) = 0 y[1] (numeric) = 0.6704380055101421827599489328479 absolute error = 0.6704380055101421827599489328479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.286 y[1] (analytic) = 0 y[1] (numeric) = 0.6709759019639392105123909816227 absolute error = 0.6709759019639392105123909816227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.287 y[1] (analytic) = 0 y[1] (numeric) = 0.6715137699019367298164235582356 absolute error = 0.6715137699019367298164235582356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.288 y[1] (analytic) = 0 y[1] (numeric) = 0.67205160936335618784498886382337 absolute error = 0.67205160936335618784498886382337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.289 y[1] (analytic) = 0 y[1] (numeric) = 0.67258942038739997801394052081902 absolute error = 0.67258942038739997801394052081902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.29 y[1] (analytic) = 0 y[1] (numeric) = 0.67312720301325146011078078315754 absolute error = 0.67312720301325146011078078315754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.291 y[1] (analytic) = 0 y[1] (numeric) = 0.6736649572800749804005804753813 absolute error = 0.6736649572800749804005804753813 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.292 y[1] (analytic) = 0 y[1] (numeric) = 0.67420268322701589170911507485844 absolute error = 0.67420268322701589170911507485844 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.293 y[1] (analytic) = 0 y[1] (numeric) = 0.67474038089320057348325029356878 absolute error = 0.67474038089320057348325029356878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=347.1MB, alloc=4.5MB, time=37.07 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.294 y[1] (analytic) = 0 y[1] (numeric) = 0.67527805031773645182861045827014 absolute error = 0.67527805031773645182861045827014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.295 y[1] (analytic) = 0 y[1] (numeric) = 0.6758156915397120195245629303328 absolute error = 0.6758156915397120195245629303328 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.296 y[1] (analytic) = 0 y[1] (numeric) = 0.67635330459819685601655174912134 absolute error = 0.67635330459819685601655174912134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.297 y[1] (analytic) = 0 y[1] (numeric) = 0.67689088953224164738581362551053 absolute error = 0.67689088953224164738581362551053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.298 y[1] (analytic) = 0 y[1] (numeric) = 0.67742844638087820629650935494551 absolute error = 0.67742844638087820629650935494551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.299 y[1] (analytic) = 0 y[1] (numeric) = 0.6779659751831194919203036623953 absolute error = 0.6779659751831194919203036623953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.3 y[1] (analytic) = 0 y[1] (numeric) = 0.67850347597795962983842643460339 absolute error = 0.67850347597795962983842643460339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.301 y[1] (analytic) = 0 y[1] (numeric) = 0.67904094880437393192124823820837 absolute error = 0.67904094880437393192124823820837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.302 y[1] (analytic) = 0 y[1] (numeric) = 0.67957839370131891618540296559198 absolute error = 0.67957839370131891618540296559198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.303 y[1] (analytic) = 0 y[1] (numeric) = 0.68011581070773232662849039371082 absolute error = 0.68011581070773232662849039371082 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.304 y[1] (analytic) = 0 y[1] (numeric) = 0.68065319986253315304139138468093 absolute error = 0.68065319986253315304139138468093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.305 y[1] (analytic) = 0 y[1] (numeric) = 0.68119056120462165079822840051185 absolute error = 0.68119056120462165079822840051185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.306 y[1] (analytic) = 0 y[1] (numeric) = 0.68172789477287936062400394812742 absolute error = 0.68172789477287936062400394812742 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=350.9MB, alloc=4.5MB, time=37.50 x[1] = 1.307 y[1] (analytic) = 0 y[1] (numeric) = 0.68226520060616912833994951466513 absolute error = 0.68226520060616912833994951466513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.308 y[1] (analytic) = 0 y[1] (numeric) = 0.68280247874333512458661749701341 absolute error = 0.68280247874333512458661749701341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.309 y[1] (analytic) = 0 y[1] (numeric) = 0.68333972922320286452474857362683 absolute error = 0.68333972922320286452474857362683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.31 y[1] (analytic) = 0 y[1] (numeric) = 0.6838769520845792275139469108525 absolute error = 0.6838769520845792275139469108525 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.311 y[1] (analytic) = 0 y[1] (numeric) = 0.6844141473662524767691955403067 absolute error = 0.6844141473662524767691955403067 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.312 y[1] (analytic) = 0 y[1] (numeric) = 0.68495131510699227899524418825875 absolute error = 0.68495131510699227899524418825875 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.313 y[1] (analytic) = 0 y[1] (numeric) = 0.68548845534554972399890178250889 absolute error = 0.68548845534554972399890178250889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.314 y[1] (analytic) = 0 y[1] (numeric) = 0.68602556812065734427926580688859 absolute error = 0.68602556812065734427926580688859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.315 y[1] (analytic) = 0 y[1] (numeric) = 0.6865626534710291345959206182646 absolute error = 0.6865626534710291345959206182646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.316 y[1] (analytic) = 0 y[1] (numeric) = 0.68709971143536057151513678579218 absolute error = 0.68709971143536057151513678579218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.317 y[1] (analytic) = 0 y[1] (numeric) = 0.68763674205232863293410345713788 absolute error = 0.68763674205232863293410345713788 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.318 y[1] (analytic) = 0 y[1] (numeric) = 0.68817374536059181758322570147801 absolute error = 0.68817374536059181758322570147801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.319 y[1] (analytic) = 0 y[1] (numeric) = 0.68871072139879016450651872427488 absolute error = 0.68871072139879016450651872427488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=354.7MB, alloc=4.5MB, time=37.94 x[1] = 1.32 y[1] (analytic) = 0 y[1] (numeric) = 0.68924767020554527252013079413908 absolute error = 0.68924767020554527252013079413908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.321 y[1] (analytic) = 0 y[1] (numeric) = 0.6897845918194603196490266675021 absolute error = 0.6897845918194603196490266675021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.322 y[1] (analytic) = 0 y[1] (numeric) = 0.69032148627912008254186324234937 absolute error = 0.69032148627912008254186324234937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.323 y[1] (analytic) = 0 y[1] (numeric) = 0.69085835362309095586408911789866 absolute error = 0.69085835362309095586408911789866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.324 y[1] (analytic) = 0 y[1] (numeric) = 0.69139519388992097166929968285318 absolute error = 0.69139519388992097166929968285318 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.325 y[1] (analytic) = 0 y[1] (numeric) = 0.69193200711813981874887930071154 absolute error = 0.69193200711813981874887930071154 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.326 y[1] (analytic) = 0 y[1] (numeric) = 0.69246879334625886195996210657861 absolute error = 0.69246879334625886195996210657861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.327 y[1] (analytic) = 0 y[1] (numeric) = 0.69300555261277116153174287599119 absolute error = 0.69300555261277116153174287599119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.328 y[1] (analytic) = 0 y[1] (numeric) = 0.69354228495615149235016937245066 absolute error = 0.69354228495615149235016937245066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.329 y[1] (analytic) = 0 y[1] (numeric) = 0.6940789904148563632210475266408 absolute error = 0.6940789904148563632210475266408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.33 y[1] (analytic) = 0 y[1] (numeric) = 0.6946156690273240361115907467026 absolute error = 0.6946156690273240361115907467026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.331 y[1] (analytic) = 0 y[1] (numeric) = 0.69515232083197454537044460543898 absolute error = 0.69515232083197454537044460543898 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.332 y[1] (analytic) = 0 y[1] (numeric) = 0.69568894586720971692621809693044 absolute error = 0.69568894586720971692621809693044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=358.5MB, alloc=4.5MB, time=38.37 x[1] = 1.333 y[1] (analytic) = 0 y[1] (numeric) = 0.69622554417141318746455260175782 absolute error = 0.69622554417141318746455260175782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.334 y[1] (analytic) = 0 y[1] (numeric) = 0.69676211578295042358375964684998 absolute error = 0.69676211578295042358375964684998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.335 y[1] (analytic) = 0 y[1] (numeric) = 0.69729866074016874092905849290232 absolute error = 0.69729866074016874092905849290232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.336 y[1] (analytic) = 0 y[1] (numeric) = 0.69783517908139732330544452934635 absolute error = 0.69783517908139732330544452934635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.337 y[1] (analytic) = 0 y[1] (numeric) = 0.69837167084494724176921940399069 absolute error = 0.69837167084494724176921940399069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.338 y[1] (analytic) = 0 y[1] (numeric) = 0.69890813606911147369821376169963 absolute error = 0.69890813606911147369821376169963 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.339 y[1] (analytic) = 0 y[1] (numeric) = 0.69944457479216492184073341382676 absolute error = 0.69944457479216492184073341382676 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.34 y[1] (analytic) = 0 y[1] (numeric) = 0.69998098705236443334325970757753 absolute error = 0.69998098705236443334325970757753 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.341 y[1] (analytic) = 0 y[1] (numeric) = 0.700517372887948818756934812036 absolute error = 0.700517372887948818756934812036 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.342 y[1] (analytic) = 0 y[1] (numeric) = 0.70105373233713887102286258525719 absolute error = 0.70105373233713887102286258525719 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.343 y[1] (analytic) = 0 y[1] (numeric) = 0.70159006543813738443625563459684 absolute error = 0.70159006543813738443625563459684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.344 y[1] (analytic) = 0 y[1] (numeric) = 0.70212637222912917358945913032539 absolute error = 0.70212637222912917358945913032539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.345 y[1] (analytic) = 0 y[1] (numeric) = 0.7026626527482810922938818805515 absolute error = 0.7026626527482810922938818805515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.346 y[1] (analytic) = 0 y[1] (numeric) = 0.70319890703374205248086512356315 absolute error = 0.70319890703374205248086512356315 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=362.4MB, alloc=4.5MB, time=38.78 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.347 y[1] (analytic) = 0 y[1] (numeric) = 0.70373513512364304308151944188018 absolute error = 0.70373513512364304308151944188018 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.348 y[1] (analytic) = 0 y[1] (numeric) = 0.70427133705609714888556015060167 absolute error = 0.70427133705609714888556015060167 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.349 y[1] (analytic) = 0 y[1] (numeric) = 0.70480751286919956937917146102356 absolute error = 0.70480751286919956937917146102356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.35 y[1] (analytic) = 0 y[1] (numeric) = 0.70534366260102763756192966899742 absolute error = 0.70534366260102763756192966899742 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.351 y[1] (analytic) = 0 y[1] (numeric) = 0.70587978628964083874281556609859 absolute error = 0.70587978628964083874281556609859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.352 y[1] (analytic) = 0 y[1] (numeric) = 0.70641588397308082931534622037231 absolute error = 0.70641588397308082931534622037231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.353 y[1] (analytic) = 0 y[1] (numeric) = 0.70695195568937145551185622222831 absolute error = 0.70695195568937145551185622222831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.354 y[1] (analytic) = 0 y[1] (numeric) = 0.70748800147651877213695843995852 absolute error = 0.70748800147651877213695843995852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.355 y[1] (analytic) = 0 y[1] (numeric) = 0.70802402137251106128021427835807 absolute error = 0.70802402137251106128021427835807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.356 y[1] (analytic) = 0 y[1] (numeric) = 0.70856001541531885100804338303689 absolute error = 0.70856001541531885100804338303689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.357 y[1] (analytic) = 0 y[1] (numeric) = 0.70909598364289493403490268221738 absolute error = 0.70909598364289493403490268221738 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.358 y[1] (analytic) = 0 y[1] (numeric) = 0.70963192609317438637376460712279 absolute error = 0.70963192609317438637376460712279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.359 y[1] (analytic) = 0 y[1] (numeric) = 0.71016784280407458596592428147083 absolute error = 0.71016784280407458596592428147083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=366.2MB, alloc=4.5MB, time=39.21 x[1] = 1.36 y[1] (analytic) = 0 y[1] (numeric) = 0.71070373381349523129016542009733 absolute error = 0.71070373381349523129016542009733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.361 y[1] (analytic) = 0 y[1] (numeric) = 0.71123959915931835995131462634551 absolute error = 0.71123959915931835995131462634551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.362 y[1] (analytic) = 0 y[1] (numeric) = 0.71177543887940836724821372756689 absolute error = 0.71177543887940836724821372756689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.363 y[1] (analytic) = 0 y[1] (numeric) = 0.71231125301161202472113973789035 absolute error = 0.71231125301161202472113973789035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.364 y[1] (analytic) = 0 y[1] (numeric) = 0.71284704159375849867870198732601 absolute error = 0.71284704159375849867870198732601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.365 y[1] (analytic) = 0 y[1] (numeric) = 0.71338280466365936870424590627965 absolute error = 0.71338280466365936870424590627965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.366 y[1] (analytic) = 0 y[1] (numeric) = 0.71391854225910864614179290466217 absolute error = 0.71391854225910864614179290466217 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.367 y[1] (analytic) = 0 y[1] (numeric) = 0.7144542544178827925615457349857 absolute error = 0.7144542544178827925615457349857 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.368 y[1] (analytic) = 0 y[1] (numeric) = 0.71498994117774073820498867914419 absolute error = 0.71498994117774073820498867914419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.369 y[1] (analytic) = 0 y[1] (numeric) = 0.71552560257642390040961184898065 absolute error = 0.71552560257642390040961184898065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.37 y[1] (analytic) = 0 y[1] (numeric) = 0.716061238651656202013288841246 absolute error = 0.716061238651656202013288841246 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.371 y[1] (analytic) = 0 y[1] (numeric) = 0.71659684944114408973833693815519 absolute error = 0.71659684944114408973833693815519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.372 y[1] (analytic) = 0 y[1] (numeric) = 0.7171324349825765525552889954446 absolute error = 0.7171324349825765525552889954446 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=370.0MB, alloc=4.5MB, time=39.63 x[1] = 1.373 y[1] (analytic) = 0 y[1] (numeric) = 0.71766799531362514002640611063092 absolute error = 0.71766799531362514002640611063092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.374 y[1] (analytic) = 0 y[1] (numeric) = 0.71820353047194398062896011506505 absolute error = 0.71820353047194398062896011506505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.375 y[1] (analytic) = 0 y[1] (numeric) = 0.71873904049516980005831488436489 absolute error = 0.71873904049516980005831488436489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.376 y[1] (analytic) = 0 y[1] (numeric) = 0.71927452542092193951083541289847 absolute error = 0.71927452542092193951083541289847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.377 y[1] (analytic) = 0 y[1] (numeric) = 0.71980998528680237394665354917274 absolute error = 0.71980998528680237394665354917274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.378 y[1] (analytic) = 0 y[1] (numeric) = 0.72034542013039573033231924026399 absolute error = 0.72034542013039573033231924026399 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.379 y[1] (analytic) = 0 y[1] (numeric) = 0.72088082998926930586336608480245 absolute error = 0.72088082998926930586336608480245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.38 y[1] (analytic) = 0 y[1] (numeric) = 0.72141621490097308616681994549655 absolute error = 0.72141621490097308616681994549655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.381 y[1] (analytic) = 0 y[1] (numeric) = 0.72195157490303976348367932375067 absolute error = 0.72195157490303976348367932375067 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.382 y[1] (analytic) = 0 y[1] (numeric) = 0.72248691003298475483139615059457 absolute error = 0.72248691003298475483139615059457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.383 y[1] (analytic) = 0 y[1] (numeric) = 0.72302222032830622014638559990206 absolute error = 0.72302222032830622014638559990206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.384 y[1] (analytic) = 0 y[1] (numeric) = 0.72355750582648508040659348173109 absolute error = 0.72355750582648508040659348173109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.385 y[1] (analytic) = 0 y[1] (numeric) = 0.72409276656498503573414972556725 absolute error = 0.72409276656498503573414972556725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=373.8MB, alloc=4.5MB, time=40.06 x[1] = 1.386 y[1] (analytic) = 0 y[1] (numeric) = 0.72462800258125258347813641529672 absolute error = 0.72462800258125258347813641529672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.387 y[1] (analytic) = 0 y[1] (numeric) = 0.72516321391271703627749878987382 absolute error = 0.72516321391271703627749878987382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.388 y[1] (analytic) = 0 y[1] (numeric) = 0.72569840059679054010412757588115 absolute error = 0.72569840059679054010412757588115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.389 y[1] (analytic) = 0 y[1] (numeric) = 0.72623356267086809228614097050779 absolute error = 0.72623356267086809228614097050779 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.39 y[1] (analytic) = 0 y[1] (numeric) = 0.72676870017232755951139454589192 absolute error = 0.72676870017232755951139454589192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.391 y[1] (analytic) = 0 y[1] (numeric) = 0.72730381313852969581124729828907 absolute error = 0.72730381313852969581124729828907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.392 y[1] (analytic) = 0 y[1] (numeric) = 0.72783890160681816052461201813534 absolute error = 0.72783890160681816052461201813534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.393 y[1] (analytic) = 0 y[1] (numeric) = 0.72837396561451953624231810977638 absolute error = 0.72837396561451953624231810977638 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.394 y[1] (analytic) = 0 y[1] (numeric) = 0.72890900519894334673181494242735 absolute error = 0.72890900519894334673181494242735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.395 y[1] (analytic) = 0 y[1] (numeric) = 0.72944402039738207484224376681642 absolute error = 0.72944402039738207484224376681642 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.396 y[1] (analytic) = 0 y[1] (numeric) = 0.7299790112471111803899061849441 absolute error = 0.7299790112471111803899061849441 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.397 y[1] (analytic) = 0 y[1] (numeric) = 0.7305139777853891180241571134632 absolute error = 0.7305139777853891180241571134632 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.398 y[1] (analytic) = 0 y[1] (numeric) = 0.73104892004945735507375013434837 absolute error = 0.73104892004945735507375013434837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=377.6MB, alloc=4.5MB, time=40.49 x[1] = 1.399 y[1] (analytic) = 0 y[1] (numeric) = 0.73158383807654038937366307978097 absolute error = 0.73158383807654038937366307978097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.4 y[1] (analytic) = 0 y[1] (numeric) = 0.73211873190384576707243165152294 absolute error = 0.73211873190384576707243165152294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.401 y[1] (analytic) = 0 y[1] (numeric) = 0.73265360156856410042001882849339 absolute error = 0.73265360156856410042001882849339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.402 y[1] (analytic) = 0 y[1] (numeric) = 0.73318844710786908553624776979261 absolute error = 0.73318844710786908553624776979261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.403 y[1] (analytic) = 0 y[1] (numeric) = 0.73372326855891752015982587404063 absolute error = 0.73372326855891752015982587404063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.404 y[1] (analytic) = 0 y[1] (numeric) = 0.73425806595884932137798760961066 absolute error = 0.73425806595884932137798760961066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.405 y[1] (analytic) = 0 y[1] (numeric) = 0.73479283934478754333678368414187 absolute error = 0.73479283934478754333678368414187 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.406 y[1] (analytic) = 0 y[1] (numeric) = 0.73532758875383839493204407561043 absolute error = 0.73532758875383839493204407561043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.407 y[1] (analytic) = 0 y[1] (numeric) = 0.73586231422309125748104240122274 absolute error = 0.73586231422309125748104240122274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.408 y[1] (analytic) = 0 y[1] (numeric) = 0.73639701578961870237488905446974 absolute error = 0.73639701578961870237488905446974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.409 y[1] (analytic) = 0 y[1] (numeric) = 0.7369316934904765087116804948463 absolute error = 0.7369316934904765087116804948463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.41 y[1] (analytic) = 0 y[1] (numeric) = 0.73746634736270368091043202899433 absolute error = 0.73746634736270368091043202899433 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.411 y[1] (analytic) = 0 y[1] (numeric) = 0.73800097744332246630582137637251 absolute error = 0.73800097744332246630582137637251 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.412 y[1] (analytic) = 0 y[1] (numeric) = 0.7385355837693383727237702669892 absolute error = 0.7385355837693383727237702669892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=381.4MB, alloc=4.5MB, time=40.92 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.413 y[1] (analytic) = 0 y[1] (numeric) = 0.73907016637774018603789127325781 absolute error = 0.73907016637774018603789127325781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.414 y[1] (analytic) = 0 y[1] (numeric) = 0.73960472530549998770682703264549 absolute error = 0.73960472530549998770682703264549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.415 y[1] (analytic) = 0 y[1] (numeric) = 0.74013926058957317229250897248652 absolute error = 0.74013926058957317229250897248652 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.416 y[1] (analytic) = 0 y[1] (numeric) = 0.74067377226689846495936260312066 absolute error = 0.74067377226689846495936260312066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.417 y[1] (analytic) = 0 y[1] (numeric) = 0.7412082603743979389544864003939 absolute error = 0.7412082603743979389544864003939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.418 y[1] (analytic) = 0 y[1] (numeric) = 0.74174272494897703306883125352468 absolute error = 0.74174272494897703306883125352468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.419 y[1] (analytic) = 0 y[1] (numeric) = 0.7422771660275245690794074093918 absolute error = 0.7422771660275245690794074093918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.42 y[1] (analytic) = 0 y[1] (numeric) = 0.74281158364691276917254579944141 absolute error = 0.74281158364691276917254579944141 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.421 y[1] (analytic) = 0 y[1] (numeric) = 0.74334597784399727334824059063921 absolute error = 0.74334597784399727334824059063921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.422 y[1] (analytic) = 0 y[1] (numeric) = 0.74388034865561715680559975720977 absolute error = 0.74388034865561715680559975720977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.423 y[1] (analytic) = 0 y[1] (numeric) = 0.74441469611859494730943042530837 absolute error = 0.74441469611859494730943042530837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.424 y[1] (analytic) = 0 y[1] (numeric) = 0.74494902026973664253798569826052 absolute error = 0.74494902026973664253798569826052 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.425 y[1] (analytic) = 0 y[1] (numeric) = 0.74548332114583172741189962558154 absolute error = 0.74548332114583172741189962558154 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=385.3MB, alloc=4.5MB, time=41.34 x[1] = 1.426 y[1] (analytic) = 0 y[1] (numeric) = 0.74601759878365319140433693465182 absolute error = 0.74601759878365319140433693465182 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.427 y[1] (analytic) = 0 y[1] (numeric) = 0.74655185321995754583238409967336 absolute error = 0.74655185321995754583238409967336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.428 y[1] (analytic) = 0 y[1] (numeric) = 0.74708608449148484112970827836922 absolute error = 0.74708608449148484112970827836922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.429 y[1] (analytic) = 0 y[1] (numeric) = 0.74762029263495868410051060280947 absolute error = 0.74762029263495868410051060280947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.43 y[1] (analytic) = 0 y[1] (numeric) = 0.74815447768708625515480026675521 absolute error = 0.74815447768708625515480026675521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.431 y[1] (analytic) = 0 y[1] (numeric) = 0.74868863968455832552501580800557 absolute error = 0.74868863968455832552501580800557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.432 y[1] (analytic) = 0 y[1] (numeric) = 0.74922277866404927446401994041154 absolute error = 0.74922277866404927446401994041154 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.433 y[1] (analytic) = 0 y[1] (numeric) = 0.74975689466221710642449424648461 absolute error = 0.74975689466221710642449424648461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.434 y[1] (analytic) = 0 y[1] (numeric) = 0.75029098771570346821975999787734 absolute error = 0.75029098771570346821975999787734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.435 y[1] (analytic) = 0 y[1] (numeric) = 0.750825057861133666166051327447 absolute error = 0.750825057861133666166051327447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.436 y[1] (analytic) = 0 y[1] (numeric) = 0.75135910513511668320626693313204 absolute error = 0.75135910513511668320626693313204 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.437 y[1] (analytic) = 0 y[1] (numeric) = 0.75189312957424519601522645047448 absolute error = 0.75189312957424519601522645047448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.438 y[1] (analytic) = 0 y[1] (numeric) = 0.75242713121509559208645758730852 absolute error = 0.75242713121509559208645758730852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=389.1MB, alloc=4.5MB, time=41.77 x[1] = 1.439 y[1] (analytic) = 0 y[1] (numeric) = 0.75296111009422798680054007090739 absolute error = 0.75296111009422798680054007090739 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.44 y[1] (analytic) = 0 y[1] (numeric) = 0.75349506624818624047503241473586 absolute error = 0.75349506624818624047503241473586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.441 y[1] (analytic) = 0 y[1] (numeric) = 0.75402899971349797539600746889497 absolute error = 0.75402899971349797539600746889497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.442 y[1] (analytic) = 0 y[1] (numeric) = 0.75456291052667459283122267536839 absolute error = 0.75456291052667459283122267536839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.443 y[1] (analytic) = 0 y[1] (numeric) = 0.75509679872421129002495090628573 absolute error = 0.75509679872421129002495090628573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.444 y[1] (analytic) = 0 y[1] (numeric) = 0.75563066434258707717449772060752 absolute error = 0.75563066434258707717449772060752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.445 y[1] (analytic) = 0 y[1] (numeric) = 0.75616450741826479438843083190876 absolute error = 0.75616450741826479438843083190876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.446 y[1] (analytic) = 0 y[1] (numeric) = 0.75669832798769112862654753729295 absolute error = 0.75669832798769112862654753729295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.447 y[1] (analytic) = 0 y[1] (numeric) = 0.75723212608729663062160581490623 absolute error = 0.75723212608729663062160581490623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.448 y[1] (analytic) = 0 y[1] (numeric) = 0.75776590175349573178284475504128 absolute error = 0.75776590175349573178284475504128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.449 y[1] (analytic) = 0 y[1] (numeric) = 0.75829965502268676108131994742302 absolute error = 0.75829965502268676108131994742302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.45 y[1] (analytic) = 0 y[1] (numeric) = 0.75883338593125196191707940495254 absolute error = 0.75883338593125196191707940495254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.451 y[1] (analytic) = 0 y[1] (numeric) = 0.75936709451555750896820556195201 absolute error = 0.75936709451555750896820556195201 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=392.9MB, alloc=4.5MB, time=42.20 x[1] = 1.452 y[1] (analytic) = 0 y[1] (numeric) = 0.75990078081195352502174884280129 absolute error = 0.75990078081195352502174884280129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.453 y[1] (analytic) = 0 y[1] (numeric) = 0.76043444485677409778657825478646 absolute error = 0.76043444485677409778657825478646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.454 y[1] (analytic) = 0 y[1] (numeric) = 0.76096808668633729668817441699149 absolute error = 0.76096808668633729668817441699149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.455 y[1] (analytic) = 0 y[1] (numeric) = 0.76150170633694518964539039515608 absolute error = 0.76150170633694518964539039515608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.456 y[1] (analytic) = 0 y[1] (numeric) = 0.76203530384488385982920567059599 absolute error = 0.76203530384488385982920567059599 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.457 y[1] (analytic) = 0 y[1] (numeric) = 0.76256887924642342240349852953576 absolute error = 0.76256887924642342240349852953576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.458 y[1] (analytic) = 0 y[1] (numeric) = 0.76310243257781804124786211753829 absolute error = 0.76310243257781804124786211753829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.459 y[1] (analytic) = 0 y[1] (numeric) = 0.76363596387530594566248936213063 absolute error = 0.76363596387530594566248936213063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.46 y[1] (analytic) = 0 y[1] (numeric) = 0.7641694731751094470551519252205 absolute error = 0.7641694731751094470551519252205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.461 y[1] (analytic) = 0 y[1] (numeric) = 0.76470296051343495561029830547324 absolute error = 0.76470296051343495561029830547324 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.462 y[1] (analytic) = 0 y[1] (numeric) = 0.76523642592647299694029616947423 absolute error = 0.76523642592647299694029616947423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.463 y[1] (analytic) = 0 y[1] (numeric) = 0.76576986945039822871884394923649 absolute error = 0.76576986945039822871884394923649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.464 y[1] (analytic) = 0 y[1] (numeric) = 0.76630329112136945729657670242787 absolute error = 0.76630329112136945729657670242787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.465 y[1] (analytic) = 0 y[1] (numeric) = 0.76683669097552965429889119058599 absolute error = 0.76683669097552965429889119058599 relative error = -1 % Correct digits = -1 h = 0.001 memory used=396.7MB, alloc=4.5MB, time=42.63 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.466 y[1] (analytic) = 0 y[1] (numeric) = 0.76737006904900597320601508956213 absolute error = 0.76737006904900597320601508956213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.467 y[1] (analytic) = 0 y[1] (numeric) = 0.76790342537790976591534520548747 absolute error = 0.76790342537790976591534520548747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.468 y[1] (analytic) = 0 y[1] (numeric) = 0.76843675999833659928607952868596 absolute error = 0.76843675999833659928607952868596 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.469 y[1] (analytic) = 0 y[1] (numeric) = 0.76897007294636627166616791716781 absolute error = 0.76897007294636627166616791716781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.47 y[1] (analytic) = 0 y[1] (numeric) = 0.76950336425806282940160616062576 absolute error = 0.76950336425806282940160616062576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.471 y[1] (analytic) = 0 y[1] (numeric) = 0.77003663396947458332809813522281 absolute error = 0.77003663396947458332809813522281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.472 y[1] (analytic) = 0 y[1] (numeric) = 0.77056988211663412524511071890468 absolute error = 0.77056988211663412524511071890468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.473 y[1] (analytic) = 0 y[1] (numeric) = 0.77110310873555834437234609649309 absolute error = 0.77110310873555834437234609649309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.474 y[1] (analytic) = 0 y[1] (numeric) = 0.7716363138622484437886560434164 absolute error = 0.7716363138622484437886560434164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.475 y[1] (analytic) = 0 y[1] (numeric) = 0.77216949753268995685342273661223 absolute error = 0.77216949753268995685342273661223 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.476 y[1] (analytic) = 0 y[1] (numeric) = 0.77270265978285276361043060089245 absolute error = 0.77270265978285276361043060089245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.477 y[1] (analytic) = 0 y[1] (numeric) = 0.7732358006486911071742536588938 absolute error = 0.7732358006486911071742536588938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.478 y[1] (analytic) = 0 y[1] (numeric) = 0.7737689201661436100991828126475 absolute error = 0.7737689201661436100991828126475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=400.5MB, alloc=4.5MB, time=43.05 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.479 y[1] (analytic) = 0 y[1] (numeric) = 0.77430201837113329073071744478835 absolute error = 0.77430201837113329073071744478835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.48 y[1] (analytic) = 0 y[1] (numeric) = 0.77483509529956757953964568748754 absolute error = 0.77483509529956757953964568748754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.481 y[1] (analytic) = 0 y[1] (numeric) = 0.77536815098733833543873766733408 absolute error = 0.77536815098733833543873766733408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.482 y[1] (analytic) = 0 y[1] (numeric) = 0.77590118547032186208207599460661 absolute error = 0.77590118547032186208207599460661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.483 y[1] (analytic) = 0 y[1] (numeric) = 0.77643419878437892414704772567064 absolute error = 0.77643419878437892414704772567064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.484 y[1] (analytic) = 0 y[1] (numeric) = 0.77696719096535476359902198760568 absolute error = 0.77696719096535476359902198760568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.485 y[1] (analytic) = 0 y[1] (numeric) = 0.77750016204907911593873741461213 absolute error = 0.77750016204907911593873741461213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.486 y[1] (analytic) = 0 y[1] (numeric) = 0.77803311207136622643242350626884 absolute error = 0.77803311207136622643242350626884 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.487 y[1] (analytic) = 0 y[1] (numeric) = 0.77856604106801486632467997830916 absolute error = 0.77856604106801486632467997830916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.488 y[1] (analytic) = 0 y[1] (numeric) = 0.77909894907480834903413813725551 absolute error = 0.77909894907480834903413813725551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.489 y[1] (analytic) = 0 y[1] (numeric) = 0.77963183612751454633192827100002 absolute error = 0.77963183612751454633192827100002 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.49 y[1] (analytic) = 0 y[1] (numeric) = 0.78016470226188590450297700824151 absolute error = 0.78016470226188590450297700824151 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.491 y[1] (analytic) = 0 y[1] (numeric) = 0.7806975475136594604901585605868 absolute error = 0.7806975475136594604901585605868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=404.3MB, alloc=4.5MB, time=43.47 x[1] = 1.492 y[1] (analytic) = 0 y[1] (numeric) = 0.78123037191855685802132372209658 absolute error = 0.78123037191855685802132372209658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.493 y[1] (analytic) = 0 y[1] (numeric) = 0.78176317551228436371923046210352 absolute error = 0.78176317551228436371923046210352 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.494 y[1] (analytic) = 0 y[1] (numeric) = 0.78229595833053288319439990825147 absolute error = 0.78229595833053288319439990825147 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.495 y[1] (analytic) = 0 y[1] (numeric) = 0.78282872040897797712092147790091 absolute error = 0.78282872040897797712092147790091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.496 y[1] (analytic) = 0 y[1] (numeric) = 0.78336146178327987729523087731545 absolute error = 0.78336146178327987729523087731545 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.497 y[1] (analytic) = 0 y[1] (numeric) = 0.78389418248908350267788464938859 absolute error = 0.78389418248908350267788464938859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.498 y[1] (analytic) = 0 y[1] (numeric) = 0.78442688256201847541835491208749 absolute error = 0.78442688256201847541835491208749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.499 y[1] (analytic) = 0 y[1] (numeric) = 0.78495956203769913686286789128226 absolute error = 0.78495956203769913686286789128226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.5 y[1] (analytic) = 0 y[1] (numeric) = 0.78549222095172456354530981319416 absolute error = 0.78549222095172456354530981319416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.501 y[1] (analytic) = 0 y[1] (numeric) = 0.78602485933967858316122368333459 absolute error = 0.78602485933967858316122368333459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.502 y[1] (analytic) = 0 y[1] (numeric) = 0.78655747723712979052492044051825 absolute error = 0.78655747723712979052492044051825 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.503 y[1] (analytic) = 0 y[1] (numeric) = 0.78709007467963156350972793631839 absolute error = 0.78709007467963156350972793631839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.504 y[1] (analytic) = 0 y[1] (numeric) = 0.78762265170272207897140115218966 absolute error = 0.78762265170272207897140115218966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=408.1MB, alloc=4.5MB, time=43.89 x[1] = 1.505 y[1] (analytic) = 0 y[1] (numeric) = 0.78815520834192432865471702841404 absolute error = 0.78815520834192432865471702841404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.506 y[1] (analytic) = 0 y[1] (numeric) = 0.78868774463274613508327724102828 absolute error = 0.78868774463274613508327724102828 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.507 y[1] (analytic) = 0 y[1] (numeric) = 0.78922026061068016743254222496602 absolute error = 0.78922026061068016743254222496602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.508 y[1] (analytic) = 0 y[1] (numeric) = 0.7897527563112039573861197037955 absolute error = 0.7897527563112039573861197037955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.509 y[1] (analytic) = 0 y[1] (numeric) = 0.79028523176977991497533094865278 absolute error = 0.79028523176977991497533094865278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.51 y[1] (analytic) = 0 y[1] (numeric) = 0.790817687021855344402077951262 absolute error = 0.790817687021855344402077951262 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.511 y[1] (analytic) = 0 y[1] (numeric) = 0.79135012210286245984503465829705 absolute error = 0.79135012210286245984503465829705 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.512 y[1] (analytic) = 0 y[1] (numeric) = 0.79188253704821840124918537677388 absolute error = 0.79188253704821840124918537677388 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.513 y[1] (analytic) = 0 y[1] (numeric) = 0.79241493189332525009873342266868 absolute error = 0.79241493189332525009873342266868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.514 y[1] (analytic) = 0 y[1] (numeric) = 0.79294730667357004517340304753463 absolute error = 0.79294730667357004517340304753463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.515 y[1] (analytic) = 0 y[1] (numeric) = 0.79347966142432479828815764053843 absolute error = 0.79347966142432479828815764053843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.516 y[1] (analytic) = 0 y[1] (numeric) = 0.79401199618094651001635716605739 absolute error = 0.79401199618094651001635716605739 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.517 y[1] (analytic) = 0 y[1] (numeric) = 0.79454431097877718539637775976821 absolute error = 0.79454431097877718539637775976821 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=412.0MB, alloc=4.5MB, time=44.32 x[1] = 1.518 y[1] (analytic) = 0 y[1] (numeric) = 0.79507660585314384962171636901958 absolute error = 0.79507660585314384962171636901958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.519 y[1] (analytic) = 0 y[1] (numeric) = 0.79560888083935856371460328621233 absolute error = 0.79560888083935856371460328621233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.52 y[1] (analytic) = 0 y[1] (numeric) = 0.79614113597271844018314538691269 absolute error = 0.79614113597271844018314538691269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.521 y[1] (analytic) = 0 y[1] (numeric) = 0.79667337128850565866202284749647 absolute error = 0.79667337128850565866202284749647 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.522 y[1] (analytic) = 0 y[1] (numeric) = 0.7972055868219874815367620802641 absolute error = 0.7972055868219874815367620802641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.523 y[1] (analytic) = 0 y[1] (numeric) = 0.79773778260841626955160758717847 absolute error = 0.79773778260841626955160758717847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.524 y[1] (analytic) = 0 y[1] (numeric) = 0.79826995868302949740101539665961 absolute error = 0.79826995868302949740101539665961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.525 y[1] (analytic) = 0 y[1] (numeric) = 0.79880211508104976930479071122139 absolute error = 0.79880211508104976930479071122139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.526 y[1] (analytic) = 0 y[1] (numeric) = 0.79933425183768483456689235715664 absolute error = 0.79933425183768483456689235715664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.527 y[1] (analytic) = 0 y[1] (numeric) = 0.79986636898812760311792659096712 absolute error = 0.79986636898812760311792659096712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.528 y[1] (analytic) = 0 y[1] (numeric) = 0.80039846656755616104135278079415 absolute error = 0.80039846656755616104135278079415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.529 y[1] (analytic) = 0 y[1] (numeric) = 0.80093054461113378608342344473419 absolute error = 0.80093054461113378608342344473419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.53 y[1] (analytic) = 0 y[1] (numeric) = 0.80146260315400896314688109162078 absolute error = 0.80146260315400896314688109162078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.531 y[1] (analytic) = 0 y[1] (numeric) = 0.80199464223131539976843427362021 absolute error = 0.80199464223131539976843427362021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=415.8MB, alloc=4.5MB, time=44.74 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.532 y[1] (analytic) = 0 y[1] (numeric) = 0.80252666187817204158003522382284 absolute error = 0.80252666187817204158003522382284 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.533 y[1] (analytic) = 0 y[1] (numeric) = 0.80305866212968308775398141591476 absolute error = 0.80305866212968308775398141591476 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.534 y[1] (analytic) = 0 y[1] (numeric) = 0.80359064302093800643186334698577 absolute error = 0.80359064302093800643186334698577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.535 y[1] (analytic) = 0 y[1] (numeric) = 0.80412260458701155013738080856878 absolute error = 0.80412260458701155013738080856878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.536 y[1] (analytic) = 0 y[1] (numeric) = 0.80465454686296377117304987511311 absolute error = 0.80465454686296377117304987511311 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.537 y[1] (analytic) = 0 y[1] (numeric) = 0.80518646988384003700082280326906 absolute error = 0.80518646988384003700082280326906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.538 y[1] (analytic) = 0 y[1] (numeric) = 0.80571837368467104560664299960398 absolute error = 0.80571837368467104560664299960398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.539 y[1] (analytic) = 0 y[1] (numeric) = 0.80625025830047284084895717868016 absolute error = 0.80625025830047284084895717868016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.54 y[1] (analytic) = 0 y[1] (numeric) = 0.80678212376624682779120679780262 absolute error = 0.80678212376624682779120679780262 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.541 y[1] (analytic) = 0 y[1] (numeric) = 0.80731397011697978801832081918959 absolute error = 0.80731397011697978801832081918959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.542 y[1] (analytic) = 0 y[1] (numeric) = 0.8078457973876438949372318148305 absolute error = 0.8078457973876438949372318148305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.543 y[1] (analytic) = 0 y[1] (numeric) = 0.80837760561319672906143739387515 absolute error = 0.80837760561319672906143739387515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.544 y[1] (analytic) = 0 y[1] (numeric) = 0.80890939482858129327962889704338 absolute error = 0.80890939482858129327962889704338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=419.6MB, alloc=4.5MB, time=45.17 x[1] = 1.545 y[1] (analytic) = 0 y[1] (numeric) = 0.80944116506872602810840926725687 absolute error = 0.80944116506872602810840926725687 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.546 y[1] (analytic) = 0 y[1] (numeric) = 0.80997291636854482692912197047361 absolute error = 0.80997291636854482692912197047361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.547 y[1] (analytic) = 0 y[1] (numeric) = 0.81050464876293705120881280555073 absolute error = 0.81050464876293705120881280555073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.548 y[1] (analytic) = 0 y[1] (numeric) = 0.81103636228678754570534640687275 absolute error = 0.81103636228678754570534640687275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.549 y[1] (analytic) = 0 y[1] (numeric) = 0.81156805697496665365669920845991 absolute error = 0.81156805697496665365669920845991 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.55 y[1] (analytic) = 0 y[1] (numeric) = 0.81209973286233023195445060331466 absolute error = 0.81209973286233023195445060331466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.551 y[1] (analytic) = 0 y[1] (numeric) = 0.81263138998371966630149399687354 absolute error = 0.81263138998371966630149399687354 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.552 y[1] (analytic) = 0 y[1] (numeric) = 0.81316302837396188635398941860664 absolute error = 0.81316302837396188635398941860664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.553 y[1] (analytic) = 0 y[1] (numeric) = 0.81369464806786938084757932104727 absolute error = 0.81369464806786938084757932104727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.554 y[1] (analytic) = 0 y[1] (numeric) = 0.81422624910024021270788916084017 absolute error = 0.81422624910024021270788916084017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.555 y[1] (analytic) = 0 y[1] (numeric) = 0.81475783150585803414533432176753 absolute error = 0.81475783150585803414533432176753 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.556 y[1] (analytic) = 0 y[1] (numeric) = 0.8152893953194921017342549051484 absolute error = 0.8152893953194921017342549051484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.557 y[1] (analytic) = 0 y[1] (numeric) = 0.81582094057589729147639987850785 absolute error = 0.81582094057589729147639987850785 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=423.4MB, alloc=4.5MB, time=45.59 x[1] = 1.558 y[1] (analytic) = 0 y[1] (numeric) = 0.8163524673098141138487820389783 absolute error = 0.8163524673098141138487820389783 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.559 y[1] (analytic) = 0 y[1] (numeric) = 0.81688397555596872883592521352584 absolute error = 0.81688397555596872883592521352584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.56 y[1] (analytic) = 0 y[1] (numeric) = 0.81741546534907296094652508378944 absolute error = 0.81741546534907296094652508378944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.561 y[1] (analytic) = 0 y[1] (numeric) = 0.81794693672382431421454498908042 absolute error = 0.81794693672382431421454498908042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.562 y[1] (analytic) = 0 y[1] (numeric) = 0.81847838971490598718476802691325 absolute error = 0.81847838971490598718476802691325 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.563 y[1] (analytic) = 0 y[1] (numeric) = 0.81900982435698688788282673632654 absolute error = 0.81900982435698688788282673632654 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.564 y[1] (analytic) = 0 y[1] (numeric) = 0.81954124068472164876973161520489 absolute error = 0.81954124068472164876973161520489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.565 y[1] (analytic) = 0 y[1] (numeric) = 0.82007263873275064168091968882795 absolute error = 0.82007263873275064168091968882795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.566 y[1] (analytic) = 0 y[1] (numeric) = 0.82060401853569999274984431295226 absolute error = 0.82060401853569999274984431295226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.567 y[1] (analytic) = 0 y[1] (numeric) = 0.82113538012818159731612736087453 absolute error = 0.82113538012818159731612736087453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.568 y[1] (analytic) = 0 y[1] (numeric) = 0.82166672354479313481829491013124 absolute error = 0.82166672354479313481829491013124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.569 y[1] (analytic) = 0 y[1] (numeric) = 0.82219804882011808367111751075906 absolute error = 0.82219804882011808367111751075906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.57 y[1] (analytic) = 0 y[1] (numeric) = 0.8227293559887257361275760833735 absolute error = 0.8227293559887257361275760833735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=427.2MB, alloc=4.5MB, time=46.02 x[1] = 1.571 y[1] (analytic) = 0 y[1] (numeric) = 0.82326064508517121312547446171895 absolute error = 0.82326064508517121312547446171895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.572 y[1] (analytic) = 0 y[1] (numeric) = 0.82379191614399547911871956080192 absolute error = 0.82379191614399547911871956080192 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.573 y[1] (analytic) = 0 y[1] (numeric) = 0.82432316919972535689329011824095 absolute error = 0.82432316919972535689329011824095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.574 y[1] (analytic) = 0 y[1] (numeric) = 0.82485440428687354236791492305053 absolute error = 0.82485440428687354236791492305053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.575 y[1] (analytic) = 0 y[1] (numeric) = 0.82538562143993861937948141272305 absolute error = 0.82538562143993861937948141272305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.576 y[1] (analytic) = 0 y[1] (numeric) = 0.8259168206934050744531954861818 absolute error = 0.8259168206934050744531954861818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.577 y[1] (analytic) = 0 y[1] (numeric) = 0.82644800208174331155751334694898 absolute error = 0.82644800208174331155751334694898 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.578 y[1] (analytic) = 0 y[1] (numeric) = 0.82697916563940966684386615770614 absolute error = 0.82697916563940966684386615770614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.579 y[1] (analytic) = 0 y[1] (numeric) = 0.82751031140084642337119825431948 absolute error = 0.82751031140084642337119825431948 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.58 y[1] (analytic) = 0 y[1] (numeric) = 0.82804143940048182581533963435958 absolute error = 0.82804143940048182581533963435958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.581 y[1] (analytic) = 0 y[1] (numeric) = 0.82857254967273009516323340216368 absolute error = 0.82857254967273009516323340216368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.582 y[1] (analytic) = 0 y[1] (numeric) = 0.82910364225199144339203881956908 absolute error = 0.82910364225199144339203881956908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.583 y[1] (analytic) = 0 y[1] (numeric) = 0.82963471717265208813313057858763 absolute error = 0.82963471717265208813313057858763 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=431.0MB, alloc=4.5MB, time=46.44 x[1] = 1.584 y[1] (analytic) = 0 y[1] (numeric) = 0.83016577446908426732101487949462 absolute error = 0.83016577446908426732101487949462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.585 y[1] (analytic) = 0 y[1] (numeric) = 0.83069681417564625382718286506908 absolute error = 0.83069681417564625382718286506908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.586 y[1] (analytic) = 0 y[1] (numeric) = 0.83122783632668237007892192904813 absolute error = 0.83122783632668237007892192904813 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.587 y[1] (analytic) = 0 y[1] (numeric) = 0.83175884095652300266310538424364 absolute error = 0.83175884095652300266310538424364 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.588 y[1] (analytic) = 0 y[1] (numeric) = 0.83228982809948461691498094321669 absolute error = 0.83228982809948461691498094321669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.589 y[1] (analytic) = 0 y[1] (numeric) = 0.83282079778986977149197843191254 absolute error = 0.83282079778986977149197843191254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.59 y[1] (analytic) = 0 y[1] (numeric) = 0.833351750061967132932557124227 absolute error = 0.833351750061967132932557124227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.591 y[1] (analytic) = 0 y[1] (numeric) = 0.8338826849500514902001130531033 absolute error = 0.8338826849500514902001130531033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.592 y[1] (analytic) = 0 y[1] (numeric) = 0.83441360248838376921196662144738 absolute error = 0.83441360248838376921196662144738 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.593 y[1] (analytic) = 0 y[1] (numeric) = 0.83494450271121104735345080389816 absolute error = 0.83494450271121104735345080389816 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.594 y[1] (analytic) = 0 y[1] (numeric) = 0.83547538565276656797712019829823 absolute error = 0.83547538565276656797712019829823 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.595 y[1] (analytic) = 0 y[1] (numeric) = 0.83600625134726975488710115357889 absolute error = 0.83600625134726975488710115357889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.596 y[1] (analytic) = 0 y[1] (numeric) = 0.83653709982892622680860316870203 absolute error = 0.83653709982892622680860316870203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.597 y[1] (analytic) = 0 y[1] (numeric) = 0.83706793113192781184261172528921 absolute error = 0.83706793113192781184261172528921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=434.8MB, alloc=4.5MB, time=46.86 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.598 y[1] (analytic) = 0 y[1] (numeric) = 0.83759874529045256190578268461591 absolute error = 0.83759874529045256190578268461591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.599 y[1] (analytic) = 0 y[1] (numeric) = 0.83812954233866476715555834775561 absolute error = 0.83812954233866476715555834775561 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.6 y[1] (analytic) = 0 y[1] (numeric) = 0.83866032231071497040052524582469 absolute error = 0.83866032231071497040052524582469 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.601 y[1] (analytic) = 0 y[1] (numeric) = 0.83919108524073998149603369550415 absolute error = 0.83919108524073998149603369550415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.602 y[1] (analytic) = 0 y[1] (numeric) = 0.83972183116286289172509912329842 absolute error = 0.83972183116286289172509912329842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.603 y[1] (analytic) = 0 y[1] (numeric) = 0.84025256011119308816460513033461 absolute error = 0.84025256011119308816460513033461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.604 y[1] (analytic) = 0 y[1] (numeric) = 0.84078327211982626803682823790735 absolute error = 0.84078327211982626803682823790735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.605 y[1] (analytic) = 0 y[1] (numeric) = 0.84131396722284445304630422243469 absolute error = 0.84131396722284445304630422243469 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.606 y[1] (analytic) = 0 y[1] (numeric) = 0.84184464545431600370205591700949 absolute error = 0.84184464545431600370205591700949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.607 y[1] (analytic) = 0 y[1] (numeric) = 0.84237530684829563362520232530801 absolute error = 0.84237530684829563362520232530801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.608 y[1] (analytic) = 0 y[1] (numeric) = 0.84290595143882442384196886225288 absolute error = 0.84290595143882442384196886225288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.609 y[1] (analytic) = 0 y[1] (numeric) = 0.84343657925992983706211850452113 absolute error = 0.84343657925992983706211850452113 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.61 y[1] (analytic) = 0 y[1] (numeric) = 0.84396719034562573194282360273981 absolute error = 0.84396719034562573194282360273981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=438.7MB, alloc=4.5MB, time=47.28 x[1] = 1.611 y[1] (analytic) = 0 y[1] (numeric) = 0.84449778472991237733799807602091 absolute error = 0.84449778472991237733799807602091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.612 y[1] (analytic) = 0 y[1] (numeric) = 0.8450283624467764665331096783548 absolute error = 0.8450283624467764665331096783548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.613 y[1] (analytic) = 0 y[1] (numeric) = 0.84555892353019113146549199530593 absolute error = 0.84555892353019113146549199530593 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.614 y[1] (analytic) = 0 y[1] (numeric) = 0.84608946801411595693017579843727 absolute error = 0.84608946801411595693017579843727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.615 y[1] (analytic) = 0 y[1] (numeric) = 0.84661999593249699477125935392926 absolute error = 0.84661999593249699477125935392926 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.616 y[1] (analytic) = 0 y[1] (numeric) = 0.84715050731926677805883725095644 absolute error = 0.84715050731926677805883725095644 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.617 y[1] (analytic) = 0 y[1] (numeric) = 0.84768100220834433525150728453874 absolute error = 0.84768100220834433525150728453874 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.618 y[1] (analytic) = 0 y[1] (numeric) = 0.84821148063363520434447489679569 absolute error = 0.84821148063363520434447489679569 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.619 y[1] (analytic) = 0 y[1] (numeric) = 0.8487419426290314470032746497999 absolute error = 0.8487419426290314470032746497999 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.62 y[1] (analytic) = 0 y[1] (numeric) = 0.84927238822841166268312817255085 absolute error = 0.84927238822841166268312817255085 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.621 y[1] (analytic) = 0 y[1] (numeric) = 0.84980281746564100273395799397155 absolute error = 0.84980281746564100273395799397155 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.622 y[1] (analytic) = 0 y[1] (numeric) = 0.85033323037457118449107664326872 absolute error = 0.85033323037457118449107664326872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.623 y[1] (analytic) = 0 y[1] (numeric) = 0.85086362698904050535157036849139 absolute error = 0.85086362698904050535157036849139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=442.5MB, alloc=4.5MB, time=47.71 x[1] = 1.624 y[1] (analytic) = 0 y[1] (numeric) = 0.85139400734287385683639679367373 absolute error = 0.85139400734287385683639679367373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.625 y[1] (analytic) = 0 y[1] (numeric) = 0.85192437146988273863821580455472 absolute error = 0.85192437146988273863821580455472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.626 y[1] (analytic) = 0 y[1] (numeric) = 0.85245471940386527265497292253022 absolute error = 0.85245471940386527265497292253022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.627 y[1] (analytic) = 0 y[1] (numeric) = 0.85298505117860621700925439621198 absolute error = 0.85298505117860621700925439621198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.628 y[1] (analytic) = 0 y[1] (numeric) = 0.85351536682787698005343320974278 absolute error = 0.85351536682787698005343320974278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.629 y[1] (analytic) = 0 y[1] (numeric) = 0.8540456663854356343606251768474 absolute error = 0.8540456663854356343606251768474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.63 y[1] (analytic) = 0 y[1] (numeric) = 0.85457594988502693070147425948506 absolute error = 0.85457594988502693070147425948506 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.631 y[1] (analytic) = 0 y[1] (numeric) = 0.85510621736038231200678621991059 absolute error = 0.85510621736038231200678621991059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.632 y[1] (analytic) = 0 y[1] (numeric) = 0.85563646884521992731602968494828 absolute error = 0.85563646884521992731602968494828 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.633 y[1] (analytic) = 0 y[1] (numeric) = 0.8561667043732446457117236713346 absolute error = 0.8561667043732446457117236713346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.634 y[1] (analytic) = 0 y[1] (numeric) = 0.85669692397814807023973059109312 absolute error = 0.85669692397814807023973059109312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.635 y[1] (analytic) = 0 y[1] (numeric) = 0.85722712769360855181547372606718 absolute error = 0.85722712769360855181547372606718 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.636 y[1] (analytic) = 0 y[1] (numeric) = 0.85775731555329120311609813095296 absolute error = 0.85775731555329120311609813095296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=446.3MB, alloc=4.5MB, time=48.14 x[1] = 1.637 y[1] (analytic) = 0 y[1] (numeric) = 0.85828748759084791245859389444752 absolute error = 0.85828748759084791245859389444752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.638 y[1] (analytic) = 0 y[1] (numeric) = 0.85881764383991735766390065845295 absolute error = 0.85881764383991735766390065845295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.639 y[1] (analytic) = 0 y[1] (numeric) = 0.8593477843341250199070122656587 absolute error = 0.8593477843341250199070122656587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.64 y[1] (analytic) = 0 y[1] (numeric) = 0.85987790910708319755310037625988 absolute error = 0.85987790910708319755310037625988 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.641 y[1] (analytic) = 0 y[1] (numeric) = 0.86040801819239101997967586505901 absolute error = 0.86040801819239101997967586505901 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.642 y[1] (analytic) = 0 y[1] (numeric) = 0.86093811162363446138480678074282 absolute error = 0.86093811162363446138480678074282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.643 y[1] (analytic) = 0 y[1] (numeric) = 0.86146818943438635458141161972371 absolute error = 0.86146818943438635458141161972371 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.644 y[1] (analytic) = 0 y[1] (numeric) = 0.86199825165820640477764663758774 absolute error = 0.86199825165820640477764663758774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.645 y[1] (analytic) = 0 y[1] (numeric) = 0.8625282983286412033434058918968 absolute error = 0.8625282983286412033434058918968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.646 y[1] (analytic) = 0 y[1] (numeric) = 0.86305832947922424156295268085241 absolute error = 0.86305832947922424156295268085241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.647 y[1] (analytic) = 0 y[1] (numeric) = 0.86358834514347592437370101314193 absolute error = 0.86358834514347592437370101314193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.648 y[1] (analytic) = 0 y[1] (numeric) = 0.86411834535490358409116571515478 absolute error = 0.86411834535490358409116571515478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.649 y[1] (analytic) = 0 y[1] (numeric) = 0.86464833014700149412009975267658 absolute error = 0.86464833014700149412009975267658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.65 y[1] (analytic) = 0 y[1] (numeric) = 0.86517829955325088265183731514263 absolute error = 0.86517829955325088265183731514263 relative error = -1 % Correct digits = -1 h = 0.001 memory used=450.1MB, alloc=4.5MB, time=48.58 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.651 y[1] (analytic) = 0 y[1] (numeric) = 0.86570825360711994634786118155895 absolute error = 0.86570825360711994634786118155895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.652 y[1] (analytic) = 0 y[1] (numeric) = 0.86623819234206386400961285827893 absolute error = 0.86623819234206386400961285827893 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.653 y[1] (analytic) = 0 y[1] (numeric) = 0.86676811579152481023456394995634 absolute error = 0.86676811579152481023456394995634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.654 y[1] (analytic) = 0 y[1] (numeric) = 0.86729802398893196905856719618121 absolute error = 0.86729802398893196905856719618121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.655 y[1] (analytic) = 0 y[1] (numeric) = 0.8678279169677015475845055775434 absolute error = 0.8678279169677015475845055775434 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.656 y[1] (analytic) = 0 y[1] (numeric) = 0.86835779476123678959725786615968 absolute error = 0.86835779476123678959725786615968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.657 y[1] (analytic) = 0 y[1] (numeric) = 0.86888765740292798916499896704371 absolute error = 0.86888765740292798916499896704371 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.658 y[1] (analytic) = 0 y[1] (numeric) = 0.86941750492615250422685336809428 absolute error = 0.86941750492615250422685336809428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.659 y[1] (analytic) = 0 y[1] (numeric) = 0.86994733736427477016691998792531 absolute error = 0.86994733736427477016691998792531 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.66 y[1] (analytic) = 0 y[1] (numeric) = 0.87047715475064631337468668226168 absolute error = 0.87047715475064631337468668226168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.661 y[1] (analytic) = 0 y[1] (numeric) = 0.87100695711860576479185264117732 absolute error = 0.87100695711860576479185264117732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.662 y[1] (analytic) = 0 y[1] (numeric) = 0.87153674450147887344557688105671 absolute error = 0.87153674450147887344557688105671 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.663 y[1] (analytic) = 0 y[1] (numeric) = 0.87206651693257851996817100681705 absolute error = 0.87206651693257851996817100681705 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=453.9MB, alloc=4.5MB, time=49.02 x[1] = 1.664 y[1] (analytic) = 0 y[1] (numeric) = 0.87259627444520473010325439163663 absolute error = 0.87259627444520473010325439163663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.665 y[1] (analytic) = 0 y[1] (numeric) = 0.87312601707264468819838989319469 absolute error = 0.87312601707264468819838989319469 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.666 y[1] (analytic) = 0 y[1] (numeric) = 0.87365574484817275068421819723928 absolute error = 0.87365574484817275068421819723928 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.667 y[1] (analytic) = 0 y[1] (numeric) = 0.87418545780505045954010885116242 absolute error = 0.87418545780505045954010885116242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.668 y[1] (analytic) = 0 y[1] (numeric) = 0.874715155976526555746346022176 absolute error = 0.874715155976526555746346022176 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.669 y[1] (analytic) = 0 y[1] (numeric) = 0.87524483939583699272286698664699 absolute error = 0.87524483939583699272286698664699 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.67 y[1] (analytic) = 0 y[1] (numeric) = 0.875774508096204949754571329167 absolute error = 0.875774508096204949754571329167 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.671 y[1] (analytic) = 0 y[1] (numeric) = 0.87630416211084084540321880199872 absolute error = 0.87630416211084084540321880199872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.672 y[1] (analytic) = 0 y[1] (numeric) = 0.87683380147294235090593376765994 absolute error = 0.87683380147294235090593376765994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.673 y[1] (analytic) = 0 y[1] (numeric) = 0.87736342621569440356033411957495 absolute error = 0.87736342621569440356033411957495 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.674 y[1] (analytic) = 0 y[1] (numeric) = 0.87789303637226922009630254794299 absolute error = 0.87789303637226922009630254794299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.675 y[1] (analytic) = 0 y[1] (numeric) = 0.87842263197582631003441799024378 absolute error = 0.87842263197582631003441799024378 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.676 y[1] (analytic) = 0 y[1] (numeric) = 0.87895221305951248903106507812084 absolute error = 0.87895221305951248903106507812084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=457.7MB, alloc=4.5MB, time=49.47 x[1] = 1.677 y[1] (analytic) = 0 y[1] (numeric) = 0.87948177965646189221023936475475 absolute error = 0.87948177965646189221023936475475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.678 y[1] (analytic) = 0 y[1] (numeric) = 0.88001133179979598748206608925981 absolute error = 0.88001133179979598748206608925981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.679 y[1] (analytic) = 0 y[1] (numeric) = 0.88054086952262358884805020710922 absolute error = 0.88054086952262358884805020710922 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.68 y[1] (analytic) = 0 y[1] (numeric) = 0.88107039285804086969307538811572 absolute error = 0.88107039285804086969307538811572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.681 y[1] (analytic) = 0 y[1] (numeric) = 0.88159990183913137606416965606611 absolute error = 0.88159990183913137606416965606611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.682 y[1] (analytic) = 0 y[1] (numeric) = 0.88212939649896603993605531672966 absolute error = 0.88212939649896603993605531672966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.683 y[1] (analytic) = 0 y[1] (numeric) = 0.8826588768706031924635007936317 absolute error = 0.8826588768706031924635007936317 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.684 y[1] (analytic) = 0 y[1] (numeric) = 0.88318834298708857722049196370445 absolute error = 0.88318834298708857722049196370445 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.685 y[1] (analytic) = 0 y[1] (numeric) = 0.88371779488145536342624055769774 absolute error = 0.88371779488145536342624055769774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.686 y[1] (analytic) = 0 y[1] (numeric) = 0.88424723258672415915804716305191 absolute error = 0.88424723258672415915804716305191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.687 y[1] (analytic) = 0 y[1] (numeric) = 0.88477665613590302455103633980466 absolute error = 0.88477665613590302455103633980466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.688 y[1] (analytic) = 0 y[1] (numeric) = 0.88530606556198748498478133302178 absolute error = 0.88530606556198748498478133302178 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.689 y[1] (analytic) = 0 y[1] (numeric) = 0.88583546089796054425683583820944 absolute error = 0.88583546089796054425683583820944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=461.5MB, alloc=4.5MB, time=49.86 x[1] = 1.69 y[1] (analytic) = 0 y[1] (numeric) = 0.88636484217679269774319024918218 absolute error = 0.88636484217679269774319024918218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.691 y[1] (analytic) = 0 y[1] (numeric) = 0.88689420943144194554566979092634 absolute error = 0.88689420943144194554566979092634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.692 y[1] (analytic) = 0 y[1] (numeric) = 0.88742356269485380562629191311298 absolute error = 0.88742356269485380562629191311298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.693 y[1] (analytic) = 0 y[1] (numeric) = 0.88795290199996132692860029307731 absolute error = 0.88795290199996132692860029307731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.694 y[1] (analytic) = 0 y[1] (numeric) = 0.88848222737968510248599277029353 absolute error = 0.88848222737968510248599277029353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.695 y[1] (analytic) = 0 y[1] (numeric) = 0.88901153886693328251706050763396 absolute error = 0.88901153886693328251706050763396 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.696 y[1] (analytic) = 0 y[1] (numeric) = 0.88954083649460158750795564801011 absolute error = 0.88954083649460158750795564801011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.697 y[1] (analytic) = 0 y[1] (numeric) = 0.89007012029557332128180470835023 absolute error = 0.89007012029557332128180470835023 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.698 y[1] (analytic) = 0 y[1] (numeric) = 0.89059939030271938405518492627306 absolute error = 0.89059939030271938405518492627306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.699 y[1] (analytic) = 0 y[1] (numeric) = 0.89112864654889828548168074827073 absolute error = 0.89112864654889828548168074827073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.7 y[1] (analytic) = 0 y[1] (numeric) = 0.8916578890669561576825376217152 absolute error = 0.8916578890669561576825376217152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.701 y[1] (analytic) = 0 y[1] (numeric) = 0.8921871178897267682644302265517 absolute error = 0.8921871178897267682644302265517 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.702 y[1] (analytic) = 0 y[1] (numeric) = 0.89271633305003153332436225613974 absolute error = 0.89271633305003153332436225613974 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=465.4MB, alloc=4.5MB, time=50.29 x[1] = 1.703 y[1] (analytic) = 0 y[1] (numeric) = 0.89324553458067953044171483034712 absolute error = 0.89324553458067953044171483034712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.704 y[1] (analytic) = 0 y[1] (numeric) = 0.89377472251446751165746059769459 absolute error = 0.89377472251446751165746059769459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.705 y[1] (analytic) = 0 y[1] (numeric) = 0.89430389688417991644056055708897 absolute error = 0.89430389688417991644056055708897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.706 y[1] (analytic) = 0 y[1] (numeric) = 0.89483305772258888464156060346961 absolute error = 0.89483305772258888464156060346961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.707 y[1] (analytic) = 0 y[1] (numeric) = 0.89536220506245426943340477552805 absolute error = 0.89536220506245426943340477552805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.708 y[1] (analytic) = 0 y[1] (numeric) = 0.89589133893652365023948215754241 absolute error = 0.89589133893652365023948215754241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.709 y[1] (analytic) = 0 y[1] (numeric) = 0.89642045937753234564892436129729 absolute error = 0.89642045937753234564892436129729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.71 y[1] (analytic) = 0 y[1] (numeric) = 0.8969495664182034263191704880359 absolute error = 0.8969495664182034263191704880359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.711 y[1] (analytic) = 0 y[1] (numeric) = 0.89747866009124772786581644441425 absolute error = 0.89747866009124772786581644441425 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.712 y[1] (analytic) = 0 y[1] (numeric) = 0.89800774042936386373976546049712 absolute error = 0.89800774042936386373976546049712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.713 y[1] (analytic) = 0 y[1] (numeric) = 0.8985368074652382380916966319521 absolute error = 0.8985368074652382380916966319521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.714 y[1] (analytic) = 0 y[1] (numeric) = 0.89906586123154505862386828276132 absolute error = 0.89906586123154505862386828276132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.715 y[1] (analytic) = 0 y[1] (numeric) = 0.89959490176094634942927291898024 absolute error = 0.89959490176094634942927291898024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.716 y[1] (analytic) = 0 y[1] (numeric) = 0.90012392908609196381816051832932 absolute error = 0.90012392908609196381816051832932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=469.2MB, alloc=4.5MB, time=50.72 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.717 y[1] (analytic) = 0 y[1] (numeric) = 0.90065294323961959713194687470684 absolute error = 0.90065294323961959713194687470684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.718 y[1] (analytic) = 0 y[1] (numeric) = 0.9011819442541547995445236910602 absolute error = 0.9011819442541547995445236910602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.719 y[1] (analytic) = 0 y[1] (numeric) = 0.90171093216231098885098708844813 absolute error = 0.90171093216231098885098708844813 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.72 y[1] (analytic) = 0 y[1] (numeric) = 0.90223990699668946324380117356731 absolute error = 0.90223990699668946324380117356731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.721 y[1] (analytic) = 0 y[1] (numeric) = 0.90276886878987941407641328150413 absolute error = 0.90276886878987941407641328150413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.722 y[1] (analytic) = 0 y[1] (numeric) = 0.90329781757445793861433748500544 absolute error = 0.90329781757445793861433748500544 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.723 y[1] (analytic) = 0 y[1] (numeric) = 0.90382675338299005277372293614073 absolute error = 0.90382675338299005277372293614073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.724 y[1] (analytic) = 0 y[1] (numeric) = 0.90435567624802870384742358085307 absolute error = 0.90435567624802870384742358085307 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.725 y[1] (analytic) = 0 y[1] (numeric) = 0.90488458620211478321858576156592 absolute error = 0.90488458620211478321858576156592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.726 y[1] (analytic) = 0 y[1] (numeric) = 0.9054134832777771390617701977289 absolute error = 0.9054134832777771390617701977289 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.727 y[1] (analytic) = 0 y[1] (numeric) = 0.90594236750753258903162480894641 absolute error = 0.90594236750753258903162480894641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.728 y[1] (analytic) = 0 y[1] (numeric) = 0.90647123892388593293912482013964 absolute error = 0.90647123892388593293912482013964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.729 y[1] (analytic) = 0 y[1] (numeric) = 0.90700009755932996541539656304396 absolute error = 0.90700009755932996541539656304396 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=473.0MB, alloc=4.5MB, time=51.15 x[1] = 1.73 y[1] (analytic) = 0 y[1] (numeric) = 0.9075289434463454885631413632405 absolute error = 0.9075289434463454885631413632405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.731 y[1] (analytic) = 0 y[1] (numeric) = 0.90805777661740132459567587686261 absolute error = 0.90805777661740132459567587686261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.732 y[1] (analytic) = 0 y[1] (numeric) = 0.90858659710495432846360521610461 absolute error = 0.90858659710495432846360521610461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.733 y[1] (analytic) = 0 y[1] (numeric) = 0.90911540494144940046914517769189 absolute error = 0.90911540494144940046914517769189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.734 y[1] (analytic) = 0 y[1] (numeric) = 0.90964420015931949886810986354781 absolute error = 0.90964420015931949886810986354781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.735 y[1] (analytic) = 0 y[1] (numeric) = 0.910172982790985652459580958014 absolute error = 0.910172982790985652459580958014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.736 y[1] (analytic) = 0 y[1] (numeric) = 0.91070175286885697316327490114623 absolute error = 0.91070175286885697316327490114623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.737 y[1] (analytic) = 0 y[1] (numeric) = 0.91123051042533066858462417281829 absolute error = 0.91123051042533066858462417281829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.738 y[1] (analytic) = 0 y[1] (numeric) = 0.91175925549279205456758887762081 absolute error = 0.91175925549279205456758887762081 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.739 y[1] (analytic) = 0 y[1] (numeric) = 0.91228798810361456773521479584094 absolute error = 0.91228798810361456773521479584094 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.74 y[1] (analytic) = 0 y[1] (numeric) = 0.91281670829015977801795404115179 absolute error = 0.91281670829015977801795404115179 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.741 y[1] (analytic) = 0 y[1] (numeric) = 0.91334541608477740116976444102787 absolute error = 0.91334541608477740116976444102787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.742 y[1] (analytic) = 0 y[1] (numeric) = 0.91387411151980531127200373133402 absolute error = 0.91387411151980531127200373133402 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=476.8MB, alloc=4.5MB, time=51.56 x[1] = 1.743 y[1] (analytic) = 0 y[1] (numeric) = 0.91440279462756955322513463201057 absolute error = 0.91440279462756955322513463201057 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.744 y[1] (analytic) = 0 y[1] (numeric) = 0.91493146544038435522825684629655 absolute error = 0.91493146544038435522825684629655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.745 y[1] (analytic) = 0 y[1] (numeric) = 0.91546012399055214124648200149563 absolute error = 0.91546012399055214124648200149563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.746 y[1] (analytic) = 0 y[1] (numeric) = 0.91598877031036354346616752489609 absolute error = 0.91598877031036354346616752489609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.747 y[1] (analytic) = 0 y[1] (numeric) = 0.91651740443209741473802542410617 absolute error = 0.91651740443209741473802542410617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.748 y[1] (analytic) = 0 y[1] (numeric) = 0.91704602638802084100812191675988 absolute error = 0.91704602638802084100812191675988 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.749 y[1] (analytic) = 0 y[1] (numeric) = 0.91757463621038915373678383028539 absolute error = 0.91757463621038915373678383028539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.75 y[1] (analytic) = 0 y[1] (numeric) = 0.91810323393144594230542766820853 absolute error = 0.91810323393144594230542766820853 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.751 y[1] (analytic) = 0 y[1] (numeric) = 0.9186318195834230664113272152875 absolute error = 0.9186318195834230664113272152875 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.752 y[1] (analytic) = 0 y[1] (numeric) = 0.91916039319854066845033552964177 absolute error = 0.91916039319854066845033552964177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.753 y[1] (analytic) = 0 y[1] (numeric) = 0.91968895480900718588757714594797 absolute error = 0.91968895480900718588757714594797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.754 y[1] (analytic) = 0 y[1] (numeric) = 0.92021750444701936361612628972828 absolute error = 0.92021750444701936361612628972828 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.755 y[1] (analytic) = 0 y[1] (numeric) = 0.92074604214476226630368687875275 absolute error = 0.92074604214476226630368687875275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=480.6MB, alloc=4.5MB, time=51.98 x[1] = 1.756 y[1] (analytic) = 0 y[1] (numeric) = 0.92127456793440929072729006361526 absolute error = 0.92127456793440929072729006361526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.757 y[1] (analytic) = 0 y[1] (numeric) = 0.92180308184812217809602503562425 absolute error = 0.92180308184812217809602503562425 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.758 y[1] (analytic) = 0 y[1] (numeric) = 0.922331583918051026361818806273 absolute error = 0.922331583918051026361818806273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.759 y[1] (analytic) = 0 y[1] (numeric) = 0.92286007417633430251828063872086 absolute error = 0.92286007417633430251828063872086 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.76 y[1] (analytic) = 0 y[1] (numeric) = 0.9233885526550988548876267879254 absolute error = 0.9233885526550988548876267879254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.761 y[1] (analytic) = 0 y[1] (numeric) = 0.92391701938645992539570118231686 absolute error = 0.92391701938645992539570118231686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.762 y[1] (analytic) = 0 y[1] (numeric) = 0.92444547440252116183510765619968 absolute error = 0.92444547440252116183510765619968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.763 y[1] (analytic) = 0 y[1] (numeric) = 0.92497391773537463011646931840152 absolute error = 0.92497391773537463011646931840152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.764 y[1] (analytic) = 0 y[1] (numeric) = 0.92550234941710082650783061906808 absolute error = 0.92550234941710082650783061906808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.765 y[1] (analytic) = 0 y[1] (numeric) = 0.92603076947976868986221765292168 absolute error = 0.92603076947976868986221765292168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.766 y[1] (analytic) = 0 y[1] (numeric) = 0.92655917795543561383337221376343 absolute error = 0.92655917795543561383337221376343 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.767 y[1] (analytic) = 0 y[1] (numeric) = 0.92708757487614745907967509150233 absolute error = 0.92708757487614745907967509150233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.768 y[1] (analytic) = 0 y[1] (numeric) = 0.92761596027393856545627407954006 absolute error = 0.92761596027393856545627407954006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.769 y[1] (analytic) = 0 y[1] (numeric) = 0.92814433418083176419543213692716 absolute error = 0.92814433418083176419543213692716 relative error = -1 % Correct digits = -1 h = 0.001 memory used=484.4MB, alloc=4.5MB, time=52.37 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.77 y[1] (analytic) = 0 y[1] (numeric) = 0.92867269662883839007511112633505 absolute error = 0.92867269662883839007511112633505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.771 y[1] (analytic) = 0 y[1] (numeric) = 0.92920104764995829357580652555838 absolute error = 0.92920104764995829357580652555838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.772 y[1] (analytic) = 0 y[1] (numeric) = 0.92972938727617985302564848697382 absolute error = 0.92972938727617985302564848697382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.773 y[1] (analytic) = 0 y[1] (numeric) = 0.93025771553947998673378459613439 absolute error = 0.93025771553947998673378459613439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.774 y[1] (analytic) = 0 y[1] (numeric) = 0.93078603247182416511205965747238 absolute error = 0.93078603247182416511205965747238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.775 y[1] (analytic) = 0 y[1] (numeric) = 0.93131433810516642278500781191959 absolute error = 0.93131433810516642278500781191959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.776 y[1] (analytic) = 0 y[1] (numeric) = 0.93184263247144937068817226812972 absolute error = 0.93184263247144937068817226812972 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.777 y[1] (analytic) = 0 y[1] (numeric) = 0.93237091560260420815476790590547 absolute error = 0.93237091560260420815476790590547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.778 y[1] (analytic) = 0 y[1] (numeric) = 0.93289918753055073499070198739115 absolute error = 0.93289918753055073499070198739115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.779 y[1] (analytic) = 0 y[1] (numeric) = 0.9334274482871973635379681885908 absolute error = 0.9334274482871973635379681885908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.78 y[1] (analytic) = 0 y[1] (numeric) = 0.93395569790444113072642914081194 absolute error = 0.93395569790444113072642914081194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.781 y[1] (analytic) = 0 y[1] (numeric) = 0.93448393641416771011400264871557 absolute error = 0.93448393641416771011400264871557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.782 y[1] (analytic) = 0 y[1] (numeric) = 0.93501216384825142391526672877442 absolute error = 0.93501216384825142391526672877442 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=488.3MB, alloc=4.5MB, time=52.75 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.783 y[1] (analytic) = 0 y[1] (numeric) = 0.93554038023855525501849858910311 absolute error = 0.93554038023855525501849858910311 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.784 y[1] (analytic) = 0 y[1] (numeric) = 0.93606858561693085899116264882623 absolute error = 0.93606858561693085899116264882623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.785 y[1] (analytic) = 0 y[1] (numeric) = 0.93659678001521857607386267239274 absolute error = 0.93659678001521857607386267239274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.786 y[1] (analytic) = 0 y[1] (numeric) = 0.93712496346524744316277307152799 absolute error = 0.93712496346524744316277307152799 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.787 y[1] (analytic) = 0 y[1] (numeric) = 0.93765313599883520578056440483771 absolute error = 0.93765313599883520578056440483771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.788 y[1] (analytic) = 0 y[1] (numeric) = 0.93818129764778833003583808244129 absolute error = 0.93818129764778833003583808244129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.789 y[1] (analytic) = 0 y[1] (numeric) = 0.93870944844390201457108526041495 absolute error = 0.93870944844390201457108526041495 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.79 y[1] (analytic) = 0 y[1] (numeric) = 0.93923758841896020249918488726842 absolute error = 0.93923758841896020249918488726842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.791 y[1] (analytic) = 0 y[1] (numeric) = 0.93976571760473559332845584216166 absolute error = 0.93976571760473559332845584216166 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.792 y[1] (analytic) = 0 y[1] (numeric) = 0.94029383603298965487627808209089 absolute error = 0.94029383603298965487627808209089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.793 y[1] (analytic) = 0 y[1] (numeric) = 0.9408219437354726351712976928357 absolute error = 0.9408219437354726351712976928357 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.794 y[1] (analytic) = 0 y[1] (numeric) = 0.94135004074392357434423071606095 absolute error = 0.94135004074392357434423071606095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.795 y[1] (analytic) = 0 y[1] (numeric) = 0.94187812709007031650728060260874 absolute error = 0.94187812709007031650728060260874 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=492.1MB, alloc=4.5MB, time=53.15 x[1] = 1.796 y[1] (analytic) = 0 y[1] (numeric) = 0.94240620280562952162218411969699 absolute error = 0.94240620280562952162218411969699 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.797 y[1] (analytic) = 0 y[1] (numeric) = 0.94293426792230667735690051746129 absolute error = 0.94293426792230667735690051746129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.798 y[1] (analytic) = 0 y[1] (numeric) = 0.94346232247179611093095873803668 absolute error = 0.94346232247179611093095873803668 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.799 y[1] (analytic) = 0 y[1] (numeric) = 0.94399036648578100094947742817488 absolute error = 0.94399036648578100094947742817488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.8 y[1] (analytic) = 0 y[1] (numeric) = 0.9445183999959333892258724942305 absolute error = 0.9445183999959333892258724942305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.801 y[1] (analytic) = 0 y[1] (numeric) = 0.94504642303391419259326691622711 absolute error = 0.94504642303391419259326691622711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.802 y[1] (analytic) = 0 y[1] (numeric) = 0.94557443563137321470461751563009 absolute error = 0.94557443563137321470461751563009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.803 y[1] (analytic) = 0 y[1] (numeric) = 0.94610243781994915782157334940827 absolute error = 0.94610243781994915782157334940827 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.804 y[1] (analytic) = 0 y[1] (numeric) = 0.94663042963126963459208038096023 absolute error = 0.94663042963126963459208038096023 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.805 y[1] (analytic) = 0 y[1] (numeric) = 0.94715841109695117981674705651393 absolute error = 0.94715841109695117981674705651393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.806 y[1] (analytic) = 0 y[1] (numeric) = 0.9476863822485992622039853936794 absolute error = 0.9476863822485992622039853936794 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.807 y[1] (analytic) = 0 y[1] (numeric) = 0.94821434311780829611394216694438 absolute error = 0.94821434311780829611394216694438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.808 y[1] (analytic) = 0 y[1] (numeric) = 0.94874229373616165329123475305117 absolute error = 0.94874229373616165329123475305117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=495.9MB, alloc=4.5MB, time=53.55 x[1] = 1.809 y[1] (analytic) = 0 y[1] (numeric) = 0.94927023413523167458650617737967 absolute error = 0.94927023413523167458650617737967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.81 y[1] (analytic) = 0 y[1] (numeric) = 0.94979816434657968166681388068716 absolute error = 0.94979816434657968166681388068716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.811 y[1] (analytic) = 0 y[1] (numeric) = 0.95032608440175598871486670381852 absolute error = 0.95032608440175598871486670381852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.812 y[1] (analytic) = 0 y[1] (numeric) = 0.95085399433229991411712456630263 absolute error = 0.95085399433229991411712456630263 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.813 y[1] (analytic) = 0 y[1] (numeric) = 0.95138189416973979214077529309041 absolute error = 0.95138189416973979214077529309041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.814 y[1] (analytic) = 0 y[1] (numeric) = 0.95190978394559298459960302206795 absolute error = 0.95190978394559298459960302206795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.815 y[1] (analytic) = 0 y[1] (numeric) = 0.95243766369136589250876260339404 absolute error = 0.95243766369136589250876260339404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.816 y[1] (analytic) = 0 y[1] (numeric) = 0.95296553343855396772847438016526 absolute error = 0.95296553343855396772847438016526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.817 y[1] (analytic) = 0 y[1] (numeric) = 0.95349339321864172459665371840347 absolute error = 0.95349339321864172459665371840347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.818 y[1] (analytic) = 0 y[1] (numeric) = 0.95402124306310275155048963288983 absolute error = 0.95402124306310275155048963288983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.819 y[1] (analytic) = 0 y[1] (numeric) = 0.95454908300339972273698683393663 absolute error = 0.95454908300339972273698683393663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.82 y[1] (analytic) = 0 y[1] (numeric) = 0.9550769130709844096124854987929 absolute error = 0.9550769130709844096124854987929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.821 y[1] (analytic) = 0 y[1] (numeric) = 0.9556047332972976925311730500219 absolute error = 0.9556047332972976925311730500219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=499.7MB, alloc=4.5MB, time=53.95 x[1] = 1.822 y[1] (analytic) = 0 y[1] (numeric) = 0.95613254371376957232260220186827 absolute error = 0.95613254371376957232260220186827 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.823 y[1] (analytic) = 0 y[1] (numeric) = 0.95666034435181918185822951434963 absolute error = 0.95666034435181918185822951434963 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.824 y[1] (analytic) = 0 y[1] (numeric) = 0.95718813524285479760698867356184 absolute error = 0.95718813524285479760698867356184 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.825 y[1] (analytic) = 0 y[1] (numeric) = 0.95771591641827385117991269547846 absolute error = 0.95771591641827385117991269547846 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.826 y[1] (analytic) = 0 y[1] (numeric) = 0.95824368790946294086381922935391 absolute error = 0.95824368790946294086381922935391 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.827 y[1] (analytic) = 0 y[1] (numeric) = 0.95877144974779784314407311570547 absolute error = 0.95877144974779784314407311570547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.828 y[1] (analytic) = 0 y[1] (numeric) = 0.95929920196464352421644033275195 absolute error = 0.95929920196464352421644033275195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.829 y[1] (analytic) = 0 y[1] (numeric) = 0.95982694459135415148804744412685 absolute error = 0.95982694459135415148804744412685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.83 y[1] (analytic) = 0 y[1] (numeric) = 0.96035467765927310506746063966006 absolute error = 0.96035467765927310506746063966006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.831 y[1] (analytic) = 0 y[1] (numeric) = 0.9608824011997329892438984400358 absolute error = 0.9608824011997329892438984400358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.832 y[1] (analytic) = 0 y[1] (numeric) = 0.96141011524405564395559211518429 absolute error = 0.96141011524405564395559211518429 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.833 y[1] (analytic) = 0 y[1] (numeric) = 0.96193781982355215624730784535153 absolute error = 0.96193781982355215624730784535153 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.834 y[1] (analytic) = 0 y[1] (numeric) = 0.96246551496952287171704463291472 absolute error = 0.96246551496952287171704463291472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.835 y[1] (analytic) = 0 y[1] (numeric) = 0.96299320071325740595192195217062 absolute error = 0.96299320071325740595192195217062 relative error = -1 % Correct digits = -1 h = 0.001 memory used=503.5MB, alloc=4.5MB, time=54.34 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.836 y[1] (analytic) = 0 y[1] (numeric) = 0.96352087708603465595327110352024 absolute error = 0.96352087708603465595327110352024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.837 y[1] (analytic) = 0 y[1] (numeric) = 0.96404854411912281155094421770586 absolute error = 0.96404854411912281155094421770586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.838 y[1] (analytic) = 0 y[1] (numeric) = 0.96457620184377936680685483502507 absolute error = 0.96457620184377936680685483502507 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.839 y[1] (analytic) = 0 y[1] (numeric) = 0.96510385029125113140776396375144 absolute error = 0.96510385029125113140776396375144 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.84 y[1] (analytic) = 0 y[1] (numeric) = 0.96563148949277424204732550133266 absolute error = 0.96563148949277424204732550133266 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.841 y[1] (analytic) = 0 y[1] (numeric) = 0.966159119479574173797404881314 absolute error = 0.966159119479574173797404881314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.842 y[1] (analytic) = 0 y[1] (numeric) = 0.96668674028286575146868478834811 absolute error = 0.96668674028286575146868478834811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.843 y[1] (analytic) = 0 y[1] (numeric) = 0.96721435193385316096057176310121 absolute error = 0.96721435193385316096057176310121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.844 y[1] (analytic) = 0 y[1] (numeric) = 0.96774195446372996060041749835067 absolute error = 0.96774195446372996060041749835067 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.845 y[1] (analytic) = 0 y[1] (numeric) = 0.96826954790367909247206860708945 absolute error = 0.96826954790367909247206860708945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.846 y[1] (analytic) = 0 y[1] (numeric) = 0.96879713228487289373375862300937 absolute error = 0.96879713228487289373375862300937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.847 y[1] (analytic) = 0 y[1] (numeric) = 0.96932470763847310792535597332706 absolute error = 0.96932470763847310792535597332706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.848 y[1] (analytic) = 0 y[1] (numeric) = 0.96985227399563089626498164354398 absolute error = 0.96985227399563089626498164354398 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=507.3MB, alloc=4.6MB, time=54.73 x[1] = 1.849 y[1] (analytic) = 0 y[1] (numeric) = 0.97037983138748684893501023339485 absolute error = 0.97037983138748684893501023339485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.85 y[1] (analytic) = 0 y[1] (numeric) = 0.97090737984517099635746808293733 absolute error = 0.97090737984517099635746808293733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.851 y[1] (analytic) = 0 y[1] (numeric) = 0.97143491939980282045884212746946 absolute error = 0.97143491939980282045884212746946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.852 y[1] (analytic) = 0 y[1] (numeric) = 0.97196245008249126592431311973041 absolute error = 0.97196245008249126592431311973041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.853 y[1] (analytic) = 0 y[1] (numeric) = 0.9724899719243347514414268376444 absolute error = 0.9724899719243347514414268376444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.854 y[1] (analytic) = 0 y[1] (numeric) = 0.97301748495642118093321687570679 absolute error = 0.97301748495642118093321687570679 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.855 y[1] (analytic) = 0 y[1] (numeric) = 0.9735449892098279547807925979861 absolute error = 0.9735449892098279547807925979861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.856 y[1] (analytic) = 0 y[1] (numeric) = 0.97407248471562198103540581062475 absolute error = 0.97407248471562198103540581062475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.857 y[1] (analytic) = 0 y[1] (numeric) = 0.97459997150485968662000969166597 absolute error = 0.97459997150485968662000969166597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.858 y[1] (analytic) = 0 y[1] (numeric) = 0.97512744960858702852032349601331 absolute error = 0.97512744960858702852032349601331 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.859 y[1] (analytic) = 0 y[1] (numeric) = 0.97565491905783950496541653334319 absolute error = 0.97565491905783950496541653334319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.86 y[1] (analytic) = 0 y[1] (numeric) = 0.97618237988364216659782489683975 absolute error = 0.97618237988364216659782489683975 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.861 y[1] (analytic) = 0 y[1] (numeric) = 0.97670983211700962763321440070438 absolute error = 0.97670983211700962763321440070438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=511.1MB, alloc=4.6MB, time=55.14 x[1] = 1.862 y[1] (analytic) = 0 y[1] (numeric) = 0.97723727578894607700960316451042 absolute error = 0.97723727578894607700960316451042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.863 y[1] (analytic) = 0 y[1] (numeric) = 0.97776471093044528952615726262577 absolute error = 0.97776471093044528952615726262577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.864 y[1] (analytic) = 0 y[1] (numeric) = 0.97829213757249063697157283711315 absolute error = 0.97829213757249063697157283711315 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.865 y[1] (analytic) = 0 y[1] (numeric) = 0.97881955574605509924205805273892 absolute error = 0.97881955574605509924205805273892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.866 y[1] (analytic) = 0 y[1] (numeric) = 0.97934696548210127544892825297689 absolute error = 0.97934696548210127544892825297689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.867 y[1] (analytic) = 0 y[1] (numeric) = 0.97987436681158139501582765618338 absolute error = 0.97987436681158139501582765618338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.868 y[1] (analytic) = 0 y[1] (numeric) = 0.98040175976543732876559091144362 absolute error = 0.98040175976543732876559091144362 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.869 y[1] (analytic) = 0 y[1] (numeric) = 0.98092914437460059999675781394786 absolute error = 0.98092914437460059999675781394786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.87 y[1] (analytic) = 0 y[1] (numeric) = 0.9814565206699923955497544601473 absolute error = 0.9814565206699923955497544601473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.871 y[1] (analytic) = 0 y[1] (numeric) = 0.98198388868252357686275410336631 absolute error = 0.98198388868252357686275410336631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.872 y[1] (analytic) = 0 y[1] (numeric) = 0.98251124844309469101723095100713 absolute error = 0.98251124844309469101723095100713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.873 y[1] (analytic) = 0 y[1] (numeric) = 0.98303859998259598177322012497719 absolute error = 0.98303859998259598177322012497719 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.874 y[1] (analytic) = 0 y[1] (numeric) = 0.98356594333190740059429698749653 absolute error = 0.98356594333190740059429698749653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=515.0MB, alloc=4.6MB, time=55.55 x[1] = 1.875 y[1] (analytic) = 0 y[1] (numeric) = 0.98409327852189861766228901500424 absolute error = 0.98409327852189861766228901500424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.876 y[1] (analytic) = 0 y[1] (numeric) = 0.98462060558342903288173338347757 absolute error = 0.98462060558342903288173338347757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.877 y[1] (analytic) = 0 y[1] (numeric) = 0.98514792454734778687409340910584 absolute error = 0.98514792454734778687409340910584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.878 y[1] (analytic) = 0 y[1] (numeric) = 0.98567523544449377196174696892327 absolute error = 0.98567523544449377196174696892327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.879 y[1] (analytic) = 0 y[1] (numeric) = 0.98620253830569564314176000670003 absolute error = 0.98620253830569564314176000670003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.88 y[1] (analytic) = 0 y[1] (numeric) = 0.98672983316177182904945821011984 absolute error = 0.98672983316177182904945821011984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.881 y[1] (analytic) = 0 y[1] (numeric) = 0.9872571200435305429118099260342 absolute error = 0.9872571200435305429118099260342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.882 y[1] (analytic) = 0 y[1] (numeric) = 0.98778439898176979349063336137871 absolute error = 0.98778439898176979349063336137871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.883 y[1] (analytic) = 0 y[1] (numeric) = 0.98831167000727739601564109816547 absolute error = 0.98831167000727739601564109816547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.884 y[1] (analytic) = 0 y[1] (numeric) = 0.98883893315083098310733493182692 absolute error = 0.98883893315083098310733493182692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.885 y[1] (analytic) = 0 y[1] (numeric) = 0.98936618844319801568976402308121 absolute error = 0.98936618844319801568976402308121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.886 y[1] (analytic) = 0 y[1] (numeric) = 0.98989343591513579389315933441659 absolute error = 0.98989343591513579389315933441659 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.887 y[1] (analytic) = 0 y[1] (numeric) = 0.99042067559739146794645730325301 absolute error = 0.99042067559739146794645730325301 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=518.8MB, alloc=4.6MB, time=55.96 x[1] = 1.888 y[1] (analytic) = 0 y[1] (numeric) = 0.99094790752070204905972568483212 absolute error = 0.99094790752070204905972568483212 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.889 y[1] (analytic) = 0 y[1] (numeric) = 0.99147513171579442029650447891324 absolute error = 0.99147513171579442029650447891324 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.89 y[1] (analytic) = 0 y[1] (numeric) = 0.99200234821338534743607483541147 absolute error = 0.99200234821338534743607483541147 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.891 y[1] (analytic) = 0 y[1] (numeric) = 0.99252955704418148982566881520571 absolute error = 0.99252955704418148982566881520571 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.892 y[1] (analytic) = 0 y[1] (numeric) = 0.99305675823887941122263286346818 absolute error = 0.99305675823887941122263286346818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.893 y[1] (analytic) = 0 y[1] (numeric) = 0.99358395182816559062655783402392 absolute error = 0.99358395182816559062655783402392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.894 y[1] (analytic) = 0 y[1] (numeric) = 0.99411113784271643310138838443747 absolute error = 0.99411113784271643310138838443747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.895 y[1] (analytic) = 0 y[1] (numeric) = 0.99463831631319828058752454274545 absolute error = 0.99463831631319828058752454274545 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.896 y[1] (analytic) = 0 y[1] (numeric) = 0.99516548727026742270392822800758 absolute error = 0.99516548727026742270392822800758 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.897 y[1] (analytic) = 0 y[1] (numeric) = 0.99569265074457010754024748813454 absolute error = 0.99569265074457010754024748813454 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.898 y[1] (analytic) = 0 y[1] (numeric) = 0.99621980676674255243897119976945 absolute error = 0.99621980676674255243897119976945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.899 y[1] (analytic) = 0 y[1] (numeric) = 0.99674695536741095476762695634992 absolute error = 0.99674695536741095476762695634992 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.9 y[1] (analytic) = 0 y[1] (numeric) = 0.99727409657719150268103485186024 absolute error = 0.99727409657719150268103485186024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.901 y[1] (analytic) = 0 y[1] (numeric) = 0.99780123042669038587362984919758 absolute error = 0.99780123042669038587362984919758 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=522.6MB, alloc=4.6MB, time=56.36 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.902 y[1] (analytic) = 0 y[1] (numeric) = 0.9983283569465038063218654035225 absolute error = 0.9983283569465038063218654035225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.903 y[1] (analytic) = 0 y[1] (numeric) = 0.99885547616721798901671099244243 absolute error = 0.99885547616721798901671099244243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.904 y[1] (analytic) = 0 y[1] (numeric) = 0.99938258811940919268625618638684 absolute error = 0.99938258811940919268625618638684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.905 y[1] (analytic) = 0 y[1] (numeric) = 0.99990969283364372050843387407458 absolute error = 0.99990969283364372050843387407458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.906 y[1] (analytic) = 0 y[1] (numeric) = 1.0004367903404779308138752395477 absolute error = 1.0004367903404779308138752395477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.907 y[1] (analytic) = 0 y[1] (numeric) = 1.000963880670458247778909068851 absolute error = 1.000963880670458247778909068851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.908 y[1] (analytic) = 0 y[1] (numeric) = 1.0014909638541211721087179460737 absolute error = 1.0014909638541211721087179460737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.909 y[1] (analytic) = 0 y[1] (numeric) = 1.0020180399219932917106638801373 absolute error = 1.0020180399219932917106638801373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.91 y[1] (analytic) = 0 y[1] (numeric) = 1.0025451089045912923577958854143 absolute error = 1.0025451089045912923577958854143 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.911 y[1] (analytic) = 0 y[1] (numeric) = 1.0030721708324219683425520209929 absolute error = 1.0030721708324219683425520209929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.912 y[1] (analytic) = 0 y[1] (numeric) = 1.0035992257359822331206683751658 absolute error = 1.0035992257359822331206683751658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.913 y[1] (analytic) = 0 y[1] (numeric) = 1.0041262736457591299453074635142 absolute error = 1.0041262736457591299453074635142 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.914 y[1] (analytic) = 0 y[1] (numeric) = 1.0046533145922298424914184907846 absolute error = 1.0046533145922298424914184907846 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=526.4MB, alloc=4.6MB, time=56.77 x[1] = 1.915 y[1] (analytic) = 0 y[1] (numeric) = 1.0051803486058617054703419086096 absolute error = 1.0051803486058617054703419086096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.916 y[1] (analytic) = 0 y[1] (numeric) = 1.0057073757171122152346706830142 absolute error = 1.0057073757171122152346706830142 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.917 y[1] (analytic) = 0 y[1] (numeric) = 1.0062343959564290403733806675645 absolute error = 1.0062343959564290403733806675645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.918 y[1] (analytic) = 0 y[1] (numeric) = 1.0067614093542500322972424599663 absolute error = 1.0067614093542500322972424599663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.919 y[1] (analytic) = 0 y[1] (numeric) = 1.007288415941003235814527101902 absolute error = 1.007288415941003235814527101902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.92 y[1] (analytic) = 0 y[1] (numeric) = 1.0078154157471068996970179639021 absolute error = 1.0078154157471068996970179639021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.921 y[1] (analytic) = 0 y[1] (numeric) = 1.0083424088029694872363411390936 absolute error = 1.0083424088029694872363411390936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.922 y[1] (analytic) = 0 y[1] (numeric) = 1.0088693951389896867906266517358 absolute error = 1.0088693951389896867906266517358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.923 y[1] (analytic) = 0 y[1] (numeric) = 1.0093963747855564223215127685602 absolute error = 1.0093963747855564223215127685602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.924 y[1] (analytic) = 0 y[1] (numeric) = 1.0099233477730488639215056830631 absolute error = 1.0099233477730488639215056830631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.925 y[1] (analytic) = 0 y[1] (numeric) = 1.0104503141318364383317068250653 absolute error = 1.0104503141318364383317068250653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.926 y[1] (analytic) = 0 y[1] (numeric) = 1.0109772738922788394499200300458 absolute error = 1.0109772738922788394499200300458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.927 y[1] (analytic) = 0 y[1] (numeric) = 1.0115042270847260388291507849836 absolute error = 1.0115042270847260388291507849836 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=530.2MB, alloc=4.6MB, time=57.17 x[1] = 1.928 y[1] (analytic) = 0 y[1] (numeric) = 1.0120311737395182961665097496971 absolute error = 1.0120311737395182961665097496971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.929 y[1] (analytic) = 0 y[1] (numeric) = 1.0125581138869861697825327349541 absolute error = 1.0125581138869861697825327349541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.93 y[1] (analytic) = 0 y[1] (numeric) = 1.0130850475574505270909293009451 absolute error = 1.0130850475574505270909293009451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.931 y[1] (analytic) = 0 y[1] (numeric) = 1.0136119747812225550587721220557 absolute error = 1.0136119747812225550587721220557 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.932 y[1] (analytic) = 0 y[1] (numeric) = 1.0141388955886037706571392462516 absolute error = 1.0141388955886037706571392462516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.933 y[1] (analytic) = 0 y[1] (numeric) = 1.0146658100098860313022213597967 absolute error = 1.0146658100098860313022213597967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.934 y[1] (analytic) = 0 y[1] (numeric) = 1.0151927180753515452869061504603 absolute error = 1.0151927180753515452869061504603 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.935 y[1] (analytic) = 0 y[1] (numeric) = 1.0157196198152728822028518448358 absolute error = 1.0157196198152728822028518448358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.936 y[1] (analytic) = 0 y[1] (numeric) = 1.0162465152599129833530619778905 absolute error = 1.0162465152599129833530619778905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.937 y[1] (analytic) = 0 y[1] (numeric) = 1.0167734044395251721549734353919 absolute error = 1.0167734044395251721549734353919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.938 y[1] (analytic) = 0 y[1] (numeric) = 1.017300287384353164534069792411 absolute error = 1.017300287384353164534069792411 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.939 y[1] (analytic) = 0 y[1] (numeric) = 1.0178271641246310793080319536896 absolute error = 1.0178271641246310793080319536896 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.94 y[1] (analytic) = 0 y[1] (numeric) = 1.0183540346905834485614380842744 absolute error = 1.0183540346905834485614380842744 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=534.0MB, alloc=4.6MB, time=57.57 x[1] = 1.941 y[1] (analytic) = 0 y[1] (numeric) = 1.0188808991124252280110248014643 absolute error = 1.0188808991124252280110248014643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.942 y[1] (analytic) = 0 y[1] (numeric) = 1.0194077574203618073615215817924 absolute error = 1.0194077574203618073615215817924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.943 y[1] (analytic) = 0 y[1] (numeric) = 1.0199346096445890206520703194688 absolute error = 1.0199346096445890206520703194688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.944 y[1] (analytic) = 0 y[1] (numeric) = 1.0204614558152931565932419554425 absolute error = 1.0204614558152931565932419554425 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.945 y[1] (analytic) = 0 y[1] (numeric) = 1.0209882959626509688946620790041 absolute error = 1.0209882959626509688946620790041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.946 y[1] (analytic) = 0 y[1] (numeric) = 1.0215151301168296865832573866437 absolute error = 1.0215151301168296865832573866437 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.947 y[1] (analytic) = 0 y[1] (numeric) = 1.022041958307987024312134865698 absolute error = 1.022041958307987024312134865698 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.948 y[1] (analytic) = 0 y[1] (numeric) = 1.0225687805662711926601055531734 absolute error = 1.0225687805662711926601055531734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.949 y[1] (analytic) = 0 y[1] (numeric) = 1.0230955969218209084218647030099 absolute error = 1.0230955969218209084218647030099 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.95 y[1] (analytic) = 0 y[1] (numeric) = 1.0236224074047654048888401779593 absolute error = 1.0236224074047654048888401779593 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.951 y[1] (analytic) = 0 y[1] (numeric) = 1.0241492120452244421207208651915 absolute error = 1.0241492120452244421207208651915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.952 y[1] (analytic) = 0 y[1] (numeric) = 1.0246760108733083172076768977055 absolute error = 1.0246760108733083172076768977055 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.953 y[1] (analytic) = 0 y[1] (numeric) = 1.0252028039191178745232834466213 absolute error = 1.0252028039191178745232834466213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=537.8MB, alloc=4.6MB, time=57.98 x[1] = 1.954 y[1] (analytic) = 0 y[1] (numeric) = 1.0257295912127445159681598324513 absolute error = 1.0257295912127445159681598324513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.955 y[1] (analytic) = 0 y[1] (numeric) = 1.0262563727842702112043356865032 absolute error = 1.0262563727842702112043356865032 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.956 y[1] (analytic) = 0 y[1] (numeric) = 1.0267831486637675078803558766501 absolute error = 1.0267831486637675078803558766501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.957 y[1] (analytic) = 0 y[1] (numeric) = 1.0273099188812995418471358948128 absolute error = 1.0273099188812995418471358948128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.958 y[1] (analytic) = 0 y[1] (numeric) = 1.027836683466920047364579386639 absolute error = 1.027836683466920047364579386639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.959 y[1] (analytic) = 0 y[1] (numeric) = 1.028363442450673367298969487034 absolute error = 1.028363442450673367298969487034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.96 y[1] (analytic) = 0 y[1] (numeric) = 1.0288901958625944633111456083909 absolute error = 1.0288901958625944633111456083909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.961 y[1] (analytic) = 0 y[1] (numeric) = 1.0294169437327089260354773115968 absolute error = 1.0294169437327089260354773115968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.962 y[1] (analytic) = 0 y[1] (numeric) = 1.0299436860910329852496468731424 absolute error = 1.0299436860910329852496468731424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.963 y[1] (analytic) = 0 y[1] (numeric) = 1.0304704229675735200352521449462 absolute error = 1.0304704229675735200352521449462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.964 y[1] (analytic) = 0 y[1] (numeric) = 1.0309971543923280689292412868135 absolute error = 1.0309971543923280689292412868135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.965 y[1] (analytic) = 0 y[1] (numeric) = 1.0315238803952848400661909347889 absolute error = 1.0315238803952848400661909347889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.966 y[1] (analytic) = 0 y[1] (numeric) = 1.0320506010064227213114393520289 absolute error = 1.0320506010064227213114393520289 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.967 y[1] (analytic) = 0 y[1] (numeric) = 1.0325773162557112903850860922148 absolute error = 1.0325773162557112903850860922148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=541.7MB, alloc=4.6MB, time=58.36 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.968 y[1] (analytic) = 0 y[1] (numeric) = 1.033104026173110824976869688949 absolute error = 1.033104026173110824976869688949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.969 y[1] (analytic) = 0 y[1] (numeric) = 1.0336307307885723128519348680299 absolute error = 1.0336307307885723128519348680299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.97 y[1] (analytic) = 0 y[1] (numeric) = 1.0341574301320374619475007629781 absolute error = 1.0341574301320374619475007629781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.971 y[1] (analytic) = 0 y[1] (numeric) = 1.0346841242334387104604415976951 absolute error = 1.0346841242334387104604415976951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.972 y[1] (analytic) = 0 y[1] (numeric) = 1.0352108131226992369257912836689 absolute error = 1.0352108131226992369257912836689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.973 y[1] (analytic) = 0 y[1] (numeric) = 1.0357374968297329702861833627039 absolute error = 1.0357374968297329702861833627039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.974 y[1] (analytic) = 0 y[1] (numeric) = 1.0362641753844445999522377097444 absolute error = 1.0362641753844445999522377097444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.975 y[1] (analytic) = 0 y[1] (numeric) = 1.0367908488167295858539053939765 absolute error = 1.0367908488167295858539053939765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.976 y[1] (analytic) = 0 y[1] (numeric) = 1.0373175171564741684827830800406 absolute error = 1.0373175171564741684827830800406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.977 y[1] (analytic) = 0 y[1] (numeric) = 1.0378441804335553789254083348604 absolute error = 1.0378441804335553789254083348604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.978 y[1] (analytic) = 0 y[1] (numeric) = 1.0383708386778410488875471892938 absolute error = 1.0383708386778410488875471892938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.979 y[1] (analytic) = 0 y[1] (numeric) = 1.0388974919191898207094852875401 absolute error = 1.0388974919191898207094852875401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.98 y[1] (analytic) = 0 y[1] (numeric) = 1.0394241401874511573723339409946 absolute error = 1.0394241401874511573723339409946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=545.5MB, alloc=4.6MB, time=58.77 x[1] = 1.981 y[1] (analytic) = 0 y[1] (numeric) = 1.0399507835124653524953623870242 absolute error = 1.0399507835124653524953623870242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.982 y[1] (analytic) = 0 y[1] (numeric) = 1.0404774219240635403243675369474 absolute error = 1.0404774219240635403243675369474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.983 y[1] (analytic) = 0 y[1] (numeric) = 1.041004055452067705711092481342 absolute error = 1.041004055452067705711092481342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.984 y[1] (analytic) = 0 y[1] (numeric) = 1.0415306841262906940837050046673 absolute error = 1.0415306841262906940837050046673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.985 y[1] (analytic) = 0 y[1] (numeric) = 1.0420573079765362214083473450809 absolute error = 1.0420573079765362214083473450809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.986 y[1] (analytic) = 0 y[1] (numeric) = 1.0425839270325988841417684192484 absolute error = 1.0425839270325988841417684192484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.987 y[1] (analytic) = 0 y[1] (numeric) = 1.043110541324264169175049715893 absolute error = 1.043110541324264169175049715893 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.988 y[1] (analytic) = 0 y[1] (numeric) = 1.0436371508813084637684360458034 absolute error = 1.0436371508813084637684360458034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.989 y[1] (analytic) = 0 y[1] (numeric) = 1.0441637557334990654772823200201 absolute error = 1.0441637557334990654772823200201 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.99 y[1] (analytic) = 0 y[1] (numeric) = 1.044690355910594192069127511948 absolute error = 1.044690355910594192069127511948 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.991 y[1] (analytic) = 0 y[1] (numeric) = 1.0452169514423429914319069431964 absolute error = 1.0452169514423429914319069431964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.992 y[1] (analytic) = 0 y[1] (numeric) = 1.0457435423584855514733140170299 absolute error = 1.0457435423584855514733140170299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.993 y[1] (analytic) = 0 y[1] (numeric) = 1.0462701286887529100113225074212 absolute error = 1.0462701286887529100113225074212 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=549.3MB, alloc=4.6MB, time=59.16 x[1] = 1.994 y[1] (analytic) = 0 y[1] (numeric) = 1.0467967104628670646558804958308 absolute error = 1.0467967104628670646558804958308 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.995 y[1] (analytic) = 0 y[1] (numeric) = 1.0473232877105409826817870320019 absolute error = 1.0473232877105409826817870320019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.996 y[1] (analytic) = 0 y[1] (numeric) = 1.0478498604614786108927625792442 absolute error = 1.0478498604614786108927625792442 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.997 y[1] (analytic) = 0 y[1] (numeric) = 1.0483764287453748854767242888977 absolute error = 1.0483764287453748854767242888977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.998 y[1] (analytic) = 0 y[1] (numeric) = 1.0489029925919157418522771329054 absolute error = 1.0489029925919157418522771329054 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 1.999 y[1] (analytic) = 0 y[1] (numeric) = 1.0494295520307781245064319076952 absolute error = 1.0494295520307781245064319076952 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2 y[1] (analytic) = 0 y[1] (numeric) = 1.0499561070916299968235611068614 absolute error = 1.0499561070916299968235611068614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.001 y[1] (analytic) = 0 y[1] (numeric) = 1.0504826578041303509056036444597 absolute error = 1.0504826578041303509056036444597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.002 y[1] (analytic) = 0 y[1] (numeric) = 1.0510092041979292173835293950741 absolute error = 1.0510092041979292173835293950741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.003 y[1] (analytic) = 0 y[1] (numeric) = 1.0515357463026676752200745011885 absolute error = 1.0515357463026676752200745011885 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.004 y[1] (analytic) = 0 y[1] (numeric) = 1.0520622841479778615037583827932 absolute error = 1.0520622841479778615037583827932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.005 y[1] (analytic) = 0 y[1] (numeric) = 1.0525888177634829812341933685845 absolute error = 1.0525888177634829812341933685845 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.006 y[1] (analytic) = 0 y[1] (numeric) = 1.0531153471787973170986978525633 absolute error = 1.0531153471787973170986978525633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=553.1MB, alloc=4.6MB, time=59.56 x[1] = 2.007 y[1] (analytic) = 0 y[1] (numeric) = 1.0536418724235262392402238643204 absolute error = 1.0536418724235262392402238643204 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.008 y[1] (analytic) = 0 y[1] (numeric) = 1.0541683935272662150166099257954 absolute error = 1.0541683935272662150166099257954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.009 y[1] (analytic) = 0 y[1] (numeric) = 1.0546949105196048187511700518288 absolute error = 1.0546949105196048187511700518288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.01 y[1] (analytic) = 0 y[1] (numeric) = 1.0552214234301207414746297363809 absolute error = 1.0552214234301207414746297363809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.011 y[1] (analytic) = 0 y[1] (numeric) = 1.055747932288383800658419750872 absolute error = 1.055747932288383800658419750872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.012 y[1] (analytic) = 0 y[1] (numeric) = 1.0562744371239549499393385657065 absolute error = 1.0562744371239549499393385657065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.013 y[1] (analytic) = 0 y[1] (numeric) = 1.0568009379663862888355941906754 absolute error = 1.0568009379663862888355941906754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.014 y[1] (analytic) = 0 y[1] (numeric) = 1.0573274348452210724542362145909 absolute error = 1.0573274348452210724542362145909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.015 y[1] (analytic) = 0 y[1] (numeric) = 1.0578539277899937211899888091903 absolute error = 1.0578539277899937211899888091903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.016 y[1] (analytic) = 0 y[1] (numeric) = 1.0583804168302298304154954470576 absolute error = 1.0583804168302298304154954470576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.017 y[1] (analytic) = 0 y[1] (numeric) = 1.0589069019954461801629860680438 absolute error = 1.0589069019954461801629860680438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.018 y[1] (analytic) = 0 y[1] (numeric) = 1.0594333833151507447973774134322 absolute error = 1.0594333833151507447973774134322 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.019 y[1] (analytic) = 0 y[1] (numeric) = 1.0599598608188427026808172318765 absolute error = 1.0599598608188427026808172318765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.02 y[1] (analytic) = 0 y[1] (numeric) = 1.0604863345360124458286830459553 absolute error = 1.0604863345360124458286830459553 relative error = -1 % Correct digits = -1 h = 0.001 memory used=556.9MB, alloc=4.6MB, time=59.94 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.021 y[1] (analytic) = 0 y[1] (numeric) = 1.0610128044961415895570461530211 absolute error = 1.0610128044961415895570461530211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.022 y[1] (analytic) = 0 y[1] (numeric) = 1.0615392707287029821216115188867 absolute error = 1.0615392707287029821216115188867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.023 y[1] (analytic) = 0 y[1] (numeric) = 1.0620657332631607143481442077772 absolute error = 1.0620657332631607143481442077772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.024 y[1] (analytic) = 0 y[1] (numeric) = 1.0625921921289701292543929768915 absolute error = 1.0625921921289701292543929768915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.025 y[1] (analytic) = 0 y[1] (numeric) = 1.0631186473555778316635216488529 absolute error = 1.0631186473555778316635216488529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.026 y[1] (analytic) = 0 y[1] (numeric) = 1.0636450989724216978090588602935 absolute error = 1.0636450989724216978090588602935 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.027 y[1] (analytic) = 0 y[1] (numeric) = 1.0641715470089308849313767698056 absolute error = 1.0641715470089308849313767698056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.028 y[1] (analytic) = 0 y[1] (numeric) = 1.064697991494525840865709293505 absolute error = 1.064697991494525840865709293505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.029 y[1] (analytic) = 0 y[1] (numeric) = 1.0652244324586183136217204214916 absolute error = 1.0652244324586183136217204214916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.03 y[1] (analytic) = 0 y[1] (numeric) = 1.065750869930611360954633153555 absolute error = 1.065750869930611360954633153555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.031 y[1] (analytic) = 0 y[1] (numeric) = 1.0662773039398993599279295775621 absolute error = 1.0662773039398993599279295775621 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.032 y[1] (analytic) = 0 y[1] (numeric) = 1.0668037345158680164676325990746 absolute error = 1.0668037345158680164676325990746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.033 y[1] (analytic) = 0 y[1] (numeric) = 1.0673301616878943749081798158861 absolute error = 1.0673301616878943749081798158861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=560.7MB, alloc=4.6MB, time=60.34 x[1] = 2.034 y[1] (analytic) = 0 y[1] (numeric) = 1.067856585485346827529900016327 absolute error = 1.067856585485346827529900016327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.035 y[1] (analytic) = 0 y[1] (numeric) = 1.0683830059375851240881027653763 absolute error = 1.0683830059375851240881027653763 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.036 y[1] (analytic) = 0 y[1] (numeric) = 1.0689094230739603813337915278293 absolute error = 1.0689094230739603813337915278293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.037 y[1] (analytic) = 0 y[1] (numeric) = 1.0694358369238150925260107630083 absolute error = 1.0694358369238150925260107630083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.038 y[1] (analytic) = 0 y[1] (numeric) = 1.0699622475164831369358374107632 absolute error = 1.0699622475164831369358374107632 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.039 y[1] (analytic) = 0 y[1] (numeric) = 1.0704886548812897893420271737968 absolute error = 1.0704886548812897893420271737968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.04 y[1] (analytic) = 0 y[1] (numeric) = 1.0710150590475517295183259866578 absolute error = 1.0710150590475517295183259866578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.041 y[1] (analytic) = 0 y[1] (numeric) = 1.0715414600445770517124570470807 absolute error = 1.0715414600445770517124570470807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.042 y[1] (analytic) = 0 y[1] (numeric) = 1.0720678579016652741167937707097 absolute error = 1.0720678579016652741167937707097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.043 y[1] (analytic) = 0 y[1] (numeric) = 1.0725942526481073483307290156288 absolute error = 1.0725942526481073483307290156288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.044 y[1] (analytic) = 0 y[1] (numeric) = 1.0731206443131856688147509085258 absolute error = 1.0731206443131856688147509085258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.045 y[1] (analytic) = 0 y[1] (numeric) = 1.0736470329261740823362355897521 absolute error = 1.0736470329261740823362355897521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.046 y[1] (analytic) = 0 y[1] (numeric) = 1.0741734185163378974069671799947 absolute error = 1.0741734185163378974069671799947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=564.5MB, alloc=4.6MB, time=60.74 x[1] = 2.047 y[1] (analytic) = 0 y[1] (numeric) = 1.0746998011129338937123952567583 absolute error = 1.0746998011129338937123952567583 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.048 y[1] (analytic) = 0 y[1] (numeric) = 1.0752261807452103315326401143588 absolute error = 1.0752261807452103315326401143588 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.049 y[1] (analytic) = 0 y[1] (numeric) = 1.0757525574424069611552560666592 absolute error = 1.0757525574424069611552560666592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.05 y[1] (analytic) = 0 y[1] (numeric) = 1.0762789312337550322797630373299 absolute error = 1.0762789312337550322797630373299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.051 y[1] (analytic) = 0 y[1] (numeric) = 1.0768053021484773034139566679934 absolute error = 1.0768053021484773034139566679934 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.052 y[1] (analytic) = 0 y[1] (numeric) = 1.077331670215788051262007160213 absolute error = 1.077331670215788051262007160213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.053 y[1] (analytic) = 0 y[1] (numeric) = 1.077858035464893080104357052909 absolute error = 1.077858035464893080104357052909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.054 y[1] (analytic) = 0 y[1] (numeric) = 1.0783843979249897311694281224356 absolute error = 1.0783843979249897311694281224356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.055 y[1] (analytic) = 0 y[1] (numeric) = 1.0789107576252668919971475782211 absolute error = 1.0789107576252668919971475782211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.056 y[1] (analytic) = 0 y[1] (numeric) = 1.0794371145949050057943037125726 absolute error = 1.0794371145949050057943037125726 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.057 y[1] (analytic) = 0 y[1] (numeric) = 1.0799634688630760807817411489633 absolute error = 1.0799634688630760807817411489633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.058 y[1] (analytic) = 0 y[1] (numeric) = 1.0804898204589436995334058188646 absolute error = 1.0804898204589436995334058188646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.059 y[1] (analytic) = 0 y[1] (numeric) = 1.0810161694116630283072497829521 absolute error = 1.0810161694116630283072497829521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=568.4MB, alloc=4.6MB, time=61.12 x[1] = 2.06 y[1] (analytic) = 0 y[1] (numeric) = 1.0815425157503808263680059983041 absolute error = 1.0815425157503808263680059983041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.061 y[1] (analytic) = 0 y[1] (numeric) = 1.0820688595042354553018431190252 absolute error = 1.0820688595042354553018431190252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.062 y[1] (analytic) = 0 y[1] (numeric) = 1.0825952007023568883229104035649 absolute error = 1.0825952007023568883229104035649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.063 y[1] (analytic) = 0 y[1] (numeric) = 1.0831215393738667195717827878615 absolute error = 1.0831215393738667195717827878615 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.064 y[1] (analytic) = 0 y[1] (numeric) = 1.0836478755478781734058161693259 absolute error = 1.0836478755478781734058161693259 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.065 y[1] (analytic) = 0 y[1] (numeric) = 1.0841742092534961136814229325867 absolute error = 1.0841742092534961136814229325867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.066 y[1] (analytic) = 0 y[1] (numeric) = 1.0847005405198170530282777338496 absolute error = 1.0847005405198170530282777338496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.067 y[1] (analytic) = 0 y[1] (numeric) = 1.0852268693759291621154635466769 absolute error = 1.0852268693759291621154635466769 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.068 y[1] (analytic) = 0 y[1] (numeric) = 1.085753195850912278909567957971 absolute error = 1.085753195850912278909567957971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.069 y[1] (analytic) = 0 y[1] (numeric) = 1.0862795199738379179247396889451 absolute error = 1.0862795199738379179247396889451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.07 y[1] (analytic) = 0 y[1] (numeric) = 1.086805841773769279464715301889 absolute error = 1.086805841773769279464715301889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.071 y[1] (analytic) = 0 y[1] (numeric) = 1.0873321612797612588568260395831 absolute error = 1.0873321612797612588568260395831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.072 y[1] (analytic) = 0 y[1] (numeric) = 1.0878584785208604556779947302839 absolute error = 1.0878584785208604556779947302839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=572.2MB, alloc=4.6MB, time=61.52 x[1] = 2.073 y[1] (analytic) = 0 y[1] (numeric) = 1.0883847935261051829727326772971 absolute error = 1.0883847935261051829727326772971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.074 y[1] (analytic) = 0 y[1] (numeric) = 1.088911106324525476463146438269 absolute error = 1.088911106324525476463146438269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.075 y[1] (analytic) = 0 y[1] (numeric) = 1.0894374169451431037509643854664 absolute error = 1.0894374169451431037509643854664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.076 y[1] (analytic) = 0 y[1] (numeric) = 1.0899637254169715735115929244755 absolute error = 1.0899637254169715735115929244755 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.077 y[1] (analytic) = 0 y[1] (numeric) = 1.0904900317690161446802122349345 absolute error = 1.0904900317690161446802122349345 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.078 y[1] (analytic) = 0 y[1] (numeric) = 1.0910163360302738356299213831227 absolute error = 1.0910163360302738356299213831227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.079 y[1] (analytic) = 0 y[1] (numeric) = 1.0915426382297334333419426424565 absolute error = 1.0915426382297334333419426424565 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.08 y[1] (analytic) = 0 y[1] (numeric) = 1.0920689383963755025678948441964 absolute error = 1.0920689383963755025678948441964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.081 y[1] (analytic) = 0 y[1] (numeric) = 1.0925952365591723949841455669439 absolute error = 1.0925952365591723949841455669439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.082 y[1] (analytic) = 0 y[1] (numeric) = 1.0931215327470882583382519598043 absolute error = 1.0931215327470882583382519598043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.083 y[1] (analytic) = 0 y[1] (numeric) = 1.0936478269890790455874999804115 absolute error = 1.0936478269890790455874999804115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.084 y[1] (analytic) = 0 y[1] (numeric) = 1.0941741193140925240295518153543 absolute error = 1.0941741193140925240295518153543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.085 y[1] (analytic) = 0 y[1] (numeric) = 1.0947004097510682844252112369079 absolute error = 1.0947004097510682844252112369079 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.086 y[1] (analytic) = 0 y[1] (numeric) = 1.0952266983289377501133166363624 absolute error = 1.0952266983289377501133166363624 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=576.0MB, alloc=4.6MB, time=61.91 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.087 y[1] (analytic) = 0 y[1] (numeric) = 1.0957529850766241861177714606499 absolute error = 1.0957529850766241861177714606499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.088 y[1] (analytic) = 0 y[1] (numeric) = 1.0962792700230427082467217654044 absolute error = 1.0962792700230427082467217654044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.089 y[1] (analytic) = 0 y[1] (numeric) = 1.0968055531971002921838905840424 absolute error = 1.0968055531971002921838905840424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.09 y[1] (analytic) = 0 y[1] (numeric) = 1.0973318346276957825720787989308 absolute error = 1.0973318346276957825720787989308 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.091 y[1] (analytic) = 0 y[1] (numeric) = 1.0978581143437199020888421872054 absolute error = 1.0978581143437199020888421872054 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.092 y[1] (analytic) = 0 y[1] (numeric) = 1.0983843923740552605143543003275 absolute error = 1.0983843923740552605143543003275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.093 y[1] (analytic) = 0 y[1] (numeric) = 1.098910668747576363791464823006 absolute error = 1.098910668747576363791464823006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.094 y[1] (analytic) = 0 y[1] (numeric) = 1.0994369434931496230779630436823 absolute error = 1.0994369434931496230779630436823 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.095 y[1] (analytic) = 0 y[1] (numeric) = 1.0999632166396333637910560553587 absolute error = 1.0999632166396333637910560553587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.096 y[1] (analytic) = 0 y[1] (numeric) = 1.1004894882158778346440712921637 absolute error = 1.1004894882158778346440712921637 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.097 y[1] (analytic) = 0 y[1] (numeric) = 1.1010157582507252166753929936778 absolute error = 1.1010157582507252166753929936778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.098 y[1] (analytic) = 0 y[1] (numeric) = 1.1015420267730096322696421756972 absolute error = 1.1015420267730096322696421756972 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.099 y[1] (analytic) = 0 y[1] (numeric) = 1.1020682938115571541711096727886 absolute error = 1.1020682938115571541711096727886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=579.8MB, alloc=4.6MB, time=62.30 x[1] = 2.1 y[1] (analytic) = 0 y[1] (numeric) = 1.1025945593951858144894518046857 absolute error = 1.1025945593951858144894518046857 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.101 y[1] (analytic) = 0 y[1] (numeric) = 1.103120823552705613697658205296 absolute error = 1.103120823552705613697658205296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.102 y[1] (analytic) = 0 y[1] (numeric) = 1.1036470863129185296223013398298 absolute error = 1.1036470863129185296223013398298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.103 y[1] (analytic) = 0 y[1] (numeric) = 1.1041733477046185264260772223227 absolute error = 1.1041733477046185264260772223227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.104 y[1] (analytic) = 0 y[1] (numeric) = 1.104699607756591563582646832611 absolute error = 1.104699607756591563582646832611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.105 y[1] (analytic) = 0 y[1] (numeric) = 1.1052258664976156048437877186221 absolute error = 1.1052258664976156048437877186221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.106 y[1] (analytic) = 0 y[1] (numeric) = 1.1057521239564606271988652566716 absolute error = 1.1057521239564606271988652566716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.107 y[1] (analytic) = 0 y[1] (numeric) = 1.1062783801618886298266330293078 absolute error = 1.1062783801618886298266330293078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.108 y[1] (analytic) = 0 y[1] (numeric) = 1.1068046351426536430393717671138 absolute error = 1.1068046351426536430393717671138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.109 y[1] (analytic) = 0 y[1] (numeric) = 1.1073308889275017372193762877716 absolute error = 1.1073308889275017372193762877716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.11 y[1] (analytic) = 0 y[1] (numeric) = 1.1078571415451710317477998526045 absolute error = 1.1078571415451710317477998526045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.111 y[1] (analytic) = 0 y[1] (numeric) = 1.1083833930243917039258653477503 absolute error = 1.1083833930243917039258653477503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.112 y[1] (analytic) = 0 y[1] (numeric) = 1.1089096433938859978884526840739 absolute error = 1.1089096433938859978884526840739 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=583.6MB, alloc=4.6MB, time=62.69 x[1] = 2.113 y[1] (analytic) = 0 y[1] (numeric) = 1.109435892682368233510071796906 absolute error = 1.109435892682368233510071796906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.114 y[1] (analytic) = 0 y[1] (numeric) = 1.1099621409185448153032306136928 absolute error = 1.1099621409185448153032306136928 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.115 y[1] (analytic) = 0 y[1] (numeric) = 1.1104883881311142413092073446634 absolute error = 1.1104883881311142413092073446634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.116 y[1] (analytic) = 0 y[1] (numeric) = 1.1110146343487671119812364386619 absolute error = 1.1110146343487671119812364386619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.117 y[1] (analytic) = 0 y[1] (numeric) = 1.1115408796001861390601175333549 absolute error = 1.1115408796001861390601175333549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.118 y[1] (analytic) = 0 y[1] (numeric) = 1.1120671239140461544422567161082 absolute error = 1.1120671239140461544422567161082 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.119 y[1] (analytic) = 0 y[1] (numeric) = 1.1125933673190141190401493989321 absolute error = 1.1125933673190141190401493989321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.12 y[1] (analytic) = 0 y[1] (numeric) = 1.1131196098437491316353140980205 absolute error = 1.1131196098437491316353140980205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.121 y[1] (analytic) = 0 y[1] (numeric) = 1.1136458515169024377236863955559 absolute error = 1.1136458515169024377236863955559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.122 y[1] (analytic) = 0 y[1] (numeric) = 1.1141720923671174383534823486206 absolute error = 1.1141720923671174383534823486206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.123 y[1] (analytic) = 0 y[1] (numeric) = 1.1146983324230296989555405972441 absolute error = 1.1146983324230296989555405972441 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.124 y[1] (analytic) = 0 y[1] (numeric) = 1.1152245717132669581661524108247 absolute error = 1.1152245717132669581661524108247 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.125 y[1] (analytic) = 0 y[1] (numeric) = 1.1157508102664491366423888993962 absolute error = 1.1157508102664491366423888993962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=587.4MB, alloc=4.6MB, time=63.08 x[1] = 2.126 y[1] (analytic) = 0 y[1] (numeric) = 1.116277048111188345869934603461 absolute error = 1.116277048111188345869934603461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.127 y[1] (analytic) = 0 y[1] (numeric) = 1.1168032852760888969634366633829 absolute error = 1.1168032852760888969634366633829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.128 y[1] (analytic) = 0 y[1] (numeric) = 1.1173295217897473094593787566277 absolute error = 1.1173295217897473094593787566277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.129 y[1] (analytic) = 0 y[1] (numeric) = 1.1178557576807523201014889784513 absolute error = 1.1178557576807523201014889784513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.13 y[1] (analytic) = 0 y[1] (numeric) = 1.1183819929776848916186908289711 absolute error = 1.1183819929776848916186908289711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.131 y[1] (analytic) = 0 y[1] (numeric) = 1.1189082277091182214956064569109 absolute error = 1.1189082277091182214956064569109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.132 y[1] (analytic) = 0 y[1] (numeric) = 1.1194344619036177507356212976858 absolute error = 1.1194344619036177507356212976858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.133 y[1] (analytic) = 0 y[1] (numeric) = 1.1199606955897411726165192308887 absolute error = 1.1199606955897411726165192308887 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.134 y[1] (analytic) = 0 y[1] (numeric) = 1.1204869287960384414386973696582 absolute error = 1.1204869287960384414386973696582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.135 y[1] (analytic) = 0 y[1] (numeric) = 1.1210131615510517812659695818439 absolute error = 1.1210131615510517812659695818439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.136 y[1] (analytic) = 0 y[1] (numeric) = 1.1215393938833156946589678303436 absolute error = 1.1215393938833156946589678303436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.137 y[1] (analytic) = 0 y[1] (numeric) = 1.1220656258213569714011504074638 absolute error = 1.1220656258213569714011504074638 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.138 y[1] (analytic) = 0 y[1] (numeric) = 1.1225918573936946972174261256551 absolute error = 1.1225918573936946972174261256551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.139 y[1] (analytic) = 0 y[1] (numeric) = 1.1231180886288402624854035144908 absolute error = 1.1231180886288402624854035144908 relative error = -1 % Correct digits = -1 h = 0.001 memory used=591.3MB, alloc=4.6MB, time=63.47 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.14 y[1] (analytic) = 0 y[1] (numeric) = 1.1236443195552973709392740612986 absolute error = 1.1236443195552973709392740612986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.141 y[1] (analytic) = 0 y[1] (numeric) = 1.1241705502015620483663385204121 absolute error = 1.1241705502015620483663385204121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.142 y[1] (analytic) = 0 y[1] (numeric) = 1.1246967805961226512961853035895 absolute error = 1.1246967805961226512961853035895 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.143 y[1] (analytic) = 0 y[1] (numeric) = 1.1252230107674598756825299517478 absolute error = 1.1252230107674598756825299517478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.144 y[1] (analytic) = 0 y[1] (numeric) = 1.1257492407440467655777246757779 absolute error = 1.1257492407440467655777246757779 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.145 y[1] (analytic) = 0 y[1] (numeric) = 1.1262754705543487217999469418485 absolute error = 1.1262754705543487217999469418485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.146 y[1] (analytic) = 0 y[1] (numeric) = 1.1268017002268235105930760642657 absolute error = 1.1268017002268235105930760642657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.147 y[1] (analytic) = 0 y[1] (numeric) = 1.127327929789921272279266756635 absolute error = 1.127327929789921272279266756635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.148 y[1] (analytic) = 0 y[1] (numeric) = 1.1278541592720845299042285797729 absolute error = 1.1278541592720845299042285797729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.149 y[1] (analytic) = 0 y[1] (numeric) = 1.1283803887017481978752202125353 absolute error = 1.1283803887017481978752202125353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.15 y[1] (analytic) = 0 y[1] (numeric) = 1.1289066181073395905917674594693 absolute error = 1.1289066181073395905917674594693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.151 y[1] (analytic) = 0 y[1] (numeric) = 1.1294328475172784310691138969561 absolute error = 1.1294328475172784310691138969561 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.152 y[1] (analytic) = 0 y[1] (numeric) = 1.1299590769599768595544130472902 absolute error = 1.1299590769599768595544130472902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=595.1MB, alloc=4.6MB, time=63.87 x[1] = 2.153 y[1] (analytic) = 0 y[1] (numeric) = 1.1304853064638394421356709579417 absolute error = 1.1304853064638394421356709579417 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.154 y[1] (analytic) = 0 y[1] (numeric) = 1.1310115360572631793434480510667 absolute error = 1.1310115360572631793434480510667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.155 y[1] (analytic) = 0 y[1] (numeric) = 1.1315377657686375147453290961693 absolute error = 1.1315377657686375147453290961693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.156 y[1] (analytic) = 0 y[1] (numeric) = 1.1320639956263443435331701466789 absolute error = 1.1320639956263443435331701466789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.157 y[1] (analytic) = 0 y[1] (numeric) = 1.1325902256587580211031312690827 absolute error = 1.1325902256587580211031312690827 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.158 y[1] (analytic) = 0 y[1] (numeric) = 1.1331164558942453716285038811538 absolute error = 1.1331164558942453716285038811538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.159 y[1] (analytic) = 0 y[1] (numeric) = 1.1336426863611656966253415037295 absolute error = 1.1336426863611656966253415037295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.16 y[1] (analytic) = 0 y[1] (numeric) = 1.1341689170878707835109027184358 absolute error = 1.1341689170878707835109027184358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.161 y[1] (analytic) = 0 y[1] (numeric) = 1.1346951481027049141549151117058 absolute error = 1.1346951481027049141549151117058 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.162 y[1] (analytic) = 0 y[1] (numeric) = 1.1352213794340048734236689734206 absolute error = 1.1352213794340048734236689734206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.163 y[1] (analytic) = 0 y[1] (numeric) = 1.1357476111100999577169495064924 absolute error = 1.1357476111100999577169495064924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.164 y[1] (analytic) = 0 y[1] (numeric) = 1.1362738431593119834978162917285 absolute error = 1.1362738431593119834978162917285 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.165 y[1] (analytic) = 0 y[1] (numeric) = 1.1368000756099552958152387403458 absolute error = 1.1368000756099552958152387403458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=598.9MB, alloc=4.6MB, time=64.25 x[1] = 2.166 y[1] (analytic) = 0 y[1] (numeric) = 1.1373263084903367768195962545609 absolute error = 1.1373263084903367768195962545609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.167 y[1] (analytic) = 0 y[1] (numeric) = 1.137852541828755854271051804754 absolute error = 1.137852541828755854271051804754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.168 y[1] (analytic) = 0 y[1] (numeric) = 1.1383787756535045100408076197959 absolute error = 1.1383787756535045100408076197959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.169 y[1] (analytic) = 0 y[1] (numeric) = 1.1389050099928672886052516752396 absolute error = 1.1389050099928672886052516752396 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.17 y[1] (analytic) = 0 y[1] (numeric) = 1.139431244875121305533003652208 absolute error = 1.139431244875121305533003652208 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.171 y[1] (analytic) = 0 y[1] (numeric) = 1.1399574803285362559648690279607 absolute error = 1.1399574803285362559648690279607 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.172 y[1] (analytic) = 0 y[1] (numeric) = 1.140483716381374423086709947289 absolute error = 1.140483716381374423086709947289 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.173 y[1] (analytic) = 0 y[1] (numeric) = 1.1410099530618906865952415120792 absolute error = 1.1410099530618906865952415120792 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.174 y[1] (analytic) = 0 y[1] (numeric) = 1.1415361903983325311567621145888 absolute error = 1.1415361903983325311567621145888 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.175 y[1] (analytic) = 0 y[1] (numeric) = 1.1420624284189400548588264282087 absolute error = 1.1420624284189400548588264282087 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.176 y[1] (analytic) = 0 y[1] (numeric) = 1.142588667151945977654869657727 absolute error = 1.142588667151945977654869657727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.177 y[1] (analytic) = 0 y[1] (numeric) = 1.1431149066255756498017916393767 absolute error = 1.1431149066255756498017916393767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.178 y[1] (analytic) = 0 y[1] (numeric) = 1.1436411468680470602905093692305 absolute error = 1.1436411468680470602905093692305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=602.7MB, alloc=4.6MB, time=64.66 x[1] = 2.179 y[1] (analytic) = 0 y[1] (numeric) = 1.1441673879075708452694865268085 absolute error = 1.1441673879075708452694865268085 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.18 y[1] (analytic) = 0 y[1] (numeric) = 1.1446936297723502964612485490852 absolute error = 1.1446936297723502964612485490852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.181 y[1] (analytic) = 0 y[1] (numeric) = 1.1452198724905813695718917984225 absolute error = 1.1452198724905813695718917984225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.182 y[1] (analytic) = 0 y[1] (numeric) = 1.1457461160904526926935953563113 absolute error = 1.1457461160904526926935953563113 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.183 y[1] (analytic) = 0 y[1] (numeric) = 1.1462723606001455747001439631849 absolute error = 1.1462723606001455747001439631849 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.184 y[1] (analytic) = 0 y[1] (numeric) = 1.1467986060478340136354706129592 absolute error = 1.1467986060478340136354706129592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.185 y[1] (analytic) = 0 y[1] (numeric) = 1.1473248524616847050952272993725 absolute error = 1.1473248524616847050952272993725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.186 y[1] (analytic) = 0 y[1] (numeric) = 1.1478510998698570506013923996279 absolute error = 1.1478510998698570506013923996279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.187 y[1] (analytic) = 0 y[1] (numeric) = 1.1483773483005031659699231692956 absolute error = 1.1483773483005031659699231692956 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.188 y[1] (analytic) = 0 y[1] (numeric) = 1.1489035977817678896714618109003 absolute error = 1.1489035977817678896714618109003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.189 y[1] (analytic) = 0 y[1] (numeric) = 1.1494298483417887911851035671089 absolute error = 1.1494298483417887911851035671089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.19 y[1] (analytic) = 0 y[1] (numeric) = 1.1499561000086961793452352779404 absolute error = 1.1499561000086961793452352779404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.191 y[1] (analytic) = 0 y[1] (numeric) = 1.1504823528106131106814528299467 absolute error = 1.1504823528106131106814528299467 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=606.5MB, alloc=4.6MB, time=65.05 x[1] = 2.192 y[1] (analytic) = 0 y[1] (numeric) = 1.1510086067756553977515659138553 absolute error = 1.1510086067756553977515659138553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.193 y[1] (analytic) = 0 y[1] (numeric) = 1.151534861931931617467698495729 absolute error = 1.151534861931931617467698495729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.194 y[1] (analytic) = 0 y[1] (numeric) = 1.1520611183075431194154933952783 absolute error = 1.1520611183075431194154933952783 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.195 y[1] (analytic) = 0 y[1] (numeric) = 1.1525873759305840341664293535604 absolute error = 1.1525873759305840341664293535604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.196 y[1] (analytic) = 0 y[1] (numeric) = 1.1531136348291412815832589609186 absolute error = 1.1531136348291412815832589609186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.197 y[1] (analytic) = 0 y[1] (numeric) = 1.1536398950312945791185758046485 absolute error = 1.1536398950312945791185758046485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.198 y[1] (analytic) = 0 y[1] (numeric) = 1.1541661565651164501065191845347 absolute error = 1.1541661565651164501065191845347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.199 y[1] (analytic) = 0 y[1] (numeric) = 1.1546924194586722320476247330718 absolute error = 1.1546924194586722320476247330718 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.2 y[1] (analytic) = 0 y[1] (numeric) = 1.1552186837400200848868292658746 absolute error = 1.1552186837400200848868292658746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.201 y[1] (analytic) = 0 y[1] (numeric) = 1.155744949437210999284638176491 absolute error = 1.155744949437210999284638176491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.202 y[1] (analytic) = 0 y[1] (numeric) = 1.1562712165782888048814636785585 absolute error = 1.1562712165782888048814636785585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.203 y[1] (analytic) = 0 y[1] (numeric) = 1.1567974851912901785551421869879 absolute error = 1.1567974851912901785551421869879 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.204 y[1] (analytic) = 0 y[1] (numeric) = 1.1573237553042446526716391186231 absolute error = 1.1573237553042446526716391186231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.205 y[1] (analytic) = 0 y[1] (numeric) = 1.1578500269451746233289493816048 absolute error = 1.1578500269451746233289493816048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=610.3MB, alloc=4.6MB, time=65.44 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.206 y[1] (analytic) = 0 y[1] (numeric) = 1.1583763001420953585942018114655 absolute error = 1.1583763001420953585942018114655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.207 y[1] (analytic) = 0 y[1] (numeric) = 1.1589025749230150067339758007997 absolute error = 1.1589025749230150067339758007997 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.208 y[1] (analytic) = 0 y[1] (numeric) = 1.1594288513159346044378383581882 absolute error = 1.1594288513159346044378383581882 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.209 y[1] (analytic) = 0 y[1] (numeric) = 1.1599551293488480850351098209068 absolute error = 1.1599551293488480850351098209068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.21 y[1] (analytic) = 0 y[1] (numeric) = 1.1604814090497422867048664348207 absolute error = 1.1604814090497422867048664348207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.211 y[1] (analytic) = 0 y[1] (numeric) = 1.1610076904465969606791880037553 absolute error = 1.1610076904465969606791880037553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.212 y[1] (analytic) = 0 y[1] (numeric) = 1.1615339735673847794396587995366 absolute error = 1.1615339735673847794396587995366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.213 y[1] (analytic) = 0 y[1] (numeric) = 1.1620602584400713449071299128221 absolute error = 1.1620602584400713449071299128221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.214 y[1] (analytic) = 0 y[1] (numeric) = 1.1625865450926151966247512137811 absolute error = 1.1625865450926151966247512137811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.215 y[1] (analytic) = 0 y[1] (numeric) = 1.1631128335529678199342810806443 absolute error = 1.1631128335529678199342810806443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.216 y[1] (analytic) = 0 y[1] (numeric) = 1.1636391238490736541456820431188 absolute error = 1.1636391238490736541456820431188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.217 y[1] (analytic) = 0 y[1] (numeric) = 1.164165416008870100700010476658 absolute error = 1.164165416008870100700010476658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.218 y[1] (analytic) = 0 y[1] (numeric) = 1.1646917100602875313256084725896 absolute error = 1.1646917100602875313256084725896 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=614.1MB, alloc=4.6MB, time=65.82 x[1] = 2.219 y[1] (analytic) = 0 y[1] (numeric) = 1.1652180060312492961876059981321 absolute error = 1.1652180060312492961876059981321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.22 y[1] (analytic) = 0 y[1] (numeric) = 1.1657443039496717320307414493787 absolute error = 1.1657443039496717320307414493787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.221 y[1] (analytic) = 0 y[1] (numeric) = 1.1662706038434641703155086893921 absolute error = 1.1662706038434641703155086893921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.222 y[1] (analytic) = 0 y[1] (numeric) = 1.1667969057405289453476386526335 absolute error = 1.1667969057405289453476386526335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.223 y[1] (analytic) = 0 y[1] (numeric) = 1.1673232096687614024009235860513 absolute error = 1.1673232096687614024009235860513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.224 y[1] (analytic) = 0 y[1] (numeric) = 1.1678495156560499058333919862693 absolute error = 1.1678495156560499058333919862693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.225 y[1] (analytic) = 0 y[1] (numeric) = 1.168375823730275847196842281449 absolute error = 1.168375823730275847196842281449 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.226 y[1] (analytic) = 0 y[1] (numeric) = 1.1689021339193136533397432955533 absolute error = 1.1689021339193136533397432955533 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.227 y[1] (analytic) = 0 y[1] (numeric) = 1.1694284462510307945035095219049 absolute error = 1.1694284462510307945035095219049 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.228 y[1] (analytic) = 0 y[1] (numeric) = 1.1699547607532877924121592221213 absolute error = 1.1699547607532877924121592221213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.229 y[1] (analytic) = 0 y[1] (numeric) = 1.1704810774539382283553633557094 absolute error = 1.1704810774539382283553633557094 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.23 y[1] (analytic) = 0 y[1] (numeric) = 1.1710073963808287512648933348248 absolute error = 1.1710073963808287512648933348248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.231 y[1] (analytic) = 0 y[1] (numeric) = 1.1715337175617990857844755879367 absolute error = 1.1715337175617990857844755879367 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=618.0MB, alloc=4.6MB, time=66.21 x[1] = 2.232 y[1] (analytic) = 0 y[1] (numeric) = 1.1720600410246820403330609053958 absolute error = 1.1720600410246820403330609053958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.233 y[1] (analytic) = 0 y[1] (numeric) = 1.1725863667973035151615165291726 absolute error = 1.1725863667973035151615165291726 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.234 y[1] (analytic) = 0 y[1] (numeric) = 1.1731126949074825104027489383242 absolute error = 1.1731126949074825104027489383242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.235 y[1] (analytic) = 0 y[1] (numeric) = 1.1736390253830311341152652710516 absolute error = 1.1736390253830311341152652710516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.236 y[1] (analytic) = 0 y[1] (numeric) = 1.1741653582517546103201813135342 absolute error = 1.1741653582517546103201813135342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.237 y[1] (analytic) = 0 y[1] (numeric) = 1.1746916935414512870316839750673 absolute error = 1.1746916935414512870316839750673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.238 y[1] (analytic) = 0 y[1] (numeric) = 1.1752180312799126442809561583855 absolute error = 1.1752180312799126442809561583855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.239 y[1] (analytic) = 0 y[1] (numeric) = 1.1757443714949233021335719234278 absolute error = 1.1757443714949233021335719234278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.24 y[1] (analytic) = 0 y[1] (numeric) = 1.176270714214261028700369832193 absolute error = 1.176270714214261028700369832193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.241 y[1] (analytic) = 0 y[1] (numeric) = 1.1767970594656967481418123517388 absolute error = 1.1767970594656967481418123517388 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.242 y[1] (analytic) = 0 y[1] (numeric) = 1.1773234072769945486658391818051 absolute error = 1.1773234072769945486658391818051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.243 y[1] (analytic) = 0 y[1] (numeric) = 1.177849757675911690519222362981 absolute error = 1.177849757675911690519222362981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.244 y[1] (analytic) = 0 y[1] (numeric) = 1.1783761106901986139724310107942 absolute error = 1.1783761106901986139724310107942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=621.8MB, alloc=4.6MB, time=66.59 x[1] = 2.245 y[1] (analytic) = 0 y[1] (numeric) = 1.1789024663475989472980135105759 absolute error = 1.1789024663475989472980135105759 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.246 y[1] (analytic) = 0 y[1] (numeric) = 1.1794288246758495147425049974455 absolute error = 1.1794288246758495147425049974455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.247 y[1] (analytic) = 0 y[1] (numeric) = 1.1799551857026803444918679352682 absolute error = 1.1799551857026803444918679352682 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.248 y[1] (analytic) = 0 y[1] (numeric) = 1.1804815494558146766304735979619 absolute error = 1.1804815494558146766304735979619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.249 y[1] (analytic) = 0 y[1] (numeric) = 1.1810079159629689710936322460729 absolute error = 1.1810079159629689710936322460729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.25 y[1] (analytic) = 0 y[1] (numeric) = 1.1815342852518529156136797810969 absolute error = 1.1815342852518529156136797810969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.251 y[1] (analytic) = 0 y[1] (numeric) = 1.182060657350169433659628649596 absolute error = 1.182060657350169433659628649596 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.252 y[1] (analytic) = 0 y[1] (numeric) = 1.1825870322856146923703907587544 absolute error = 1.1825870322856146923703907587544 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.253 y[1] (analytic) = 0 y[1] (numeric) = 1.1831134100858781104815801546224 absolute error = 1.1831134100858781104815801546224 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.254 y[1] (analytic) = 0 y[1] (numeric) = 1.1836397907786423662459032039226 absolute error = 1.1836397907786423662459032039226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.255 y[1] (analytic) = 0 y[1] (numeric) = 1.1841661743915834053471440099323 absolute error = 1.1841661743915834053471440099323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.256 y[1] (analytic) = 0 y[1] (numeric) = 1.1846925609523704488077527826135 absolute error = 1.1846925609523704488077527826135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.257 y[1] (analytic) = 0 y[1] (numeric) = 1.1852189504886660008900448728346 absolute error = 1.1852189504886660008900448728346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.258 y[1] (analytic) = 0 y[1] (numeric) = 1.1857453430281258569910181702181 absolute error = 1.1857453430281258569910181702181 relative error = -1 % Correct digits = -1 h = 0.001 memory used=625.6MB, alloc=4.6MB, time=66.98 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.259 y[1] (analytic) = 0 y[1] (numeric) = 1.1862717385983991115307965538543 absolute error = 1.1862717385983991115307965538543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.26 y[1] (analytic) = 0 y[1] (numeric) = 1.1867981372271281658347070748424 absolute error = 1.1867981372271281658347070748424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.261 y[1] (analytic) = 0 y[1] (numeric) = 1.1873245389419487360089985393611 absolute error = 1.1873245389419487360089985393611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.262 y[1] (analytic) = 0 y[1] (numeric) = 1.1878509437704898608102091507223 absolute error = 1.1878509437704898608102091507223 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.263 y[1] (analytic) = 0 y[1] (numeric) = 1.1883773517403739095081908586359 absolute error = 1.1883773517403739095081908586359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.264 y[1] (analytic) = 0 y[1] (numeric) = 1.188903762879216589742798053698 absolute error = 1.188903762879216589742798053698 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.265 y[1] (analytic) = 0 y[1] (numeric) = 1.18943017721462695537424823492 absolute error = 1.18943017721462695537424823492 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.266 y[1] (analytic) = 0 y[1] (numeric) = 1.1899565947742074143271622679339 absolute error = 1.1899565947742074143271622679339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.267 y[1] (analytic) = 0 y[1] (numeric) = 1.1904830155855537364282918413461 absolute error = 1.1904830155855537364282918413461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.268 y[1] (analytic) = 0 y[1] (numeric) = 1.1910094396762550612379417185623 absolute error = 1.1910094396762550612379417185623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.269 y[1] (analytic) = 0 y[1] (numeric) = 1.1915358670738939058750943722745 absolute error = 1.1915358670738939058750943722745 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.27 y[1] (analytic) = 0 y[1] (numeric) = 1.1920622978060461728362445786841 absolute error = 1.1920622978060461728362445786841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.271 y[1] (analytic) = 0 y[1] (numeric) = 1.1925887319002811578079515384349 absolute error = 1.1925887319002811578079515384349 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=629.4MB, alloc=4.6MB, time=67.36 x[1] = 2.272 y[1] (analytic) = 0 y[1] (numeric) = 1.1931151693841615574731160811458 absolute error = 1.1931151693841615574731160811458 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.273 y[1] (analytic) = 0 y[1] (numeric) = 1.1936416102852434773109905003626 absolute error = 1.1936416102852434773109905003626 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.274 y[1] (analytic) = 0 y[1] (numeric) = 1.1941680546310764393909285556986 absolute error = 1.1941680546310764393909285556986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.275 y[1] (analytic) = 0 y[1] (numeric) = 1.1946945024492033901598831688936 absolute error = 1.1946945024492033901598831688936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.276 y[1] (analytic) = 0 y[1] (numeric) = 1.1952209537671607082236593305024 absolute error = 1.1952209537671607082236593305024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.277 y[1] (analytic) = 0 y[1] (numeric) = 1.1957474086124782121219297239171 absolute error = 1.1957474086124782121219297239171 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.278 y[1] (analytic) = 0 y[1] (numeric) = 1.1962738670126791680970205634395 absolute error = 1.1962738670126791680970205634395 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.279 y[1] (analytic) = 0 y[1] (numeric) = 1.1968003289952802978564751331443 absolute error = 1.1968003289952802978564751331443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.28 y[1] (analytic) = 0 y[1] (numeric) = 1.1973267945877917863294025033181 absolute error = 1.1973267945877917863294025033181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.281 y[1] (analytic) = 0 y[1] (numeric) = 1.1978532638177172894166188913146 absolute error = 1.1978532638177172894166188913146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.282 y[1] (analytic) = 0 y[1] (numeric) = 1.1983797367125539417345891237422 absolute error = 1.1983797367125539417345891237422 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.283 y[1] (analytic) = 0 y[1] (numeric) = 1.1989062132997923643531756469869 absolute error = 1.1989062132997923643531756469869 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.284 y[1] (analytic) = 0 y[1] (numeric) = 1.1994326936069166725272025231797 absolute error = 1.1994326936069166725272025231797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=633.2MB, alloc=4.6MB, time=67.76 x[1] = 2.285 y[1] (analytic) = 0 y[1] (numeric) = 1.1999591776614044834218418388373 absolute error = 1.1999591776614044834218418388373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.286 y[1] (analytic) = 0 y[1] (numeric) = 1.2004856654907269238318299435404 absolute error = 1.2004856654907269238318299435404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.287 y[1] (analytic) = 0 y[1] (numeric) = 1.2010121571223486378945209261656 absolute error = 1.2010121571223486378945209261656 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.288 y[1] (analytic) = 0 y[1] (numeric) = 1.2015386525837277947967847263538 absolute error = 1.2015386525837277947967847263538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.289 y[1] (analytic) = 0 y[1] (numeric) = 1.2020651519023160964757572690795 absolute error = 1.2020651519023160964757572690795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.29 y[1] (analytic) = 0 y[1] (numeric) = 1.202591655105558785313450000384 absolute error = 1.202591655105558785313450000384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.291 y[1] (analytic) = 0 y[1] (numeric) = 1.2031181622208946518252261925478 absolute error = 1.2031181622208946518252261925478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.292 y[1] (analytic) = 0 y[1] (numeric) = 1.2036446732757560423421513772065 absolute error = 1.2036446732757560423421513772065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.293 y[1] (analytic) = 0 y[1] (numeric) = 1.2041711882975688666872252551586 absolute error = 1.2041711882975688666872252551586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.294 y[1] (analytic) = 0 y[1] (numeric) = 1.2046977073137526058455024218715 absolute error = 1.2046977073137526058455024218715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.295 y[1] (analytic) = 0 y[1] (numeric) = 1.2052242303517203196281092379678 absolute error = 1.2052242303517203196281092379678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.296 y[1] (analytic) = 0 y[1] (numeric) = 1.2057507574388786543301641642636 absolute error = 1.2057507574388786543301641642636 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.297 y[1] (analytic) = 0 y[1] (numeric) = 1.2062772886026278503826088712345 absolute error = 1.2062772886026278503826088712345 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=637.0MB, alloc=4.6MB, time=68.15 x[1] = 2.298 y[1] (analytic) = 0 y[1] (numeric) = 1.2068038238703617499979574231062 absolute error = 1.2068038238703617499979574231062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.299 y[1] (analytic) = 0 y[1] (numeric) = 1.2073303632694678048099708271019 absolute error = 1.2073303632694678048099708271019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.3 y[1] (analytic) = 0 y[1] (numeric) = 1.2078569068273270835072642287282 absolute error = 1.2078569068273270835072642287282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.301 y[1] (analytic) = 0 y[1] (numeric) = 1.2083834545713142794608540243493 absolute error = 1.2083834545713142794608540243493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.302 y[1] (analytic) = 0 y[1] (numeric) = 1.2089100065287977183456521526767 absolute error = 1.2089100065287977183456521526767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.303 y[1] (analytic) = 0 y[1] (numeric) = 1.2094365627271393657559148172009 absolute error = 1.2094365627271393657559148172009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.304 y[1] (analytic) = 0 y[1] (numeric) = 1.2099631231936948348146528820006 absolute error = 1.2099631231936948348146528820006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.305 y[1] (analytic) = 0 y[1] (numeric) = 1.2104896879558133937770111737907 absolute error = 1.2104896879558133937770111737907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.306 y[1] (analytic) = 0 y[1] (numeric) = 1.2110162570408379736276239135133 absolute error = 1.2110162570408379736276239135133 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.307 y[1] (analytic) = 0 y[1] (numeric) = 1.2115428304761051756719534912295 absolute error = 1.2115428304761051756719534912295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.308 y[1] (analytic) = 0 y[1] (numeric) = 1.2120694082889452791216197885429 absolute error = 1.2120694082889452791216197885429 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.309 y[1] (analytic) = 0 y[1] (numeric) = 1.2125959905066822486737272432695 absolute error = 1.2125959905066822486737272432695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.31 y[1] (analytic) = 0 y[1] (numeric) = 1.2131225771566337420841968415713 absolute error = 1.2131225771566337420841968415713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=640.8MB, alloc=4.6MB, time=68.54 x[1] = 2.311 y[1] (analytic) = 0 y[1] (numeric) = 1.2136491682661111177351102132853 absolute error = 1.2136491682661111177351102132853 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.312 y[1] (analytic) = 0 y[1] (numeric) = 1.2141757638624194421960729967109 absolute error = 1.2141757638624194421960729967109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.313 y[1] (analytic) = 0 y[1] (numeric) = 1.2147023639728574977796046296631 absolute error = 1.2147023639728574977796046296631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.314 y[1] (analytic) = 0 y[1] (numeric) = 1.21522896862471779009056171416 absolute error = 1.21522896862471779009056171416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.315 y[1] (analytic) = 0 y[1] (numeric) = 1.2157555778452865555696020926866 absolute error = 1.2157555778452865555696020926866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.316 y[1] (analytic) = 0 y[1] (numeric) = 1.2162821916618437690306967645686 absolute error = 1.2162821916618437690306967645686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.317 y[1] (analytic) = 0 y[1] (numeric) = 1.2168088101016631511926967615915 absolute error = 1.2168088101016631511926967615915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.318 y[1] (analytic) = 0 y[1] (numeric) = 1.2173354331920121762049620926218 absolute error = 1.2173354331920121762049620926218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.319 y[1] (analytic) = 0 y[1] (numeric) = 1.2178620609601520791670598576193 absolute error = 1.2178620609601520791670598576193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.32 y[1] (analytic) = 0 y[1] (numeric) = 1.2183886934333378636425386220778 absolute error = 1.2183886934333378636425386220778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.321 y[1] (analytic) = 0 y[1] (numeric) = 1.2189153306388183091667861335953 absolute error = 1.2189153306388183091667861335953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.322 y[1] (analytic) = 0 y[1] (numeric) = 1.2194419726038359787489774529515 absolute error = 1.2194419726038359787489774529515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.323 y[1] (analytic) = 0 y[1] (numeric) = 1.2199686193556272263681205627627 absolute error = 1.2199686193556272263681205627627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.324 y[1] (analytic) = 0 y[1] (numeric) = 1.2204952709214222044632065074905 absolute error = 1.2204952709214222044632065074905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=644.7MB, alloc=4.6MB, time=68.93 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.325 y[1] (analytic) = 0 y[1] (numeric) = 1.2210219273284448714174711093026 absolute error = 1.2210219273284448714174711093026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.326 y[1] (analytic) = 0 y[1] (numeric) = 1.2215485886039129990367752950182 absolute error = 1.2215485886039129990367752950182 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.327 y[1] (analytic) = 0 y[1] (numeric) = 1.2220752547750381800221110601223 absolute error = 1.2220752547750381800221110601223 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.328 y[1] (analytic) = 0 y[1] (numeric) = 1.2226019258690258354362400865955 absolute error = 1.2226019258690258354362400865955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.329 y[1] (analytic) = 0 y[1] (numeric) = 1.2231286019130752221644720220866 absolute error = 1.2231286019130752221644720220866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.33 y[1] (analytic) = 0 y[1] (numeric) = 1.2236552829343794403695894187479 absolute error = 1.2236552829343794403695894187479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.331 y[1] (analytic) = 0 y[1] (numeric) = 1.2241819689601254409409263208599 absolute error = 1.2241819689601254409409263208599 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.332 y[1] (analytic) = 0 y[1] (numeric) = 1.2247086600174940329376074811953 absolute error = 1.2247086600174940329376074811953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.333 y[1] (analytic) = 0 y[1] (numeric) = 1.2252353561336598910259551769076 absolute error = 1.2252353561336598910259551769076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.334 y[1] (analytic) = 0 y[1] (numeric) = 1.22576205733579156291107058658 absolute error = 1.22576205733579156291107058658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.335 y[1] (analytic) = 0 y[1] (numeric) = 1.2262887636510514767625966809358 absolute error = 1.2262887636510514767625966809358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.336 y[1] (analytic) = 0 y[1] (numeric) = 1.2268154751065959486346695705894 absolute error = 1.2268154751065959486346695705894 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.337 y[1] (analytic) = 0 y[1] (numeric) = 1.2273421917295751898800652451112 absolute error = 1.2273421917295751898800652451112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=648.5MB, alloc=4.6MB, time=69.32 x[1] = 2.338 y[1] (analytic) = 0 y[1] (numeric) = 1.2278689135471333145585486285861 absolute error = 1.2278689135471333145585486285861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.339 y[1] (analytic) = 0 y[1] (numeric) = 1.2283956405864083468394318677675 absolute error = 1.2283956405864083468394318677675 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.34 y[1] (analytic) = 0 y[1] (numeric) = 1.2289223728745322283983487598639 absolute error = 1.2289223728745322283983487598639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.341 y[1] (analytic) = 0 y[1] (numeric) = 1.2294491104386308258082522179454 absolute error = 1.2294491104386308258082522179454 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.342 y[1] (analytic) = 0 y[1] (numeric) = 1.22997585330582393792464166292 absolute error = 1.22997585330582393792464166292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.343 y[1] (analytic) = 0 y[1] (numeric) = 1.2305026015032253032650272220093 absolute error = 1.2305026015032253032650272220093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.344 y[1] (analytic) = 0 y[1] (numeric) = 1.231029355057942607382637604643 absolute error = 1.231029355057942607382637604643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.345 y[1] (analytic) = 0 y[1] (numeric) = 1.2315561139970774902343785176996 absolute error = 1.2315561139970774902343785176996 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.346 y[1] (analytic) = 0 y[1] (numeric) = 1.2320828783477255535430484730382 absolute error = 1.2320828783477255535430484730382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.347 y[1] (analytic) = 0 y[1] (numeric) = 1.2326096481369763681538188313025 absolute error = 1.2326096481369763681538188313025 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.348 y[1] (analytic) = 0 y[1] (numeric) = 1.2331364233919134813849849170238 absolute error = 1.2331364233919134813849849170238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.349 y[1] (analytic) = 0 y[1] (numeric) = 1.2336632041396144243729950311123 absolute error = 1.2336632041396144243729950311123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.35 y[1] (analytic) = 0 y[1] (numeric) = 1.2341899904071507194117641779022 absolute error = 1.2341899904071507194117641779022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=652.3MB, alloc=4.6MB, time=69.71 x[1] = 2.351 y[1] (analytic) = 0 y[1] (numeric) = 1.2347167822215878872862793150041 absolute error = 1.2347167822215878872862793150041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.352 y[1] (analytic) = 0 y[1] (numeric) = 1.2352435796099854546005029253217 absolute error = 1.2352435796099854546005029253217 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.353 y[1] (analytic) = 0 y[1] (numeric) = 1.2357703825993969610995817017079 absolute error = 1.2357703825993969610995817017079 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.354 y[1] (analytic) = 0 y[1] (numeric) = 1.2362971912168699669863671258648 absolute error = 1.2362971912168699669863671258648 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.355 y[1] (analytic) = 0 y[1] (numeric) = 1.2368240054894460602322547142374 absolute error = 1.2368240054894460602322547142374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.356 y[1] (analytic) = 0 y[1] (numeric) = 1.2373508254441608638823486948084 absolute error = 1.2373508254441608638823486948084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.357 y[1] (analytic) = 0 y[1] (numeric) = 1.2378776511080440433549588698748 absolute error = 1.2378776511080440433549588698748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.358 y[1] (analytic) = 0 y[1] (numeric) = 1.2384044825081193137354364110704 absolute error = 1.2384044825081193137354364110704 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.359 y[1] (analytic) = 0 y[1] (numeric) = 1.2389313196714044470643553241005 absolute error = 1.2389313196714044470643553241005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.36 y[1] (analytic) = 0 y[1] (numeric) = 1.2394581626249112796200463118651 absolute error = 1.2394581626249112796200463118651 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.361 y[1] (analytic) = 0 y[1] (numeric) = 1.2399850113956457191954897558758 absolute error = 1.2399850113956457191954897558758 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.362 y[1] (analytic) = 0 y[1] (numeric) = 1.24051186601060775236957452711 absolute error = 1.24051186601060775236957452711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.363 y[1] (analytic) = 0 y[1] (numeric) = 1.2410387264967914517727293287014 absolute error = 1.2410387264967914517727293287014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=656.1MB, alloc=4.6MB, time=70.11 x[1] = 2.364 y[1] (analytic) = 0 y[1] (numeric) = 1.2415655928811849833469332641313 absolute error = 1.2415655928811849833469332641313 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.365 y[1] (analytic) = 0 y[1] (numeric) = 1.2420924651907706136001123158672 absolute error = 1.2420924651907706136001123158672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.366 y[1] (analytic) = 0 y[1] (numeric) = 1.242619343452524716854928410689 absolute error = 1.242619343452524716854928410689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.367 y[1] (analytic) = 0 y[1] (numeric) = 1.2431462276934177824919677392508 absolute error = 1.2431462276934177824919677392508 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.368 y[1] (analytic) = 0 y[1] (numeric) = 1.2436731179404144221873349887475 absolute error = 1.2436731179404144221873349887475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.369 y[1] (analytic) = 0 y[1] (numeric) = 1.2442000142204733771446601388904 absolute error = 1.2442000142204733771446601388904 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.37 y[1] (analytic) = 0 y[1] (numeric) = 1.244726916560547525321524462743 absolute error = 1.244726916560547525321524462743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.371 y[1] (analytic) = 0 y[1] (numeric) = 1.2452538249875838886503123653304 absolute error = 1.2452538249875838886503123653304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.372 y[1] (analytic) = 0 y[1] (numeric) = 1.2457807395285236402534956843107 absolute error = 1.2457807395285236402534956843107 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.373 y[1] (analytic) = 0 y[1] (numeric) = 1.2463076602103021116533570683833 absolute error = 1.2463076602103021116533570683833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.374 y[1] (analytic) = 0 y[1] (numeric) = 1.2468345870598487999761590405125 absolute error = 1.2468345870598487999761590405125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.375 y[1] (analytic) = 0 y[1] (numeric) = 1.2473615201040873751507653444574 absolute error = 1.2473615201040873751507653444574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.376 y[1] (analytic) = 0 y[1] (numeric) = 1.247888459369935687101721164528 absolute error = 1.247888459369935687101721164528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.377 y[1] (analytic) = 0 y[1] (numeric) = 1.248415404884305772936798799929 absolute error = 1.248415404884305772936798799929 relative error = -1 % Correct digits = -1 h = 0.001 memory used=659.9MB, alloc=4.6MB, time=70.51 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.378 y[1] (analytic) = 0 y[1] (numeric) = 1.2489423566741038641290153665059 absolute error = 1.2489423566741038641290153665059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.379 y[1] (analytic) = 0 y[1] (numeric) = 1.249469314766230393693129090176 absolute error = 1.249469314766230393693129090176 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.38 y[1] (analytic) = 0 y[1] (numeric) = 1.2499962791875800033566207478086 absolute error = 1.2499962791875800033566207478086 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.381 y[1] (analytic) = 0 y[1] (numeric) = 1.2505232499650415507251668028101 absolute error = 1.2505232499650415507251668028101 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.382 y[1] (analytic) = 0 y[1] (numeric) = 1.2510502271254981164426107741801 absolute error = 1.2510502271254981164426107741801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.383 y[1] (analytic) = 0 y[1] (numeric) = 1.2515772106958270113454393693206 absolute error = 1.2515772106958270113454393693206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.384 y[1] (analytic) = 0 y[1] (numeric) = 1.2521042007028997836117699024175 absolute error = 1.2521042007028997836117699024175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.385 y[1] (analytic) = 0 y[1] (numeric) = 1.2526311971735822259048555117563 absolute error = 1.2526311971735822259048555117563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.386 y[1] (analytic) = 0 y[1] (numeric) = 1.2531582001347343825111146808958 absolute error = 1.2531582001347343825111146808958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.387 y[1] (analytic) = 0 y[1] (numeric) = 1.2536852096132105564726915601938 absolute error = 1.2536852096132105564726915601938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.388 y[1] (analytic) = 0 y[1] (numeric) = 1.2542122256358593167145535767651 absolute error = 1.2542122256358593167145535767651 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.389 y[1] (analytic) = 0 y[1] (numeric) = 1.2547392482295235051661328125502 absolute error = 1.2547392482295235051661328125502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.39 y[1] (analytic) = 0 y[1] (numeric) = 1.2552662774210402438775176217835 absolute error = 1.2552662774210402438775176217835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=663.7MB, alloc=4.6MB, time=70.90 x[1] = 2.391 y[1] (analytic) = 0 y[1] (numeric) = 1.255793313237240942130200950774 absolute error = 1.255793313237240942130200950774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.392 y[1] (analytic) = 0 y[1] (numeric) = 1.2563203557049513035423918145491 absolute error = 1.2563203557049513035423918145491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.393 y[1] (analytic) = 0 y[1] (numeric) = 1.2568474048509913331688963765609 absolute error = 1.2568474048509913331688963765609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.394 y[1] (analytic) = 0 y[1] (numeric) = 1.2573744607021753445955750693172 absolute error = 1.2573744607021753445955750693172 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.395 y[1] (analytic) = 0 y[1] (numeric) = 1.2579015232853119670283821854754 absolute error = 1.2579015232853119670283821854754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.396 y[1] (analytic) = 0 y[1] (numeric) = 1.2584285926272041523769943606246 absolute error = 1.2584285926272041523769943606246 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.397 y[1] (analytic) = 0 y[1] (numeric) = 1.2589556687546491823330343606839 absolute error = 1.2589556687546491823330343606839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.398 y[1] (analytic) = 0 y[1] (numeric) = 1.2594827516944386754428965785562 absolute error = 1.2594827516944386754428965785562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.399 y[1] (analytic) = 0 y[1] (numeric) = 1.260009841473358594175180636406 absolute error = 1.260009841473358594175180636406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.4 y[1] (analytic) = 0 y[1] (numeric) = 1.2605369381181892519827394816663 absolute error = 1.2605369381181892519827394816663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.401 y[1] (analytic) = 0 y[1] (numeric) = 1.2610640416557053203593483566341 absolute error = 1.2610640416557053203593483566341 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.402 y[1] (analytic) = 0 y[1] (numeric) = 1.2615911521126758358910010132765 absolute error = 1.2615911521126758358910010132765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.403 y[1] (analytic) = 0 y[1] (numeric) = 1.2621182695158642073018395366471 absolute error = 1.2621182695158642073018395366471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=667.6MB, alloc=4.6MB, time=71.29 x[1] = 2.404 y[1] (analytic) = 0 y[1] (numeric) = 1.2626453938920282224947241321035 absolute error = 1.2626453938920282224947241321035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.405 y[1] (analytic) = 0 y[1] (numeric) = 1.2631725252679200555864492233169 absolute error = 1.2631725252679200555864492233169 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.406 y[1] (analytic) = 0 y[1] (numeric) = 1.2636996636702862739376121998824 absolute error = 1.2636996636702862739376121998824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.407 y[1] (analytic) = 0 y[1] (numeric) = 1.2642268091258678451771411451631 absolute error = 1.2642268091258678451771411451631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.408 y[1] (analytic) = 0 y[1] (numeric) = 1.2647539616614001442214878668444 absolute error = 1.2647539616614001442214878668444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.409 y[1] (analytic) = 0 y[1] (numeric) = 1.2652811213036129602884925445248 absolute error = 1.2652811213036129602884925445248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.41 y[1] (analytic) = 0 y[1] (numeric) = 1.2658082880792305039059263005365 absolute error = 1.2658082880792305039059263005365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.411 y[1] (analytic) = 0 y[1] (numeric) = 1.2663354620149714139147179920655 absolute error = 1.2663354620149714139147179920655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.412 y[1] (analytic) = 0 y[1] (numeric) = 1.2668626431375487644668715145317 absolute error = 1.2668626431375487644668715145317 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.413 y[1] (analytic) = 0 y[1] (numeric) = 1.267389831473670072018079898091 absolute error = 1.267389831473670072018079898091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.414 y[1] (analytic) = 0 y[1] (numeric) = 1.2679170270500373023150424710373 absolute error = 1.2679170270500373023150424710373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.415 y[1] (analytic) = 0 y[1] (numeric) = 1.2684442298933468773774913558093 absolute error = 1.2684442298933468773774913558093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.416 y[1] (analytic) = 0 y[1] (numeric) = 1.2689714400302896824749335552453 absolute error = 1.2689714400302896824749335552453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=671.4MB, alloc=4.6MB, time=71.68 x[1] = 2.417 y[1] (analytic) = 0 y[1] (numeric) = 1.2694986574875510730981148786838 absolute error = 1.2694986574875510730981148786838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.418 y[1] (analytic) = 0 y[1] (numeric) = 1.2700258822918108819252119494686 absolute error = 1.2700258822918108819252119494686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.419 y[1] (analytic) = 0 y[1] (numeric) = 1.2705531144697434257827585273968 absolute error = 1.2705531144697434257827585273968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.42 y[1] (analytic) = 0 y[1] (numeric) = 1.271080354048017512601312371635 absolute error = 1.271080354048017512601312371635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.421 y[1] (analytic) = 0 y[1] (numeric) = 1.2716076010532964483658688616306 absolute error = 1.2716076010532964483658688616306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.422 y[1] (analytic) = 0 y[1] (numeric) = 1.2721348555122380440610275855581 absolute error = 1.2721348555122380440610275855581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.423 y[1] (analytic) = 0 y[1] (numeric) = 1.2726621174514946226109180978674 absolute error = 1.2726621174514946226109180978674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.424 y[1] (analytic) = 0 y[1] (numeric) = 1.2731893868977130258138910395362 absolute error = 1.2731893868977130258138910395362 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.425 y[1] (analytic) = 0 y[1] (numeric) = 1.2737166638775346212719808066809 absolute error = 1.2737166638775346212719808066809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.426 y[1] (analytic) = 0 y[1] (numeric) = 1.2742439484175953093151459452409 absolute error = 1.2742439484175953093151459452409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.427 y[1] (analytic) = 0 y[1] (numeric) = 1.2747712405445255299202934415262 absolute error = 1.2747712405445255299202934415262 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.428 y[1] (analytic) = 0 y[1] (numeric) = 1.2752985402849502696250930705045 absolute error = 1.2752985402849502696250930705045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.429 y[1] (analytic) = 0 y[1] (numeric) = 1.2758258476654890684365879558013 absolute error = 1.2758258476654890684365879558013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=675.2MB, alloc=4.6MB, time=72.07 x[1] = 2.43 y[1] (analytic) = 0 y[1] (numeric) = 1.2763531627127560267346074874986 absolute error = 1.2763531627127560267346074874986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.431 y[1] (analytic) = 0 y[1] (numeric) = 1.2768804854533598121699887359389 absolute error = 1.2768804854533598121699887359389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.432 y[1] (analytic) = 0 y[1] (numeric) = 1.2774078159139036665576124918764 absolute error = 1.2774078159139036665576124918764 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.433 y[1] (analytic) = 0 y[1] (numeric) = 1.2779351541209854127642600554638 absolute error = 1.2779351541209854127642600554638 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.434 y[1] (analytic) = 0 y[1] (numeric) = 1.278462500101197461591296888721 absolute error = 1.278462500101197461591296888721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.435 y[1] (analytic) = 0 y[1] (numeric) = 1.278989853881126818652189238303 absolute error = 1.278989853881126818652189238303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.436 y[1] (analytic) = 0 y[1] (numeric) = 1.2795172154873550912448598275673 absolute error = 1.2795172154873550912448598275673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.437 y[1] (analytic) = 0 y[1] (numeric) = 1.2800445849464584952188887091332 absolute error = 1.2800445849464584952188887091332 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.438 y[1] (analytic) = 0 y[1] (numeric) = 1.280571962285007861837565361335 absolute error = 1.280571962285007861837565361335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.439 y[1] (analytic) = 0 y[1] (numeric) = 1.2810993475295686446347981041852 absolute error = 1.2810993475295686446347981041852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.44 y[1] (analytic) = 0 y[1] (numeric) = 1.2816267407067009262668869026978 absolute error = 1.2816267407067009262668869026978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.441 y[1] (analytic) = 0 y[1] (numeric) = 1.2821541418429594253591656176602 absolute error = 1.2821541418429594253591656176602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.442 y[1] (analytic) = 0 y[1] (numeric) = 1.282681550964893503347519756198 absolute error = 1.282681550964893503347519756198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.443 y[1] (analytic) = 0 y[1] (numeric) = 1.2832089680990471713147857667416 absolute error = 1.2832089680990471713147857667416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=679.0MB, alloc=4.6MB, time=72.46 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.444 y[1] (analytic) = 0 y[1] (numeric) = 1.2837363932719590968220379152801 absolute error = 1.2837363932719590968220379152801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.445 y[1] (analytic) = 0 y[1] (numeric) = 1.2842638265101626107347687720785 absolute error = 1.2842638265101626107347687720785 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.446 y[1] (analytic) = 0 y[1] (numeric) = 1.284791267840185714043969330333 absolute error = 1.284791267840185714043969330333 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.447 y[1] (analytic) = 0 y[1] (numeric) = 1.2853187172885510846821147705533 absolute error = 1.2853187172885510846821147705533 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.448 y[1] (analytic) = 0 y[1] (numeric) = 1.2858461748817760843340618767838 absolute error = 1.2858461748817760843340618767838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.449 y[1] (analytic) = 0 y[1] (numeric) = 1.2863736406463727652428641031115 absolute error = 1.2863736406463727652428641031115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.45 y[1] (analytic) = 0 y[1] (numeric) = 1.2869011146088478770105102812562 absolute error = 1.2869011146088478770105102812562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.451 y[1] (analytic) = 0 y[1] (numeric) = 1.2874285967957028733935929523973 absolute error = 1.2874285967957028733935929523973 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.452 y[1] (analytic) = 0 y[1] (numeric) = 1.2879560872334339190939122987626 absolute error = 1.2879560872334339190939122987626 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.453 y[1] (analytic) = 0 y[1] (numeric) = 1.2884835859485318965440216428859 absolute error = 1.2884835859485318965440216428859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.454 y[1] (analytic) = 0 y[1] (numeric) = 1.2890110929674824126877204748355 absolute error = 1.2890110929674824126877204748355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.455 y[1] (analytic) = 0 y[1] (numeric) = 1.289538608316765805755500960119 absolute error = 1.289538608316765805755500960119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.456 y[1] (analytic) = 0 y[1] (numeric) = 1.2900661320228571520349538733892 absolute error = 1.2900661320228571520349538733892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=682.8MB, alloc=4.6MB, time=72.86 x[1] = 2.457 y[1] (analytic) = 0 y[1] (numeric) = 1.290593664112226272636139895502 absolute error = 1.290593664112226272636139895502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.458 y[1] (analytic) = 0 y[1] (numeric) = 1.2911212046113377402519322039188 absolute error = 1.2911212046113377402519322039188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.459 y[1] (analytic) = 0 y[1] (numeric) = 1.2916487535466508859133362788965 absolute error = 1.2916487535466508859133362788965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.46 y[1] (analytic) = 0 y[1] (numeric) = 1.2921763109446198057397928403715 absolute error = 1.2921763109446198057397928403715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.461 y[1] (analytic) = 0 y[1] (numeric) = 1.292703876831693367684469822918 absolute error = 1.292703876831693367684469822918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.462 y[1] (analytic) = 0 y[1] (numeric) = 1.293231451234315218274549288647 absolute error = 1.293231451234315218274549288647 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.463 y[1] (analytic) = 0 y[1] (numeric) = 1.2937590341789237893465151704087 absolute error = 1.2937590341789237893465151704087 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.464 y[1] (analytic) = 0 y[1] (numeric) = 1.2942866256919523047764477301715 absolute error = 1.2942866256919523047764477301715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.465 y[1] (analytic) = 0 y[1] (numeric) = 1.2948142257998287872053306099677 absolute error = 1.2948142257998287872053306099677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.466 y[1] (analytic) = 0 y[1] (numeric) = 1.2953418345289760647593763453302 absolute error = 1.2953418345289760647593763453302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.467 y[1] (analytic) = 0 y[1] (numeric) = 1.2958694519058117777653762036845 absolute error = 1.2958694519058117777653762036845 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.468 y[1] (analytic) = 0 y[1] (numeric) = 1.2963970779567483854610802027159 absolute error = 1.2963970779567483854610802027159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.469 y[1] (analytic) = 0 y[1] (numeric) = 1.2969247127081931727006131562962 absolute error = 1.2969247127081931727006131562962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=686.6MB, alloc=4.6MB, time=73.25 x[1] = 2.47 y[1] (analytic) = 0 y[1] (numeric) = 1.2974523561865482566549325881299 absolute error = 1.2974523561865482566549325881299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.471 y[1] (analytic) = 0 y[1] (numeric) = 1.2979800084182105935073343458694 absolute error = 1.2979800084182105935073343458694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.472 y[1] (analytic) = 0 y[1] (numeric) = 1.2985076694295719851440117410448 absolute error = 1.2985076694295719851440117410448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.473 y[1] (analytic) = 0 y[1] (numeric) = 1.2990353392470190858396740327667 absolute error = 1.2990353392470190858396740327667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.474 y[1] (analytic) = 0 y[1] (numeric) = 1.2995630178969334089382300657795 absolute error = 1.2995630178969334089382300657795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.475 y[1] (analytic) = 0 y[1] (numeric) = 1.3000907054056913335285428660764 absolute error = 1.3000907054056913335285428660764 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.476 y[1] (analytic) = 0 y[1] (numeric) = 1.3006184017996641111152609899299 absolute error = 1.3006184017996641111152609899299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.477 y[1] (analytic) = 0 y[1] (numeric) = 1.3011461071052178722847324148468 absolute error = 1.3011461071052178722847324148468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.478 y[1] (analytic) = 0 y[1] (numeric) = 1.3016738213487136333660067536225 absolute error = 1.3016738213487136333660067536225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.479 y[1] (analytic) = 0 y[1] (numeric) = 1.3022015445565073030869315653454 absolute error = 1.3022015445565073030869315653454 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.48 y[1] (analytic) = 0 y[1] (numeric) = 1.302729276754949689225348529892 absolute error = 1.302729276754949689225348529892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.481 y[1] (analytic) = 0 y[1] (numeric) = 1.303257017970386505255395245149 absolute error = 1.303257017970386505255395245149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.482 y[1] (analytic) = 0 y[1] (numeric) = 1.3037847682291583769889183989129 absolute error = 1.3037847682291583769889183989129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=690.4MB, alloc=4.6MB, time=73.64 x[1] = 2.483 y[1] (analytic) = 0 y[1] (numeric) = 1.3043125275576008492120040601346 absolute error = 1.3043125275576008492120040601346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.484 y[1] (analytic) = 0 y[1] (numeric) = 1.3048402959820443923166308269112 absolute error = 1.3048402959820443923166308269112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.485 y[1] (analytic) = 0 y[1] (numeric) = 1.3053680735288144089274515613693 absolute error = 1.3053680735288144089274515613693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.486 y[1] (analytic) = 0 y[1] (numeric) = 1.3058958602242312405237094343371 absolute error = 1.3058958602242312405237094343371 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.487 y[1] (analytic) = 0 y[1] (numeric) = 1.3064236560946101740562939954692 absolute error = 1.3064236560946101740562939954692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.488 y[1] (analytic) = 0 y[1] (numeric) = 1.3069514611662614485599429772625 absolute error = 1.3069514611662614485599429772625 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.489 y[1] (analytic) = 0 y[1] (numeric) = 1.3074792754654902617605955341891 absolute error = 1.3074792754654902617605955341891 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.49 y[1] (analytic) = 0 y[1] (numeric) = 1.3080070990185967766779026109683 absolute error = 1.3080070990185967766779026109683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.491 y[1] (analytic) = 0 y[1] (numeric) = 1.3085349318518761282229001268102 absolute error = 1.3085349318518761282229001268102 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.492 y[1] (analytic) = 0 y[1] (numeric) = 1.3090627739916184297908506552811 absolute error = 1.3090627739916184297908506552811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.493 y[1] (analytic) = 0 y[1] (numeric) = 1.3095906254641087798492592722715 absolute error = 1.3095906254641087798492592722715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.494 y[1] (analytic) = 0 y[1] (numeric) = 1.3101184862956272685210692373886 absolute error = 1.3101184862956272685210692373886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.495 y[1] (analytic) = 0 y[1] (numeric) = 1.3106463565124489841630431669468 absolute error = 1.3106463565124489841630431669468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=694.3MB, alloc=4.6MB, time=74.03 x[1] = 2.496 y[1] (analytic) = 0 y[1] (numeric) = 1.3111742361408440199393353495915 absolute error = 1.3111742361408440199393353495915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.497 y[1] (analytic) = 0 y[1] (numeric) = 1.3117021252070774803902608484661 absolute error = 1.3117021252070774803902608484661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.498 y[1] (analytic) = 0 y[1] (numeric) = 1.3122300237374094879962670267146 absolute error = 1.3122300237374094879962670267146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.499 y[1] (analytic) = 0 y[1] (numeric) = 1.3127579317580951897371131260077 absolute error = 1.3127579317580951897371131260077 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.5 y[1] (analytic) = 0 y[1] (numeric) = 1.3132858492953847636462635206855 absolute error = 1.3132858492953847636462635206855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.501 y[1] (analytic) = 0 y[1] (numeric) = 1.3138137763755234253605002630256 absolute error = 1.3138137763755234253605002630256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.502 y[1] (analytic) = 0 y[1] (numeric) = 1.3143417130247514346647605280725 absolute error = 1.3143417130247514346647605280725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.503 y[1] (analytic) = 0 y[1] (numeric) = 1.3148696592693041020322045594018 absolute error = 1.3148696592693041020322045594018 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.504 y[1] (analytic) = 0 y[1] (numeric) = 1.3153976151354117951595197101395 absolute error = 1.3153976151354117951595197101395 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.505 y[1] (analytic) = 0 y[1] (numeric) = 1.3159255806492999454974661665165 absolute error = 1.3159255806492999454974661665165 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.506 y[1] (analytic) = 0 y[1] (numeric) = 1.316453555837189054776669934207 absolute error = 1.316453555837189054776669934207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.507 y[1] (analytic) = 0 y[1] (numeric) = 1.3169815407252947015286686606796 absolute error = 1.3169815407252947015286686606796 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.508 y[1] (analytic) = 0 y[1] (numeric) = 1.3175095353398275476022158597789 absolute error = 1.3175095353398275476022158597789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.509 y[1] (analytic) = 0 y[1] (numeric) = 1.3180375397069933446748490977582 absolute error = 1.3180375397069933446748490977582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=698.1MB, alloc=4.6MB, time=74.43 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.51 y[1] (analytic) = 0 y[1] (numeric) = 1.3185655538529929407597276929942 absolute error = 1.3185655538529929407597276929942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.511 y[1] (analytic) = 0 y[1] (numeric) = 1.3190935778040222867077454746354 absolute error = 1.3190935778040222867077454746354 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.512 y[1] (analytic) = 0 y[1] (numeric) = 1.3196216115862724427049241384703 absolute error = 1.3196216115862724427049241384703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.513 y[1] (analytic) = 0 y[1] (numeric) = 1.3201496552259295847650927313428 absolute error = 1.3201496552259295847650927313428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.514 y[1] (analytic) = 0 y[1] (numeric) = 1.3206777087491750112178587884959 absolute error = 1.3206777087491750112178587884959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.515 y[1] (analytic) = 0 y[1] (numeric) = 1.3212057721821851491918766412881 absolute error = 1.3212057721821851491918766412881 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.516 y[1] (analytic) = 0 y[1] (numeric) = 1.3217338455511315610934184058015 absolute error = 1.3217338455511315610934184058015 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.517 y[1] (analytic) = 0 y[1] (numeric) = 1.3222619288821809510802531559446 absolute error = 1.3222619288821809510802531559446 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.518 y[1] (analytic) = 0 y[1] (numeric) = 1.3227900222014951715308397777477 absolute error = 1.3227900222014951715308397777477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.519 y[1] (analytic) = 0 y[1] (numeric) = 1.3233181255352312295088389946542 absolute error = 1.3233181255352312295088389946542 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.52 y[1] (analytic) = 0 y[1] (numeric) = 1.3238462389095412932229500467264 absolute error = 1.3238462389095412932229500467264 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.521 y[1] (analytic) = 0 y[1] (numeric) = 1.3243743623505726984820774998098 absolute error = 1.3243743623505726984820774998098 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.522 y[1] (analytic) = 0 y[1] (numeric) = 1.3249024958844679551458336538371 absolute error = 1.3249024958844679551458336538371 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=701.9MB, alloc=4.6MB, time=74.82 x[1] = 2.523 y[1] (analytic) = 0 y[1] (numeric) = 1.3254306395373647535703820125987 absolute error = 1.3254306395373647535703820125987 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.524 y[1] (analytic) = 0 y[1] (numeric) = 1.3259587933353959710496272704628 absolute error = 1.3259587933353959710496272704628 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.525 y[1] (analytic) = 0 y[1] (numeric) = 1.3264869573046896782517572646972 absolute error = 1.3264869573046896782517572646972 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.526 y[1] (analytic) = 0 y[1] (numeric) = 1.3270151314713691456511423352184 absolute error = 1.3270151314713691456511423352184 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.527 y[1] (analytic) = 0 y[1] (numeric) = 1.3275433158615528499555975267854 absolute error = 1.3275433158615528499555975267854 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.528 y[1] (analytic) = 0 y[1] (numeric) = 1.3280715105013544805290130618494 absolute error = 1.3280715105013544805290130618494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.529 y[1] (analytic) = 0 y[1] (numeric) = 1.3285997154168829458093585054807 absolute error = 1.3285997154168829458093585054807 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.53 y[1] (analytic) = 0 y[1] (numeric) = 1.3291279306342423797220660370109 absolute error = 1.3291279306342423797220660370109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.531 y[1] (analytic) = 0 y[1] (numeric) = 1.329656156179532148088798236257 absolute error = 1.329656156179532148088798236257 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.532 y[1] (analytic) = 0 y[1] (numeric) = 1.3301843920788468550316057854327 absolute error = 1.3301843920788468550316057854327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.533 y[1] (analytic) = 0 y[1] (numeric) = 1.3307126383582763493724804810988 absolute error = 1.3307126383582763493724804810988 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.534 y[1] (analytic) = 0 y[1] (numeric) = 1.3312408950439057310283089437653 absolute error = 1.3312408950439057310283089437653 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.535 y[1] (analytic) = 0 y[1] (numeric) = 1.3317691621618153574012324060246 absolute error = 1.3317691621618153574012324060246 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=705.7MB, alloc=4.6MB, time=75.21 x[1] = 2.536 y[1] (analytic) = 0 y[1] (numeric) = 1.3322974397380808497644179533747 absolute error = 1.3322974397380808497644179533747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.537 y[1] (analytic) = 0 y[1] (numeric) = 1.3328257277987730996432465851791 absolute error = 1.3328257277987730996432465851791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.538 y[1] (analytic) = 0 y[1] (numeric) = 1.3333540263699582751919234565094 absolute error = 1.3333540263699582751919234565094 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.539 y[1] (analytic) = 0 y[1] (numeric) = 1.3338823354776978275655156549252 absolute error = 1.3338823354776978275655156549252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.54 y[1] (analytic) = 0 y[1] (numeric) = 1.3344106551480484972874228595641 absolute error = 1.3344106551480484972874228595641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.541 y[1] (analytic) = 0 y[1] (numeric) = 1.3349389854070623206122862232436 absolute error = 1.3349389854070623206122862232436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.542 y[1] (analytic) = 0 y[1] (numeric) = 1.3354673262807866358843408116148 absolute error = 1.3354673262807866358843408116148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.543 y[1] (analytic) = 0 y[1] (numeric) = 1.3359956777952640898912169267572 absolute error = 1.3359956777952640898912169267572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.544 y[1] (analytic) = 0 y[1] (numeric) = 1.3365240399765326442131956359616 absolute error = 1.3365240399765326442131956359616 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.545 y[1] (analytic) = 0 y[1] (numeric) = 1.3370524128506255815679238198162 absolute error = 1.3370524128506255815679238198162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.546 y[1] (analytic) = 0 y[1] (numeric) = 1.3375807964435715121505940470903 absolute error = 1.3375807964435715121505940470903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.547 y[1] (analytic) = 0 y[1] (numeric) = 1.338109190781394379969594577297 absolute error = 1.338109190781394379969594577297 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.548 y[1] (analytic) = 0 y[1] (numeric) = 1.3386375958901134691776347852153 absolute error = 1.3386375958901134691776347852153 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=709.5MB, alloc=4.6MB, time=75.60 x[1] = 2.549 y[1] (analytic) = 0 y[1] (numeric) = 1.3391660117957434103983512950589 absolute error = 1.3391660117957434103983512950589 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.55 y[1] (analytic) = 0 y[1] (numeric) = 1.3396944385242941870484001053971 absolute error = 1.3396944385242941870484001053971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.551 y[1] (analytic) = 0 y[1] (numeric) = 1.3402228761017711416550399793609 absolute error = 1.3402228761017711416550399793609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.552 y[1] (analytic) = 0 y[1] (numeric) = 1.3407513245541749821692123681037 absolute error = 1.3407513245541749821692123681037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.553 y[1] (analytic) = 0 y[1] (numeric) = 1.3412797839075017882741231289348 absolute error = 1.3412797839075017882741231289348 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.554 y[1] (analytic) = 0 y[1] (numeric) = 1.3418082541877430176893312929984 absolute error = 1.3418082541877430176893312929984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.555 y[1] (analytic) = 0 y[1] (numeric) = 1.3423367354208855124703501308392 absolute error = 1.3423367354208855124703501308392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.556 y[1] (analytic) = 0 y[1] (numeric) = 1.3428652276329115053037657576713 absolute error = 1.3428652276329115053037657576713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.557 y[1] (analytic) = 0 y[1] (numeric) = 1.3433937308497986257978785136524 absolute error = 1.3433937308497986257978785136524 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.558 y[1] (analytic) = 0 y[1] (numeric) = 1.3439222450975199067688723479626 absolute error = 1.3439222450975199067688723479626 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.559 y[1] (analytic) = 0 y[1] (numeric) = 1.3444507704020437905225174289903 absolute error = 1.3444507704020437905225174289903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.56 y[1] (analytic) = 0 y[1] (numeric) = 1.3449793067893341351314111964449 absolute error = 1.3449793067893341351314111964449 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.561 y[1] (analytic) = 0 y[1] (numeric) = 1.3455078542853502207077630647391 absolute error = 1.3455078542853502207077630647391 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.562 y[1] (analytic) = 0 y[1] (numeric) = 1.3460364129160467556717279805181 absolute error = 1.3460364129160467556717279805181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=713.3MB, alloc=4.6MB, time=75.98 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.563 y[1] (analytic) = 0 y[1] (numeric) = 1.3465649827073738830152940307577 absolute error = 1.3465649827073738830152940307577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.564 y[1] (analytic) = 0 y[1] (numeric) = 1.3470935636852771865617292914063 absolute error = 1.3470935636852771865617292914063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.565 y[1] (analytic) = 0 y[1] (numeric) = 1.3476221558756976972205931001081 absolute error = 1.3476221558756976972205931001081 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.566 y[1] (analytic) = 0 y[1] (numeric) = 1.348150759304571899238316930119 absolute error = 1.348150759304571899238316930119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.567 y[1] (analytic) = 0 y[1] (numeric) = 1.3486793739978317364443600361077 absolute error = 1.3486793739978317364443600361077 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.568 y[1] (analytic) = 0 y[1] (numeric) = 1.3492079999814046184929450361263 absolute error = 1.3492079999814046184929450361263 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.569 y[1] (analytic) = 0 y[1] (numeric) = 1.3497366372812134271003785876369 absolute error = 1.3497366372812134271003785876369 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.57 y[1] (analytic) = 0 y[1] (numeric) = 1.3502652859231765222779623090899 absolute error = 1.3502652859231765222779623090899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.571 y[1] (analytic) = 0 y[1] (numeric) = 1.3507939459332077485604990921714 absolute error = 1.3507939459332077485604990921714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.572 y[1] (analytic) = 0 y[1] (numeric) = 1.351322617337216441230399943466 absolute error = 1.351322617337216441230399943466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.573 y[1] (analytic) = 0 y[1] (numeric) = 1.3518513001611074325373964879202 absolute error = 1.3518513001611074325373964879202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.574 y[1] (analytic) = 0 y[1] (numeric) = 1.352379994430781057913864260141 absolute error = 1.352379994430781057913864260141 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.575 y[1] (analytic) = 0 y[1] (numeric) = 1.3529087001721331621857619032219 absolute error = 1.3529087001721331621857619032219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=717.1MB, alloc=4.6MB, time=76.37 x[1] = 2.576 y[1] (analytic) = 0 y[1] (numeric) = 1.3534374174110551057791913884552 absolute error = 1.3534374174110551057791913884552 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.577 y[1] (analytic) = 0 y[1] (numeric) = 1.3539661461734337709225843629678 absolute error = 1.3539661461734337709225843629678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.578 y[1] (analytic) = 0 y[1] (numeric) = 1.3544948864851515678445197260028 absolute error = 1.3544948864851515678445197260028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.579 y[1] (analytic) = 0 y[1] (numeric) = 1.3550236383720864409671775282641 absolute error = 1.3550236383720864409671775282641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.58 y[1] (analytic) = 0 y[1] (numeric) = 1.3555524018601118750954342824484 absolute error = 1.3555524018601118750954342824484 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.581 y[1] (analytic) = 0 y[1] (numeric) = 1.3560811769750969016016047668003 absolute error = 1.3560811769750969016016047668003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.582 y[1] (analytic) = 0 y[1] (numeric) = 1.356609963742906104605835397252 absolute error = 1.356609963742906104605835397252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.583 y[1] (analytic) = 0 y[1] (numeric) = 1.3571387621893996271521542374409 absolute error = 1.3571387621893996271521542374409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.584 y[1] (analytic) = 0 y[1] (numeric) = 1.35766757234043317738018270964 absolute error = 1.35766757234043317738018270964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.585 y[1] (analytic) = 0 y[1] (numeric) = 1.3581963942218580346925140633886 absolute error = 1.3581963942218580346925140633886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.586 y[1] (analytic) = 0 y[1] (numeric) = 1.3587252278595210559177636523708 absolute error = 1.3587252278595210559177636523708 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.587 y[1] (analytic) = 0 y[1] (numeric) = 1.3592540732792646814692960638583 absolute error = 1.3592540732792646814692960638583 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.588 y[1] (analytic) = 0 y[1] (numeric) = 1.3597829305069269414996341388143 absolute error = 1.3597829305069269414996341388143 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=721.0MB, alloc=4.6MB, time=76.76 x[1] = 2.589 y[1] (analytic) = 0 y[1] (numeric) = 1.3603117995683414620505549145436 absolute error = 1.3603117995683414620505549145436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.59 y[1] (analytic) = 0 y[1] (numeric) = 1.3608406804893374711988775155697 absolute error = 1.3608406804893374711988775155697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.591 y[1] (analytic) = 0 y[1] (numeric) = 1.3613695732957398051979480122283 absolute error = 1.3613695732957398051979480122283 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.592 y[1] (analytic) = 0 y[1] (numeric) = 1.3618984780133689146148262602816 absolute error = 1.3618984780133689146148262602816 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.593 y[1] (analytic) = 0 y[1] (numeric) = 1.3624273946680408704631797286825 absolute error = 1.3624273946680408704631797286825 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.594 y[1] (analytic) = 0 y[1] (numeric) = 1.3629563232855673703318893164514 absolute error = 1.3629563232855673703318893164514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.595 y[1] (analytic) = 0 y[1] (numeric) = 1.3634852638917557445093721534733 absolute error = 1.3634852638917557445093721534733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.596 y[1] (analytic) = 0 y[1] (numeric) = 1.3640142165124089621036263738728 absolute error = 1.3640142165124089621036263738728 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.597 y[1] (analytic) = 0 y[1] (numeric) = 1.3645431811733256371580028444873 absolute error = 1.3645431811733256371580028444873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.598 y[1] (analytic) = 0 y[1] (numeric) = 1.3650721579003000347627088248292 absolute error = 1.3650721579003000347627088248292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.599 y[1] (analytic) = 0 y[1] (numeric) = 1.3656011467191220771620485288062 absolute error = 1.3656011467191220771620485288062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.6 y[1] (analytic) = 0 y[1] (numeric) = 1.3661301476555773498574055523586 absolute error = 1.3661301476555773498574055523586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.601 y[1] (analytic) = 0 y[1] (numeric) = 1.366659160735447107705972125069 absolute error = 1.366659160735447107705972125069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=724.8MB, alloc=4.6MB, time=77.14 x[1] = 2.602 y[1] (analytic) = 0 y[1] (numeric) = 1.3671881859845082810152301377066 absolute error = 1.3671881859845082810152301377066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.603 y[1] (analytic) = 0 y[1] (numeric) = 1.3677172234285334816331888915841 absolute error = 1.3677172234285334816331888915841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.604 y[1] (analytic) = 0 y[1] (numeric) = 1.3682462730932910090343845095294 absolute error = 1.3682462730932910090343845095294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.605 y[1] (analytic) = 0 y[1] (numeric) = 1.3687753350045448564016459422075 absolute error = 1.3687753350045448564016459422075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.606 y[1] (analytic) = 0 y[1] (numeric) = 1.3693044091880547167036324974705 absolute error = 1.3693044091880547167036324974705 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.607 y[1] (analytic) = 0 y[1] (numeric) = 1.369833495669575988768147814365 absolute error = 1.369833495669575988768147814365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.608 y[1] (analytic) = 0 y[1] (numeric) = 1.3703625944748597833512351973871 absolute error = 1.3703625944748597833512351973871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.609 y[1] (analytic) = 0 y[1] (numeric) = 1.3708917056296529292020592205421 absolute error = 1.3708917056296529292020592205421 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.61 y[1] (analytic) = 0 y[1] (numeric) = 1.3714208291596979791235785047468 absolute error = 1.3714208291596979791235785047468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.611 y[1] (analytic) = 0 y[1] (numeric) = 1.371949965090733216029014566097 absolute error = 1.371949965090733216029014566097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.612 y[1] (analytic) = 0 y[1] (numeric) = 1.3724791134484926589941216265199 absolute error = 1.3724791134484926589941216265199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.613 y[1] (analytic) = 0 y[1] (numeric) = 1.3730082742587060693052622723346 absolute error = 1.3730082742587060693052622723346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.614 y[1] (analytic) = 0 y[1] (numeric) = 1.3735374475470989565032938402581 absolute error = 1.3735374475470989565032938402581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.615 y[1] (analytic) = 0 y[1] (numeric) = 1.3740666333393925844232704044158 absolute error = 1.3740666333393925844232704044158 memory used=728.6MB, alloc=4.6MB, time=77.54 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.616 y[1] (analytic) = 0 y[1] (numeric) = 1.3745958316613039772299652319472 absolute error = 1.3745958316613039772299652319472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.617 y[1] (analytic) = 0 y[1] (numeric) = 1.3751250425385459254492185688362 absolute error = 1.3751250425385459254492185688362 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.618 y[1] (analytic) = 0 y[1] (numeric) = 1.3756542659968269919951156116453 absolute error = 1.3756542659968269919951156116453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.619 y[1] (analytic) = 0 y[1] (numeric) = 1.3761835020618515181929995148889 absolute error = 1.3761835020618515181929995148889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.62 y[1] (analytic) = 0 y[1] (numeric) = 1.3767127507593196297983242778482 absolute error = 1.3767127507593196297983242778482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.621 y[1] (analytic) = 0 y[1] (numeric) = 1.3772420121149272430113523487037 absolute error = 1.3772420121149272430113523487037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.622 y[1] (analytic) = 0 y[1] (numeric) = 1.3777712861543660704877017779463 absolute error = 1.3777712861543660704877017779463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.623 y[1] (analytic) = 0 y[1] (numeric) = 1.3783005729033236273447477471185 absolute error = 1.3783005729033236273447477471185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.624 y[1] (analytic) = 0 y[1] (numeric) = 1.3788298723874832371638832930394 absolute error = 1.3788298723874832371638832930394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.625 y[1] (analytic) = 0 y[1] (numeric) = 1.3793591846325240379886440417756 absolute error = 1.3793591846325240379886440417756 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.626 y[1] (analytic) = 0 y[1] (numeric) = 1.3798885096641209883187017607393 absolute error = 1.3798885096641209883187017607393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.627 y[1] (analytic) = 0 y[1] (numeric) = 1.3804178475079448730997315314212 absolute error = 1.3804178475079448730997315314212 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.628 y[1] (analytic) = 0 y[1] (numeric) = 1.380947198189662309709157339401 absolute error = 1.380947198189662309709157339401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=732.4MB, alloc=4.6MB, time=77.92 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.629 y[1] (analytic) = 0 y[1] (numeric) = 1.3814765617349357539377808724224 absolute error = 1.3814765617349357539377808724224 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.63 y[1] (analytic) = 0 y[1] (numeric) = 1.3820059381694235059672983114729 absolute error = 1.3820059381694235059672983114729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.631 y[1] (analytic) = 0 y[1] (numeric) = 1.3825353275187797163437098939688 absolute error = 1.3825353275187797163437098939688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.632 y[1] (analytic) = 0 y[1] (numeric) = 1.3830647298086543919466270223161 absolute error = 1.3830647298086543919466270223161 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.633 y[1] (analytic) = 0 y[1] (numeric) = 1.3835941450646934019544816852968 absolute error = 1.3835941450646934019544816852968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.634 y[1] (analytic) = 0 y[1] (numeric) = 1.3841235733125384838056429539155 absolute error = 1.3841235733125384838056429539155 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.635 y[1] (analytic) = 0 y[1] (numeric) = 1.3846530145778272491554453075387 absolute error = 1.3846530145778272491554453075387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.636 y[1] (analytic) = 0 y[1] (numeric) = 1.3851824688861931898291335403611 absolute error = 1.3851824688861931898291335403611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.637 y[1] (analytic) = 0 y[1] (numeric) = 1.3857119362632656837707289924466 absolute error = 1.3857119362632656837707289924466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.638 y[1] (analytic) = 0 y[1] (numeric) = 1.3862414167346700009878218438127 absolute error = 1.3862414167346700009878218438127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.639 y[1] (analytic) = 0 y[1] (numeric) = 1.3867709103260273094922942042558 absolute error = 1.3867709103260273094922942042558 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.64 y[1] (analytic) = 0 y[1] (numeric) = 1.3873004170629546812369787258529 absolute error = 1.3873004170629546812369787258529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.641 y[1] (analytic) = 0 y[1] (numeric) = 1.3878299369710650980482574593218 absolute error = 1.3878299369710650980482574593218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=736.2MB, alloc=4.6MB, time=78.31 x[1] = 2.642 y[1] (analytic) = 0 y[1] (numeric) = 1.3883594700759674575546056696755 absolute error = 1.3883594700759674575546056696755 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.643 y[1] (analytic) = 0 y[1] (numeric) = 1.3888890164032665791110853208714 absolute error = 1.3888890164032665791110853208714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.644 y[1] (analytic) = 0 y[1] (numeric) = 1.3894185759785632097197929334252 absolute error = 1.3894185759785632097197929334252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.645 y[1] (analytic) = 0 y[1] (numeric) = 1.3899481488274540299462665132408 absolute error = 1.3899481488274540299462665132408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.646 y[1] (analytic) = 0 y[1] (numeric) = 1.3904777349755316598318562441953 absolute error = 1.3904777349755316598318562441953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.647 y[1] (analytic) = 0 y[1] (numeric) = 1.3910073344483846648020636313146 absolute error = 1.3910073344483846648020636313146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.648 y[1] (analytic) = 0 y[1] (numeric) = 1.39153694727159756157085377568 absolute error = 1.39153694727159756157085377568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.649 y[1] (analytic) = 0 y[1] (numeric) = 1.3920665734707508240409454565199 absolute error = 1.3920665734707508240409454565199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.65 y[1] (analytic) = 0 y[1] (numeric) = 1.3925962130714208892000836902613 absolute error = 1.3925962130714208892000836902613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.651 y[1] (analytic) = 0 y[1] (numeric) = 1.3931258660991801630132994306473 absolute error = 1.3931258660991801630132994306473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.652 y[1] (analytic) = 0 y[1] (numeric) = 1.3936555325795970263111610683627 absolute error = 1.3936555325795970263111610683627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.653 y[1] (analytic) = 0 y[1] (numeric) = 1.3941852125382358406740223829587 absolute error = 1.3941852125382358406740223829587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.654 y[1] (analytic) = 0 y[1] (numeric) = 1.3947149060006569543122715942203 absolute error = 1.3947149060006569543122715942203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=740.0MB, alloc=4.6MB, time=78.71 x[1] = 2.655 y[1] (analytic) = 0 y[1] (numeric) = 1.3952446129924167079425861544839 absolute error = 1.3952446129924167079425861544839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.656 y[1] (analytic) = 0 y[1] (numeric) = 1.3957743335390674406601979177841 absolute error = 1.3957743335390674406601979177841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.657 y[1] (analytic) = 0 y[1] (numeric) = 1.396304067666157495807173316087 absolute error = 1.396304067666157495807173316087 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.658 y[1] (analytic) = 0 y[1] (numeric) = 1.3968338153992312268367131672561 absolute error = 1.3968338153992312268367131672561 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.659 y[1] (analytic) = 0 y[1] (numeric) = 1.3973635767638290031734767337914 absolute error = 1.3973635767638290031734767337914 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.66 y[1] (analytic) = 0 y[1] (numeric) = 1.3978933517854872160699346457877 absolute error = 1.3978933517854872160699346457877 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.661 y[1] (analytic) = 0 y[1] (numeric) = 1.3984231404897382844587552959687 absolute error = 1.3984231404897382844587552959687 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.662 y[1] (analytic) = 0 y[1] (numeric) = 1.3989529429021106608012293090752 absolute error = 1.3989529429021106608012293090752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.663 y[1] (analytic) = 0 y[1] (numeric) = 1.3994827590481288369317366823129 absolute error = 1.3994827590481288369317366823129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.664 y[1] (analytic) = 0 y[1] (numeric) = 1.4000125889533133498982611880028 absolute error = 1.4000125889533133498982611880028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.665 y[1] (analytic) = 0 y[1] (numeric) = 1.400542432643180787798956624021 absolute error = 1.400542432643180787798956624021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.666 y[1] (analytic) = 0 y[1] (numeric) = 1.4010722901432437956147694920683 absolute error = 1.4010722901432437956147694920683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.667 y[1] (analytic) = 0 y[1] (numeric) = 1.4016021614790110810381226782701 absolute error = 1.4016021614790110810381226782701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=743.8MB, alloc=4.6MB, time=79.10 x[1] = 2.668 y[1] (analytic) = 0 y[1] (numeric) = 1.4021320466759874202976647050765 absolute error = 1.4021320466759874202976647050765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.669 y[1] (analytic) = 0 y[1] (numeric) = 1.4026619457596736639790891179089 absolute error = 1.4026619457596736639790891179089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.67 y[1] (analytic) = 0 y[1] (numeric) = 1.4031918587555667428420285644851 absolute error = 1.4031918587555667428420285644851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.671 y[1] (analytic) = 0 y[1] (numeric) = 1.4037217856891596736330281192475 absolute error = 1.4037217856891596736330281192475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.672 y[1] (analytic) = 0 y[1] (numeric) = 1.4042517265859415648946023998202 absolute error = 1.4042517265859415648946023998202 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.673 y[1] (analytic) = 0 y[1] (numeric) = 1.4047816814713976227703810169298 absolute error = 1.4047816814713976227703810169298 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.674 y[1] (analytic) = 0 y[1] (numeric) = 1.4053116503710091568063468937414 absolute error = 1.4053116503710091568063468937414 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.675 y[1] (analytic) = 0 y[1] (numeric) = 1.4058416333102535857481719850871 absolute error = 1.4058416333102535857481719850871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.676 y[1] (analytic) = 0 y[1] (numeric) = 1.406371630314604443334654921597 absolute error = 1.406371630314604443334654921597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.677 y[1] (analytic) = 0 y[1] (numeric) = 1.406901641409531384087265098283 absolute error = 1.406901641409531384087265098283 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.678 y[1] (analytic) = 0 y[1] (numeric) = 1.4074316666205001890957977216754 absolute error = 1.4074316666205001890957977216754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.679 y[1] (analytic) = 0 y[1] (numeric) = 1.4079617059729727718001443241693 absolute error = 1.4079617059729727718001443241693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.68 y[1] (analytic) = 0 y[1] (numeric) = 1.4084917594924071837681832488009 absolute error = 1.4084917594924071837681832488009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.681 y[1] (analytic) = 0 y[1] (numeric) = 1.4090218272042576204697946022488 absolute error = 1.4090218272042576204697946022488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=747.7MB, alloc=4.6MB, time=79.49 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.682 y[1] (analytic) = 0 y[1] (numeric) = 1.4095519091339744270470041684342 absolute error = 1.4095519091339744270470041684342 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.683 y[1] (analytic) = 0 y[1] (numeric) = 1.4100820053070041040802607696824 absolute error = 1.4100820053070041040802607696824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.684 y[1] (analytic) = 0 y[1] (numeric) = 1.4106121157487893133508515570056 absolute error = 1.4106121157487893133508515570056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.685 y[1] (analytic) = 0 y[1] (numeric) = 1.4111422404847688835994597056692 absolute error = 1.4111422404847688835994597056692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.686 y[1] (analytic) = 0 y[1] (numeric) = 1.4116723795403778162808689868172 absolute error = 1.4116723795403778162808689868172 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.687 y[1] (analytic) = 0 y[1] (numeric) = 1.4122025329410472913148196805516 absolute error = 1.4122025329410472913148196805516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.688 y[1] (analytic) = 0 y[1] (numeric) = 1.412732700712204672833020290488 absolute error = 1.412732700712204672833020290488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.689 y[1] (analytic) = 0 y[1] (numeric) = 1.4132628828792735149223195144453 absolute error = 1.4132628828792735149223195144453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.69 y[1] (analytic) = 0 y[1] (numeric) = 1.4137930794676735673640429205706 absolute error = 1.4137930794676735673640429205706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.691 y[1] (analytic) = 0 y[1] (numeric) = 1.4143232905028207813694987728507 absolute error = 1.4143232905028207813694987728507 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.692 y[1] (analytic) = 0 y[1] (numeric) = 1.4148535160101273153116574446214 absolute error = 1.4148535160101273153116574446214 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.693 y[1] (analytic) = 0 y[1] (numeric) = 1.4153837560150015404530088533511 absolute error = 1.4153837560150015404530088533511 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.694 y[1] (analytic) = 0 y[1] (numeric) = 1.4159140105428480466696023446504 absolute error = 1.4159140105428480466696023446504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=751.5MB, alloc=4.6MB, time=79.88 x[1] = 2.695 y[1] (analytic) = 0 y[1] (numeric) = 1.4164442796190676481712734481402 absolute error = 1.4164442796190676481712734481402 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.696 y[1] (analytic) = 0 y[1] (numeric) = 1.4169745632690573892180619225009 absolute error = 1.4169745632690573892180619225009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.697 y[1] (analytic) = 0 y[1] (numeric) = 1.4175048615182105498328255017238 absolute error = 1.4175048615182105498328255017238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.698 y[1] (analytic) = 0 y[1] (numeric) = 1.4180351743919166515100537492878 absolute error = 1.4180351743919166515100537492878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.699 y[1] (analytic) = 0 y[1] (numeric) = 1.4185655019155614629208864217007 absolute error = 1.4185655019155614629208864217007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.7 y[1] (analytic) = 0 y[1] (numeric) = 1.4190958441145270056143407375619 absolute error = 1.4190958441145270056143407375619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.701 y[1] (analytic) = 0 y[1] (numeric) = 1.4196262010141915597147519430326 absolute error = 1.4196262010141915597147519430326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.702 y[1] (analytic) = 0 y[1] (numeric) = 1.4201565726399296696154315593353 absolute error = 1.4201565726399296696154315593353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.703 y[1] (analytic) = 0 y[1] (numeric) = 1.4206869590171121496685476926469 absolute error = 1.4206869590171121496685476926469 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.704 y[1] (analytic) = 0 y[1] (numeric) = 1.4212173601711060898712317815005 absolute error = 1.4212173601711060898712317815005 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.705 y[1] (analytic) = 0 y[1] (numeric) = 1.4217477761272748615479161515707 absolute error = 1.4217477761272748615479161515707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.706 y[1] (analytic) = 0 y[1] (numeric) = 1.4222782069109781230289067424814 absolute error = 1.4222782069109781230289067424814 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.707 y[1] (analytic) = 0 y[1] (numeric) = 1.42280865254757182532519536605 absolute error = 1.42280865254757182532519536605 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=755.3MB, alloc=4.6MB, time=80.27 x[1] = 2.708 y[1] (analytic) = 0 y[1] (numeric) = 1.4233391130624082177995158501622 absolute error = 1.4233391130624082177995158501622 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.709 y[1] (analytic) = 0 y[1] (numeric) = 1.423869588480835853833648417261 absolute error = 1.423869588480835853833648417261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.71 y[1] (analytic) = 0 y[1] (numeric) = 1.4244000788281995964919766412293 absolute error = 1.4244000788281995964919766412293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.711 y[1] (analytic) = 0 y[1] (numeric) = 1.4249305841298406241813013212488 absolute error = 1.4249305841298406241813013212488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.712 y[1] (analytic) = 0 y[1] (numeric) = 1.4254611044110964363069156060301 absolute error = 1.4254611044110964363069156060301 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.713 y[1] (analytic) = 0 y[1] (numeric) = 1.4259916396973008589249456966272 absolute error = 1.4259916396973008589249456966272 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.714 y[1] (analytic) = 0 y[1] (numeric) = 1.4265221900137840503909614508753 absolute error = 1.4265221900137840503909614508753 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.715 y[1] (analytic) = 0 y[1] (numeric) = 1.4270527553858725070048612073254 absolute error = 1.4270527553858725070048612073254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.716 y[1] (analytic) = 0 y[1] (numeric) = 1.4275833358388890686520351413894 absolute error = 1.4275833358388890686520351413894 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.717 y[1] (analytic) = 0 y[1] (numeric) = 1.4281139313981529244408114612596 absolute error = 1.4281139313981529244408114612596 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.718 y[1] (analytic) = 0 y[1] (numeric) = 1.42864454208897961833618974602 absolute error = 1.42864454208897961833618974602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.719 y[1] (analytic) = 0 y[1] (numeric) = 1.4291751679366810547898657232331 absolute error = 1.4291751679366810547898657232331 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.72 y[1] (analytic) = 0 y[1] (numeric) = 1.4297058089665655043665517781542 absolute error = 1.4297058089665655043665517781542 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=759.1MB, alloc=4.6MB, time=80.65 x[1] = 2.721 y[1] (analytic) = 0 y[1] (numeric) = 1.4302364652039376093665974816062 absolute error = 1.4302364652039376093665974816062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.722 y[1] (analytic) = 0 y[1] (numeric) = 1.4307671366740983894449144184304 absolute error = 1.4307671366740983894449144184304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.723 y[1] (analytic) = 0 y[1] (numeric) = 1.4312978234023452472262095933248 absolute error = 1.4312978234023452472262095933248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.724 y[1] (analytic) = 0 y[1] (numeric) = 1.4318285254139719739165316857799 absolute error = 1.4318285254139719739165316857799 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.725 y[1] (analytic) = 0 y[1] (numeric) = 1.4323592427342687549111344207305 absolute error = 1.4323592427342687549111344207305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.726 y[1] (analytic) = 0 y[1] (numeric) = 1.4328899753885221753986613164575 absolute error = 1.4328899753885221753986613164575 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.727 y[1] (analytic) = 0 y[1] (numeric) = 1.4334207234020152259616560661946 absolute error = 1.4334207234020152259616560661946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.728 y[1] (analytic) = 0 y[1] (numeric) = 1.4339514868000273081734028048266 absolute error = 1.4339514868000273081734028048266 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.729 y[1] (analytic) = 0 y[1] (numeric) = 1.4344822656078342401911005070013 absolute error = 1.4344822656078342401911005070013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.73 y[1] (analytic) = 0 y[1] (numeric) = 1.4350130598507082623453757579231 absolute error = 1.4350130598507082623453757579231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.731 y[1] (analytic) = 0 y[1] (numeric) = 1.4355438695539180427261381330452 absolute error = 1.4355438695539180427261381330452 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.732 y[1] (analytic) = 0 y[1] (numeric) = 1.4360746947427286827647824178404 absolute error = 1.4360746947427286827647824178404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.733 y[1] (analytic) = 0 y[1] (numeric) = 1.4366055354424017228127418937921 absolute error = 1.4366055354424017228127418937921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.734 y[1] (analytic) = 0 y[1] (numeric) = 1.4371363916781951477163969117238 absolute error = 1.4371363916781951477163969117238 relative error = -1 % Correct digits = -1 h = 0.001 memory used=762.9MB, alloc=4.6MB, time=81.06 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.735 y[1] (analytic) = 0 y[1] (numeric) = 1.4376672634753633923883429685651 absolute error = 1.4376672634753633923883429685651 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.736 y[1] (analytic) = 0 y[1] (numeric) = 1.4381981508591573473750224986389 absolute error = 1.4381981508591573473750224986389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.737 y[1] (analytic) = 0 y[1] (numeric) = 1.4387290538548243644207245855513 absolute error = 1.4387290538548243644207245855513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.738 y[1] (analytic) = 0 y[1] (numeric) = 1.4392599724876082620279567957674 absolute error = 1.4392599724876082620279567957674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.739 y[1] (analytic) = 0 y[1] (numeric) = 1.4397909067827493310141933299641 absolute error = 1.4397909067827493310141933299641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.74 y[1] (analytic) = 0 y[1] (numeric) = 1.440321856765484340065003683271 absolute error = 1.440321856765484340065003683271 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.741 y[1] (analytic) = 0 y[1] (numeric) = 1.4408528224610465412835660005305 absolute error = 1.4408528224610465412835660005305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.742 y[1] (analytic) = 0 y[1] (numeric) = 1.4413838038946656757365693077419 absolute error = 1.4413838038946656757365693077419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.743 y[1] (analytic) = 0 y[1] (numeric) = 1.441914801091567978996508795891 absolute error = 1.441914801091567978996508795891 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.744 y[1] (analytic) = 0 y[1] (numeric) = 1.4424458140769761866803783284127 absolute error = 1.4424458140769761866803783284127 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.745 y[1] (analytic) = 0 y[1] (numeric) = 1.4429768428761095399847643385858 absolute error = 1.4429768428761095399847643385858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.746 y[1] (analytic) = 0 y[1] (numeric) = 1.4435078875141837912173452782189 absolute error = 1.4435078875141837912173452782189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.747 y[1] (analytic) = 0 y[1] (numeric) = 1.4440389480164112093248007740528 absolute error = 1.4440389480164112093248007740528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=766.7MB, alloc=4.6MB, time=81.45 x[1] = 2.748 y[1] (analytic) = 0 y[1] (numeric) = 1.4445700244080005854171346433786 absolute error = 1.4445700244080005854171346433786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.749 y[1] (analytic) = 0 y[1] (numeric) = 1.4451011167141572382884159154517 absolute error = 1.4451011167141572382884159154517 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.75 y[1] (analytic) = 0 y[1] (numeric) = 1.4456322249600830199339420003678 absolute error = 1.4456322249600830199339420003678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.751 y[1] (analytic) = 0 y[1] (numeric) = 1.446163349170976321063828142165 absolute error = 1.446163349170976321063828142165 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.752 y[1] (analytic) = 0 y[1] (numeric) = 1.4466944893720320766130272880145 absolute error = 1.4466944893720320766130272880145 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.753 y[1] (analytic) = 0 y[1] (numeric) = 1.4472256455884417712477845004744 absolute error = 1.4472256455884417712477845004744 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.754 y[1] (analytic) = 0 y[1] (numeric) = 1.4477568178453934448685300348941 absolute error = 1.4477568178453934448685300348941 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.755 y[1] (analytic) = 0 y[1] (numeric) = 1.4482880061680716981092151991821 absolute error = 1.4482880061680716981092151991821 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.756 y[1] (analytic) = 0 y[1] (numeric) = 1.4488192105816576978330951082782 absolute error = 1.4488192105816576978330951082782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.757 y[1] (analytic) = 0 y[1] (numeric) = 1.4493504311113291826249624408088 absolute error = 1.4493504311113291826249624408088 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.758 y[1] (analytic) = 0 y[1] (numeric) = 1.449881667782260468279836300548 absolute error = 1.449881667782260468279836300548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.759 y[1] (analytic) = 0 y[1] (numeric) = 1.4504129206196224532881102804567 absolute error = 1.4504129206196224532881102804567 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.76 y[1] (analytic) = 0 y[1] (numeric) = 1.4509441896485826243171638222313 absolute error = 1.4509441896485826243171638222313 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=770.6MB, alloc=4.6MB, time=81.84 x[1] = 2.761 y[1] (analytic) = 0 y[1] (numeric) = 1.4514754748943050616894409594575 absolute error = 1.4514754748943050616894409594575 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.762 y[1] (analytic) = 0 y[1] (numeric) = 1.4520067763819504448570005276356 absolute error = 1.4520067763819504448570005276356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.763 y[1] (analytic) = 0 y[1] (numeric) = 1.4525380941366760578725419195233 absolute error = 1.4525380941366760578725419195233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.764 y[1] (analytic) = 0 y[1] (numeric) = 1.4530694281836357948569104594275 absolute error = 1.4530694281836357948569104594275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.765 y[1] (analytic) = 0 y[1] (numeric) = 1.4536007785479801654630864652672 absolute error = 1.4536007785479801654630864652672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.766 y[1] (analytic) = 0 y[1] (numeric) = 1.4541321452548563003366620624313 absolute error = 1.4541321452548563003366620624313 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.767 y[1] (analytic) = 0 y[1] (numeric) = 1.4546635283294079565728098086585 absolute error = 1.4546635283294079565728098086585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.768 y[1] (analytic) = 0 y[1] (numeric) = 1.4551949277967755231697471843821 absolute error = 1.4551949277967755231697471843821 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.769 y[1] (analytic) = 0 y[1] (numeric) = 1.4557263436820960264787009981994 absolute error = 1.4557263436820960264787009981994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.77 y[1] (analytic) = 0 y[1] (numeric) = 1.4562577760105031356503757523548 absolute error = 1.4562577760105031356503757523548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.771 y[1] (analytic) = 0 y[1] (numeric) = 1.4567892248071271680779300083568 absolute error = 1.4567892248071271680779300083568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.772 y[1] (analytic) = 0 y[1] (numeric) = 1.4573206900970950948364647880906 absolute error = 1.4573206900970950948364647880906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.773 y[1] (analytic) = 0 y[1] (numeric) = 1.4578521719055305461190280410353 absolute error = 1.4578521719055305461190280410353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=774.4MB, alloc=4.6MB, time=82.24 x[1] = 2.774 y[1] (analytic) = 0 y[1] (numeric) = 1.4583836702575538166691392034468 absolute error = 1.4583836702575538166691392034468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.775 y[1] (analytic) = 0 y[1] (numeric) = 1.4589151851782818712098378706301 absolute error = 1.4589151851782818712098378706301 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.776 y[1] (analytic) = 0 y[1] (numeric) = 1.4594467166928283498692605986913 absolute error = 1.4594467166928283498692605986913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.777 y[1] (analytic) = 0 y[1] (numeric) = 1.4599782648263035736027498474328 absolute error = 1.4599782648263035736027498474328 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.778 y[1] (analytic) = 0 y[1] (numeric) = 1.4605098296038145496114990713379 absolute error = 1.4605098296038145496114990713379 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.779 y[1] (analytic) = 0 y[1] (numeric) = 1.4610414110504649767577379608771 absolute error = 1.4610414110504649767577379608771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.78 y[1] (analytic) = 0 y[1] (numeric) = 1.4615730091913552509764618316631 absolute error = 1.4615730091913552509764618316631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.781 y[1] (analytic) = 0 y[1] (numeric) = 1.4621046240515824706837091542839 absolute error = 1.4621046240515824706837091542839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.782 y[1] (analytic) = 0 y[1] (numeric) = 1.4626362556562404421813912129482 absolute error = 1.4626362556562404421813912129482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.783 y[1] (analytic) = 0 y[1] (numeric) = 1.4631679040304196850586778763954 absolute error = 1.4631679040304196850586778763954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.784 y[1] (analytic) = 0 y[1] (numeric) = 1.4636995691992074375899434598405 absolute error = 1.4636995691992074375899434598405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.785 y[1] (analytic) = 0 y[1] (numeric) = 1.4642312511876876621292766520543 absolute error = 1.4642312511876876621292766520543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.786 y[1] (analytic) = 0 y[1] (numeric) = 1.4647629500209410505015584770119 absolute error = 1.4647629500209410505015584770119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=778.2MB, alloc=4.6MB, time=82.63 x[1] = 2.787 y[1] (analytic) = 0 y[1] (numeric) = 1.4652946657240450293901122548856 absolute error = 1.4652946657240450293901122548856 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.788 y[1] (analytic) = 0 y[1] (numeric) = 1.4658263983220737657209295225039 absolute error = 1.4658263983220737657209295225039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.789 y[1] (analytic) = 0 y[1] (numeric) = 1.4663581478400981720434758687549 absolute error = 1.4663581478400981720434758687549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.79 y[1] (analytic) = 0 y[1] (numeric) = 1.4668899143031859119080806357715 absolute error = 1.4668899143031859119080806357715 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.791 y[1] (analytic) = 0 y[1] (numeric) = 1.4674216977364014052399144321051 absolute error = 1.4674216977364014052399144321051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.792 y[1] (analytic) = 0 y[1] (numeric) = 1.467953498164805833709558399467 absolute error = 1.467953498164805833709558399467 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.793 y[1] (analytic) = 0 y[1] (numeric) = 1.468485315613457146100169169999 absolute error = 1.468485315613457146100169169999 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.794 y[1] (analytic) = 0 y[1] (numeric) = 1.4690171501074100636712434464215 absolute error = 1.4690171501074100636712434464215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.795 y[1] (analytic) = 0 y[1] (numeric) = 1.4695490016717160855189861328016 absolute error = 1.4695490016717160855189861328016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.796 y[1] (analytic) = 0 y[1] (numeric) = 1.470080870331423493933285939083 absolute error = 1.470080870331423493933285939083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.797 y[1] (analytic) = 0 y[1] (numeric) = 1.470612756111577359751302377929 absolute error = 1.470612756111577359751302377929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.798 y[1] (analytic) = 0 y[1] (numeric) = 1.4711446590372195477076680678408 absolute error = 1.4711446590372195477076680678408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.799 y[1] (analytic) = 0 y[1] (numeric) = 1.4716765791333887217813102519355 absolute error = 1.4716765791333887217813102519355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.8 y[1] (analytic) = 0 y[1] (numeric) = 1.4722085164251203505388954371939 absolute error = 1.4722085164251203505388954371939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=782.0MB, alloc=4.6MB, time=83.05 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.801 y[1] (analytic) = 0 y[1] (numeric) = 1.4727404709374467124749010544209 absolute error = 1.4727404709374467124749010544209 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.802 y[1] (analytic) = 0 y[1] (numeric) = 1.4732724426953969013483180346022 absolute error = 1.4732724426953969013483180346022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.803 y[1] (analytic) = 0 y[1] (numeric) = 1.4738044317239968315159881927863 absolute error = 1.4738044317239968315159881927863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.804 y[1] (analytic) = 0 y[1] (numeric) = 1.4743364380482692432625803060729 absolute error = 1.4743364380482692432625803060729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.805 y[1] (analytic) = 0 y[1] (numeric) = 1.4748684616932337081272087677492 absolute error = 1.4748684616932337081272087677492 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.806 y[1] (analytic) = 0 y[1] (numeric) = 1.4754005026839066342266986950803 absolute error = 1.4754005026839066342266986950803 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.807 y[1] (analytic) = 0 y[1] (numeric) = 1.4759325610453012715755013637312 absolute error = 1.4759325610453012715755013637312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.808 y[1] (analytic) = 0 y[1] (numeric) = 1.476464636802427717402263837278 absolute error = 1.476464636802427717402263837278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.809 y[1] (analytic) = 0 y[1] (numeric) = 1.4769967299802929214630566557487 absolute error = 1.4769967299802929214630566557487 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.81 y[1] (analytic) = 0 y[1] (numeric) = 1.4775288406039006913512634426273 absolute error = 1.4775288406039006913512634426273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.811 y[1] (analytic) = 0 y[1] (numeric) = 1.4780609686982516978041362852501 absolute error = 1.4780609686982516978041362852501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.812 y[1] (analytic) = 0 y[1] (numeric) = 1.47859311428834348000602073903 absolute error = 1.47859311428834348000602073903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.813 y[1] (analytic) = 0 y[1] (numeric) = 1.4791252773991704508882543014515 absolute error = 1.4791252773991704508882543014515 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=785.8MB, alloc=4.6MB, time=83.46 x[1] = 2.814 y[1] (analytic) = 0 y[1] (numeric) = 1.4796574580557239024257421972999 absolute error = 1.4796574580557239024257421972999 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.815 y[1] (analytic) = 0 y[1] (numeric) = 1.4801896562829920109302143121071 absolute error = 1.4801896562829920109302143121071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.816 y[1] (analytic) = 0 y[1] (numeric) = 1.4807218721059598423401671063296 absolute error = 1.4807218721059598423401671063296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.817 y[1] (analytic) = 0 y[1] (numeric) = 1.4812541055496093575074943383072 absolute error = 1.4812541055496093575074943383072 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.818 y[1] (analytic) = 0 y[1] (numeric) = 1.4817863566389194174808104195951 absolute error = 1.4817863566389194174808104195951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.819 y[1] (analytic) = 0 y[1] (numeric) = 1.4823186253988657887854702218093 absolute error = 1.4823186253988657887854702218093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.82 y[1] (analytic) = 0 y[1] (numeric) = 1.4828509118544211487002891496804 absolute error = 1.4828509118544211487002891496804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.821 y[1] (analytic) = 0 y[1] (numeric) = 1.4833832160305550905309672905722 absolute error = 1.4833832160305550905309672905722 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.822 y[1] (analytic) = 0 y[1] (numeric) = 1.483915537952234128880221446288 absolute error = 1.483915537952234128880221446288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.823 y[1] (analytic) = 0 y[1] (numeric) = 1.4844478776444217049146288485627 absolute error = 1.4844478776444217049146288485627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.824 y[1] (analytic) = 0 y[1] (numeric) = 1.4849802351320781916281863552163 absolute error = 1.4849802351320781916281863552163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.825 y[1] (analytic) = 0 y[1] (numeric) = 1.4855126104401608991025889195336 absolute error = 1.4855126104401608991025889195336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.826 y[1] (analytic) = 0 y[1] (numeric) = 1.4860450035936240797642311210242 absolute error = 1.4860450035936240797642311210242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=789.6MB, alloc=4.6MB, time=83.87 x[1] = 2.827 y[1] (analytic) = 0 y[1] (numeric) = 1.486577414617418933637935541318 absolute error = 1.486577414617418933637935541318 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.828 y[1] (analytic) = 0 y[1] (numeric) = 1.4871098435364936135974117645548 absolute error = 1.4871098435364936135974117645548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.829 y[1] (analytic) = 0 y[1] (numeric) = 1.4876422903757932306124497772387 absolute error = 1.4876422903757932306124497772387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.83 y[1] (analytic) = 0 y[1] (numeric) = 1.4881747551602598589928515381437 absolute error = 1.4881747551602598589928515381437 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.831 y[1] (analytic) = 0 y[1] (numeric) = 1.4887072379148325416291044844831 absolute error = 1.4887072379148325416291044844831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.832 y[1] (analytic) = 0 y[1] (numeric) = 1.4892397386644472952298007361819 absolute error = 1.4892397386644472952298007361819 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.833 y[1] (analytic) = 0 y[1] (numeric) = 1.4897722574340371155558057557296 absolute error = 1.4897722574340371155558057557296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.834 y[1] (analytic) = 0 y[1] (numeric) = 1.490304794248531982651180216732 absolute error = 1.490304794248531982651180216732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.835 y[1] (analytic) = 0 y[1] (numeric) = 1.4908373491328588660708588299284 absolute error = 1.4908373491328588660708588299284 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.836 y[1] (analytic) = 0 y[1] (numeric) = 1.4913699221119417301050898710957 absolute error = 1.4913699221119417301050898710957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.837 y[1] (analytic) = 0 y[1] (numeric) = 1.491902513210701539000639150921 absolute error = 1.491902513210701539000639150921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.838 y[1] (analytic) = 0 y[1] (numeric) = 1.492435122454056262178762162591 absolute error = 1.492435122454056262178762162591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.839 y[1] (analytic) = 0 y[1] (numeric) = 1.4929677498669208794499481385191 absolute error = 1.4929677498669208794499481385191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=793.4MB, alloc=4.6MB, time=84.25 x[1] = 2.84 y[1] (analytic) = 0 y[1] (numeric) = 1.4935003954742073862254397433105 absolute error = 1.4935003954742073862254397433105 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.841 y[1] (analytic) = 0 y[1] (numeric) = 1.4940330593008247987255321257497 absolute error = 1.4940330593008247987255321257497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.842 y[1] (analytic) = 0 y[1] (numeric) = 1.4945657413716791591846550482868 absolute error = 1.4945657413716791591846550482868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.843 y[1] (analytic) = 0 y[1] (numeric) = 1.4950984417116735410532418081953 absolute error = 1.4950984417116735410532418081953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.844 y[1] (analytic) = 0 y[1] (numeric) = 1.4956311603457080541963886602777 absolute error = 1.4956311603457080541963886602777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.845 y[1] (analytic) = 0 y[1] (numeric) = 1.4961638972986798500893084467051 absolute error = 1.4961638972986798500893084467051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.846 y[1] (analytic) = 0 y[1] (numeric) = 1.4966966525954831270095821352904 absolute error = 1.4966966525954831270095821352904 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.847 y[1] (analytic) = 0 y[1] (numeric) = 1.497229426261009135226211963219 absolute error = 1.497229426261009135226211963219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.848 y[1] (analytic) = 0 y[1] (numeric) = 1.4977622183201461821854798789852 absolute error = 1.4977622183201461821854798789852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.849 y[1] (analytic) = 0 y[1] (numeric) = 1.4982950287977796376936149710183 absolute error = 1.4982950287977796376936149710183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.85 y[1] (analytic) = 0 y[1] (numeric) = 1.4988278577187919390962735672207 absolute error = 1.4988278577187919390962735672207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.851 y[1] (analytic) = 0 y[1] (numeric) = 1.4993607051080625964548356853859 absolute error = 1.4993607051080625964548356853859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.852 y[1] (analytic) = 0 y[1] (numeric) = 1.4998935709904681977195215102162 absolute error = 1.4998935709904681977195215102162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.853 y[1] (analytic) = 0 y[1] (numeric) = 1.5004264553908824138993315684164 absolute error = 1.5004264553908824138993315684164 relative error = -1 % Correct digits = -1 h = 0.001 memory used=797.3MB, alloc=4.6MB, time=84.64 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.854 y[1] (analytic) = 0 y[1] (numeric) = 1.5009593583341760042288142691045 absolute error = 1.5009593583341760042288142691045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.855 y[1] (analytic) = 0 y[1] (numeric) = 1.5014922798452168213316644725489 absolute error = 1.5014922798452168213316644725489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.856 y[1] (analytic) = 0 y[1] (numeric) = 1.5020252199488698163811567460164 absolute error = 1.5020252199488698163811567460164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.857 y[1] (analytic) = 0 y[1] (numeric) = 1.5025581786699970442574169612989 absolute error = 1.5025581786699970442574169612989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.858 y[1] (analytic) = 0 y[1] (numeric) = 1.5030911560334576687015358842707 absolute error = 1.5030911560334576687015358842707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.859 y[1] (analytic) = 0 y[1] (numeric) = 1.5036241520641079674665284026245 absolute error = 1.5036241520641079674665284026245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.86 y[1] (analytic) = 0 y[1] (numeric) = 1.5041571667868013374651420337308 absolute error = 1.5041571667868013374651420337308 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.861 y[1] (analytic) = 0 y[1] (numeric) = 1.5046902002263882999145183503722 absolute error = 1.5046902002263882999145183503722 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.862 y[1] (analytic) = 0 y[1] (numeric) = 1.5052232524077165054777109579144 absolute error = 1.5052232524077165054777109579144 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.863 y[1] (analytic) = 0 y[1] (numeric) = 1.5057563233556307394020636522918 absolute error = 1.5057563233556307394020636522918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.864 y[1] (analytic) = 0 y[1] (numeric) = 1.5062894130949729266544523840095 absolute error = 1.5062894130949729266544523840095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.865 y[1] (analytic) = 0 y[1] (numeric) = 1.506822521650582137053394649191 absolute error = 1.506822521650582137053394649191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.866 y[1] (analytic) = 0 y[1] (numeric) = 1.5073556490472945903980299245358 absolute error = 1.5073556490472945903980299245358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=801.1MB, alloc=4.6MB, time=85.03 x[1] = 2.867 y[1] (analytic) = 0 y[1] (numeric) = 1.5078887953099436615939747588918 absolute error = 1.5078887953099436615939747588918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.868 y[1] (analytic) = 0 y[1] (numeric) = 1.5084219604633598857760561299923 absolute error = 1.5084219604633598857760561299923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.869 y[1] (analytic) = 0 y[1] (numeric) = 1.5089551445323709634279266707604 absolute error = 1.5089551445323709634279266707604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.87 y[1] (analytic) = 0 y[1] (numeric) = 1.5094883475418017654985653654416 absolute error = 1.5094883475418017654985653654416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.871 y[1] (analytic) = 0 y[1] (numeric) = 1.5100215695164743385156673116872 absolute error = 1.5100215695164743385156673116872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.872 y[1] (analytic) = 0 y[1] (numeric) = 1.5105548104812079096959261405832 absolute error = 1.5105548104812079096959261405832 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.873 y[1] (analytic) = 0 y[1] (numeric) = 1.5110880704608188920522126824925 absolute error = 1.5110880704608188920522126824925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.874 y[1] (analytic) = 0 y[1] (numeric) = 1.5116213494801208894976534624594 absolute error = 1.5116213494801208894976534624594 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.875 y[1] (analytic) = 0 y[1] (numeric) = 1.5121546475639247019466126048139 absolute error = 1.5121546475639247019466126048139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.876 y[1] (analytic) = 0 y[1] (numeric) = 1.5126879647370383304125807225036 absolute error = 1.5126879647370383304125807225036 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.877 y[1] (analytic) = 0 y[1] (numeric) = 1.5132213010242669821029743625809 absolute error = 1.5132213010242669821029743625809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.878 y[1] (analytic) = 0 y[1] (numeric) = 1.5137546564504130755108495751767 absolute error = 1.5137546564504130755108495751767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.879 y[1] (analytic) = 0 y[1] (numeric) = 1.5142880310402762455035331692013 absolute error = 1.5142880310402762455035331692013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=804.9MB, alloc=4.6MB, time=85.42 x[1] = 2.88 y[1] (analytic) = 0 y[1] (numeric) = 1.5148214248186533484081752139296 absolute error = 1.5148214248186533484081752139296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.881 y[1] (analytic) = 0 y[1] (numeric) = 1.5153548378103384670942263415485 absolute error = 1.5153548378103384670942263415485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.882 y[1] (analytic) = 0 y[1] (numeric) = 1.5158882700401229160528434016711 absolute error = 1.5158882700401229160528434016711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.883 y[1] (analytic) = 0 y[1] (numeric) = 1.5164217215327952464732270147555 absolute error = 1.5164217215327952464732270147555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.884 y[1] (analytic) = 0 y[1] (numeric) = 1.5169551923131412513158945673046 absolute error = 1.5169551923131412513158945673046 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.885 y[1] (analytic) = 0 y[1] (numeric) = 1.5174886824059439703828921876667 absolute error = 1.5174886824059439703828921876667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.886 y[1] (analytic) = 0 y[1] (numeric) = 1.5180221918359836953849492372069 absolute error = 1.5180221918359836953849492372069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.887 y[1] (analytic) = 0 y[1] (numeric) = 1.5185557206280379750055788475752 absolute error = 1.5185557206280379750055788475752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.888 y[1] (analytic) = 0 y[1] (numeric) = 1.5190892688068816199621280307572 absolute error = 1.5190892688068816199621280307572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.889 y[1] (analytic) = 0 y[1] (numeric) = 1.5196228363972867080637808845617 absolute error = 1.5196228363972867080637808845617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.89 y[1] (analytic) = 0 y[1] (numeric) = 1.5201564234240225892665184121698 absolute error = 1.5201564234240225892665184121698 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.891 y[1] (analytic) = 0 y[1] (numeric) = 1.5206900299118558907250384703508 absolute error = 1.5206900299118558907250384703508 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.892 y[1] (analytic) = 0 y[1] (numeric) = 1.5212236558855505218416393569316 absolute error = 1.5212236558855505218416393569316 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=808.7MB, alloc=4.6MB, time=85.81 x[1] = 2.893 y[1] (analytic) = 0 y[1] (numeric) = 1.5217573013698676793120705440966 absolute error = 1.5217573013698676793120705440966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.894 y[1] (analytic) = 0 y[1] (numeric) = 1.5222909663895658521683540600904 absolute error = 1.5222909663895658521683540600904 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.895 y[1] (analytic) = 0 y[1] (numeric) = 1.5228246509694008268185800178955 absolute error = 1.5228246509694008268185800178955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.896 y[1] (analytic) = 0 y[1] (numeric) = 1.5233583551341256920836797854634 absolute error = 1.5233583551341256920836797854634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.897 y[1] (analytic) = 0 y[1] (numeric) = 1.5238920789084908442311802880897 absolute error = 1.5238920789084908442311802880897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.898 y[1] (analytic) = 0 y[1] (numeric) = 1.5244258223172439920059429295409 absolute error = 1.5244258223172439920059429295409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.899 y[1] (analytic) = 0 y[1] (numeric) = 1.5249595853851301616578906145627 absolute error = 1.5249595853851301616578906145627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.9 y[1] (analytic) = 0 y[1] (numeric) = 1.5254933681368917019667263514294 absolute error = 1.5254933681368917019667263514294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.901 y[1] (analytic) = 0 y[1] (numeric) = 1.5260271705972682892636469092271 absolute error = 1.5260271705972682892636469092271 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.902 y[1] (analytic) = 0 y[1] (numeric) = 1.5265609927909969324500550006029 absolute error = 1.5265609927909969324500550006029 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.903 y[1] (analytic) = 0 y[1] (numeric) = 1.5270948347428119780132734567577 absolute error = 1.5270948347428119780132734567577 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.904 y[1] (analytic) = 0 y[1] (numeric) = 1.5276286964774451150392648575108 absolute error = 1.5276286964774451150392648575108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.905 y[1] (analytic) = 0 y[1] (numeric) = 1.5281625780196253802223600753201 absolute error = 1.5281625780196253802223600753201 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=812.5MB, alloc=4.6MB, time=86.19 x[1] = 2.906 y[1] (analytic) = 0 y[1] (numeric) = 1.5286964793940791628719991882037 absolute error = 1.5286964793940791628719991882037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.907 y[1] (analytic) = 0 y[1] (numeric) = 1.5292304006255302099164882125764 absolute error = 1.5292304006255302099164882125764 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.908 y[1] (analytic) = 0 y[1] (numeric) = 1.5297643417386996309037751030852 absolute error = 1.5297643417386996309037751030852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.909 y[1] (analytic) = 0 y[1] (numeric) = 1.5302983027583059029992484626089 absolute error = 1.5302983027583059029992484626089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.91 y[1] (analytic) = 0 y[1] (numeric) = 1.5308322837090648759805624016677 absolute error = 1.5308322837090648759805624016677 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.911 y[1] (analytic) = 0 y[1] (numeric) = 1.5313662846156897772294909825793 absolute error = 1.5313662846156897772294909825793 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.912 y[1] (analytic) = 0 y[1] (numeric) = 1.5319003055028912167208156797918 absolute error = 1.5319003055028912167208156797918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.913 y[1] (analytic) = 0 y[1] (numeric) = 1.5324343463953771920082492839246 absolute error = 1.5324343463953771920082492839246 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.914 y[1] (analytic) = 0 y[1] (numeric) = 1.5329684073178530932073996731523 absolute error = 1.5329684073178530932073996731523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.915 y[1] (analytic) = 0 y[1] (numeric) = 1.5335024882950217079757768716783 absolute error = 1.5335024882950217079757768716783 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.916 y[1] (analytic) = 0 y[1] (numeric) = 1.5340365893515832264898468111615 absolute error = 1.5340365893515832264898468111615 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.917 y[1] (analytic) = 0 y[1] (numeric) = 1.5345707105122352464191352070797 absolute error = 1.5345707105122352464191352070797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.918 y[1] (analytic) = 0 y[1] (numeric) = 1.5351048518016727778973849581423 absolute error = 1.5351048518016727778973849581423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.919 y[1] (analytic) = 0 y[1] (numeric) = 1.5356390132445882484907704729947 absolute error = 1.5356390132445882484907704729947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=816.3MB, alloc=4.6MB, time=86.58 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.92 y[1] (analytic) = 0 y[1] (numeric) = 1.5361731948656715081631723245972 absolute error = 1.5361731948656715081631723245972 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.921 y[1] (analytic) = 0 y[1] (numeric) = 1.5367073966896098342385156288035 absolute error = 1.5367073966896098342385156288035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.922 y[1] (analytic) = 0 y[1] (numeric) = 1.5372416187410879363601755398106 absolute error = 1.5372416187410879363601755398106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.923 y[1] (analytic) = 0 y[1] (numeric) = 1.5377758610447879614474532513097 absolute error = 1.5377758610447879614474532513097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.924 y[1] (analytic) = 0 y[1] (numeric) = 1.5383101236253894986491258883229 absolute error = 1.5383101236253894986491258883229 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.925 y[1] (analytic) = 0 y[1] (numeric) = 1.5388444065075695842940736708782 absolute error = 1.5388444065075695842940736708782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.926 y[1] (analytic) = 0 y[1] (numeric) = 1.5393787097160027068389877268433 absolute error = 1.5393787097160027068389877268433 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.927 y[1] (analytic) = 0 y[1] (numeric) = 1.539913033275360811813161927415 absolute error = 1.539913033275360811813161927415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.928 y[1] (analytic) = 0 y[1] (numeric) = 1.5404473772103133067603721149415 absolute error = 1.5404473772103133067603721149415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.929 y[1] (analytic) = 0 y[1] (numeric) = 1.5409817415455270661778460889403 absolute error = 1.5409817415455270661778460889403 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.93 y[1] (analytic) = 0 y[1] (numeric) = 1.5415161263056664364523277123667 absolute error = 1.5415161263056664364523277123667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.931 y[1] (analytic) = 0 y[1] (numeric) = 1.5420505315153932407932384963829 absolute error = 1.5420505315153932407932384963829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.932 y[1] (analytic) = 0 y[1] (numeric) = 1.5425849571993667841629400180805 absolute error = 1.5425849571993667841629400180805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=820.1MB, alloc=4.6MB, time=86.97 x[1] = 2.933 y[1] (analytic) = 0 y[1] (numeric) = 1.5431194033822438582041005218173 absolute error = 1.5431194033822438582041005218173 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.934 y[1] (analytic) = 0 y[1] (numeric) = 1.5436538700886787461641690510387 absolute error = 1.5436538700886787461641690510387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.935 y[1] (analytic) = 0 y[1] (numeric) = 1.5441883573433232278169604536749 absolute error = 1.5441883573433232278169604536749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.936 y[1] (analytic) = 0 y[1] (numeric) = 1.5447228651708265843813546004258 absolute error = 1.5447228651708265843813546004258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.937 y[1] (analytic) = 0 y[1] (numeric) = 1.5452573935958356034371131514748 absolute error = 1.5452573935958356034371131514748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.938 y[1] (analytic) = 0 y[1] (numeric) = 1.5457919426429945838378172034052 absolute error = 1.5457919426429945838378172034052 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.939 y[1] (analytic) = 0 y[1] (numeric) = 1.5463265123369453406209291443326 absolute error = 1.5463265123369453406209291443326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.94 y[1] (analytic) = 0 y[1] (numeric) = 1.5468611027023272099149820415091 absolute error = 1.5468611027023272099149820415091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.941 y[1] (analytic) = 0 y[1] (numeric) = 1.5473957137637770538438998819056 absolute error = 1.5473957137637770538438998819056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.942 y[1] (analytic) = 0 y[1] (numeric) = 1.5479303455459292654284519825319 absolute error = 1.5479303455459292654284519825319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.943 y[1] (analytic) = 0 y[1] (numeric) = 1.5484649980734157734848448835133 absolute error = 1.5484649980734157734848448835133 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.944 y[1] (analytic) = 0 y[1] (numeric) = 1.548999671370866047520455033209 absolute error = 1.548999671370866047520455033209 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.945 y[1] (analytic) = 0 y[1] (numeric) = 1.5495343654629071026267055709247 absolute error = 1.5495343654629071026267055709247 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=824.0MB, alloc=4.6MB, time=87.36 x[1] = 2.946 y[1] (analytic) = 0 y[1] (numeric) = 1.5500690803741635043690905090489 absolute error = 1.5500690803741635043690905090489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.947 y[1] (analytic) = 0 y[1] (numeric) = 1.5506038161292573736743496127219 absolute error = 1.5506038161292573736743496127219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.948 y[1] (analytic) = 0 y[1] (numeric) = 1.5511385727528083917147972714312 absolute error = 1.5511385727528083917147972714312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.949 y[1] (analytic) = 0 y[1] (numeric) = 1.5516733502694338047898086532188 absolute error = 1.5516733502694338047898086532188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.95 y[1] (analytic) = 0 y[1] (numeric) = 1.55220814870374842920446642848 absolute error = 1.55220814870374842920446642848 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.951 y[1] (analytic) = 0 y[1] (numeric) = 1.5527429680803646561453713466352 absolute error = 1.5527429680803646561453713466352 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.952 y[1] (analytic) = 0 y[1] (numeric) = 1.5532778084238924565536199452614 absolute error = 1.5532778084238924565536199452614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.953 y[1] (analytic) = 0 y[1] (numeric) = 1.553812669758939385994952667582 absolute error = 1.553812669758939385994952667582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.954 y[1] (analytic) = 0 y[1] (numeric) = 1.5543475521101105895270756605277 absolute error = 1.5543475521101105895270756605277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.955 y[1] (analytic) = 0 y[1] (numeric) = 1.554882455502008806564159521905 absolute error = 1.554882455502008806564159521905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.956 y[1] (analytic) = 0 y[1] (numeric) = 1.5554173799592343757385182615332 absolute error = 1.5554173799592343757385182615332 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.957 y[1] (analytic) = 0 y[1] (numeric) = 1.5559523255063852397594717375427 absolute error = 1.5559523255063852397594717375427 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.958 y[1] (analytic) = 0 y[1] (numeric) = 1.5564872921680569502693948253646 absolute error = 1.5564872921680569502693948253646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=827.8MB, alloc=4.6MB, time=87.74 x[1] = 2.959 y[1] (analytic) = 0 y[1] (numeric) = 1.5570222799688426726969565732818 absolute error = 1.5570222799688426726969565732818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.96 y[1] (analytic) = 0 y[1] (numeric) = 1.5575572889333331911075525947597 absolute error = 1.5575572889333331911075525947597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.961 y[1] (analytic) = 0 y[1] (numeric) = 1.5580923190861169130509339441253 absolute error = 1.5580923190861169130509339441253 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.962 y[1] (analytic) = 0 y[1] (numeric) = 1.5586273704517798744060357185206 absolute error = 1.5586273704517798744060357185206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.963 y[1] (analytic) = 0 y[1] (numeric) = 1.5591624430549057442230086254183 absolute error = 1.5591624430549057442230086254183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.964 y[1] (analytic) = 0 y[1] (numeric) = 1.5596975369200758295624567513533 absolute error = 1.5596975369200758295624567513533 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.965 y[1] (analytic) = 0 y[1] (numeric) = 1.5602326520718690803318847638975 absolute error = 1.5602326520718690803318847638975 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.966 y[1] (analytic) = 0 y[1] (numeric) = 1.5607677885348620941193577752795 absolute error = 1.5607677885348620941193577752795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.967 y[1] (analytic) = 0 y[1] (numeric) = 1.5613029463336291210243770924347 absolute error = 1.5613029463336291210243770924347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.968 y[1] (analytic) = 0 y[1] (numeric) = 1.5618381254927420684859750746574 absolute error = 1.5618381254927420684859750746574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.969 y[1] (analytic) = 0 y[1] (numeric) = 1.5623733260367705061080323164186 absolute error = 1.5623733260367705061080323164186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.97 y[1] (analytic) = 0 y[1] (numeric) = 1.5629085479902816704818203693085 absolute error = 1.5629085479902816704818203693085 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.971 y[1] (analytic) = 0 y[1] (numeric) = 1.5634437913778404700057732134674 absolute error = 1.5634437913778404700057732134674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.972 y[1] (analytic) = 0 y[1] (numeric) = 1.5639790562240094897024906852726 absolute error = 1.5639790562240094897024906852726 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=831.6MB, alloc=4.6MB, time=88.13 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.973 y[1] (analytic) = 0 y[1] (numeric) = 1.5645143425533489960329770644619 absolute error = 1.5645143425533489960329770644619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.974 y[1] (analytic) = 0 y[1] (numeric) = 1.5650496503904169417081180202912 absolute error = 1.5650496503904169417081180202912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.975 y[1] (analytic) = 0 y[1] (numeric) = 1.5655849797597689704973991127448 absolute error = 1.5655849797597689704973991127448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.976 y[1] (analytic) = 0 y[1] (numeric) = 1.566120330685958422034869041243 absolute error = 1.566120330685958422034869041243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.977 y[1] (analytic) = 0 y[1] (numeric) = 1.566655703193536336622350829725 absolute error = 1.566655703193536336622350829725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.978 y[1] (analytic) = 0 y[1] (numeric) = 1.5671910973070514600299041334194 absolute error = 1.5671910973070514600299041334194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.979 y[1] (analytic) = 0 y[1] (numeric) = 1.5677265130510502482935418490565 absolute error = 1.5677265130510502482935418490565 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.98 y[1] (analytic) = 0 y[1] (numeric) = 1.5682619504500768725102042067239 absolute error = 1.5682619504500768725102042067239 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.981 y[1] (analytic) = 0 y[1] (numeric) = 1.5687974095286732236299935180171 absolute error = 1.5687974095286732236299935180171 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.982 y[1] (analytic) = 0 y[1] (numeric) = 1.5693328903113789172456727515921 absolute error = 1.5693328903113789172456727515921 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.983 y[1] (analytic) = 0 y[1] (numeric) = 1.5698683928227312983794311036899 absolute error = 1.5698683928227312983794311036899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.984 y[1] (analytic) = 0 y[1] (numeric) = 1.5704039170872654462669197276669 absolute error = 1.5704039170872654462669197276669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.985 y[1] (analytic) = 0 y[1] (numeric) = 1.5709394631295141791385607830359 absolute error = 1.5709394631295141791385607830359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=835.4MB, alloc=4.6MB, time=88.52 x[1] = 2.986 y[1] (analytic) = 0 y[1] (numeric) = 1.5714750309740080589981329609997 absolute error = 1.5714750309740080589981329609997 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.987 y[1] (analytic) = 0 y[1] (numeric) = 1.5720106206452753963986366399372 absolute error = 1.5720106206452753963986366399372 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.988 y[1] (analytic) = 0 y[1] (numeric) = 1.5725462321678422552154418207892 absolute error = 1.5725462321678422552154418207892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.989 y[1] (analytic) = 0 y[1] (numeric) = 1.5730818655662324574167219887795 absolute error = 1.5730818655662324574167219887795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.99 y[1] (analytic) = 0 y[1] (numeric) = 1.5736175208649675878311770444033 absolute error = 1.5736175208649675878311770444033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.991 y[1] (analytic) = 0 y[1] (numeric) = 1.5741531980885669989130484431138 absolute error = 1.5741531980885669989130484431138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.992 y[1] (analytic) = 0 y[1] (numeric) = 1.5746888972615478155044296796422 absolute error = 1.5746888972615478155044296796422 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.993 y[1] (analytic) = 0 y[1] (numeric) = 1.5752246184084249395948752493965 absolute error = 1.5752246184084249395948752493965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.994 y[1] (analytic) = 0 y[1] (numeric) = 1.575760361553711055078311215898 absolute error = 1.575760361553711055078311215898 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.995 y[1] (analytic) = 0 y[1] (numeric) = 1.5762961267219166325072505097335 absolute error = 1.5762961267219166325072505097335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.996 y[1] (analytic) = 0 y[1] (numeric) = 1.5768319139375499338443160810251 absolute error = 1.5768319139375499338443160810251 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.997 y[1] (analytic) = 0 y[1] (numeric) = 1.5773677232251170172110750239483 absolute error = 1.5773677232251170172110750239483 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 2.998 y[1] (analytic) = 0 y[1] (numeric) = 1.5779035546091217416341867883613 absolute error = 1.5779035546091217416341867883613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=839.2MB, alloc=4.6MB, time=88.90 x[1] = 2.999 y[1] (analytic) = 0 y[1] (numeric) = 1.5784394081140657717888685901478 absolute error = 1.5784394081140657717888685901478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3 y[1] (analytic) = 0 y[1] (numeric) = 1.5789752837644485827396811284178 absolute error = 1.5789752837644485827396811284178 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.001 y[1] (analytic) = 0 y[1] (numeric) = 1.5795111815847674646786377142581 absolute error = 1.5795111815847674646786377142581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.002 y[1] (analytic) = 0 y[1] (numeric) = 1.5800471015995175276606399122778 absolute error = 1.5800471015995175276606399122778 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.003 y[1] (analytic) = 0 y[1] (numeric) = 1.5805830438331917063362427927496 absolute error = 1.5805830438331917063362427927496 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.004 y[1] (analytic) = 0 y[1] (numeric) = 1.5811190083102807646817528887105 absolute error = 1.5811190083102807646817528887105 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.005 y[1] (analytic) = 0 y[1] (numeric) = 1.5816549950552733007266619489519 absolute error = 1.5816549950552733007266619489519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.006 y[1] (analytic) = 0 y[1] (numeric) = 1.5821910040926557512784195743997 absolute error = 1.5821910040926557512784195743997 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.007 y[1] (analytic) = 0 y[1] (numeric) = 1.5827270354469123966445478219623 absolute error = 1.5827270354469123966445478219623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.008 y[1] (analytic) = 0 y[1] (numeric) = 1.5832630891425253653521008565037 absolute error = 1.5832630891425253653521008565037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.009 y[1] (analytic) = 0 y[1] (numeric) = 1.5837991652039746388644727281842 absolute error = 1.5837991652039746388644727281842 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.01 y[1] (analytic) = 0 y[1] (numeric) = 1.584335263655738056295556349003 absolute error = 1.584335263655738056295556349003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.011 y[1] (analytic) = 0 y[1] (numeric) = 1.5848713845222913191212567389695 absolute error = 1.5848713845222913191212567389695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=843.0MB, alloc=4.6MB, time=89.29 x[1] = 3.012 y[1] (analytic) = 0 y[1] (numeric) = 1.585407527828107995888361608931 absolute error = 1.585407527828107995888361608931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.013 y[1] (analytic) = 0 y[1] (numeric) = 1.5859436935976595269207723436876 absolute error = 1.5859436935976595269207723436876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.014 y[1] (analytic) = 0 y[1] (numeric) = 1.5864798818554152290230984456346 absolute error = 1.5864798818554152290230984456346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.015 y[1] (analytic) = 0 y[1] (numeric) = 1.5870160926258423001816184957855 absolute error = 1.5870160926258423001816184957855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.016 y[1] (analytic) = 0 y[1] (numeric) = 1.587552325933405824262610685647 absolute error = 1.587552325933405824262610685647 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.017 y[1] (analytic) = 0 y[1] (numeric) = 1.5880885818025687757080559700401 absolute error = 1.5880885818025687757080559700401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.018 y[1] (analytic) = 0 y[1] (numeric) = 1.5886248602577920242287168875878 absolute error = 1.5886248602577920242287168875878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.019 y[1] (analytic) = 0 y[1] (numeric) = 1.5891611613235343394945950922234 absolute error = 1.5891611613235343394945950922234 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.02 y[1] (analytic) = 0 y[1] (numeric) = 1.5896974850242523958227706357088 absolute error = 1.5896974850242523958227706357088 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.021 y[1] (analytic) = 0 y[1] (numeric) = 1.5902338313844007768626260377929 absolute error = 1.5902338313844007768626260377929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.022 y[1] (analytic) = 0 y[1] (numeric) = 1.5907702004284319802784581772873 absolute error = 1.5907702004284319802784581772873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.023 y[1] (analytic) = 0 y[1] (numeric) = 1.591306592180796422429481033986 absolute error = 1.591306592180796422429481033986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.024 y[1] (analytic) = 0 y[1] (numeric) = 1.5918430066659424430472223080104 absolute error = 1.5918430066659424430472223080104 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.025 y[1] (analytic) = 0 y[1] (numeric) = 1.592379443908316309910316939821 absolute error = 1.592379443908316309910316939821 memory used=846.9MB, alloc=4.6MB, time=89.68 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.026 y[1] (analytic) = 0 y[1] (numeric) = 1.5929159039323622235167005508011 absolute error = 1.5929159039323622235167005508011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.027 y[1] (analytic) = 0 y[1] (numeric) = 1.5934523867625223217532058209864 absolute error = 1.5934523867625223217532058209864 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.028 y[1] (analytic) = 0 y[1] (numeric) = 1.5939888924232366845625648171873 absolute error = 1.5939888924232366845625648171873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.029 y[1] (analytic) = 0 y[1] (numeric) = 1.5945254209389433386078202814287 absolute error = 1.5945254209389433386078202814287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.03 y[1] (analytic) = 0 y[1] (numeric) = 1.5950619723340782619341488863151 absolute error = 1.5950619723340782619341488863151 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.031 y[1] (analytic) = 0 y[1] (numeric) = 1.5955985466330753886280994606136 absolute error = 1.5955985466330753886280994606136 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.032 y[1] (analytic) = 0 y[1] (numeric) = 1.5961351438603666134742491850413 absolute error = 1.5961351438603666134742491850413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.033 y[1] (analytic) = 0 y[1] (numeric) = 1.5966717640403817966092807549374 absolute error = 1.5966717640403817966092807549374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.034 y[1] (analytic) = 0 y[1] (numeric) = 1.5972084071975487681734835032022 absolute error = 1.5972084071975487681734835032022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.035 y[1] (analytic) = 0 y[1] (numeric) = 1.5977450733562933329596814735887 absolute error = 1.5977450733562933329596814735887 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.036 y[1] (analytic) = 0 y[1] (numeric) = 1.5982817625410392750595914311436 absolute error = 1.5982817625410392750595914311436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.037 y[1] (analytic) = 0 y[1] (numeric) = 1.5988184747762083625076137933066 absolute error = 1.5988184747762083625076137933066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.038 y[1] (analytic) = 0 y[1] (numeric) = 1.5993552100862203519220594618966 absolute error = 1.5993552100862203519220594618966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=850.7MB, alloc=4.6MB, time=90.07 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.039 y[1] (analytic) = 0 y[1] (numeric) = 1.5998919684954929931438155329363 absolute error = 1.5998919684954929931438155329363 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.04 y[1] (analytic) = 0 y[1] (numeric) = 1.6004287500284420338724528579925 absolute error = 1.6004287500284420338724528579925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.041 y[1] (analytic) = 0 y[1] (numeric) = 1.6009655547094812242997784274438 absolute error = 1.6009655547094812242997784274438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.042 y[1] (analytic) = 0 y[1] (numeric) = 1.6015023825630223217408355428211 absolute error = 1.6015023825630223217408355428211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.043 y[1] (analytic) = 0 y[1] (numeric) = 1.6020392336134750952623547421091 absolute error = 1.6020392336134750952623547421091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.044 y[1] (analytic) = 0 y[1] (numeric) = 1.6025761078852473303086584386406 absolute error = 1.6025761078852473303086584386406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.045 y[1] (analytic) = 0 y[1] (numeric) = 1.6031130054027448333250222309663 absolute error = 1.6031130054027448333250222309663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.046 y[1] (analytic) = 0 y[1] (numeric) = 1.6036499261903714363784958378368 absolute error = 1.6036499261903714363784958378368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.047 y[1] (analytic) = 0 y[1] (numeric) = 1.60418687027252900177618660919 absolute error = 1.60418687027252900177618660919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.048 y[1] (analytic) = 0 y[1] (numeric) = 1.6047238376736174266810085608038 absolute error = 1.6047238376736174266810085608038 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.049 y[1] (analytic) = 0 y[1] (numeric) = 1.6052608284180346477248998770375 absolute error = 1.6052608284180346477248998770375 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.05 y[1] (analytic) = 0 y[1] (numeric) = 1.6057978425301766456195118228594 absolute error = 1.6057978425301766456195118228594 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.051 y[1] (analytic) = 0 y[1] (numeric) = 1.6063348800344374497643720031338 absolute error = 1.6063348800344374497643720031338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=854.5MB, alloc=4.6MB, time=90.46 x[1] = 3.052 y[1] (analytic) = 0 y[1] (numeric) = 1.6068719409552091428525249039208 absolute error = 1.6068719409552091428525249039208 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.053 y[1] (analytic) = 0 y[1] (numeric) = 1.6074090253168818654736526473273 absolute error = 1.6074090253168818654736526473273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.054 y[1] (analytic) = 0 y[1] (numeric) = 1.6079461331438438207146788882373 absolute error = 1.6079461331438438207146788882373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.055 y[1] (analytic) = 0 y[1] (numeric) = 1.6084832644604812787578587780428 absolute error = 1.6084832644604812787578587780428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.056 y[1] (analytic) = 0 y[1] (numeric) = 1.6090204192911785814763579172957 absolute error = 1.6090204192911785814763579172957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.057 y[1] (analytic) = 0 y[1] (numeric) = 1.6095575976603181470273232160019 absolute error = 1.6095575976603181470273232160019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.058 y[1] (analytic) = 0 y[1] (numeric) = 1.6100947995922804744424485770867 absolute error = 1.6100947995922804744424485770867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.059 y[1] (analytic) = 0 y[1] (numeric) = 1.6106320251114441482160383153727 absolute error = 1.6106320251114441482160383153727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.06 y[1] (analytic) = 0 y[1] (numeric) = 1.6111692742421858428905712212236 absolute error = 1.6111692742421858428905712212236 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.061 y[1] (analytic) = 0 y[1] (numeric) = 1.6117065470088803276397681748317 absolute error = 1.6117065470088803276397681748317 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.062 y[1] (analytic) = 0 y[1] (numeric) = 1.6122438434359004708491662139467 absolute error = 1.6122438434359004708491662139467 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.063 y[1] (analytic) = 0 y[1] (numeric) = 1.6127811635476172446942019546749 absolute error = 1.6127811635476172446942019546749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.064 y[1] (analytic) = 0 y[1] (numeric) = 1.6133185073683997297158072618094 absolute error = 1.6133185073683997297158072618094 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=858.3MB, alloc=4.6MB, time=90.85 x[1] = 3.065 y[1] (analytic) = 0 y[1] (numeric) = 1.6138558749226151193935200619888 absolute error = 1.6138558749226151193935200619888 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.066 y[1] (analytic) = 0 y[1] (numeric) = 1.6143932662346287247161131898248 absolute error = 1.6143932662346287247161131898248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.067 y[1] (analytic) = 0 y[1] (numeric) = 1.6149306813288039787497441539823 absolute error = 1.6149306813288039787497441539823 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.068 y[1] (analytic) = 0 y[1] (numeric) = 1.6154681202295024412036287070481 absolute error = 1.6154681202295024412036287070481 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.069 y[1] (analytic) = 0 y[1] (numeric) = 1.6160055829610838029932410998775 absolute error = 1.6160055829610838029932410998775 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.07 y[1] (analytic) = 0 y[1] (numeric) = 1.6165430695479058908010438979661 absolute error = 1.6165430695479058908010438979661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.071 y[1] (analytic) = 0 y[1] (numeric) = 1.6170805800143246716347502342581 absolute error = 1.6170805800143246716347502342581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.072 y[1] (analytic) = 0 y[1] (numeric) = 1.6176181143846942573831213696684 absolute error = 1.6176181143846942573831213696684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.073 y[1] (analytic) = 0 y[1] (numeric) = 1.6181556726833669093693024294684 absolute error = 1.6181556726833669093693024294684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.074 y[1] (analytic) = 0 y[1] (numeric) = 1.6186932549346930429016991805595 absolute error = 1.6186932549346930429016991805595 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.075 y[1] (analytic) = 0 y[1] (numeric) = 1.6192308611630212318223987115394 absolute error = 1.6192308611630212318223987115394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.076 y[1] (analytic) = 0 y[1] (numeric) = 1.6197684913926982130531368743499 absolute error = 1.6197684913926982130531368743499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.077 y[1] (analytic) = 0 y[1] (numeric) = 1.6203061456480688911388153431831 absolute error = 1.6203061456480688911388153431831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=862.1MB, alloc=4.6MB, time=91.24 x[1] = 3.078 y[1] (analytic) = 0 y[1] (numeric) = 1.6208438239534763427885711432156 absolute error = 1.6208438239534763427885711432156 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.079 y[1] (analytic) = 0 y[1] (numeric) = 1.6213815263332618214144014986372 absolute error = 1.6213815263332618214144014986372 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.08 y[1] (analytic) = 0 y[1] (numeric) = 1.6219192528117647616673468463416 absolute error = 1.6219192528117647616673468463416 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.081 y[1] (analytic) = 0 y[1] (numeric) = 1.6224570034133227839712348585509 absolute error = 1.6224570034133227839712348585509 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.082 y[1] (analytic) = 0 y[1] (numeric) = 1.6229947781622716990539883145567 absolute error = 1.6229947781622716990539883145567 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.083 y[1] (analytic) = 0 y[1] (numeric) = 1.6235325770829455124764996586729 absolute error = 1.6235325770829455124764996586729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.084 y[1] (analytic) = 0 y[1] (numeric) = 1.6240704001996764291590750784135 absolute error = 1.6240704001996764291590750784135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.085 y[1] (analytic) = 0 y[1] (numeric) = 1.6246082475367948579054509338306 absolute error = 1.6246082475367948579054509338306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.086 y[1] (analytic) = 0 y[1] (numeric) = 1.625146119118629415924385365874 absolute error = 1.625146119118629415924385365874 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.087 y[1] (analytic) = 0 y[1] (numeric) = 1.625684014969506933348827908564 absolute error = 1.625684014969506933348827908564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.088 y[1] (analytic) = 0 y[1] (numeric) = 1.6262219351137524577526699267039 absolute error = 1.6262219351137524577526699267039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.089 y[1] (analytic) = 0 y[1] (numeric) = 1.626759879575689258665078697796 absolute error = 1.626759879575689258665078697796 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.09 y[1] (analytic) = 0 y[1] (numeric) = 1.6272978483796388320824179537697 absolute error = 1.6272978483796388320824179537697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.091 y[1] (analytic) = 0 y[1] (numeric) = 1.6278358415499209049777576950755 absolute error = 1.6278358415499209049777576950755 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=865.9MB, alloc=4.6MB, time=91.62 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.092 y[1] (analytic) = 0 y[1] (numeric) = 1.6283738591108534398079760866501 absolute error = 1.6283738591108534398079760866501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.093 y[1] (analytic) = 0 y[1] (numeric) = 1.6289119010867526390184562422139 absolute error = 1.6289119010867526390184562422139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.094 y[1] (analytic) = 0 y[1] (numeric) = 1.6294499675019329495453807003203 absolute error = 1.6294499675019329495453807003203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.095 y[1] (analytic) = 0 y[1] (numeric) = 1.6299880583807070673156263925406 absolute error = 1.6299880583807070673156263925406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.096 y[1] (analytic) = 0 y[1] (numeric) = 1.6305261737473859417442629011346 absolute error = 1.6305261737473859417442629011346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.097 y[1] (analytic) = 0 y[1] (numeric) = 1.6310643136262787802296568005305 absolute error = 1.6310643136262787802296568005305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.098 y[1] (analytic) = 0 y[1] (numeric) = 1.6316024780416930526461848739114 absolute error = 1.6316024780416930526461848739114 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.099 y[1] (analytic) = 0 y[1] (numeric) = 1.6321406670179344958345589931871 absolute error = 1.6321406670179344958345589931871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.1 y[1] (analytic) = 0 y[1] (numeric) = 1.632678880579307118089765447613 absolute error = 1.632678880579307118089765447613 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.101 y[1] (analytic) = 0 y[1] (numeric) = 1.6332171187501132036466215033061 absolute error = 1.6332171187501132036466215033061 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.102 y[1] (analytic) = 0 y[1] (numeric) = 1.6337553815546533171629519729003 absolute error = 1.6337553815546533171629519729003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.103 y[1] (analytic) = 0 y[1] (numeric) = 1.634293669017226308200388571579 absolute error = 1.634293669017226308200388571579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.104 y[1] (analytic) = 0 y[1] (numeric) = 1.6348319811621293157027948327243 absolute error = 1.6348319811621293157027948327243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=869.7MB, alloc=4.6MB, time=92.00 x[1] = 3.105 y[1] (analytic) = 0 y[1] (numeric) = 1.635370318013657772472319353424 absolute error = 1.635370318013657772472319353424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.106 y[1] (analytic) = 0 y[1] (numeric) = 1.6359086795961054096430801370893 absolute error = 1.6359086795961054096430801370893 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.107 y[1] (analytic) = 0 y[1] (numeric) = 1.6364470659337642611524827974451 absolute error = 1.6364470659337642611524827974451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.108 y[1] (analytic) = 0 y[1] (numeric) = 1.6369854770509246682101753851735 absolute error = 1.6369854770509246682101753851735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.109 y[1] (analytic) = 0 y[1] (numeric) = 1.6375239129718752837646425955108 absolute error = 1.6375239129718752837646425955108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.11 y[1] (analytic) = 0 y[1] (numeric) = 1.6380623737209030769674421121225 absolute error = 1.6380623737209030769674421121225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.111 y[1] (analytic) = 0 y[1] (numeric) = 1.6386008593222933376350858396093 absolute error = 1.6386008593222933376350858396093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.112 y[1] (analytic) = 0 y[1] (numeric) = 1.6391393698003296807085687740304 absolute error = 1.6391393698003296807085687740304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.113 y[1] (analytic) = 0 y[1] (numeric) = 1.639677905179294050710548257866 absolute error = 1.639677905179294050710548257866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.114 y[1] (analytic) = 0 y[1] (numeric) = 1.6402164654834667262001763628816 absolute error = 1.6402164654834667262001763628816 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.115 y[1] (analytic) = 0 y[1] (numeric) = 1.6407550507371263242255881414018 absolute error = 1.6407550507371263242255881414018 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.116 y[1] (analytic) = 0 y[1] (numeric) = 1.6412936609645498047740484835489 absolute error = 1.6412936609645498047740484835489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.117 y[1] (analytic) = 0 y[1] (numeric) = 1.6418322961900124752197603150548 absolute error = 1.6418322961900124752197603150548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=873.6MB, alloc=4.6MB, time=92.39 x[1] = 3.118 y[1] (analytic) = 0 y[1] (numeric) = 1.6423709564377879947693368673107 absolute error = 1.6423709564377879947693368673107 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.119 y[1] (analytic) = 0 y[1] (numeric) = 1.6429096417321483789049407483801 absolute error = 1.6429096417321483789049407483801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.12 y[1] (analytic) = 0 y[1] (numeric) = 1.6434483520973640038250925407643 absolute error = 1.6434483520973640038250925407643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.121 y[1] (analytic) = 0 y[1] (numeric) = 1.6439870875577036108831516487781 absolute error = 1.6439870875577036108831516487781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.122 y[1] (analytic) = 0 y[1] (numeric) = 1.6445258481374343110234721154669 absolute error = 1.6445258481374343110234721154669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.123 y[1] (analytic) = 0 y[1] (numeric) = 1.6450646338608215892152361260702 absolute error = 1.6450646338608215892152361260702 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.124 y[1] (analytic) = 0 y[1] (numeric) = 1.6456034447521293088839679121197 absolute error = 1.6456034447521293088839679121197 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.125 y[1] (analytic) = 0 y[1] (numeric) = 1.6461422808356197163407307673417 absolute error = 1.6461422808356197163407307673417 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.126 y[1] (analytic) = 0 y[1] (numeric) = 1.6466811421355534452090098836235 absolute error = 1.6466811421355534452090098836235 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.127 y[1] (analytic) = 0 y[1] (numeric) = 1.6472200286761895208492837123939 absolute error = 1.6472200286761895208492837123939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.128 y[1] (analytic) = 0 y[1] (numeric) = 1.6477589404817853647812865538657 absolute error = 1.6477589404817853647812865538657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.129 y[1] (analytic) = 0 y[1] (numeric) = 1.6482978775765967991039650736863 absolute error = 1.6482978775765967991039650736863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.13 y[1] (analytic) = 0 y[1] (numeric) = 1.6488368399848780509131314436462 absolute error = 1.6488368399848780509131314436462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=877.4MB, alloc=4.6MB, time=92.77 x[1] = 3.131 y[1] (analytic) = 0 y[1] (numeric) = 1.6493758277308817567168158002051 absolute error = 1.6493758277308817567168158002051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.132 y[1] (analytic) = 0 y[1] (numeric) = 1.6499148408388589668483207117036 absolute error = 1.6499148408388589668483207117036 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.133 y[1] (analytic) = 0 y[1] (numeric) = 1.6504538793330591498769803422462 absolute error = 1.6504538793330591498769803422462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.134 y[1] (analytic) = 0 y[1] (numeric) = 1.6509929432377301970166269973607 absolute error = 1.6509929432377301970166269973607 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.135 y[1] (analytic) = 0 y[1] (numeric) = 1.6515320325771184265317677336598 absolute error = 1.6515320325771184265317677336598 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.136 y[1] (analytic) = 0 y[1] (numeric) = 1.6520711473754685881414737118617 absolute error = 1.6520711473754685881414737118617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.137 y[1] (analytic) = 0 y[1] (numeric) = 1.6526102876570238674209849696532 absolute error = 1.6526102876570238674209849696532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.138 y[1] (analytic) = 0 y[1] (numeric) = 1.6531494534460258902010332880175 absolute error = 1.6531494534460258902010332880175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.139 y[1] (analytic) = 0 y[1] (numeric) = 1.653688644766714726964885821784 absolute error = 1.653688644766714726964885821784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.14 y[1] (analytic) = 0 y[1] (numeric) = 1.6542278616433288972431121623032 absolute error = 1.6542278616433288972431121623032 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.141 y[1] (analytic) = 0 y[1] (numeric) = 1.6547671041001053740060774972936 absolute error = 1.6547671041001053740060774972936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.142 y[1] (analytic) = 0 y[1] (numeric) = 1.6553063721612795880541645300588 absolute error = 1.6553063721612795880541645300588 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.143 y[1] (analytic) = 0 y[1] (numeric) = 1.655845665851085432405726817427 absolute error = 1.655845665851085432405726817427 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.144 y[1] (analytic) = 0 y[1] (numeric) = 1.656384985193755266682776182923 absolute error = 1.656384985193755266682776182923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=881.2MB, alloc=4.6MB, time=93.16 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.145 y[1] (analytic) = 0 y[1] (numeric) = 1.6569243302135199214944068588439 absolute error = 1.6569243302135199214944068588439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.146 y[1] (analytic) = 0 y[1] (numeric) = 1.6574637009346087028179590080759 absolute error = 1.6574637009346087028179590080759 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.147 y[1] (analytic) = 0 y[1] (numeric) = 1.6580030973812493963779242736582 absolute error = 1.6580030973812493963779242736582 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.148 y[1] (analytic) = 0 y[1] (numeric) = 1.6585425195776682720225960012736 absolute error = 1.6585425195776682720225960012736 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.149 y[1] (analytic) = 0 y[1] (numeric) = 1.6590819675480900880984667770225 absolute error = 1.6590819675480900880984667770225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.15 y[1] (analytic) = 0 y[1] (numeric) = 1.6596214413167380958223759200168 absolute error = 1.6596214413167380958223759200168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.151 y[1] (analytic) = 0 y[1] (numeric) = 1.6601609409078340436514095665151 absolute error = 1.6601609409078340436514095665151 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.152 y[1] (analytic) = 0 y[1] (numeric) = 1.6607004663455981816505559795099 absolute error = 1.6607004663455981816505559795099 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.153 y[1] (analytic) = 0 y[1] (numeric) = 1.6612400176542492658581187148673 absolute error = 1.6612400176542492658581187148673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.154 y[1] (analytic) = 0 y[1] (numeric) = 1.6617795948580045626488902723177 absolute error = 1.6617795948580045626488902723177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.155 y[1] (analytic) = 0 y[1] (numeric) = 1.662319197981079853095088856794 absolute error = 1.662319197981079853095088856794 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.156 y[1] (analytic) = 0 y[1] (numeric) = 1.6628588270476894373250608728186 absolute error = 1.6628588270476894373250608728186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.157 y[1] (analytic) = 0 y[1] (numeric) = 1.6633984820820461388797517718459 absolute error = 1.6633984820820461388797517718459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=885.0MB, alloc=4.6MB, time=93.55 x[1] = 3.158 y[1] (analytic) = 0 y[1] (numeric) = 1.6639381631083613090669478696789 absolute error = 1.6639381631083613090669478696789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.159 y[1] (analytic) = 0 y[1] (numeric) = 1.6644778701508448313132917482931 absolute error = 1.6644778701508448313132917482931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.16 y[1] (analytic) = 0 y[1] (numeric) = 1.6650176032337051255140738536185 absolute error = 1.6650176032337051255140738536185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.161 y[1] (analytic) = 0 y[1] (numeric) = 1.6655573623811491523808028980535 absolute error = 1.6655573623811491523808028980535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.162 y[1] (analytic) = 0 y[1] (numeric) = 1.6660971476173824177865576737092 absolute error = 1.6660971476173824177865576737092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.163 y[1] (analytic) = 0 y[1] (numeric) = 1.6666369589666089771091228796129 absolute error = 1.6666369589666089771091228796129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.164 y[1] (analytic) = 0 y[1] (numeric) = 1.6671767964530314395719115633322 absolute error = 1.6671767964530314395719115633322 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.165 y[1] (analytic) = 0 y[1] (numeric) = 1.6677166601008509725826767747188 absolute error = 1.6677166601008509725826767747188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.166 y[1] (analytic) = 0 y[1] (numeric) = 1.6682565499342673060700150267104 absolute error = 1.6682565499342673060700150267104 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.167 y[1] (analytic) = 0 y[1] (numeric) = 1.6687964659774787368176641553754 absolute error = 1.6687964659774787368176641553754 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.168 y[1] (analytic) = 0 y[1] (numeric) = 1.6693364082546821327965981686305 absolute error = 1.6693364082546821327965981686305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.169 y[1] (analytic) = 0 y[1] (numeric) = 1.6698763767900729374949216703152 absolute error = 1.6698763767900729374949216703152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.17 y[1] (analytic) = 0 y[1] (numeric) = 1.6704163716078451742455664435619 absolute error = 1.6704163716078451742455664435619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=888.8MB, alloc=4.6MB, time=93.94 x[1] = 3.171 y[1] (analytic) = 0 y[1] (numeric) = 1.6709563927321914505517927746585 absolute error = 1.6709563927321914505517927746585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.172 y[1] (analytic) = 0 y[1] (numeric) = 1.6714964401873029624104980958644 absolute error = 1.6714964401873029624104980958644 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.173 y[1] (analytic) = 0 y[1] (numeric) = 1.672036513997369498633335522906 absolute error = 1.672036513997369498633335522906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.174 y[1] (analytic) = 0 y[1] (numeric) = 1.6725766141865794451656448601491 absolute error = 1.6725766141865794451656448601491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.175 y[1] (analytic) = 0 y[1] (numeric) = 1.6731167407791197894031986437178 absolute error = 1.6731167407791197894031986437178 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.176 y[1] (analytic) = 0 y[1] (numeric) = 1.6736568937991761245067657901084 absolute error = 1.6736568937991761245067657901084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.177 y[1] (analytic) = 0 y[1] (numeric) = 1.6741970732709326537144954151261 absolute error = 1.6741970732709326537144954151261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.178 y[1] (analytic) = 0 y[1] (numeric) = 1.674737279218572194652123385259 absolute error = 1.674737279218572194652123385259 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.179 y[1] (analytic) = 0 y[1] (numeric) = 1.6752775116662761836410041608896 absolute error = 1.6752775116662761836410041608896 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.18 y[1] (analytic) = 0 y[1] (numeric) = 1.6758177706382246800039704880384 absolute error = 1.6758177706382246800039704880384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.181 y[1] (analytic) = 0 y[1] (numeric) = 1.6763580561585963703690234926281 absolute error = 1.6763580561585963703690234926281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.182 y[1] (analytic) = 0 y[1] (numeric) = 1.676898368251568572970855728556 absolute error = 1.676898368251568572970855728556 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.183 y[1] (analytic) = 0 y[1] (numeric) = 1.6774387069413172419502097281665 absolute error = 1.6774387069413172419502097281665 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=892.6MB, alloc=4.6MB, time=94.32 x[1] = 3.184 y[1] (analytic) = 0 y[1] (numeric) = 1.6779790722520169716510746010197 absolute error = 1.6779790722520169716510746010197 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.185 y[1] (analytic) = 0 y[1] (numeric) = 1.6785194642078410009157232241637 absolute error = 1.6785194642078410009157232241637 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.186 y[1] (analytic) = 0 y[1] (numeric) = 1.6790598828329612173775925644313 absolute error = 1.6790598828329612173775925644313 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.187 y[1] (analytic) = 0 y[1] (numeric) = 1.6796003281515481617520096705984 absolute error = 1.6796003281515481617520096705984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.188 y[1] (analytic) = 0 y[1] (numeric) = 1.6801408001877710321247658705629 absolute error = 1.6801408001877710321247658705629 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.189 y[1] (analytic) = 0 y[1] (numeric) = 1.6806812989657976882385417060264 absolute error = 1.6806812989657976882385417060264 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.19 y[1] (analytic) = 0 y[1] (numeric) = 1.6812218245097946557771851344898 absolute error = 1.6812218245097946557771851344898 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.191 y[1] (analytic) = 0 y[1] (numeric) = 1.6817623768439271306478455257037 absolute error = 1.6817623768439271306478455257037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.192 y[1] (analytic) = 0 y[1] (numeric) = 1.6823029559923589832609659770522 absolute error = 1.6823029559923589832609659770522 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.193 y[1] (analytic) = 0 y[1] (numeric) = 1.6828435619792527628081364696839 absolute error = 1.6828435619792527628081364696839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.194 y[1] (analytic) = 0 y[1] (numeric) = 1.6833841948287697015378103845488 absolute error = 1.6833841948287697015378103845488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.195 y[1] (analytic) = 0 y[1] (numeric) = 1.6839248545650697190288868948438 absolute error = 1.6839248545650697190288868948438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.196 y[1] (analytic) = 0 y[1] (numeric) = 1.6844655412123114264621617487196 absolute error = 1.6844655412123114264621617487196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.197 y[1] (analytic) = 0 y[1] (numeric) = 1.6850062547946521308896489534538 absolute error = 1.6850062547946521308896489534538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=896.4MB, alloc=4.6MB, time=94.71 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.198 y[1] (analytic) = 0 y[1] (numeric) = 1.6855469953362478395017758696519 absolute error = 1.6855469953362478395017758696519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.199 y[1] (analytic) = 0 y[1] (numeric) = 1.686087762861253263892454221397 absolute error = 1.686087762861253263892454221397 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.2 y[1] (analytic) = 0 y[1] (numeric) = 1.6866285573938218243220295256331 absolute error = 1.6866285573938218243220295256331 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.201 y[1] (analytic) = 0 y[1] (numeric) = 1.6871693789581056539781114414332 absolute error = 1.6871693789581056539781114414332 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.202 y[1] (analytic) = 0 y[1] (numeric) = 1.6877102275782556032342875371736 absolute error = 1.6877102275782556032342875371736 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.203 y[1] (analytic) = 0 y[1] (numeric) = 1.6882511032784212439067229710102 absolute error = 1.6882511032784212439067229710102 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.204 y[1] (analytic) = 0 y[1] (numeric) = 1.6887920060827508735086485774295 absolute error = 1.6887920060827508735086485774295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.205 y[1] (analytic) = 0 y[1] (numeric) = 1.6893329360153915195027398500276 absolute error = 1.6893329360153915195027398500276 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.206 y[1] (analytic) = 0 y[1] (numeric) = 1.689873893100488943551389308056 absolute error = 1.689873893100488943551389308056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.207 y[1] (analytic) = 0 y[1] (numeric) = 1.6904148773621876457648747316589 absolute error = 1.6904148773621876457648747316589 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.208 y[1] (analytic) = 0 y[1] (numeric) = 1.6909558888246308689474257481201 absolute error = 1.6909558888246308689474257481201 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.209 y[1] (analytic) = 0 y[1] (numeric) = 1.6914969275119606028411912488305 absolute error = 1.6914969275119606028411912488305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.21 y[1] (analytic) = 0 y[1] (numeric) = 1.6920379934483175883681101140867 absolute error = 1.6920379934483175883681101140867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=900.3MB, alloc=4.6MB, time=95.10 x[1] = 3.211 y[1] (analytic) = 0 y[1] (numeric) = 1.6925790866578413218696877202326 absolute error = 1.6925790866578413218696877202326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.212 y[1] (analytic) = 0 y[1] (numeric) = 1.6931202071646700593446807010603 absolute error = 1.6931202071646700593446807010603 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.213 y[1] (analytic) = 0 y[1] (numeric) = 1.6936613549929408206846924327962 absolute error = 1.6936613549929408206846924327962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.214 y[1] (analytic) = 0 y[1] (numeric) = 1.6942025301667893939076817094104 absolute error = 1.6942025301667893939076817094104 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.215 y[1] (analytic) = 0 y[1] (numeric) = 1.6947437327103503393893870724014 absolute error = 1.6947437327103503393893870724014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.216 y[1] (analytic) = 0 y[1] (numeric) = 1.6952849626477569940926692566287 absolute error = 1.6952849626477569940926692566287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.217 y[1] (analytic) = 0 y[1] (numeric) = 1.6958262200031414757947742111881 absolute error = 1.6958262200031414757947742111881 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.218 y[1] (analytic) = 0 y[1] (numeric) = 1.6963675048006346873125191517494 absolute error = 1.6963675048006346873125191517494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.219 y[1] (analytic) = 0 y[1] (numeric) = 1.6969088170643663207254040982056 absolute error = 1.6969088170643663207254040982056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.22 y[1] (analytic) = 0 y[1] (numeric) = 1.6974501568184648615966513489168 absolute error = 1.6974501568184648615966513489168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.221 y[1] (analytic) = 0 y[1] (numeric) = 1.697991524087057593192175340266 absolute error = 1.697991524087057593192175340266 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.222 y[1] (analytic) = 0 y[1] (numeric) = 1.6985329188942706006974853376847 absolute error = 1.6985329188942706006974853376847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.223 y[1] (analytic) = 0 y[1] (numeric) = 1.699074341264228775432523401749 absolute error = 1.699074341264228775432523401749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=904.1MB, alloc=4.6MB, time=95.48 x[1] = 3.224 y[1] (analytic) = 0 y[1] (numeric) = 1.6996157912210558190644400703927 absolute error = 1.6996157912210558190644400703927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.225 y[1] (analytic) = 0 y[1] (numeric) = 1.7001572687888742478183101957344 absolute error = 1.7001572687888742478183101957344 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.226 y[1] (analytic) = 0 y[1] (numeric) = 1.700698773991805396685791371467 absolute error = 1.700698773991805396685791371467 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.227 y[1] (analytic) = 0 y[1] (numeric) = 1.701240306853969423631727384217 absolute error = 1.701240306853969423631727384217 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.228 y[1] (analytic) = 0 y[1] (numeric) = 1.7017818673994853137986991197382 absolute error = 1.7017818673994853137986991197382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.229 y[1] (analytic) = 0 y[1] (numeric) = 1.7023234556524708837095253522694 absolute error = 1.7023234556524708837095253522694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.23 y[1] (analytic) = 0 y[1] (numeric) = 1.7028650716370427854677158428516 absolute error = 1.7028650716370427854677158428516 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.231 y[1] (analytic) = 0 y[1] (numeric) = 1.7034067153773165109558791698695 absolute error = 1.7034067153773165109558791698695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.232 y[1] (analytic) = 0 y[1] (numeric) = 1.7039483868974063960320877125573 absolute error = 1.7039483868974063960320877125573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.233 y[1] (analytic) = 0 y[1] (numeric) = 1.704490086221425624724202205683 absolute error = 1.704490086221425624724202205683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.234 y[1] (analytic) = 0 y[1] (numeric) = 1.7050318133734862334221582811073 absolute error = 1.7050318133734862334221582811073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.235 y[1] (analytic) = 0 y[1] (numeric) = 1.7055735683776991150682174093955 absolute error = 1.7055735683776991150682174093955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.236 y[1] (analytic) = 0 y[1] (numeric) = 1.706115351258174023345184652148 absolute error = 1.706115351258174023345184652148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=907.9MB, alloc=4.6MB, time=95.86 x[1] = 3.237 y[1] (analytic) = 0 y[1] (numeric) = 1.7066571620390195768625956332046 absolute error = 1.7066571620390195768625956332046 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.238 y[1] (analytic) = 0 y[1] (numeric) = 1.7071990007443432633408751343717 absolute error = 1.7071990007443432633408751343717 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.239 y[1] (analytic) = 0 y[1] (numeric) = 1.7077408673982514437934697188173 absolute error = 1.7077408673982514437934697188173 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.24 y[1] (analytic) = 0 y[1] (numeric) = 1.7082827620248493567069567827797 absolute error = 1.7082827620248493567069567827797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.241 y[1] (analytic) = 0 y[1] (numeric) = 1.7088246846482411222191324337386 absolute error = 1.7088246846482411222191324337386 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.242 y[1] (analytic) = 0 y[1] (numeric) = 1.7093666352925297462950805907034 absolute error = 1.7093666352925297462950805907034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.243 y[1] (analytic) = 0 y[1] (numeric) = 1.7099086139818171249012256997841 absolute error = 1.7099086139818171249012256997841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.244 y[1] (analytic) = 0 y[1] (numeric) = 1.7104506207402040481773714557242 absolute error = 1.7104506207402040481773714557242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.245 y[1] (analytic) = 0 y[1] (numeric) = 1.7109926555917902046067279175889 absolute error = 1.7109926555917902046067279175889 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.246 y[1] (analytic) = 0 y[1] (numeric) = 1.7115347185606741851839294043249 absolute error = 1.7115347185606741851839294043249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.247 y[1] (analytic) = 0 y[1] (numeric) = 1.7120768096709534875810455534284 absolute error = 1.7120768096709534875810455534284 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.248 y[1] (analytic) = 0 y[1] (numeric) = 1.7126189289467245203115879234868 absolute error = 1.7126189289467245203115879234868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.249 y[1] (analytic) = 0 y[1] (numeric) = 1.7131610764120826068925145188868 absolute error = 1.7131610764120826068925145188868 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.25 y[1] (analytic) = 0 y[1] (numeric) = 1.7137032520911219900042346125165 absolute error = 1.7137032520911219900042346125165 relative error = -1 % Correct digits = -1 h = 0.001 memory used=911.7MB, alloc=4.6MB, time=96.25 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.251 y[1] (analytic) = 0 y[1] (numeric) = 1.7142454560079358356486162398238 absolute error = 1.7142454560079358356486162398238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.252 y[1] (analytic) = 0 y[1] (numeric) = 1.7147876881866162373049987351346 absolute error = 1.7147876881866162373049987351346 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.253 y[1] (analytic) = 0 y[1] (numeric) = 1.7153299486512542200842126786746 absolute error = 1.7153299486512542200842126786746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.254 y[1] (analytic) = 0 y[1] (numeric) = 1.7158722374259397448806096202867 absolute error = 1.7158722374259397448806096202867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.255 y[1] (analytic) = 0 y[1] (numeric) = 1.7164145545347617125221039433843 absolute error = 1.7164145545347617125221039433843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.256 y[1] (analytic) = 0 y[1] (numeric) = 1.7169569000018079679182292302326 absolute error = 1.7169569000018079679182292302326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.257 y[1] (analytic) = 0 y[1] (numeric) = 1.7174992738511653042062114872071 absolute error = 1.7174992738511653042062114872071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.258 y[1] (analytic) = 0 y[1] (numeric) = 1.7180416761069194668950615862363 absolute error = 1.7180416761069194668950615862363 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.259 y[1] (analytic) = 0 y[1] (numeric) = 1.7185841067931551580076892761977 absolute error = 1.7185841067931551580076892761977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.26 y[1] (analytic) = 0 y[1] (numeric) = 1.7191265659339560402210411156034 absolute error = 1.7191265659339560402210411156034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.261 y[1] (analytic) = 0 y[1] (numeric) = 1.7196690535534047410042646754767 absolute error = 1.7196690535534047410042646754767 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.262 y[1] (analytic) = 0 y[1] (numeric) = 1.7202115696755828567549013588969 absolute error = 1.7202115696755828567549013588969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.263 y[1] (analytic) = 0 y[1] (numeric) = 1.7207541143245709569331101812619 absolute error = 1.7207541143245709569331101812619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=915.5MB, alloc=4.6MB, time=96.64 x[1] = 3.264 y[1] (analytic) = 0 y[1] (numeric) = 1.7212966875244485881939248528964 absolute error = 1.7212966875244485881939248528964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.265 y[1] (analytic) = 0 y[1] (numeric) = 1.7218392892992942785175465032171 absolute error = 1.7218392892992942785175465032171 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.266 y[1] (analytic) = 0 y[1] (numeric) = 1.7223819196731855413376743832486 absolute error = 1.7223819196731855413376743832486 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.267 y[1] (analytic) = 0 y[1] (numeric) = 1.7229245786701988796678768808723 absolute error = 1.7229245786701988796678768808723 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.268 y[1] (analytic) = 0 y[1] (numeric) = 1.7234672663144097902260051807823 absolute error = 1.7234672663144097902260051807823 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.269 y[1] (analytic) = 0 y[1] (numeric) = 1.7240099826298927675566518987156 absolute error = 1.7240099826298927675566518987156 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.27 y[1] (analytic) = 0 y[1] (numeric) = 1.7245527276407213081516570171213 absolute error = 1.7245527276407213081516570171213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.271 y[1] (analytic) = 0 y[1] (numeric) = 1.7250955013709679145686634470349 absolute error = 1.7250955013709679145686634470349 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.272 y[1] (analytic) = 0 y[1] (numeric) = 1.7256383038447040995477245385265 absolute error = 1.7256383038447040995477245385265 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.273 y[1] (analytic) = 0 y[1] (numeric) = 1.7261811350860003901259658596985 absolute error = 1.7261811350860003901259658596985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.274 y[1] (analytic) = 0 y[1] (numeric) = 1.7267239951189263317503035618204 absolute error = 1.7267239951189263317503035618204 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.275 y[1] (analytic) = 0 y[1] (numeric) = 1.7272668839675504923882216457978 absolute error = 1.7272668839675504923882216457978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.276 y[1] (analytic) = 0 y[1] (numeric) = 1.7278098016559404666366104427936 absolute error = 1.7278098016559404666366104427936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=919.3MB, alloc=4.6MB, time=97.02 x[1] = 3.277 y[1] (analytic) = 0 y[1] (numeric) = 1.7283527482081628798286686194343 absolute error = 1.7283527482081628798286686194343 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.278 y[1] (analytic) = 0 y[1] (numeric) = 1.7288957236482833921388710156604 absolute error = 1.7288957236482833921388710156604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.279 y[1] (analytic) = 0 y[1] (numeric) = 1.7294387280003667026860046209043 absolute error = 1.7294387280003667026860046209043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.28 y[1] (analytic) = 0 y[1] (numeric) = 1.7299817612884765536342749919071 absolute error = 1.7299817612884765536342749919071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.281 y[1] (analytic) = 0 y[1] (numeric) = 1.7305248235366757342924854131199 absolute error = 1.7305248235366757342924854131199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.282 y[1] (analytic) = 0 y[1] (numeric) = 1.7310679147690260852112910982681 absolute error = 1.7310679147690260852112910982681 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.283 y[1] (analytic) = 0 y[1] (numeric) = 1.731611035009588502278530729297 absolute error = 1.731611035009588502278530729297 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.284 y[1] (analytic) = 0 y[1] (numeric) = 1.7321541842824229408126376265572 absolute error = 1.7321541842824229408126376265572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.285 y[1] (analytic) = 0 y[1] (numeric) = 1.7326973626115884196541328417343 absolute error = 1.7326973626115884196541328417343 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.286 y[1] (analytic) = 0 y[1] (numeric) = 1.7332405700211430252552024626732 absolute error = 1.7332405700211430252552024626732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.287 y[1] (analytic) = 0 y[1] (numeric) = 1.733783806535143915767361416899 absolute error = 1.733783806535143915767361416899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.288 y[1] (analytic) = 0 y[1] (numeric) = 1.7343270721776473251272060582907 absolute error = 1.7343270721776473251272060582907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.289 y[1] (analytic) = 0 y[1] (numeric) = 1.7348703669727085671402578190193 absolute error = 1.7348703669727085671402578190193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=923.1MB, alloc=4.6MB, time=97.41 x[1] = 3.29 y[1] (analytic) = 0 y[1] (numeric) = 1.7354136909443820395629002065234 absolute error = 1.7354136909443820395629002065234 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.291 y[1] (analytic) = 0 y[1] (numeric) = 1.7359570441167212281824114229574 absolute error = 1.7359570441167212281824114229574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.292 y[1] (analytic) = 0 y[1] (numeric) = 1.7365004265137787108950948822139 absolute error = 1.7365004265137787108950948822139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.293 y[1] (analytic) = 0 y[1] (numeric) = 1.7370438381596061617825098972915 absolute error = 1.7370438381596061617825098972915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.294 y[1] (analytic) = 0 y[1] (numeric) = 1.7375872790782543551858048084502 absolute error = 1.7375872790782543551858048084502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.295 y[1] (analytic) = 0 y[1] (numeric) = 1.7381307492937731697781548202734 absolute error = 1.7381307492937731697781548202734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.296 y[1] (analytic) = 0 y[1] (numeric) = 1.7386742488302115926353068134333 absolute error = 1.7386742488302115926353068134333 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.297 y[1] (analytic) = 0 y[1] (numeric) = 1.7392177777116177233042333946368 absolute error = 1.7392177777116177233042333946368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.298 y[1] (analytic) = 0 y[1] (numeric) = 1.7397613359620387778698984459162 absolute error = 1.7397613359620387778698984459162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.299 y[1] (analytic) = 0 y[1] (numeric) = 1.7403049236055210930201364321131 absolute error = 1.7403049236055210930201364321131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.3 y[1] (analytic) = 0 y[1] (numeric) = 1.7408485406661101301086477230976 absolute error = 1.7408485406661101301086477230976 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.301 y[1] (analytic) = 0 y[1] (numeric) = 1.7413921871678504792161121849563 absolute error = 1.7413921871678504792161121849563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.302 y[1] (analytic) = 0 y[1] (numeric) = 1.7419358631347858632094232920808 absolute error = 1.7419358631347858632094232920808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.303 y[1] (analytic) = 0 y[1] (numeric) = 1.7424795685909591417990450097863 absolute error = 1.7424795685909591417990450097863 relative error = -1 % Correct digits = -1 h = 0.001 memory used=927.0MB, alloc=4.6MB, time=97.79 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.304 y[1] (analytic) = 0 y[1] (numeric) = 1.743023303560412315594493694795 absolute error = 1.743023303560412315594493694795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.305 y[1] (analytic) = 0 y[1] (numeric) = 1.7435670680671865301579472586223 absolute error = 1.7435670680671865301579472586223 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.306 y[1] (analytic) = 0 y[1] (numeric) = 1.744110862135322080055983836614 absolute error = 1.744110862135322080055983836614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.307 y[1] (analytic) = 0 y[1] (numeric) = 1.7446546857888584129094522030944 absolute error = 1.7446546857888584129094522030944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.308 y[1] (analytic) = 0 y[1] (numeric) = 1.7451985390518341334414761707988 absolute error = 1.7451985390518341334414761707988 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.309 y[1] (analytic) = 0 y[1] (numeric) = 1.7457424219482870075235952104833 absolute error = 1.7457424219482870075235952104833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.31 y[1] (analytic) = 0 y[1] (numeric) = 1.7462863345022539662200435243242 absolute error = 1.7462863345022539662200435243242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.311 y[1] (analytic) = 0 y[1] (numeric) = 1.7468302767377711098301698044435 absolute error = 1.7468302767377711098301698044435 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.312 y[1] (analytic) = 0 y[1] (numeric) = 1.7473742486788737119289999056244 absolute error = 1.7473742486788737119289999056244 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.313 y[1] (analytic) = 0 y[1] (numeric) = 1.7479182503495962234059446590093 absolute error = 1.7479182503495962234059446590093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.314 y[1] (analytic) = 0 y[1] (numeric) = 1.7484622817739722765016550513059 absolute error = 1.7484622817739722765016550513059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.315 y[1] (analytic) = 0 y[1] (numeric) = 1.7490063429760346888430269917635 absolute error = 1.7490063429760346888430269917635 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.316 y[1] (analytic) = 0 y[1] (numeric) = 1.7495504339798154674763578869188 absolute error = 1.7495504339798154674763578869188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=930.8MB, alloc=4.6MB, time=98.18 x[1] = 3.317 y[1] (analytic) = 0 y[1] (numeric) = 1.7500945548093458128986572408531 absolute error = 1.7500945548093458128986572408531 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.318 y[1] (analytic) = 0 y[1] (numeric) = 1.7506387054886561230871134964477 absolute error = 1.7506387054886561230871134964477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.319 y[1] (analytic) = 0 y[1] (numeric) = 1.7511828860417759975267193308707 absolute error = 1.7511828860417759975267193308707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.32 y[1] (analytic) = 0 y[1] (numeric) = 1.7517270964927342412360576162795 absolute error = 1.7517270964927342412360576162795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.321 y[1] (analytic) = 0 y[1] (numeric) = 1.752271336865558868791250254477 absolute error = 1.752271336865558868791250254477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.322 y[1] (analytic) = 0 y[1] (numeric) = 1.752815607184277108348072092016 absolute error = 1.752815607184277108348072092016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.323 y[1] (analytic) = 0 y[1] (numeric) = 1.7533599074729154056622321200043 absolute error = 1.7533599074729154056622321200043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.324 y[1] (analytic) = 0 y[1] (numeric) = 1.7539042377554994281078241606276 absolute error = 1.7539042377554994281078241606276 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.325 y[1] (analytic) = 0 y[1] (numeric) = 1.7544485980560540686939492401699 absolute error = 1.7544485980560540686939492401699 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.326 y[1] (analytic) = 0 y[1] (numeric) = 1.7549929883986034500795118460814 absolute error = 1.7549929883986034500795118460814 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.327 y[1] (analytic) = 0 y[1] (numeric) = 1.7555374088071709285861922634139 absolute error = 1.7555374088071709285861922634139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.328 y[1] (analytic) = 0 y[1] (numeric) = 1.7560818593057790982095971837175 absolute error = 1.7560818593057790982095971837175 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.329 y[1] (analytic) = 0 y[1] (numeric) = 1.7566263399184497946285907772706 absolute error = 1.7566263399184497946285907772706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=934.6MB, alloc=4.6MB, time=98.56 x[1] = 3.33 y[1] (analytic) = 0 y[1] (numeric) = 1.757170850669204099212808417293 absolute error = 1.757170850669204099212808417293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.331 y[1] (analytic) = 0 y[1] (numeric) = 1.7577153915820623430283552425769 absolute error = 1.7577153915820623430283552425769 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.332 y[1] (analytic) = 0 y[1] (numeric) = 1.7582599626810441108416917427539 absolute error = 1.7582599626810441108416917427539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.333 y[1] (analytic) = 0 y[1] (numeric) = 1.7588045639901682451217085482069 absolute error = 1.7588045639901682451217085482069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.334 y[1] (analytic) = 0 y[1] (numeric) = 1.7593491955334528500399926044255 absolute error = 1.7593491955334528500399926044255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.335 y[1] (analytic) = 0 y[1] (numeric) = 1.7598938573349152954692869083989 absolute error = 1.7598938573349152954692869083989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.336 y[1] (analytic) = 0 y[1] (numeric) = 1.7604385494185722209801459824366 absolute error = 1.7604385494185722209801459824366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.337 y[1] (analytic) = 0 y[1] (numeric) = 1.7609832718084395398357892586083 absolute error = 1.7609832718084395398357892586083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.338 y[1] (analytic) = 0 y[1] (numeric) = 1.7615280245285324429851545447965 absolute error = 1.7615280245285324429851545447965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.339 y[1] (analytic) = 0 y[1] (numeric) = 1.7620728076028654030541537411617 absolute error = 1.7620728076028654030541537411617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.34 y[1] (analytic) = 0 y[1] (numeric) = 1.7626176210554521783351329736287 absolute error = 1.7626176210554521783351329736287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.341 y[1] (analytic) = 0 y[1] (numeric) = 1.7631624649103058167745393088138 absolute error = 1.7631624649103058167745393088138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.342 y[1] (analytic) = 0 y[1] (numeric) = 1.7637073391914386599587962126274 absolute error = 1.7637073391914386599587962126274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=938.4MB, alloc=4.6MB, time=98.95 x[1] = 3.343 y[1] (analytic) = 0 y[1] (numeric) = 1.7642522439228623470983899126043 absolute error = 1.7642522439228623470983899126043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.344 y[1] (analytic) = 0 y[1] (numeric) = 1.7647971791285878190101688218329 absolute error = 1.7647971791285878190101688218329 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.345 y[1] (analytic) = 0 y[1] (numeric) = 1.7653421448326253220978581801787 absolute error = 1.7653421448326253220978581801787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.346 y[1] (analytic) = 0 y[1] (numeric) = 1.7658871410589844123307920663232 absolute error = 1.7658871410589844123307920663232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.347 y[1] (analytic) = 0 y[1] (numeric) = 1.766432167831673959220864931967 absolute error = 1.766432167831673959220864931967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.348 y[1] (analytic) = 0 y[1] (numeric) = 1.7669772251747021497977048073791 absolute error = 1.7669772251747021497977048073791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.349 y[1] (analytic) = 0 y[1] (numeric) = 1.767522313112076492582070325307 absolute error = 1.767522313112076492582070325307 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.35 y[1] (analytic) = 0 y[1] (numeric) = 1.7680674316678038215574737081012 absolute error = 1.7680674316678038215574737081012 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.351 y[1] (analytic) = 0 y[1] (numeric) = 1.768612580865890300140031860746 absolute error = 1.768612580865890300140031860746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.352 y[1] (analytic) = 0 y[1] (numeric) = 1.7691577607303414251465477103329 absolute error = 1.7691577607303414251465477103329 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.353 y[1] (analytic) = 0 y[1] (numeric) = 1.7697029712851620307608239303569 absolute error = 1.7697029712851620307608239303569 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.354 y[1] (analytic) = 0 y[1] (numeric) = 1.7702482125543562924982111860672 absolute error = 1.7702482125543562924982111860672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.355 y[1] (analytic) = 0 y[1] (numeric) = 1.770793484561927731168393034951 absolute error = 1.770793484561927731168393034951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.356 y[1] (analytic) = 0 y[1] (numeric) = 1.771338787331879216836409614288 absolute error = 1.771338787331879216836409614288 relative error = -1 % Correct digits = -1 h = 0.001 memory used=942.2MB, alloc=4.6MB, time=99.34 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.357 y[1] (analytic) = 0 y[1] (numeric) = 1.7718841208882129727819222455658 absolute error = 1.7718841208882129727819222455658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.358 y[1] (analytic) = 0 y[1] (numeric) = 1.7724294852549305794567210834091 absolute error = 1.7724294852549305794567210834091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.359 y[1] (analytic) = 0 y[1] (numeric) = 1.7729748804560329784404779345366 absolute error = 1.7729748804560329784404779345366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.36 y[1] (analytic) = 0 y[1] (numeric) = 1.7735203065155204763947463701252 absolute error = 1.7735203065155204763947463701252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.361 y[1] (analytic) = 0 y[1] (numeric) = 1.7740657634573927490152112528294 absolute error = 1.7740657634573927490152112528294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.362 y[1] (analytic) = 0 y[1] (numeric) = 1.7746112513056488449821897975745 absolute error = 1.7746112513056488449821897975745 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.363 y[1] (analytic) = 0 y[1] (numeric) = 1.775156770084287189909386283115 absolute error = 1.775156770084287189909386283115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.364 y[1] (analytic) = 0 y[1] (numeric) = 1.7757023198173055902909025292281 absolute error = 1.7757023198173055902909025292281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.365 y[1] (analytic) = 0 y[1] (numeric) = 1.7762479005287012374465062522892 absolute error = 1.7762479005287012374465062522892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.366 y[1] (analytic) = 0 y[1] (numeric) = 1.7767935122424707114651594098593 absolute error = 1.7767935122424707114651594098593 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.367 y[1] (analytic) = 0 y[1] (numeric) = 1.7773391549826099851468086427986 absolute error = 1.7773391549826099851468086427986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.368 y[1] (analytic) = 0 y[1] (numeric) = 1.7778848287731144279424399213093 absolute error = 1.7778848287731144279424399213093 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.369 y[1] (analytic) = 0 y[1] (numeric) = 1.7784305336379788098923994991981 absolute error = 1.7784305336379788098923994991981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=946.0MB, alloc=4.6MB, time=99.73 x[1] = 3.37 y[1] (analytic) = 0 y[1] (numeric) = 1.7789762696011973055629832785449 absolute error = 1.7789762696011973055629832785449 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.371 y[1] (analytic) = 0 y[1] (numeric) = 1.779522036686763497981296684858 absolute error = 1.779522036686763497981296684858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.372 y[1] (analytic) = 0 y[1] (numeric) = 1.7800678349186703825683871506954 absolute error = 1.7800678349186703825683871506954 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.373 y[1] (analytic) = 0 y[1] (numeric) = 1.780613664320910371070651303632 absolute error = 1.780613664320910371070651303632 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.374 y[1] (analytic) = 0 y[1] (numeric) = 1.7811595249174752954895189523587 absolute error = 1.7811595249174752954895189523587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.375 y[1] (analytic) = 0 y[1] (numeric) = 1.7817054167323564120094159626031 absolute error = 1.7817054167323564120094159626031 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.376 y[1] (analytic) = 0 y[1] (numeric) = 1.7822513397895444049240081124729 absolute error = 1.7822513397895444049240081124729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.377 y[1] (analytic) = 0 y[1] (numeric) = 1.7827972941130293905607280147353 absolute error = 1.7827972941130293905607280147353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.378 y[1] (analytic) = 0 y[1] (numeric) = 1.7833432797268009212035871914586 absolute error = 1.7833432797268009212035871914586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.379 y[1] (analytic) = 0 y[1] (numeric) = 1.7838892966548479890142753843628 absolute error = 1.7838892966548479890142753843628 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.38 y[1] (analytic) = 0 y[1] (numeric) = 1.7844353449211590299515491821429 absolute error = 1.7844353449211590299515491821429 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.381 y[1] (analytic) = 0 y[1] (numeric) = 1.7849814245497219276889120439547 absolute error = 1.7849814245497219276889120439547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.382 y[1] (analytic) = 0 y[1] (numeric) = 1.7855275355645240175305877961758 absolute error = 1.7855275355645240175305877961758 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=949.9MB, alloc=4.6MB, time=100.12 x[1] = 3.383 y[1] (analytic) = 0 y[1] (numeric) = 1.7860736779895520903257896774857 absolute error = 1.7860736779895520903257896774857 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.384 y[1] (analytic) = 0 y[1] (numeric) = 1.7866198518487923963812870052368 absolute error = 1.7866198518487923963812870052368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.385 y[1] (analytic) = 0 y[1] (numeric) = 1.7871660571662306493722715340252 absolute error = 1.7871660571662306493722715340252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.386 y[1] (analytic) = 0 y[1] (numeric) = 1.7877122939658520302515255753042 absolute error = 1.7877122939658520302515255753042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.387 y[1] (analytic) = 0 y[1] (numeric) = 1.788258562271641191156893944823 absolute error = 1.788258562271641191156893944823 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.388 y[1] (analytic) = 0 y[1] (numeric) = 1.7888048621075822593170618026164 absolute error = 1.7888048621075822593170618026164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.389 y[1] (analytic) = 0 y[1] (numeric) = 1.7893511934976588409556404482138 absolute error = 1.7893511934976588409556404482138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.39 y[1] (analytic) = 0 y[1] (numeric) = 1.7898975564658540251935631316841 absolute error = 1.7898975564658540251935631316841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.391 y[1] (analytic) = 0 y[1] (numeric) = 1.7904439510361503879497929390833 absolute error = 1.7904439510361503879497929390833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.392 y[1] (analytic) = 0 y[1] (numeric) = 1.7909903772325299958403448088225 absolute error = 1.7909903772325299958403448088225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.393 y[1] (analytic) = 0 y[1] (numeric) = 1.7915368350789744100756237334309 absolute error = 1.7915368350789744100756237334309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.394 y[1] (analytic) = 0 y[1] (numeric) = 1.7920833245994646903560811991459 absolute error = 1.7920833245994646903560811991459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.395 y[1] (analytic) = 0 y[1] (numeric) = 1.7926298458179813987661919137216 absolute error = 1.7926298458179813987661919137216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=953.7MB, alloc=4.6MB, time=100.50 x[1] = 3.396 y[1] (analytic) = 0 y[1] (numeric) = 1.7931763987585046036667528708115 absolute error = 1.7931763987585046036667528708115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.397 y[1] (analytic) = 0 y[1] (numeric) = 1.7937229834450138835855067972471 absolute error = 1.7937229834450138835855067972471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.398 y[1] (analytic) = 0 y[1] (numeric) = 1.794269599901488331106092027501 absolute error = 1.794269599901488331106092027501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.399 y[1] (analytic) = 0 y[1] (numeric) = 1.7948162481519065567553208475957 absolute error = 1.7948162481519065567553208475957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.4 y[1] (analytic) = 0 y[1] (numeric) = 1.7953629282202466928887883486929 absolute error = 1.7953629282202466928887883486929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.401 y[1] (analytic) = 0 y[1] (numeric) = 1.7959096401304863975748138285725 absolute error = 1.7959096401304863975748138285725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.402 y[1] (analytic) = 0 y[1] (numeric) = 1.7964563839066028584767167771931 absolute error = 1.7964563839066028584767167771931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.403 y[1] (analytic) = 0 y[1] (numeric) = 1.7970031595725727967334294805029 absolute error = 1.7970031595725727967334294805029 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.404 y[1] (analytic) = 0 y[1] (numeric) = 1.7975499671523724708384482746585 absolute error = 1.7975499671523724708384482746585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.405 y[1] (analytic) = 0 y[1] (numeric) = 1.7980968066699776805171254807924 absolute error = 1.7980968066699776805171254807924 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.406 y[1] (analytic) = 0 y[1] (numeric) = 1.7986436781493637706023040484617 absolute error = 1.7986436781493637706023040484617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.407 y[1] (analytic) = 0 y[1] (numeric) = 1.7991905816145056349082969339013 absolute error = 1.7991905816145056349082969339013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.408 y[1] (analytic) = 0 y[1] (numeric) = 1.7997375170893777201032132372006 absolute error = 1.7997375170893777201032132372006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.409 y[1] (analytic) = 0 y[1] (numeric) = 1.8002844845979540295796331205183 absolute error = 1.8002844845979540295796331205183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=957.5MB, alloc=4.6MB, time=100.89 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.41 y[1] (analytic) = 0 y[1] (numeric) = 1.8008314841642081273236335274521 absolute error = 1.8008314841642081273236335274521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.411 y[1] (analytic) = 0 y[1] (numeric) = 1.8013785158121131417821667216802 absolute error = 1.8013785158121131417821667216802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.412 y[1] (analytic) = 0 y[1] (numeric) = 1.801925579565641769728793660998 absolute error = 1.801925579565641769728793660998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.413 y[1] (analytic) = 0 y[1] (numeric) = 1.8024726754487662801277742208809 absolute error = 1.8024726754487662801277742208809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.414 y[1] (analytic) = 0 y[1] (numeric) = 1.8030198034854585179965162797133 absolute error = 1.8030198034854585179965162797133 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.415 y[1] (analytic) = 0 y[1] (numeric) = 1.8035669636996899082663856758383 absolute error = 1.8035669636996899082663856758383 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.416 y[1] (analytic) = 0 y[1] (numeric) = 1.8041141561154314596418790445962 absolute error = 1.8041141561154314596418790445962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.417 y[1] (analytic) = 0 y[1] (numeric) = 1.8046613807566537684581615415393 absolute error = 1.8046613807566537684581615415393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.418 y[1] (analytic) = 0 y[1] (numeric) = 1.8052086376473270225369714560304 absolute error = 1.8052086376473270225369714560304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.419 y[1] (analytic) = 0 y[1] (numeric) = 1.8057559268114210050408937174553 absolute error = 1.8057559268114210050408937174553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.42 y[1] (analytic) = 0 y[1] (numeric) = 1.8063032482729050983260042943052 absolute error = 1.8063032482729050983260042943052 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.421 y[1] (analytic) = 0 y[1] (numeric) = 1.8068506020557482877928874844143 absolute error = 1.8068506020557482877928874844143 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.422 y[1] (analytic) = 0 y[1] (numeric) = 1.8073979881839191657360280926661 absolute error = 1.8073979881839191657360280926661 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=961.3MB, alloc=4.6MB, time=101.28 x[1] = 3.423 y[1] (analytic) = 0 y[1] (numeric) = 1.8079454066813859351915804905185 absolute error = 1.8079454066813859351915804905185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.424 y[1] (analytic) = 0 y[1] (numeric) = 1.8084928575721164137835165497306 absolute error = 1.8084928575721164137835165497306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.425 y[1] (analytic) = 0 y[1] (numeric) = 1.8090403408800780375681544407146 absolute error = 1.8090403408800780375681544407146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.426 y[1] (analytic) = 0 y[1] (numeric) = 1.809587856629237864877070283976 absolute error = 1.809587856629237864877070283976 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.427 y[1] (analytic) = 0 y[1] (numeric) = 1.8101354048435625801583946411488 absolute error = 1.8101354048435625801583946411488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.428 y[1] (analytic) = 0 y[1] (numeric) = 1.8106829855470184978164958301798 absolute error = 1.8106829855470184978164958301798 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.429 y[1] (analytic) = 0 y[1] (numeric) = 1.8112305987635715660500520472621 absolute error = 1.8112305987635715660500520472621 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.43 y[1] (analytic) = 0 y[1] (numeric) = 1.8117782445171873706885142761717 absolute error = 1.8117782445171873706885142761717 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.431 y[1] (analytic) = 0 y[1] (numeric) = 1.8123259228318311390269619637122 absolute error = 1.8123259228318311390269619637122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.432 y[1] (analytic) = 0 y[1] (numeric) = 1.8128736337314677436593534380312 absolute error = 1.8128736337314677436593534380312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.433 y[1] (analytic) = 0 y[1] (numeric) = 1.8134213772400617063101730446278 absolute error = 1.8134213772400617063101730446278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.434 y[1] (analytic) = 0 y[1] (numeric) = 1.8139691533815772016644769729345 absolute error = 1.8139691533815772016644769729345 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.435 y[1] (analytic) = 0 y[1] (numeric) = 1.8145169621799780611963397444183 absolute error = 1.8145169621799780611963397444183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=965.1MB, alloc=4.6MB, time=101.67 x[1] = 3.436 y[1] (analytic) = 0 y[1] (numeric) = 1.8150648036592277769957033312132 absolute error = 1.8150648036592277769957033312132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.437 y[1] (analytic) = 0 y[1] (numeric) = 1.8156126778432895055936308723645 absolute error = 1.8156126778432895055936308723645 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.438 y[1] (analytic) = 0 y[1] (numeric) = 1.8161605847561260717859669528358 absolute error = 1.8161605847561260717859669528358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.439 y[1] (analytic) = 0 y[1] (numeric) = 1.8167085244216999724554064085053 absolute error = 1.8167085244216999724554064085053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.44 y[1] (analytic) = 0 y[1] (numeric) = 1.8172564968639733803919736184509 absolute error = 1.8172564968639733803919736184509 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.441 y[1] (analytic) = 0 y[1] (numeric) = 1.8178045021069081481119142439055 absolute error = 1.8178045021069081481119142439055 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.442 y[1] (analytic) = 0 y[1] (numeric) = 1.8183525401744658116750013713428 absolute error = 1.8183525401744658116750013713428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.443 y[1] (analytic) = 0 y[1] (numeric) = 1.818900611090607594500258015238 absolute error = 1.818900611090607594500258015238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.444 y[1] (analytic) = 0 y[1] (numeric) = 1.8194487148792944111800979341348 absolute error = 1.8194487148792944111800979341348 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.445 y[1] (analytic) = 0 y[1] (numeric) = 1.8199968515644868712928867117366 absolute error = 1.8199968515644868712928867117366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.446 y[1] (analytic) = 0 y[1] (numeric) = 1.8205450211701452832139250528335 absolute error = 1.8205450211701452832139250528335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.447 y[1] (analytic) = 0 y[1] (numeric) = 1.8210932237202296579248562419674 absolute error = 1.8210932237202296579248562419674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.448 y[1] (analytic) = 0 y[1] (numeric) = 1.8216414592386997128214997108355 absolute error = 1.8216414592386997128214997108355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=968.9MB, alloc=4.6MB, time=102.06 x[1] = 3.449 y[1] (analytic) = 0 y[1] (numeric) = 1.8221897277495148755201126585296 absolute error = 1.8221897277495148755201126585296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.45 y[1] (analytic) = 0 y[1] (numeric) = 1.82273802927663428766208166681 absolute error = 1.82273802927663428766208166681 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.451 y[1] (analytic) = 0 y[1] (numeric) = 1.8232863638440168087170462507164 absolute error = 1.8232863638440168087170462507164 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.452 y[1] (analytic) = 0 y[1] (numeric) = 1.8238347314756210197844562829231 absolute error = 1.8238347314756210197844562829231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.453 y[1] (analytic) = 0 y[1] (numeric) = 1.8243831321954052273935652283543 absolute error = 1.8243831321954052273935652283543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.454 y[1] (analytic) = 0 y[1] (numeric) = 1.8249315660273274673018611236864 absolute error = 1.8249315660273274673018611236864 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.455 y[1] (analytic) = 0 y[1] (numeric) = 1.8254800329953455082919372344766 absolute error = 1.8254800329953455082919372344766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.456 y[1] (analytic) = 0 y[1] (numeric) = 1.8260285331234168559668043207733 absolute error = 1.8260285331234168559668043207733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.457 y[1] (analytic) = 0 y[1] (numeric) = 1.8265770664354987565436464401806 absolute error = 1.8265770664354987565436464401806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.458 y[1] (analytic) = 0 y[1] (numeric) = 1.827125632955548200646022215471 absolute error = 1.827125632955548200646022215471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.459 y[1] (analytic) = 0 y[1] (numeric) = 1.8276742327075219270945134919617 absolute error = 1.8276742327075219270945134919617 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.46 y[1] (analytic) = 0 y[1] (numeric) = 1.8282228657153764266958233079969 absolute error = 1.8282228657153764266958233079969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.461 y[1] (analytic) = 0 y[1] (numeric) = 1.8287715320030679460303251000037 absolute error = 1.8287715320030679460303251000037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.462 y[1] (analytic) = 0 y[1] (numeric) = 1.8293202315945524912380650617216 absolute error = 1.8293202315945524912380650617216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=972.7MB, alloc=4.6MB, time=102.45 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.463 y[1] (analytic) = 0 y[1] (numeric) = 1.829868964513785831803219575337 absolute error = 1.829868964513785831803219575337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.464 y[1] (analytic) = 0 y[1] (numeric) = 1.8304177307847235043370096303883 absolute error = 1.8304177307847235043370096303883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.465 y[1] (analytic) = 0 y[1] (numeric) = 1.8309665304313208163590741444457 absolute error = 1.8309665304313208163590741444457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.466 y[1] (analytic) = 0 y[1] (numeric) = 1.8315153634775328500773040977092 absolute error = 1.8315153634775328500773040977092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.467 y[1] (analytic) = 0 y[1] (numeric) = 1.8320642299473144661661393918088 absolute error = 1.8320642299473144661661393918088 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.468 y[1] (analytic) = 0 y[1] (numeric) = 1.8326131298646203075433303412384 absolute error = 1.8326131298646203075433303412384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.469 y[1] (analytic) = 0 y[1] (numeric) = 1.8331620632534048031451657039984 absolute error = 1.8331620632534048031451657039984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.47 y[1] (analytic) = 0 y[1] (numeric) = 1.8337110301376221717001691561737 absolute error = 1.8337110301376221717001691561737 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.471 y[1] (analytic) = 0 y[1] (numeric) = 1.8342600305412264255012661133241 absolute error = 1.8342600305412264255012661133241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.472 y[1] (analytic) = 0 y[1] (numeric) = 1.8348090644881713741764227997185 absolute error = 1.8348090644881713741764227997185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.473 y[1] (analytic) = 0 y[1] (numeric) = 1.835358132002410628457759464601 absolute error = 1.835358132002410628457759464601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.474 y[1] (analytic) = 0 y[1] (numeric) = 1.8359072331078976039491396428351 absolute error = 1.8359072331078976039491396428351 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.475 y[1] (analytic) = 0 y[1] (numeric) = 1.8364563678285855248922373554337 absolute error = 1.8364563678285855248922373554337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=976.6MB, alloc=4.6MB, time=102.83 x[1] = 3.476 y[1] (analytic) = 0 y[1] (numeric) = 1.8370055361884274279310841436457 absolute error = 1.8370055361884274279310841436457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.477 y[1] (analytic) = 0 y[1] (numeric) = 1.8375547382113761658750978284372 absolute error = 1.8375547382113761658750978284372 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.478 y[1] (analytic) = 0 y[1] (numeric) = 1.8381039739213844114605948853711 absolute error = 1.8381039739213844114605948853711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.479 y[1] (analytic) = 0 y[1] (numeric) = 1.8386532433424046611107883230618 absolute error = 1.8386532433424046611107883230618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.48 y[1] (analytic) = 0 y[1] (numeric) = 1.8392025464983892386942729515535 absolute error = 1.8392025464983892386942729515535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.481 y[1] (analytic) = 0 y[1] (numeric) = 1.8397518834132902992819999251456 absolute error = 1.8397518834132902992819999251456 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.482 y[1] (analytic) = 0 y[1] (numeric) = 1.8403012541110598329027424423674 absolute error = 1.8403012541110598329027424423674 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.483 y[1] (analytic) = 0 y[1] (numeric) = 1.840850658615649668297054483983 absolute error = 1.840850658615649668297054483983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.484 y[1] (analytic) = 0 y[1] (numeric) = 1.8414000969510114766697244680909 absolute error = 1.8414000969510114766697244680909 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.485 y[1] (analytic) = 0 y[1] (numeric) = 1.8419495691410967754407256995662 absolute error = 1.8419495691410967754407256995662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.486 y[1] (analytic) = 0 y[1] (numeric) = 1.8424990752098569319946654892813 absolute error = 1.8424990752098569319946654892813 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.487 y[1] (analytic) = 0 y[1] (numeric) = 1.8430486151812431674287348167296 absolute error = 1.8430486151812431674287348167296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.488 y[1] (analytic) = 0 y[1] (numeric) = 1.8435981890792065602991604078686 absolute error = 1.8435981890792065602991604078686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=980.4MB, alloc=4.6MB, time=103.22 x[1] = 3.489 y[1] (analytic) = 0 y[1] (numeric) = 1.8441477969276980503661610981931 absolute error = 1.8441477969276980503661610981931 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.49 y[1] (analytic) = 0 y[1] (numeric) = 1.844697438750668442337410349245 absolute error = 1.844697438750668442337410349245 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.491 y[1] (analytic) = 0 y[1] (numeric) = 1.8452471145720684096100067849646 absolute error = 1.8452471145720684096100067849646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.492 y[1] (analytic) = 0 y[1] (numeric) = 1.8457968244158484980109546124906 absolute error = 1.8457968244158484980109546124906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.493 y[1] (analytic) = 0 y[1] (numeric) = 1.8463465683059591295361557902171 absolute error = 1.8463465683059591295361557902171 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.494 y[1] (analytic) = 0 y[1] (numeric) = 1.8468963462663506060879158041231 absolute error = 1.8468963462663506060879158041231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.495 y[1] (analytic) = 0 y[1] (numeric) = 1.8474461583209731132109649115977 absolute error = 1.8474461583209731132109649115977 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.496 y[1] (analytic) = 0 y[1] (numeric) = 1.8479960044937767238269967101934 absolute error = 1.8479960044937767238269967101934 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.497 y[1] (analytic) = 0 y[1] (numeric) = 1.8485458848087114019677258869529 absolute error = 1.8485458848087114019677258869529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.498 y[1] (analytic) = 0 y[1] (numeric) = 1.8490957992897270065064670021701 absolute error = 1.8490957992897270065064670021701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.499 y[1] (analytic) = 0 y[1] (numeric) = 1.8496457479607732948882361596624 absolute error = 1.8496457479607732948882361596624 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.5 y[1] (analytic) = 0 y[1] (numeric) = 1.8501957308457999268583774138503 absolute error = 1.8501957308457999268583774138503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.501 y[1] (analytic) = 0 y[1] (numeric) = 1.8507457479687564681897157621629 absolute error = 1.8507457479687564681897157621629 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=984.2MB, alloc=4.6MB, time=103.61 x[1] = 3.502 y[1] (analytic) = 0 y[1] (numeric) = 1.8512957993535923944082385695115 absolute error = 1.8512957993535923944082385695115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.503 y[1] (analytic) = 0 y[1] (numeric) = 1.8518458850242570945173072697994 absolute error = 1.8518458850242570945173072697994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.504 y[1] (analytic) = 0 y[1] (numeric) = 1.8523960050046998747204011876643 absolute error = 1.8523960050046998747204011876643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.505 y[1] (analytic) = 0 y[1] (numeric) = 1.8529461593188699621423953218811 absolute error = 1.8529461593188699621423953218811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.506 y[1] (analytic) = 0 y[1] (numeric) = 1.8534963479907165085493739300852 absolute error = 1.8534963479907165085493739300852 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.507 y[1] (analytic) = 0 y[1] (numeric) = 1.8540465710441885940669817527129 absolute error = 1.8540465710441885940669817527129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.508 y[1] (analytic) = 0 y[1] (numeric) = 1.8545968285032352308973147122903 absolute error = 1.8545968285032352308973147122903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.509 y[1] (analytic) = 0 y[1] (numeric) = 1.8551471203918053670343519224459 absolute error = 1.8551471203918053670343519224459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.51 y[1] (analytic) = 0 y[1] (numeric) = 1.8556974467338478899779308392602 absolute error = 1.8556974467338478899779308392602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.511 y[1] (analytic) = 0 y[1] (numeric) = 1.8562478075533116304462673858129 absolute error = 1.8562478075533116304462673858129 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.512 y[1] (analytic) = 0 y[1] (numeric) = 1.8567982028741453660870228790326 absolute error = 1.8567982028741453660870228790326 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.513 y[1] (analytic) = 0 y[1] (numeric) = 1.8573486327202978251869195862048 absolute error = 1.8573486327202978251869195862048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.514 y[1] (analytic) = 0 y[1] (numeric) = 1.8578990971157176903799067367432 absolute error = 1.8578990971157176903799067367432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.515 y[1] (analytic) = 0 y[1] (numeric) = 1.8584495960843536023538788130835 absolute error = 1.8584495960843536023538788130835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=988.0MB, alloc=4.6MB, time=104.00 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.516 y[1] (analytic) = 0 y[1] (numeric) = 1.8590001296501541635559479428148 absolute error = 1.8590001296501541635559479428148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.517 y[1] (analytic) = 0 y[1] (numeric) = 1.8595506978370679418962722124205 absolute error = 1.8595506978370679418962722124205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.518 y[1] (analytic) = 0 y[1] (numeric) = 1.8601013006690434744504417212612 absolute error = 1.8601013006690434744504417212612 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.519 y[1] (analytic) = 0 y[1] (numeric) = 1.8606519381700292711604241926945 absolute error = 1.8606519381700292711604241926945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.52 y[1] (analytic) = 0 y[1] (numeric) = 1.8612026103639738185340719574903 absolute error = 1.8612026103639738185340719574903 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.521 y[1] (analytic) = 0 y[1] (numeric) = 1.8617533172748255833431921229679 absolute error = 1.8617533172748255833431921229679 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.522 y[1] (analytic) = 0 y[1] (numeric) = 1.8623040589265330163201817395493 absolute error = 1.8623040589265330163201817395493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.523 y[1] (analytic) = 0 y[1] (numeric) = 1.8628548353430445558532297746942 absolute error = 1.8628548353430445558532297746942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.524 y[1] (analytic) = 0 y[1] (numeric) = 1.8634056465483086316800877024567 absolute error = 1.8634056465483086316800877024567 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.525 y[1] (analytic) = 0 y[1] (numeric) = 1.8639564925662736685804105151773 absolute error = 1.8639564925662736685804105151773 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.526 y[1] (analytic) = 0 y[1] (numeric) = 1.8645073734208880900666699621035 absolute error = 1.8645073734208880900666699621035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.527 y[1] (analytic) = 0 y[1] (numeric) = 1.865058289136100322073641818011 absolute error = 1.865058289136100322073641818011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.528 y[1] (analytic) = 0 y[1] (numeric) = 1.8656092397358587966464689831803 absolute error = 1.8656092397358587966464689831803 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=991.8MB, alloc=4.6MB, time=104.39 x[1] = 3.529 y[1] (analytic) = 0 y[1] (numeric) = 1.8661602252441119556273022143669 absolute error = 1.8661602252441119556273022143669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.53 y[1] (analytic) = 0 y[1] (numeric) = 1.866711245684808254340520284692 absolute error = 1.866711245684808254340520284692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.531 y[1] (analytic) = 0 y[1] (numeric) = 1.8672623010818961652765313686664 absolute error = 1.8672623010818961652765313686664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.532 y[1] (analytic) = 0 y[1] (numeric) = 1.8678133914593241817741574468538 absolute error = 1.8678133914593241817741574468538 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.533 y[1] (analytic) = 0 y[1] (numeric) = 1.8683645168410408217016035229714 absolute error = 1.8683645168410408217016035229714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.534 y[1] (analytic) = 0 y[1] (numeric) = 1.8689156772509946311360134445215 absolute error = 1.8689156772509946311360134445215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.535 y[1] (analytic) = 0 y[1] (numeric) = 1.8694668727131341880416141163452 absolute error = 1.8694668727131341880416141163452 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.536 y[1] (analytic) = 0 y[1] (numeric) = 1.8700181032514081059464498947893 absolute error = 1.8700181032514081059464498947893 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.537 y[1] (analytic) = 0 y[1] (numeric) = 1.8705693688897650376177089484784 absolute error = 1.8705693688897650376177089484784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.538 y[1] (analytic) = 0 y[1] (numeric) = 1.8711206696521536787356433699893 absolute error = 1.8711206696521536787356433699893 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.539 y[1] (analytic) = 0 y[1] (numeric) = 1.8716720055625227715660848210307 absolute error = 1.8716720055625227715660848210307 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.54 y[1] (analytic) = 0 y[1] (numeric) = 1.872223376644821108631557492039 absolute error = 1.872223376644821108631557492039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.541 y[1] (analytic) = 0 y[1] (numeric) = 1.8727747829229975363809901554122 absolute error = 1.8727747829229975363809901554122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=995.6MB, alloc=4.6MB, time=104.79 x[1] = 3.542 y[1] (analytic) = 0 y[1] (numeric) = 1.873326224421000958858029089916 absolute error = 1.873326224421000958858029089916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.543 y[1] (analytic) = 0 y[1] (numeric) = 1.873877701162780341367953652112 absolute error = 1.873877701162780341367953652112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.544 y[1] (analytic) = 0 y[1] (numeric) = 1.8744292131722847141431962689733 absolute error = 1.8744292131722847141431962689733 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.545 y[1] (analytic) = 0 y[1] (numeric) = 1.8749807604734631760074686241734 absolute error = 1.8749807604734631760074686241734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.546 y[1] (analytic) = 0 y[1] (numeric) = 1.8755323430902648980384958088556 absolute error = 1.8755323430902648980384958088556 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.547 y[1] (analytic) = 0 y[1] (numeric) = 1.8760839610466391272293602060114 absolute error = 1.8760839610466391272293602060114 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.548 y[1] (analytic) = 0 y[1] (numeric) = 1.8766356143665351901484568759255 absolute error = 1.8766356143665351901484568759255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.549 y[1] (analytic) = 0 y[1] (numeric) = 1.8771873030739024965980622084691 absolute error = 1.8771873030739024965980622084691 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.55 y[1] (analytic) = 0 y[1] (numeric) = 1.877739027192690543271517606356 absolute error = 1.877739027192690543271517606356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.551 y[1] (analytic) = 0 y[1] (numeric) = 1.8782907867468489174090299618059 absolute error = 1.8782907867468489174090299618059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.552 y[1] (analytic) = 0 y[1] (numeric) = 1.8788425817603273004520906873947 absolute error = 1.8788425817603273004520906873947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.553 y[1] (analytic) = 0 y[1] (numeric) = 1.8793944122570754716965150602068 absolute error = 1.8793944122570754716965150602068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.554 y[1] (analytic) = 0 y[1] (numeric) = 1.8799462782610433119441036367443 absolute error = 1.8799462782610433119441036367443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=999.4MB, alloc=4.6MB, time=105.18 x[1] = 3.555 y[1] (analytic) = 0 y[1] (numeric) = 1.8804981797961808071529274943867 absolute error = 1.8804981797961808071529274943867 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.556 y[1] (analytic) = 0 y[1] (numeric) = 1.8810501168864380520862390535381 absolute error = 1.8810501168864380520862390535381 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.557 y[1] (analytic) = 0 y[1] (numeric) = 1.8816020895557652539600102329447 absolute error = 1.8816020895557652539600102329447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.558 y[1] (analytic) = 0 y[1] (numeric) = 1.8821540978281127360890996890098 absolute error = 1.8821540978281127360890996890098 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.559 y[1] (analytic) = 0 y[1] (numeric) = 1.8827061417274309415320508882847 absolute error = 1.8827061417274309415320508882847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.56 y[1] (analytic) = 0 y[1] (numeric) = 1.8832582212776704367345227606643 absolute error = 1.8832582212776704367345227606643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.561 y[1] (analytic) = 0 y[1] (numeric) = 1.8838103365027819151713546791682 absolute error = 1.8838103365027819151713546791682 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.562 y[1] (analytic) = 0 y[1] (numeric) = 1.8843624874267162009872675105453 absolute error = 1.8843624874267162009872675105453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.563 y[1] (analytic) = 0 y[1] (numeric) = 1.8849146740734242526362024792957 absolute error = 1.8849146740734242526362024792957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.564 y[1] (analytic) = 0 y[1] (numeric) = 1.8854668964668571665192995860639 absolute error = 1.8854668964668571665192995860639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.565 y[1] (analytic) = 0 y[1] (numeric) = 1.8860191546309661806215173197189 absolute error = 1.8860191546309661806215173197189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.566 y[1] (analytic) = 0 y[1] (numeric) = 1.8865714485897026781468954007994 absolute error = 1.8865714485897026781468954007994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.567 y[1] (analytic) = 0 y[1] (numeric) = 1.8871237783670181911524622923701 absolute error = 1.8871237783670181911524622923701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.568 y[1] (analytic) = 0 y[1] (numeric) = 1.8876761439868644041807892127007 absolute error = 1.8876761439868644041807892127007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1003.3MB, alloc=4.6MB, time=105.59 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.569 y[1] (analytic) = 0 y[1] (numeric) = 1.8882285454731931578911923825498 absolute error = 1.8882285454731931578911923825498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.57 y[1] (analytic) = 0 y[1] (numeric) = 1.8887809828499564526895852382094 absolute error = 1.8887809828499564526895852382094 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.571 y[1] (analytic) = 0 y[1] (numeric) = 1.8893334561411064523569823398368 absolute error = 1.8893334561411064523569823398368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.572 y[1] (analytic) = 0 y[1] (numeric) = 1.8898859653705954876766567029797 absolute error = 1.8898859653705954876766567029797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.573 y[1] (analytic) = 0 y[1] (numeric) = 1.8904385105623760600599522795766 absolute error = 1.8904385105623760600599522795766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.574 y[1] (analytic) = 0 y[1] (numeric) = 1.8909910917404008451707533130955 absolute error = 1.8909910917404008451707533130955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.575 y[1] (analytic) = 0 y[1] (numeric) = 1.8915437089286226965486122908568 absolute error = 1.8915437089286226965486122908568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.576 y[1] (analytic) = 0 y[1] (numeric) = 1.8920963621509946492305382149688 absolute error = 1.8920963621509946492305382149688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.577 y[1] (analytic) = 0 y[1] (numeric) = 1.8926490514314699233714469116935 absolute error = 1.8926490514314699233714469116935 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.578 y[1] (analytic) = 0 y[1] (numeric) = 1.8932017767940019278632750974457 absolute error = 1.8932017767940019278632750974457 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.579 y[1] (analytic) = 0 y[1] (numeric) = 1.8937545382625442639527599180222 absolute error = 1.8937545382625442639527599180222 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.58 y[1] (analytic) = 0 y[1] (numeric) = 1.894307335861050728857885676047 absolute error = 1.894307335861050728857885676047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.581 y[1] (analytic) = 0 y[1] (numeric) = 1.8948601696134753193829994600163 absolute error = 1.8948601696134753193829994600163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1007.1MB, alloc=4.6MB, time=105.99 x[1] = 3.582 y[1] (analytic) = 0 y[1] (numeric) = 1.895413039543772235532597386722 absolute error = 1.895413039543772235532597386722 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.583 y[1] (analytic) = 0 y[1] (numeric) = 1.8959659456758958841237831672307 absolute error = 1.8959659456758958841237831672307 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.584 y[1] (analytic) = 0 y[1] (numeric) = 1.896518888033800882397400704998 absolute error = 1.896518888033800882397400704998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.585 y[1] (analytic) = 0 y[1] (numeric) = 1.8970718666414420616278424330983 absolute error = 1.8970718666414420616278424330983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.586 y[1] (analytic) = 0 y[1] (numeric) = 1.897624881522774470731535095957 absolute error = 1.897624881522774470731535095957 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.587 y[1] (analytic) = 0 y[1] (numeric) = 1.8981779327017533798741046793776 absolute error = 1.8981779327017533798741046793776 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.588 y[1] (analytic) = 0 y[1] (numeric) = 1.8987310202023342840762221910664 absolute error = 1.8987310202023342840762221910664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.589 y[1] (analytic) = 0 y[1] (numeric) = 1.8992841440484729068181319922665 absolute error = 1.8992841440484729068181319922665 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.59 y[1] (analytic) = 0 y[1] (numeric) = 1.8998373042641252036428643795281 absolute error = 1.8998373042641252036428643795281 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.591 y[1] (analytic) = 0 y[1] (numeric) = 1.9003905008732473657581341140547 absolute error = 1.9003905008732473657581341140547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.592 y[1] (analytic) = 0 y[1] (numeric) = 1.9009437338997958236369265944838 absolute error = 1.9009437338997958236369265944838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.593 y[1] (analytic) = 0 y[1] (numeric) = 1.9014970033677272506167733673784 absolute error = 1.9014970033677272506167733673784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.594 y[1] (analytic) = 0 y[1] (numeric) = 1.9020503093009985664977186681268 absolute error = 1.9020503093009985664977186681268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1010.9MB, alloc=4.6MB, time=106.38 x[1] = 3.595 y[1] (analytic) = 0 y[1] (numeric) = 1.9026036517235669411389786833719 absolute error = 1.9026036517235669411389786833719 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.596 y[1] (analytic) = 0 y[1] (numeric) = 1.9031570306593897980542952245152 absolute error = 1.9031570306593897980542952245152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.597 y[1] (analytic) = 0 y[1] (numeric) = 1.9037104461324248180059855002686 absolute error = 1.9037104461324248180059855002686 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.598 y[1] (analytic) = 0 y[1] (numeric) = 1.9042638981666299425976896746554 absolute error = 1.9042638981666299425976896746554 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.599 y[1] (analytic) = 0 y[1] (numeric) = 1.9048173867859633778658178952938 absolute error = 1.9048173867859633778658178952938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.6 y[1] (analytic) = 0 y[1] (numeric) = 1.9053709120143835978696984752279 absolute error = 1.9053709120143835978696984752279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.601 y[1] (analytic) = 0 y[1] (numeric) = 1.9059244738758493482804289100074 absolute error = 1.9059244738758493482804289100074 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.602 y[1] (analytic) = 0 y[1] (numeric) = 1.9064780723943196499684314101542 absolute error = 1.9064780723943196499684314101542 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.603 y[1] (analytic) = 0 y[1] (numeric) = 1.9070317075937538025897146275913 absolute error = 1.9070317075937538025897146275913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.604 y[1] (analytic) = 0 y[1] (numeric) = 1.907585379498111388170843253053 absolute error = 1.907585379498111388170843253053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.605 y[1] (analytic) = 0 y[1] (numeric) = 1.9081390881313522746926171599365 absolute error = 1.9081390881313522746926171599365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.606 y[1] (analytic) = 0 y[1] (numeric) = 1.9086928335174366196724617685001 absolute error = 1.9086928335174366196724617685001 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.607 y[1] (analytic) = 0 y[1] (numeric) = 1.9092466156803248737455313027611 absolute error = 1.9092466156803248737455313027611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1014.7MB, alloc=4.6MB, time=106.78 x[1] = 3.608 y[1] (analytic) = 0 y[1] (numeric) = 1.9098004346439777842445266108942 absolute error = 1.9098004346439777842445266108942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.609 y[1] (analytic) = 0 y[1] (numeric) = 1.9103542904323563987782292183824 absolute error = 1.9103542904323563987782292183824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.61 y[1] (analytic) = 0 y[1] (numeric) = 1.9109081830694220688087532816261 absolute error = 1.9109081830694220688087532816261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.611 y[1] (analytic) = 0 y[1] (numeric) = 1.9114621125791364532275171081691 absolute error = 1.9114621125791364532275171081691 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.612 y[1] (analytic) = 0 y[1] (numeric) = 1.9120160789854615219299359081586 absolute error = 1.9120160789854615219299359081586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.613 y[1] (analytic) = 0 y[1] (numeric) = 1.9125700823123595593888374401142 absolute error = 1.9125700823123595593888374401142 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.614 y[1] (analytic) = 0 y[1] (numeric) = 1.9131241225837931682266022125412 absolute error = 1.9131241225837931682266022125412 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.615 y[1] (analytic) = 0 y[1] (numeric) = 1.9136781998237252727860299013876 absolute error = 1.9136781998237252727860299013876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.616 y[1] (analytic) = 0 y[1] (numeric) = 1.9142323140561191226999336418064 absolute error = 1.9142323140561191226999336418064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.617 y[1] (analytic) = 0 y[1] (numeric) = 1.9147864653049382964594638511535 absolute error = 1.9147864653049382964594638511535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.618 y[1] (analytic) = 0 y[1] (numeric) = 1.9153406535941467049811632386188 absolute error = 1.9153406535941467049811632386188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.619 y[1] (analytic) = 0 y[1] (numeric) = 1.9158948789477085951727546553591 absolute error = 1.9158948789477085951727546553591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.62 y[1] (analytic) = 0 y[1] (numeric) = 1.9164491413895885534976634374725 absolute error = 1.9164491413895885534976634374725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.621 y[1] (analytic) = 0 y[1] (numeric) = 1.9170034409437515095382758926301 absolute error = 1.9170034409437515095382758926301 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1018.5MB, alloc=4.6MB, time=107.21 x[1] = 3.622 y[1] (analytic) = 0 y[1] (numeric) = 1.9175577776341627395579355796555 absolute error = 1.9175577776341627395579355796555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.623 y[1] (analytic) = 0 y[1] (numeric) = 1.9181121514847878700616790288215 absolute error = 1.9181121514847878700616790288215 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.624 y[1] (analytic) = 0 y[1] (numeric) = 1.9186665625195928813557125491135 absolute error = 1.9186665625195928813557125491135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.625 y[1] (analytic) = 0 y[1] (numeric) = 1.9192210107625441111056317671902 absolute error = 1.9192210107625441111056317671902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.626 y[1] (analytic) = 0 y[1] (numeric) = 1.9197754962376082578933855412573 absolute error = 1.9197754962376082578933855412573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.627 y[1] (analytic) = 0 y[1] (numeric) = 1.9203300189687523847729858915554 absolute error = 1.9203300189687523847729858915554 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.628 y[1] (analytic) = 0 y[1] (numeric) = 1.9208845789799439228249655876502 absolute error = 1.9208845789799439228249655876502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.629 y[1] (analytic) = 0 y[1] (numeric) = 1.9214391762951506747095850312043 absolute error = 1.9214391762951506747095850312043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.63 y[1] (analytic) = 0 y[1] (numeric) = 1.9219938109383408182187900713997 absolute error = 1.9219938109383408182187900713997 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.631 y[1] (analytic) = 0 y[1] (numeric) = 1.922548482933482909826922388676 absolute error = 1.922548482933482909826922388676 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.632 y[1] (analytic) = 0 y[1] (numeric) = 1.9231031923045458882401840809414 absolute error = 1.9231031923045458882401840809414 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.633 y[1] (analytic) = 0 y[1] (numeric) = 1.9236579390754990779448580849148 absolute error = 1.9236579390754990779448580849148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.634 y[1] (analytic) = 0 y[1] (numeric) = 1.9242127232703121927542860637528 absolute error = 1.9242127232703121927542860637528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1022.3MB, alloc=4.6MB, time=107.64 x[1] = 3.635 y[1] (analytic) = 0 y[1] (numeric) = 1.9247675449129553393546053906199 absolute error = 1.9247675449129553393546053906199 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.636 y[1] (analytic) = 0 y[1] (numeric) = 1.9253224040273990208492468563602 absolute error = 1.9253224040273990208492468563602 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.637 y[1] (analytic) = 0 y[1] (numeric) = 1.9258773006376141403021947279359 absolute error = 1.9258773006376141403021947279359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.638 y[1] (analytic) = 0 y[1] (numeric) = 1.9264322347675720042800107828043 absolute error = 1.9264322347675720042800107828043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.639 y[1] (analytic) = 0 y[1] (numeric) = 1.9269872064412443263926239429131 absolute error = 1.9269872064412443263926239429131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.64 y[1] (analytic) = 0 y[1] (numeric) = 1.9275422156826032308328871305045 absolute error = 1.9275422156826032308328871305045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.641 y[1] (analytic) = 0 y[1] (numeric) = 1.9280972625156212559149029664321 absolute error = 1.9280972625156212559149029664321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.642 y[1] (analytic) = 0 y[1] (numeric) = 1.9286523469642713576111199302078 absolute error = 1.9286523469642713576111199302078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.643 y[1] (analytic) = 0 y[1] (numeric) = 1.9292074690525269130882005995123 absolute error = 1.9292074690525269130882005995123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.644 y[1] (analytic) = 0 y[1] (numeric) = 1.9297626288043617242416635854218 absolute error = 1.9297626288043617242416635854218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.645 y[1] (analytic) = 0 y[1] (numeric) = 1.9303178262437500212293007781226 absolute error = 1.9303178262437500212293007781226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.646 y[1] (analytic) = 0 y[1] (numeric) = 1.9308730613946664660033715164076 absolute error = 1.9308730613946664660033715164076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.647 y[1] (analytic) = 0 y[1] (numeric) = 1.9314283342810861558415752927719 absolute error = 1.9314283342810861558415752927719 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1026.2MB, alloc=4.6MB, time=108.04 x[1] = 3.648 y[1] (analytic) = 0 y[1] (numeric) = 1.9319836449269846268768046044518 absolute error = 1.9319836449269846268768046044518 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.649 y[1] (analytic) = 0 y[1] (numeric) = 1.9325389933563378576256795592769 absolute error = 1.9325389933563378576256795592769 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.65 y[1] (analytic) = 0 y[1] (numeric) = 1.9330943795931222725158658437358 absolute error = 1.9330943795931222725158658437358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.651 y[1] (analytic) = 0 y[1] (numeric) = 1.9336498036613147454121776591872 absolute error = 1.9336498036613147454121776591872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.652 y[1] (analytic) = 0 y[1] (numeric) = 1.9342052655848926031414672306796 absolute error = 1.9342052655848926031414672306796 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.653 y[1] (analytic) = 0 y[1] (numeric) = 1.9347607653878336290163024913804 absolute error = 1.9347607653878336290163024913804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.654 y[1] (analytic) = 0 y[1] (numeric) = 1.9353163030941160663574345441491 absolute error = 1.9353163030941160663574345441491 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.655 y[1] (analytic) = 0 y[1] (numeric) = 1.9358718787277186220150565003304 absolute error = 1.9358718787277186220150565003304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.656 y[1] (analytic) = 0 y[1] (numeric) = 1.9364274923126204698888552943818 absolute error = 1.9364274923126204698888552943818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.657 y[1] (analytic) = 0 y[1] (numeric) = 1.9369831438728012544468580714932 absolute error = 1.9369831438728012544468580714932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.658 y[1] (analytic) = 0 y[1] (numeric) = 1.9375388334322410942430747439007 absolute error = 1.9375388334322410942430747439007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.659 y[1] (analytic) = 0 y[1] (numeric) = 1.9380945610149205854339383101415 absolute error = 1.9380945610149205854339383101415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.66 y[1] (analytic) = 0 y[1] (numeric) = 1.9386503266448208052935445300461 absolute error = 1.9386503266448208052935445300461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.661 y[1] (analytic) = 0 y[1] (numeric) = 1.9392061303459233157276925468132 absolute error = 1.9392061303459233157276925468132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1030.0MB, alloc=4.6MB, time=108.44 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.662 y[1] (analytic) = 0 y[1] (numeric) = 1.9397619721422101667867280460627 absolute error = 1.9397619721422101667867280460627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.663 y[1] (analytic) = 0 y[1] (numeric) = 1.9403178520576639001771905403189 absolute error = 1.9403178520576639001771905403189 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.664 y[1] (analytic) = 0 y[1] (numeric) = 1.9408737701162675527722663659272 absolute error = 1.9408737701162675527722663659272 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.665 y[1] (analytic) = 0 y[1] (numeric) = 1.941429726342004660121048977968 absolute error = 1.941429726342004660121048977968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.666 y[1] (analytic) = 0 y[1] (numeric) = 1.9419857207588592599566081272881 absolute error = 1.9419857207588592599566081272881 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.667 y[1] (analytic) = 0 y[1] (numeric) = 1.9425417533908158957028695023314 absolute error = 1.9425417533908158957028695023314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.668 y[1] (analytic) = 0 y[1] (numeric) = 1.9430978242618596199803064170139 absolute error = 1.9430978242618596199803064170139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.669 y[1] (analytic) = 0 y[1] (numeric) = 1.9436539333959759981104451244499 absolute error = 1.9436539333959759981104451244499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.67 y[1] (analytic) = 0 y[1] (numeric) = 1.9442100808171511116191853349057 absolute error = 1.9442100808171511116191853349057 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.671 y[1] (analytic) = 0 y[1] (numeric) = 1.9447662665493715617389375149221 absolute error = 1.9447662665493715617389375149221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.672 y[1] (analytic) = 0 y[1] (numeric) = 1.9453224906166244729095785431185 absolute error = 1.9453224906166244729095785431185 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.673 y[1] (analytic) = 0 y[1] (numeric) = 1.9458787530428974962782272967616 absolute error = 1.9458787530428974962782272967616 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.674 y[1] (analytic) = 0 y[1] (numeric) = 1.9464350538521788131978417417569 absolute error = 1.9464350538521788131978417417569 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1033.8MB, alloc=4.6MB, time=108.85 x[1] = 3.675 y[1] (analytic) = 0 y[1] (numeric) = 1.9469913930684571387246390972941 absolute error = 1.9469913930684571387246390972941 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.676 y[1] (analytic) = 0 y[1] (numeric) = 1.947547770715721725114340644956 absolute error = 1.947547770715721725114340644956 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.677 y[1] (analytic) = 0 y[1] (numeric) = 1.9481041868179623653172427506786 absolute error = 1.9481041868179623653172427506786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.678 y[1] (analytic) = 0 y[1] (numeric) = 1.9486606413991693964721156665306 absolute error = 1.9486606413991693964721156665306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.679 y[1] (analytic) = 0 y[1] (numeric) = 1.9492171344833337033989316778634 absolute error = 1.9492171344833337033989316778634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.68 y[1] (analytic) = 0 y[1] (numeric) = 1.9497736660944467220904241599659 absolute error = 1.9497736660944467220904241599659 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.681 y[1] (analytic) = 0 y[1] (numeric) = 1.9503302362565004432024791069448 absolute error = 1.9503302362565004432024791069448 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.682 y[1] (analytic) = 0 y[1] (numeric) = 1.9508868449934874155433606941387 absolute error = 1.9508868449934874155433606941387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.683 y[1] (analytic) = 0 y[1] (numeric) = 1.9514434923294007495617724339641 absolute error = 1.9514434923294007495617724339641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.684 y[1] (analytic) = 0 y[1] (numeric) = 1.9520001782882341208337554836819 absolute error = 1.9520001782882341208337554836819 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.685 y[1] (analytic) = 0 y[1] (numeric) = 1.9525569028939817735484256621662 absolute error = 1.9525569028939817735484256621662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.686 y[1] (analytic) = 0 y[1] (numeric) = 1.953113666170638523992550731353 absolute error = 1.953113666170638523992550731353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.687 y[1] (analytic) = 0 y[1] (numeric) = 1.9536704681421997640339694966413 absolute error = 1.9536704681421997640339694966413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1037.6MB, alloc=4.6MB, time=109.27 x[1] = 3.688 y[1] (analytic) = 0 y[1] (numeric) = 1.9542273088326614646038542791188 absolute error = 1.9542273088326614646038542791188 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.689 y[1] (analytic) = 0 y[1] (numeric) = 1.9547841882660201791778183110837 absolute error = 1.9547841882660201791778183110837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.69 y[1] (analytic) = 0 y[1] (numeric) = 1.9553411064662730472558696049361 absolute error = 1.9553411064662730472558696049361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.691 y[1] (analytic) = 0 y[1] (numeric) = 1.955898063457417797841212844117 absolute error = 1.955898063457417797841212844117 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.692 y[1] (analytic) = 0 y[1] (numeric) = 1.9564550592634527529179008433766 absolute error = 1.9564550592634527529179008433766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.693 y[1] (analytic) = 0 y[1] (numeric) = 1.9570120939083768309273371242622 absolute error = 1.9570120939083768309273371242622 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.694 y[1] (analytic) = 0 y[1] (numeric) = 1.9575691674161895502436311503243 absolute error = 1.9575691674161895502436311503243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.695 y[1] (analytic) = 0 y[1] (numeric) = 1.9581262798108910326478077651504 absolute error = 1.9581262798108910326478077651504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.696 y[1] (analytic) = 0 y[1] (numeric) = 1.9586834311164820068008723749481 absolute error = 1.9586834311164820068008723749481 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.697 y[1] (analytic) = 0 y[1] (numeric) = 1.9592406213569638117157334160132 absolute error = 1.9592406213569638117157334160132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.698 y[1] (analytic) = 0 y[1] (numeric) = 1.959797850556338400227983646035 absolute error = 1.959797850556338400227983646035 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.699 y[1] (analytic) = 0 y[1] (numeric) = 1.9603551187386083424655417968084 absolute error = 1.9603551187386083424655417968084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.7 y[1] (analytic) = 0 y[1] (numeric) = 1.9609124259277768293171561245406 absolute error = 1.9609124259277768293171561245406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1041.4MB, alloc=4.6MB, time=109.72 x[1] = 3.701 y[1] (analytic) = 0 y[1] (numeric) = 1.9614697721478476758997713925641 absolute error = 1.9614697721478476758997713925641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.702 y[1] (analytic) = 0 y[1] (numeric) = 1.9620271574228253250247608198871 absolute error = 1.9620271574228253250247608198871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.703 y[1] (analytic) = 0 y[1] (numeric) = 1.9625845817767148506630245276401 absolute error = 1.9625845817767148506630245276401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.704 y[1] (analytic) = 0 y[1] (numeric) = 1.9631420452335219614089560141018 absolute error = 1.9631420452335219614089560141018 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.705 y[1] (analytic) = 0 y[1] (numeric) = 1.9636995478172530039432781876159 absolute error = 1.9636995478172530039432781876159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.706 y[1] (analytic) = 0 y[1] (numeric) = 1.9642570895519149664947504853415 absolute error = 1.9642570895519149664947504853415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.707 y[1] (analytic) = 0 y[1] (numeric) = 1.9648146704615154823007486044092 absolute error = 1.9648146704615154823007486044092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.708 y[1] (analytic) = 0 y[1] (numeric) = 1.9653722905700628330667183706897 absolute error = 1.9653722905700628330667183706897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.709 y[1] (analytic) = 0 y[1] (numeric) = 1.9659299499015659524245052690166 absolute error = 1.9659299499015659524245052690166 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.71 y[1] (analytic) = 0 y[1] (numeric) = 1.9664876484800344293895611573408 absolute error = 1.9664876484800344293895611573408 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.711 y[1] (analytic) = 0 y[1] (numeric) = 1.9670453863294785118170296859336 absolute error = 1.9670453863294785118170296859336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.712 y[1] (analytic) = 0 y[1] (numeric) = 1.9676031634739091098567119413946 absolute error = 1.9676031634739091098567119413946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.713 y[1] (analytic) = 0 y[1] (numeric) = 1.968160979937337799406913833863 absolute error = 1.968160979937337799406913833863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.714 y[1] (analytic) = 0 y[1] (numeric) = 1.9687188357437768255671767444745 absolute error = 1.9687188357437768255671767444745 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1045.2MB, alloc=4.6MB, time=110.16 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.715 y[1] (analytic) = 0 y[1] (numeric) = 1.9692767309172391060898929487502 absolute error = 1.9692767309172391060898929487502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.716 y[1] (analytic) = 0 y[1] (numeric) = 1.9698346654817382348308073302526 absolute error = 1.9698346654817382348308073302526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.717 y[1] (analytic) = 0 y[1] (numeric) = 1.9703926394612884851984068974906 absolute error = 1.9703926394612884851984068974906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.718 y[1] (analytic) = 0 y[1] (numeric) = 1.9709506528799048136021996157076 absolute error = 1.9709506528799048136021996157076 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.719 y[1] (analytic) = 0 y[1] (numeric) = 1.9715087057616028628998840638366 absolute error = 1.9715087057616028628998840638366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.72 y[1] (analytic) = 0 y[1] (numeric) = 1.9720667981303989658434114255627 absolute error = 1.9720667981303989658434114255627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.721 y[1] (analytic) = 0 y[1] (numeric) = 1.972624930010310148523941322086 absolute error = 1.972624930010310148523941322086 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.722 y[1] (analytic) = 0 y[1] (numeric) = 1.9731831014253541338156929928374 absolute error = 1.9731831014253541338156929928374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.723 y[1] (analytic) = 0 y[1] (numeric) = 1.9737413123995493448186933290573 absolute error = 1.9737413123995493448186933290573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.724 y[1] (analytic) = 0 y[1] (numeric) = 1.9742995629569149083004232638078 absolute error = 1.9742995629569149083004232638078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.725 y[1] (analytic) = 0 y[1] (numeric) = 1.9748578531214706581363640206517 absolute error = 1.9748578531214706581363640206517 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.726 y[1] (analytic) = 0 y[1] (numeric) = 1.9754161829172371387494447218953 absolute error = 1.9754161829172371387494447218953 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.727 y[1] (analytic) = 0 y[1] (numeric) = 1.9759745523682356085483928559569 absolute error = 1.9759745523682356085483928559569 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1049.0MB, alloc=4.6MB, time=110.58 x[1] = 3.728 y[1] (analytic) = 0 y[1] (numeric) = 1.9765329614984880433649891020917 absolute error = 1.9765329614984880433649891020917 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.729 y[1] (analytic) = 0 y[1] (numeric) = 1.9770914103320171398902280093706 absolute error = 1.9770914103320171398902280093706 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.73 y[1] (analytic) = 0 y[1] (numeric) = 1.977649898892846319109386025483 absolute error = 1.977649898892846319109386025483 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.731 y[1] (analytic) = 0 y[1] (numeric) = 1.9782084272049997297359983696043 absolute error = 1.9782084272049997297359983696043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.732 y[1] (analytic) = 0 y[1] (numeric) = 1.9787669952925022516447462422444 absolute error = 1.9787669952925022516447462422444 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.733 y[1] (analytic) = 0 y[1] (numeric) = 1.9793256031793794993032558636669 absolute error = 1.9793256031793794993032558636669 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.734 y[1] (analytic) = 0 y[1] (numeric) = 1.9798842508896578252028108311485 absolute error = 1.9798842508896578252028108311485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.735 y[1] (analytic) = 0 y[1] (numeric) = 1.9804429384473643232879792840252 absolute error = 1.9804429384473643232879792840252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.736 y[1] (analytic) = 0 y[1] (numeric) = 1.9810016658765268323851573641526 absolute error = 1.9810016658765268323851573641526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.737 y[1] (analytic) = 0 y[1] (numeric) = 1.9815604332011739396300304580912 absolute error = 1.9815604332011739396300304580912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.738 y[1] (analytic) = 0 y[1] (numeric) = 1.9821192404453349838939537060097 absolute error = 1.9821192404453349838939537060097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.739 y[1] (analytic) = 0 y[1] (numeric) = 1.9826780876330400592092532609864 absolute error = 1.9826780876330400592092532609864 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.74 y[1] (analytic) = 0 y[1] (numeric) = 1.9832369747883200181934497810746 absolute error = 1.9832369747883200181934497810746 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1052.9MB, alloc=4.6MB, time=110.98 x[1] = 3.741 y[1] (analytic) = 0 y[1] (numeric) = 1.9837959019352064754724056351882 absolute error = 1.9837959019352064754724056351882 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.742 y[1] (analytic) = 0 y[1] (numeric) = 1.9843548690977318111023973025528 absolute error = 1.9843548690977318111023973025528 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.743 y[1] (analytic) = 0 y[1] (numeric) = 1.9849138762999291739911144441612 absolute error = 1.9849138762999291739911144441612 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.744 y[1] (analytic) = 0 y[1] (numeric) = 1.9854729235658324853175871233641 absolute error = 1.9854729235658324853175871233641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.745 y[1] (analytic) = 0 y[1] (numeric) = 1.9860320109194764419510426514241 absolute error = 1.9860320109194764419510426514241 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.746 y[1] (analytic) = 0 y[1] (numeric) = 1.9865911383848965198686935325573 absolute error = 1.9865911383848965198686935325573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.747 y[1] (analytic) = 0 y[1] (numeric) = 1.9871503059861289775724579816854 absolute error = 1.9871503059861289775724579816854 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.748 y[1] (analytic) = 0 y[1] (numeric) = 1.9877095137472108595046144868216 absolute error = 1.9877095137472108595046144868216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.749 y[1] (analytic) = 0 y[1] (numeric) = 1.9882687616921799994623918867158 absolute error = 1.9882687616921799994623918867158 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.75 y[1] (analytic) = 0 y[1] (numeric) = 1.9888280498450750240114964330884 absolute error = 1.9888280498450750240114964330884 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.751 y[1] (analytic) = 0 y[1] (numeric) = 1.9893873782299353558985773054859 absolute error = 1.9893873782299353558985773054859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.752 y[1] (analytic) = 0 y[1] (numeric) = 1.9899467468708012174626320455008 absolute error = 1.9899467468708012174626320455008 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.753 y[1] (analytic) = 0 y[1] (numeric) = 1.9905061557917136340453533758038 absolute error = 1.9905061557917136340453533758038 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.754 y[1] (analytic) = 0 y[1] (numeric) = 1.9910656050167144374004188681491 absolute error = 1.9910656050167144374004188681491 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1056.7MB, alloc=4.6MB, time=111.36 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.755 y[1] (analytic) = 0 y[1] (numeric) = 1.9916250945698462691017249232232 absolute error = 1.9916250945698462691017249232232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.756 y[1] (analytic) = 0 y[1] (numeric) = 1.9921846244751525839505665239225 absolute error = 1.9921846244751525839505665239225 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.757 y[1] (analytic) = 0 y[1] (numeric) = 1.9927441947566776533817642223591 absolute error = 1.9927441947566776533817642223591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.758 y[1] (analytic) = 0 y[1] (numeric) = 1.9933038054384665688687398196106 absolute error = 1.9933038054384665688687398196106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.759 y[1] (analytic) = 0 y[1] (numeric) = 1.9938634565445652453275421959486 absolute error = 1.9938634565445652453275421959486 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.76 y[1] (analytic) = 0 y[1] (numeric) = 1.994423148099020424519824748 absolute error = 1.994423148099020424519824748 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.761 y[1] (analytic) = 0 y[1] (numeric) = 1.9949828801258796784547758880163 absolute error = 1.9949828801258796784547758880163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.762 y[1] (analytic) = 0 y[1] (numeric) = 1.9955426526491914127900040591493 absolute error = 1.9955426526491914127900040591493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.763 y[1] (analytic) = 0 y[1] (numeric) = 1.9961024656930048702313787193567 absolute error = 1.9961024656930048702313787193567 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.764 y[1] (analytic) = 0 y[1] (numeric) = 1.9966623192813701339318287452863 absolute error = 1.9966623192813701339318287452863 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.765 y[1] (analytic) = 0 y[1] (numeric) = 1.9972222134383381308890997062163 absolute error = 1.9972222134383381308890997062163 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.766 y[1] (analytic) = 0 y[1] (numeric) = 1.9977821481879606353424714568572 absolute error = 1.9977821481879606353424714568572 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.767 y[1] (analytic) = 0 y[1] (numeric) = 1.9983421235542902721684374965541 absolute error = 1.9983421235542902721684374965541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1060.5MB, alloc=4.6MB, time=111.75 x[1] = 3.768 y[1] (analytic) = 0 y[1] (numeric) = 1.9989021395613805202753475411579 absolute error = 1.9989021395613805202753475411579 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.769 y[1] (analytic) = 0 y[1] (numeric) = 1.9994621962332857159970147525699 absolute error = 1.9994621962332857159970147525699 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.77 y[1] (analytic) = 0 y[1] (numeric) = 2.0000222935940610564852890697006 absolute error = 2.0000222935940610564852890697006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.771 y[1] (analytic) = 0 y[1] (numeric) = 2.0005824316677626031015980833181 absolute error = 2.0005824316677626031015980833181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.772 y[1] (analytic) = 0 y[1] (numeric) = 2.0011426104784472848074568960037 absolute error = 2.0011426104784472848074568960037 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.773 y[1] (analytic) = 0 y[1] (numeric) = 2.0017028300501729015539484071703 absolute error = 2.0017028300501729015539484071703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.774 y[1] (analytic) = 0 y[1] (numeric) = 2.0022630904069981276701754618425 absolute error = 2.0022630904069981276701754618425 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.775 y[1] (analytic) = 0 y[1] (numeric) = 2.0028233915729825152506863006411 absolute error = 2.0028233915729825152506863006411 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.776 y[1] (analytic) = 0 y[1] (numeric) = 2.0033837335721864975418747471584 absolute error = 2.0033837335721864975418747471584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.777 y[1] (analytic) = 0 y[1] (numeric) = 2.0039441164286713923273565676599 absolute error = 2.0039441164286713923273565676599 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.778 y[1] (analytic) = 0 y[1] (numeric) = 2.0045045401664994053123234367938 absolute error = 2.0045045401664994053123234367938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.779 y[1] (analytic) = 0 y[1] (numeric) = 2.0050650048097336335068759417419 absolute error = 2.0050650048097336335068759417419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.78 y[1] (analytic) = 0 y[1] (numeric) = 2.005625510382438068608337055995 absolute error = 2.005625510382438068608337055995 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1064.3MB, alloc=4.6MB, time=112.14 x[1] = 3.781 y[1] (analytic) = 0 y[1] (numeric) = 2.006186056908677600382547512691 absolute error = 2.006186056908677600382547512691 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.782 y[1] (analytic) = 0 y[1] (numeric) = 2.0067466444125180200441445062063 absolute error = 2.0067466444125180200441445062063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.783 y[1] (analytic) = 0 y[1] (numeric) = 2.0073072729180260236358251494494 absolute error = 2.0073072729180260236358251494494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.784 y[1] (analytic) = 0 y[1] (numeric) = 2.0078679424492692154065961130618 absolute error = 2.0078679424492692154065961130618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.785 y[1] (analytic) = 0 y[1] (numeric) = 2.0084286530303161111890108714913 absolute error = 2.0084286530303161111890108714913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.786 y[1] (analytic) = 0 y[1] (numeric) = 2.0089894046852361417753959796639 absolute error = 2.0089894046852361417753959796639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.787 y[1] (analytic) = 0 y[1] (numeric) = 2.0095501974380996562930678027419 absolute error = 2.0095501974380996562930678027419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.788 y[1] (analytic) = 0 y[1] (numeric) = 2.0101110313129779255785411202207 absolute error = 2.0101110313129779255785411202207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.789 y[1] (analytic) = 0 y[1] (numeric) = 2.0106719063339431455507310243822 absolute error = 2.0106719063339431455507310243822 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.79 y[1] (analytic) = 0 y[1] (numeric) = 2.0112328225250684405831495318894 absolute error = 2.0112328225250684405831495318894 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.791 y[1] (analytic) = 0 y[1] (numeric) = 2.0117937799104278668750983260751 absolute error = 2.0117937799104278668750983260751 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.792 y[1] (analytic) = 0 y[1] (numeric) = 2.0123547785140964158218590462489 absolute error = 2.0123547785140964158218590462489 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.793 y[1] (analytic) = 0 y[1] (numeric) = 2.0129158183601500173838825391173 absolute error = 2.0129158183601500173838825391173 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1068.1MB, alloc=4.6MB, time=112.53 x[1] = 3.794 y[1] (analytic) = 0 y[1] (numeric) = 2.0134768994726655434549784861847 absolute error = 2.0134768994726655434549784861847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.795 y[1] (analytic) = 0 y[1] (numeric) = 2.0140380218757208112295068197799 absolute error = 2.0140380218757208112295068197799 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.796 y[1] (analytic) = 0 y[1] (numeric) = 2.0145991855933945865685723391254 absolute error = 2.0145991855933945865685723391254 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.797 y[1] (analytic) = 0 y[1] (numeric) = 2.0151603906497665873652239366486 absolute error = 2.0151603906497665873652239366486 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.798 y[1] (analytic) = 0 y[1] (numeric) = 2.0157216370689174869086598435106 absolute error = 2.0157216370689174869086598435106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.799 y[1] (analytic) = 0 y[1] (numeric) = 2.0162829248749289172474403021095 absolute error = 2.0162829248749289172474403021095 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.8 y[1] (analytic) = 0 y[1] (numeric) = 2.0168442540918834725517090720992 absolute error = 2.0168442540918834725517090720992 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.801 y[1] (analytic) = 0 y[1] (numeric) = 2.0174056247438647124744251752462 absolute error = 2.0174056247438647124744251752462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.802 y[1] (analytic) = 0 y[1] (numeric) = 2.0179670368549571655116062832347 absolute error = 2.0179670368549571655116062832347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.803 y[1] (analytic) = 0 y[1] (numeric) = 2.018528490449246332361585151315 absolute error = 2.018528490449246332361585151315 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.804 y[1] (analytic) = 0 y[1] (numeric) = 2.0190899855508186892832804994808 absolute error = 2.0190899855508186892832804994808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.805 y[1] (analytic) = 0 y[1] (numeric) = 2.0196515221837616914534837416494 absolute error = 2.0196515221837616914534837416494 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.806 y[1] (analytic) = 0 y[1] (numeric) = 2.0202131003721637763231629621108 absolute error = 2.0202131003721637763231629621108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.807 y[1] (analytic) = 0 y[1] (numeric) = 2.0207747201401143669727855373056 absolute error = 2.0207747201401143669727855373056 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1071.9MB, alloc=4.6MB, time=112.92 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.808 y[1] (analytic) = 0 y[1] (numeric) = 2.0213363815117038754666607997841 absolute error = 2.0213363815117038754666607997841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.809 y[1] (analytic) = 0 y[1] (numeric) = 2.0218980845110237062063041399978 absolute error = 2.0218980845110237062063041399978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.81 y[1] (analytic) = 0 y[1] (numeric) = 2.0224598291621662592828239403693 absolute error = 2.0224598291621662592828239403693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.811 y[1] (analytic) = 0 y[1] (numeric) = 2.023021615489224933828332734887 absolute error = 2.023021615489224933828332734887 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.812 y[1] (analytic) = 0 y[1] (numeric) = 2.0235834435162941313663839862725 absolute error = 2.0235834435162941313663839862725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.813 y[1] (analytic) = 0 y[1] (numeric) = 2.0241453132674692591614358715683 absolute error = 2.0241453132674692591614358715683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.814 y[1] (analytic) = 0 y[1] (numeric) = 2.0247072247668467335673434657986 absolute error = 2.0247072247668467335673434657986 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.815 y[1] (analytic) = 0 y[1] (numeric) = 2.0252691780385239833748807121611 absolute error = 2.0252691780385239833748807121611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.816 y[1] (analytic) = 0 y[1] (numeric) = 2.0258311731065994531582935660134 absolute error = 2.0258311731065994531582935660134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.817 y[1] (analytic) = 0 y[1] (numeric) = 2.0263932099951726066208856987261 absolute error = 2.0263932099951726066208856987261 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.818 y[1] (analytic) = 0 y[1] (numeric) = 2.0269552887283439299396381462838 absolute error = 2.0269552887283439299396381462838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.819 y[1] (analytic) = 0 y[1] (numeric) = 2.0275174093302149351088642863273 absolute error = 2.0275174093302149351088642863273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.82 y[1] (analytic) = 0 y[1] (numeric) = 2.0280795718248881632829015261415 absolute error = 2.0280795718248881632829015261415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1075.7MB, alloc=4.6MB, time=113.30 x[1] = 3.821 y[1] (analytic) = 0 y[1] (numeric) = 2.028641776236467188117841082908 absolute error = 2.028641776236467188117841082908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.822 y[1] (analytic) = 0 y[1] (numeric) = 2.0292040225890566191122972363569 absolute error = 2.0292040225890566191122972363569 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.823 y[1] (analytic) = 0 y[1] (numeric) = 2.0297663109067621049472174327697 absolute error = 2.0297663109067621049472174327697 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.824 y[1] (analytic) = 0 y[1] (numeric) = 2.0303286412136903368247346181022 absolute error = 2.0303286412136903368247346181022 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.825 y[1] (analytic) = 0 y[1] (numeric) = 2.030891013533949051806063176818 absolute error = 2.030891013533949051806063176818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.826 y[1] (analytic) = 0 y[1] (numeric) = 2.0314534278916470361484398518434 absolute error = 2.0314534278916470361484398518434 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.827 y[1] (analytic) = 0 y[1] (numeric) = 2.0320158843108941286411110198771 absolute error = 2.0320158843108941286411110198771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.828 y[1] (analytic) = 0 y[1] (numeric) = 2.0325783828158012239403676951139 absolute error = 2.0325783828158012239403676951139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.829 y[1] (analytic) = 0 y[1] (numeric) = 2.0331409234304802759036296332656 absolute error = 2.0331409234304802759036296332656 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.83 y[1] (analytic) = 0 y[1] (numeric) = 2.0337035061790443009225799065908 absolute error = 2.0337035061790443009225799065908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.831 y[1] (analytic) = 0 y[1] (numeric) = 2.0342661310856073812553513194735 absolute error = 2.0342661310856073812553513194735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.832 y[1] (analytic) = 0 y[1] (numeric) = 2.0348287981742846683577660329205 absolute error = 2.0348287981742846683577660329205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.833 y[1] (analytic) = 0 y[1] (numeric) = 2.0353915074691923862136297651797 absolute error = 2.0353915074691923862136297651797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1079.6MB, alloc=4.6MB, time=113.69 x[1] = 3.834 y[1] (analytic) = 0 y[1] (numeric) = 2.0359542589944478346640819345135 absolute error = 2.0359542589944478346640819345135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.835 y[1] (analytic) = 0 y[1] (numeric) = 2.0365170527741693927360031089981 absolute error = 2.0365170527741693927360031089981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.836 y[1] (analytic) = 0 y[1] (numeric) = 2.0370798888324765219694811270523 absolute error = 2.0370798888324765219694811270523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.837 y[1] (analytic) = 0 y[1] (numeric) = 2.0376427671934897697443372512403 absolute error = 2.0376427671934897697443372512403 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.838 y[1] (analytic) = 0 y[1] (numeric) = 2.0382056878813307726057137167295 absolute error = 2.0382056878813307726057137167295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.839 y[1] (analytic) = 0 y[1] (numeric) = 2.0387686509201222595887240346259 absolute error = 2.0387686509201222595887240346259 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.84 y[1] (analytic) = 0 y[1] (numeric) = 2.0393316563339880555421674092504 absolute error = 2.0393316563339880555421674092504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.841 y[1] (analytic) = 0 y[1] (numeric) = 2.0398947041470530844513086272642 absolute error = 2.0398947041470530844513086272642 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.842 y[1] (analytic) = 0 y[1] (numeric) = 2.0404577943834433727597247753944 absolute error = 2.0404577943834433727597247753944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.843 y[1] (analytic) = 0 y[1] (numeric) = 2.0410209270672860526902201423586 absolute error = 2.0410209270672860526902201423586 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.844 y[1] (analytic) = 0 y[1] (numeric) = 2.0415841022227093655648106594336 absolute error = 2.0415841022227093655648106594336 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.845 y[1] (analytic) = 0 y[1] (numeric) = 2.0421473198738426651237792329633 absolute error = 2.0421473198738426651237792329633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.846 y[1] (analytic) = 0 y[1] (numeric) = 2.0427105800448164208438033209507 absolute error = 2.0427105800448164208438033209507 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.847 y[1] (analytic) = 0 y[1] (numeric) = 2.0432738827597622212551561047311 absolute error = 2.0432738827597622212551561047311 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1083.4MB, alloc=4.6MB, time=114.08 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.848 y[1] (analytic) = 0 y[1] (numeric) = 2.0438372280428127772579826055772 absolute error = 2.0438372280428127772579826055772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.849 y[1] (analytic) = 0 y[1] (numeric) = 2.0444006159181019254376520949406 absolute error = 2.0444006159181019254376520949406 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.85 y[1] (analytic) = 0 y[1] (numeric) = 2.0449640464097646313791881458916 absolute error = 2.0449640464097646313791881458916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.851 y[1] (analytic) = 0 y[1] (numeric) = 2.0455275195419369929807776721757 absolute error = 2.0455275195419369929807776721757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.852 y[1] (analytic) = 0 y[1] (numeric) = 2.0460910353387562437663603001657 absolute error = 2.0460910353387562437663603001657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.853 y[1] (analytic) = 0 y[1] (numeric) = 2.0466545938243607561972994178464 absolute error = 2.0466545938243607561972994178464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.854 y[1] (analytic) = 0 y[1] (numeric) = 2.0472181950228900449831362438338 absolute error = 2.0472181950228900449831362438338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.855 y[1] (analytic) = 0 y[1] (numeric) = 2.0477818389584847703914282582908 absolute error = 2.0477818389584847703914282582908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.856 y[1] (analytic) = 0 y[1] (numeric) = 2.0483455256552867415566733364695 absolute error = 2.0483455256552867415566733364695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.857 y[1] (analytic) = 0 y[1] (numeric) = 2.0489092551374389197883209244727 absolute error = 2.0489092551374389197883209244727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.858 y[1] (analytic) = 0 y[1] (numeric) = 2.0494730274290854218778715956984 absolute error = 2.0494730274290854218778715956984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.859 y[1] (analytic) = 0 y[1] (numeric) = 2.0500368425543715234050663252969 absolute error = 2.0500368425543715234050663252969 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.86 y[1] (analytic) = 0 y[1] (numeric) = 2.0506007005374436620431668188428 absolute error = 2.0506007005374436620431668188428 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1087.2MB, alloc=4.6MB, time=114.47 x[1] = 3.861 y[1] (analytic) = 0 y[1] (numeric) = 2.0511646014024494408633282302944 absolute error = 2.0511646014024494408633282302944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.862 y[1] (analytic) = 0 y[1] (numeric) = 2.0517285451735376316380656031873 absolute error = 2.0517285451735376316380656031873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.863 y[1] (analytic) = 0 y[1] (numeric) = 2.052292531874858178143815367883 absolute error = 2.052292531874858178143815367883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.864 y[1] (analytic) = 0 y[1] (numeric) = 2.0528565615305621994625932265693 absolute error = 2.0528565615305621994625932265693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.865 y[1] (analytic) = 0 y[1] (numeric) = 2.0534206341648019932827497565871 absolute error = 2.0534206341648019932827497565871 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.866 y[1] (analytic) = 0 y[1] (numeric) = 2.0539847498017310391988250615363 absolute error = 2.0539847498017310391988250615363 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.867 y[1] (analytic) = 0 y[1] (numeric) = 2.0545489084655040020105037984947 absolute error = 2.0545489084655040020105037984947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.868 y[1] (analytic) = 0 y[1] (numeric) = 2.0551131101802767350206719085646 absolute error = 2.0551131101802767350206719085646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.869 y[1] (analytic) = 0 y[1] (numeric) = 2.0556773549702062833325763768447 absolute error = 2.0556773549702062833325763768447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.87 y[1] (analytic) = 0 y[1] (numeric) = 2.05624164285945088714608934681 absolute error = 2.05624164285945088714608934681 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.871 y[1] (analytic) = 0 y[1] (numeric) = 2.0568059738721699850530779129679 absolute error = 2.0568059738721699850530779129679 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.872 y[1] (analytic) = 0 y[1] (numeric) = 2.0573703480325242173318809145451 absolute error = 2.0573703480325242173318809145451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.873 y[1] (analytic) = 0 y[1] (numeric) = 2.0579347653646754292408940518498 absolute error = 2.0579347653646754292408940518498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1091.0MB, alloc=4.6MB, time=114.86 x[1] = 3.874 y[1] (analytic) = 0 y[1] (numeric) = 2.0584992258927866743112646458424 absolute error = 2.0584992258927866743112646458424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.875 y[1] (analytic) = 0 y[1] (numeric) = 2.05906372964102221763869736034 absolute error = 2.05906372964102221763869736034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.876 y[1] (analytic) = 0 y[1] (numeric) = 2.0596282766335475391743722051725 absolute error = 2.0596282766335475391743722051725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.877 y[1] (analytic) = 0 y[1] (numeric) = 2.0601928668945293370149761375016 absolute error = 2.0601928668945293370149761375016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.878 y[1] (analytic) = 0 y[1] (numeric) = 2.0607575004481355306918495774107 absolute error = 2.0607575004481355306918495774107 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.879 y[1] (analytic) = 0 y[1] (numeric) = 2.0613221773185352644592491527695 absolute error = 2.0613221773185352644592491527695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.88 y[1] (analytic) = 0 y[1] (numeric) = 2.0618868975298989105817279872752 absolute error = 2.0618868975298989105817279872752 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.881 y[1] (analytic) = 0 y[1] (numeric) = 2.0624516611063980726206348444725 absolute error = 2.0624516611063980726206348444725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.882 y[1] (analytic) = 0 y[1] (numeric) = 2.063016468072205588719733439456 absolute error = 2.063016468072205588719733439456 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.883 y[1] (analytic) = 0 y[1] (numeric) = 2.0635813184514955348899432288584 absolute error = 2.0635813184514955348899432288584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.884 y[1] (analytic) = 0 y[1] (numeric) = 2.0641462122684432282932029886353 absolute error = 2.0641462122684432282932029886353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.885 y[1] (analytic) = 0 y[1] (numeric) = 2.064711149547225230525458488059 absolute error = 2.064711149547225230525458488059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.886 y[1] (analytic) = 0 y[1] (numeric) = 2.0652761303120193508987755672424 absolute error = 2.0652761303120193508987755672424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1094.8MB, alloc=4.6MB, time=115.26 x[1] = 3.887 y[1] (analytic) = 0 y[1] (numeric) = 2.0658411545870046497225799244208 absolute error = 2.0658411545870046497225799244208 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.888 y[1] (analytic) = 0 y[1] (numeric) = 2.0664062223963614415840249181293 absolute error = 2.0664062223963614415840249181293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.889 y[1] (analytic) = 0 y[1] (numeric) = 2.0669713337642712986274886883226 absolute error = 2.0669713337642712986274886883226 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.89 y[1] (analytic) = 0 y[1] (numeric) = 2.0675364887149170538332018993978 absolute error = 2.0675364887149170538332018993978 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.891 y[1] (analytic) = 0 y[1] (numeric) = 2.0681016872724828042950074069925 absolute error = 2.0681016872724828042950074069925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.892 y[1] (analytic) = 0 y[1] (numeric) = 2.0686669294611539144972531493454 absolute error = 2.0686669294611539144972531493454 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.893 y[1] (analytic) = 0 y[1] (numeric) = 2.0692322153051170195908195629232 absolute error = 2.0692322153051170195908195629232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.894 y[1] (analytic) = 0 y[1] (numeric) = 2.069797544828560028668282820934 absolute error = 2.069797544828560028668282820934 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.895 y[1] (analytic) = 0 y[1] (numeric) = 2.0703629180556721280382151922664 absolute error = 2.0703629180556721280382151922664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.896 y[1] (analytic) = 0 y[1] (numeric) = 2.0709283350106437844986238173132 absolute error = 2.0709283350106437844986238173132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.897 y[1] (analytic) = 0 y[1] (numeric) = 2.0714937957176667486095291960612 absolute error = 2.0714937957176667486095291960612 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.898 y[1] (analytic) = 0 y[1] (numeric) = 2.0720593002009340579646846827482 absolute error = 2.0720593002009340579646846827482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.899 y[1] (analytic) = 0 y[1] (numeric) = 2.0726248484846400404624382803166 absolute error = 2.0726248484846400404624382803166 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.9 y[1] (analytic) = 0 y[1] (numeric) = 2.0731904405929803175757380268139 absolute error = 2.0731904405929803175757380268139 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1098.6MB, alloc=4.6MB, time=115.64 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.901 y[1] (analytic) = 0 y[1] (numeric) = 2.0737560765501518076212822648207 absolute error = 2.0737560765501518076212822648207 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.902 y[1] (analytic) = 0 y[1] (numeric) = 2.0743217563803527290278160839124 absolute error = 2.0743217563803527290278160839124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.903 y[1] (analytic) = 0 y[1] (numeric) = 2.0748874801077826036035752250915 absolute error = 2.0748874801077826036035752250915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.904 y[1] (analytic) = 0 y[1] (numeric) = 2.0754532477566422598028787350568 absolute error = 2.0754532477566422598028787350568 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.905 y[1] (analytic) = 0 y[1] (numeric) = 2.0760190593511338359918716571099 absolute error = 2.0760190593511338359918716571099 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.906 y[1] (analytic) = 0 y[1] (numeric) = 2.0765849149154607837134190444299 absolute error = 2.0765849149154607837134190444299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.907 y[1] (analytic) = 0 y[1] (numeric) = 2.0771508144738278709511525803848 absolute error = 2.0771508144738278709511525803848 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.908 y[1] (analytic) = 0 y[1] (numeric) = 2.0777167580504411853926710894811 absolute error = 2.0777167580504411853926710894811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.909 y[1] (analytic) = 0 y[1] (numeric) = 2.0782827456695081376918962214936 absolute error = 2.0782827456695081376918962214936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.91 y[1] (analytic) = 0 y[1] (numeric) = 2.0788487773552374647305845902531 absolute error = 2.0788487773552374647305845902531 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.911 y[1] (analytic) = 0 y[1] (numeric) = 2.0794148531318392328789976475115 absolute error = 2.0794148531318392328789976475115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.912 y[1] (analytic) = 0 y[1] (numeric) = 2.0799809730235248412557305712445 absolute error = 2.0799809730235248412557305712445 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.913 y[1] (analytic) = 0 y[1] (numeric) = 2.0805471370545070249867014466947 absolute error = 2.0805471370545070249867014466947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1102.4MB, alloc=4.6MB, time=116.03 x[1] = 3.914 y[1] (analytic) = 0 y[1] (numeric) = 2.0811133452489998584633020174014 absolute error = 2.0811133452489998584633020174014 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.915 y[1] (analytic) = 0 y[1] (numeric) = 2.0816795976312187585997112824096 absolute error = 2.0816795976312187585997112824096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.916 y[1] (analytic) = 0 y[1] (numeric) = 2.0822458942253804880893732147962 absolute error = 2.0822458942253804880893732147962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.917 y[1] (analytic) = 0 y[1] (numeric) = 2.0828122350557031586606398756002 absolute error = 2.0828122350557031586606398756002 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.918 y[1] (analytic) = 0 y[1] (numeric) = 2.0833786201464062343315811961913 absolute error = 2.0833786201464062343315811961913 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.919 y[1] (analytic) = 0 y[1] (numeric) = 2.0839450495217105346639627010641 absolute error = 2.0839450495217105346639627010641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.92 y[1] (analytic) = 0 y[1] (numeric) = 2.0845115232058382380163924419947 absolute error = 2.0845115232058382380163924419947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.921 y[1] (analytic) = 0 y[1] (numeric) = 2.0850780412230128847966384134505 absolute error = 2.0850780412230128847966384134505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.922 y[1] (analytic) = 0 y[1] (numeric) = 2.0856446035974593807131177180984 absolute error = 2.0856446035974593807131177180984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.923 y[1] (analytic) = 0 y[1] (numeric) = 2.0862112103534040000255587502125 absolute error = 2.0862112103534040000255587502125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.924 y[1] (analytic) = 0 y[1] (numeric) = 2.0867778615150743887948376637382 absolute error = 2.0867778615150743887948376637382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.925 y[1] (analytic) = 0 y[1] (numeric) = 2.0873445571066995681319903907294 absolute error = 2.0873445571066995681319903907294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.926 y[1] (analytic) = 0 y[1] (numeric) = 2.087911297152509937446401474834 absolute error = 2.087911297152509937446401474834 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1106.3MB, alloc=4.6MB, time=116.43 x[1] = 3.927 y[1] (analytic) = 0 y[1] (numeric) = 2.0884780816767372776931709834643 absolute error = 2.0884780816767372776931709834643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.928 y[1] (analytic) = 0 y[1] (numeric) = 2.0890449107036147546196607612504 absolute error = 2.0890449107036147546196607612504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.929 y[1] (analytic) = 0 y[1] (numeric) = 2.0896117842573769220112212863393 absolute error = 2.0896117842573769220112212863393 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.93 y[1] (analytic) = 0 y[1] (numeric) = 2.0901787023622597249361003900657 absolute error = 2.0901787023622597249361003900657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.931 y[1] (analytic) = 0 y[1] (numeric) = 2.0907456650425005029895350994872 absolute error = 2.0907456650425005029895350994872 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.932 y[1] (analytic) = 0 y[1] (numeric) = 2.0913126723223379935370278612451 absolute error = 2.0913126723223379935370278612451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.933 y[1] (analytic) = 0 y[1] (numeric) = 2.0918797242260123349568084041774 absolute error = 2.0918797242260123349568084041774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.934 y[1] (analytic) = 0 y[1] (numeric) = 2.0924468207777650698814824970843 absolute error = 2.0924468207777650698814824970843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.935 y[1] (analytic) = 0 y[1] (numeric) = 2.0930139620018391484388688570149 absolute error = 2.0930139620018391484388688570149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.936 y[1] (analytic) = 0 y[1] (numeric) = 2.0935811479224789314920254624167 absolute error = 2.0935811479224789314920254624167 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.937 y[1] (analytic) = 0 y[1] (numeric) = 2.0941483785639301938784665244651 absolute error = 2.0941483785639301938784665244651 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.938 y[1] (analytic) = 0 y[1] (numeric) = 2.094715653950440127648571368862 absolute error = 2.094715653950440127648571368862 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.939 y[1] (analytic) = 0 y[1] (numeric) = 2.0952829741062573453031864793713 absolute error = 2.0952829741062573453031864793713 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.94 y[1] (analytic) = 0 y[1] (numeric) = 2.0958503390556318830304219533357 absolute error = 2.0958503390556318830304219533357 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1110.1MB, alloc=4.6MB, time=116.82 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.941 y[1] (analytic) = 0 y[1] (numeric) = 2.0964177488228152039416436183981 absolute error = 2.0964177488228152039416436183981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.942 y[1] (analytic) = 0 y[1] (numeric) = 2.0969852034320602013066620586304 absolute error = 2.0969852034320602013066620586304 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.943 y[1] (analytic) = 0 y[1] (numeric) = 2.0975527029076212017881197972553 absolute error = 2.0975527029076212017881197972553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.944 y[1] (analytic) = 0 y[1] (numeric) = 2.0981202472737539686750778821275 absolute error = 2.0981202472737539686750778821275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.945 y[1] (analytic) = 0 y[1] (numeric) = 2.098687836554715705115803119126 absolute error = 2.098687836554715705115803119126 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.946 y[1] (analytic) = 0 y[1] (numeric) = 2.0992554707747650573497571975933 absolute error = 2.0992554707747650573497571975933 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.947 y[1] (analytic) = 0 y[1] (numeric) = 2.0998231499581621179387889509447 absolute error = 2.0998231499581621179387889509447 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.948 y[1] (analytic) = 0 y[1] (numeric) = 2.1003908741291684289975309945574 absolute error = 2.1003908741291684289975309945574 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.949 y[1] (analytic) = 0 y[1] (numeric) = 2.1009586433120469854230019820389 absolute error = 2.1009586433120469854230019820389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.95 y[1] (analytic) = 0 y[1] (numeric) = 2.1015264575310622381234157199641 absolute error = 2.1015264575310622381234157199641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.951 y[1] (analytic) = 0 y[1] (numeric) = 2.1020943168104800972461983801618 absolute error = 2.1020943168104800972461983801618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.952 y[1] (analytic) = 0 y[1] (numeric) = 2.1026622211745679354052150476237 absolute error = 2.1026622211745679354052150476237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.953 y[1] (analytic) = 0 y[1] (numeric) = 2.1032301706475945909072068411039 absolute error = 2.1032301706475945909072068411039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1113.9MB, alloc=4.6MB, time=117.21 x[1] = 3.954 y[1] (analytic) = 0 y[1] (numeric) = 2.103798165253830370977439842471 absolute error = 2.103798165253830370977439842471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.955 y[1] (analytic) = 0 y[1] (numeric) = 2.1043662050175470549845670698717 absolute error = 2.1043662050175470549845670698717 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.956 y[1] (analytic) = 0 y[1] (numeric) = 2.1049342899630178976647047287628 absolute error = 2.1049342899630178976647047287628 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.957 y[1] (analytic) = 0 y[1] (numeric) = 2.1055024201145176323447239738667 absolute error = 2.1055024201145176323447239738667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.958 y[1] (analytic) = 0 y[1] (numeric) = 2.1060705954963224741647594141065 absolute error = 2.1060705954963224741647594141065 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.959 y[1] (analytic) = 0 y[1] (numeric) = 2.1066388161327101232999355915777 absolute error = 2.1066388161327101232999355915777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.96 y[1] (analytic) = 0 y[1] (numeric) = 2.1072070820479597681813126646157 absolute error = 2.1072070820479597681813126646157 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.961 y[1] (analytic) = 0 y[1] (numeric) = 2.1077753932663520887160525240235 absolute error = 2.1077753932663520887160525240235 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.962 y[1] (analytic) = 0 y[1] (numeric) = 2.1083437498121692595068065705277 absolute error = 2.1083437498121692595068065705277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.963 y[1] (analytic) = 0 y[1] (numeric) = 2.1089121517096949530703263805378 absolute error = 2.1089121517096949530703263805378 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.964 y[1] (analytic) = 0 y[1] (numeric) = 2.1094805989832143430552984862919 absolute error = 2.1094805989832143430552984862919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.965 y[1] (analytic) = 0 y[1] (numeric) = 2.1100490916570141074594044954801 absolute error = 2.1100490916570141074594044954801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.966 y[1] (analytic) = 0 y[1] (numeric) = 2.1106176297553824318456077744464 absolute error = 2.1106176297553824318456077744464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1117.7MB, alloc=4.6MB, time=117.60 x[1] = 3.967 y[1] (analytic) = 0 y[1] (numeric) = 2.111186213302609012557667918083 absolute error = 2.111186213302609012557667918083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.968 y[1] (analytic) = 0 y[1] (numeric) = 2.1117548423229850599348842285413 absolute error = 2.1117548423229850599348842285413 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.969 y[1] (analytic) = 0 y[1] (numeric) = 2.1123235168408033015260694238995 absolute error = 2.1123235168408033015260694238995 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.97 y[1] (analytic) = 0 y[1] (numeric) = 2.1128922368803579853027547969394 absolute error = 2.1128922368803579853027547969394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.971 y[1] (analytic) = 0 y[1] (numeric) = 2.1134610024659448828716280432043 absolute error = 2.1134610024659448828716280432043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.972 y[1] (analytic) = 0 y[1] (numeric) = 2.114029813621861292686204976524 absolute error = 2.114029813621861292686204976524 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.973 y[1] (analytic) = 0 y[1] (numeric) = 2.1145986703724060432577363492138 absolute error = 2.1145986703724060432577363492138 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.974 y[1] (analytic) = 0 y[1] (numeric) = 2.1151675727418794963653509931735 absolute error = 2.1151675727418794963653509931735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.975 y[1] (analytic) = 0 y[1] (numeric) = 2.1157365207545835502654364971331 absolute error = 2.1157365207545835502654364971331 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.976 y[1] (analytic) = 0 y[1] (numeric) = 2.1163055144348216429002586343149 absolute error = 2.1163055144348216429002586343149 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.977 y[1] (analytic) = 0 y[1] (numeric) = 2.1168745538068987551058207538046 absolute error = 2.1168745538068987551058207538046 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.978 y[1] (analytic) = 0 y[1] (numeric) = 2.1174436388951214138189643479488 absolute error = 2.1174436388951214138189643479488 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.979 y[1] (analytic) = 0 y[1] (numeric) = 2.1180127697237976952837120071224 absolute error = 2.1180127697237976952837120071224 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1121.5MB, alloc=4.6MB, time=117.99 x[1] = 3.98 y[1] (analytic) = 0 y[1] (numeric) = 2.1185819463172372282568539722369 absolute error = 2.1185819463172372282568539722369 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.981 y[1] (analytic) = 0 y[1] (numeric) = 2.1191511686997511972127794943876 absolute error = 2.1191511686997511972127794943876 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.982 y[1] (analytic) = 0 y[1] (numeric) = 2.1197204368956523455475542100685 absolute error = 2.1197204368956523455475542100685 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.983 y[1] (analytic) = 0 y[1] (numeric) = 2.1202897509292549787822447394145 absolute error = 2.1202897509292549787822447394145 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.984 y[1] (analytic) = 0 y[1] (numeric) = 2.120859110824874967765491713961 absolute error = 2.120859110824874967765491713961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.985 y[1] (analytic) = 0 y[1] (numeric) = 2.1214285166068297518753324394461 absolute error = 2.1214285166068297518753324394461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.986 y[1] (analytic) = 0 y[1] (numeric) = 2.1219979682994383422202743982132 absolute error = 2.1219979682994383422202743982132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.987 y[1] (analytic) = 0 y[1] (numeric) = 2.1225674659270213248396207948083 absolute error = 2.1225674659270213248396207948083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.988 y[1] (analytic) = 0 y[1] (numeric) = 2.1231370095139008639030493474033 absolute error = 2.1231370095139008639030493474033 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.989 y[1] (analytic) = 0 y[1] (numeric) = 2.1237065990844007049094455267135 absolute error = 2.1237065990844007049094455267135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.99 y[1] (analytic) = 0 y[1] (numeric) = 2.1242762346628461778849914431171 absolute error = 2.1242762346628461778849914431171 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.991 y[1] (analytic) = 0 y[1] (numeric) = 2.1248459162735642005805115817256 absolute error = 2.1248459162735642005805115817256 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.992 y[1] (analytic) = 0 y[1] (numeric) = 2.1254156439408832816680765841944 absolute error = 2.1254156439408832816680765841944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.993 y[1] (analytic) = 0 y[1] (numeric) = 2.1259854176891335239368662751059 absolute error = 2.1259854176891335239368662751059 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1125.3MB, alloc=4.6MB, time=118.38 x[1] = 3.994 y[1] (analytic) = 0 y[1] (numeric) = 2.1265552375426466274882931298017 absolute error = 2.1265552375426466274882931298017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.995 y[1] (analytic) = 0 y[1] (numeric) = 2.1271251035257558929303873795851 absolute error = 2.1271251035257558929303873795851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.996 y[1] (analytic) = 0 y[1] (numeric) = 2.1276950156627962245714449492619 absolute error = 2.1276950156627962245714449492619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.997 y[1] (analytic) = 0 y[1] (numeric) = 2.1282649739781041336129394210339 absolute error = 2.1282649739781041336129394210339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.998 y[1] (analytic) = 0 y[1] (numeric) = 2.12883497849601774134169921781 absolute error = 2.12883497849601774134169921781 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 3.999 y[1] (analytic) = 0 y[1] (numeric) = 2.129405029240876782321351198047 absolute error = 2.129405029240876782321351198047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4 y[1] (analytic) = 0 y[1] (numeric) = 2.1299751262370226075830318532859 absolute error = 2.1299751262370226075830318532859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.001 y[1] (analytic) = 0 y[1] (numeric) = 2.1305452695087981878153672985997 absolute error = 2.1305452695087981878153672985997 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.002 y[1] (analytic) = 0 y[1] (numeric) = 2.1311154590805481165537232452229 absolute error = 2.1311154590805481165537232452229 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.003 y[1] (analytic) = 0 y[1] (numeric) = 2.1316856949766186133687261436873 absolute error = 2.1316856949766186133687261436873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.004 y[1] (analytic) = 0 y[1] (numeric) = 2.1322559772213575270540566848443 absolute error = 2.1322559772213575270540566848443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.005 y[1] (analytic) = 0 y[1] (numeric) = 2.1328263058391143388135168452108 absolute error = 2.1328263058391143388135168452108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.006 y[1] (analytic) = 0 y[1] (numeric) = 2.133396680854240165447371662134 absolute error = 2.133396680854240165447371662134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1129.2MB, alloc=4.6MB, time=118.77 x[1] = 4.007 y[1] (analytic) = 0 y[1] (numeric) = 2.1339671022910877625379669233292 absolute error = 2.1339671022910877625379669233292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.008 y[1] (analytic) = 0 y[1] (numeric) = 2.1345375701740115276346239544052 absolute error = 2.1345375701740115276346239544052 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.009 y[1] (analytic) = 0 y[1] (numeric) = 2.1351080845273675034378126870543 absolute error = 2.1351080845273675034378126870543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.01 y[1] (analytic) = 0 y[1] (numeric) = 2.1356786453755133809826041896445 absolute error = 2.1356786453755133809826041896445 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.011 y[1] (analytic) = 0 y[1] (numeric) = 2.1362492527428085028214038410183 absolute error = 2.1362492527428085028214038410183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.012 y[1] (analytic) = 0 y[1] (numeric) = 2.1368199066536138662059663273646 absolute error = 2.1368199066536138662059663273646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.013 y[1] (analytic) = 0 y[1] (numeric) = 2.1373906071322921262686936410983 absolute error = 2.1373906071322921262686936410983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.014 y[1] (analytic) = 0 y[1] (numeric) = 2.1379613542032075992032172597487 absolute error = 2.1379613542032075992032172597487 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.015 y[1] (analytic) = 0 y[1] (numeric) = 2.1385321478907262654442656819273 absolute error = 2.1385321478907262654442656819273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.016 y[1] (analytic) = 0 y[1] (numeric) = 2.1391029882192157728468184965131 absolute error = 2.1391029882192157728468184965131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.017 y[1] (analytic) = 0 y[1] (numeric) = 2.1396738752130454398645481602672 absolute error = 2.1396738752130454398645481602672 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.018 y[1] (analytic) = 0 y[1] (numeric) = 2.1402448088965862587275506581575 absolute error = 2.1402448088965862587275506581575 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.019 y[1] (analytic) = 0 y[1] (numeric) = 2.1408157892942108986193662197505 absolute error = 2.1408157892942108986193662197505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1133.0MB, alloc=4.6MB, time=119.16 x[1] = 4.02 y[1] (analytic) = 0 y[1] (numeric) = 2.1413868164302937088532912640985 absolute error = 2.1413868164302937088532912640985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.021 y[1] (analytic) = 0 y[1] (numeric) = 2.1419578903292107220479827446275 absolute error = 2.1419578903292107220479827446275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.022 y[1] (analytic) = 0 y[1] (numeric) = 2.1425290110153396573023560646083 absolute error = 2.1425290110153396573023560646083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.023 y[1] (analytic) = 0 y[1] (numeric) = 2.1431001785130599233697777328689 absolute error = 2.1431001785130599233697777328689 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.024 y[1] (analytic) = 0 y[1] (numeric) = 2.1436713928467526218315539284873 absolute error = 2.1436713928467526218315539284873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.025 y[1] (analytic) = 0 y[1] (numeric) = 2.1442426540408005502697161422818 absolute error = 2.1442426540408005502697161422818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.026 y[1] (analytic) = 0 y[1] (numeric) = 2.1448139621195882054391050619998 absolute error = 2.1448139621195882054391050619998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.027 y[1] (analytic) = 0 y[1] (numeric) = 2.1453853171075017864387538671846 absolute error = 2.1453853171075017864387538671846 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.028 y[1] (analytic) = 0 y[1] (numeric) = 2.1459567190289291978825720987865 absolute error = 2.1459567190289291978825720987865 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.029 y[1] (analytic) = 0 y[1] (numeric) = 2.1465281679082600530693312676676 absolute error = 2.1465281679082600530693312676676 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.03 y[1] (analytic) = 0 y[1] (numeric) = 2.1470996637698856771519533652347 absolute error = 2.1470996637698856771519533652347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.031 y[1] (analytic) = 0 y[1] (numeric) = 2.1476712066381991103061034385233 absolute error = 2.1476712066381991103061034385233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.032 y[1] (analytic) = 0 y[1] (numeric) = 2.1482427965375951108980873911419 absolute error = 2.1482427965375951108980873911419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.033 y[1] (analytic) = 0 y[1] (numeric) = 2.148814433492470158652056170576 absolute error = 2.148814433492470158652056170576 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1136.8MB, alloc=4.6MB, time=119.55 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.034 y[1] (analytic) = 0 y[1] (numeric) = 2.1493861175272224578165175014409 absolute error = 2.1493861175272224578165175014409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.035 y[1] (analytic) = 0 y[1] (numeric) = 2.149957848666251940330156323364 absolute error = 2.149957848666251940330156323364 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.036 y[1] (analytic) = 0 y[1] (numeric) = 2.1505296269339602689869650912693 absolute error = 2.1505296269339602689869650912693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.037 y[1] (analytic) = 0 y[1] (numeric) = 2.1511014523547508406006850949314 absolute error = 2.1511014523547508406006850949314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.038 y[1] (analytic) = 0 y[1] (numeric) = 2.1516733249530287891685599537595 absolute error = 2.1516733249530287891685599537595 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.039 y[1] (analytic) = 0 y[1] (numeric) = 2.1522452447532009890344024418692 absolute error = 2.1522452447532009890344024418692 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.04 y[1] (analytic) = 0 y[1] (numeric) = 2.1528172117796760580509757975961 absolute error = 2.1528172117796760580509757975961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.041 y[1] (analytic) = 0 y[1] (numeric) = 2.1533892260568643607416906707031 absolute error = 2.1533892260568643607416906707031 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.042 y[1] (analytic) = 0 y[1] (numeric) = 2.1539612876091780114616188596334 absolute error = 2.1539612876091780114616188596334 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.043 y[1] (analytic) = 0 y[1] (numeric) = 2.1545333964610308775578249902603 absolute error = 2.1545333964610308775578249902603 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.044 y[1] (analytic) = 0 y[1] (numeric) = 2.1551055526368385825290172866875 absolute error = 2.1551055526368385825290172866875 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.045 y[1] (analytic) = 0 y[1] (numeric) = 2.1556777561610185091845185837552 absolute error = 2.1556777561610185091845185837552 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.046 y[1] (analytic) = 0 y[1] (numeric) = 2.1562500070579898028025587300115 absolute error = 2.1562500070579898028025587300115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1140.6MB, alloc=4.6MB, time=119.93 x[1] = 4.047 y[1] (analytic) = 0 y[1] (numeric) = 2.1568223053521733742878895290134 absolute error = 2.1568223053521733742878895290134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.048 y[1] (analytic) = 0 y[1] (numeric) = 2.1573946510679919033287233659269 absolute error = 2.1573946510679919033287233659269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.049 y[1] (analytic) = 0 y[1] (numeric) = 2.1579670442298698415529966655042 absolute error = 2.1579670442298698415529966655042 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.05 y[1] (analytic) = 0 y[1] (numeric) = 2.1585394848622334156839593266216 absolute error = 2.1585394848622334156839593266216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.051 y[1] (analytic) = 0 y[1] (numeric) = 2.1591119729895106306950912776739 absolute error = 2.1591119729895106306950912776739 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.052 y[1] (analytic) = 0 y[1] (numeric) = 2.1596845086361312729643472962289 absolute error = 2.1596845086361312729643472962289 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.053 y[1] (analytic) = 0 y[1] (numeric) = 2.1602570918265269134277312354584 absolute error = 2.1602570918265269134277312354584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.054 y[1] (analytic) = 0 y[1] (numeric) = 2.1608297225851309107322007989741 absolute error = 2.1608297225851309107322007989741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.055 y[1] (analytic) = 0 y[1] (numeric) = 2.1614024009363784143879040048106 absolute error = 2.1614024009363784143879040048106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.056 y[1] (analytic) = 0 y[1] (numeric) = 2.1619751269047063679197484784124 absolute error = 2.1619751269047063679197484784124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.057 y[1] (analytic) = 0 y[1] (numeric) = 2.1625479005145535120183047135973 absolute error = 2.1625479005145535120183047135973 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.058 y[1] (analytic) = 0 y[1] (numeric) = 2.1631207217903603876900444395862 absolute error = 2.1631207217903603876900444395862 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.059 y[1] (analytic) = 0 y[1] (numeric) = 2.1636935907565693394069152313061 absolute error = 2.1636935907565693394069152313061 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1144.4MB, alloc=4.6MB, time=120.32 x[1] = 4.06 y[1] (analytic) = 0 y[1] (numeric) = 2.1642665074376245182552524992939 absolute error = 2.1642665074376245182552524992939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.061 y[1] (analytic) = 0 y[1] (numeric) = 2.1648394718579718850840299946471 absolute error = 2.1648394718579718850840299946471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.062 y[1] (analytic) = 0 y[1] (numeric) = 2.1654124840420592136524499635897 absolute error = 2.1654124840420592136524499635897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.063 y[1] (analytic) = 0 y[1] (numeric) = 2.1659855440143360937768740853442 absolute error = 2.1659855440143360937768740853442 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.064 y[1] (analytic) = 0 y[1] (numeric) = 2.1665586517992539344770963261228 absolute error = 2.1665586517992539344770963261228 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.065 y[1] (analytic) = 0 y[1] (numeric) = 2.167131807421265967121958841177 absolute error = 2.167131807421265967121958841177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.066 y[1] (analytic) = 0 y[1] (numeric) = 2.1677050109048272485743120559696 absolute error = 2.1677050109048272485743120559696 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.067 y[1] (analytic) = 0 y[1] (numeric) = 2.1682782622743946643353200566594 absolute error = 2.1682782622743946643353200566594 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.068 y[1] (analytic) = 0 y[1] (numeric) = 2.1688515615544269316881124192179 absolute error = 2.1688515615544269316881124192179 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.069 y[1] (analytic) = 0 y[1] (numeric) = 2.1694249087693846028407836056248 absolute error = 2.1694249087693846028407836056248 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.07 y[1] (analytic) = 0 y[1] (numeric) = 2.1699983039437300680687410547206 absolute error = 2.1699983039437300680687410547206 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.071 y[1] (analytic) = 0 y[1] (numeric) = 2.1705717471019275588564030944239 absolute error = 2.1705717471019275588564030944239 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.072 y[1] (analytic) = 0 y[1] (numeric) = 2.1711452382684431510382478011543 absolute error = 2.1711452382684431510382478011543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1148.2MB, alloc=4.6MB, time=120.71 x[1] = 4.073 y[1] (analytic) = 0 y[1] (numeric) = 2.1717187774677447679392139314351 absolute error = 2.1717187774677447679392139314351 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.074 y[1] (analytic) = 0 y[1] (numeric) = 2.1722923647243021835144550497831 absolute error = 2.1722923647243021835144550497831 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.075 y[1] (analytic) = 0 y[1] (numeric) = 2.1728660000625870254884479761295 absolute error = 2.1728660000625870254884479761295 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.076 y[1] (analytic) = 0 y[1] (numeric) = 2.1734396835070727784934566751513 absolute error = 2.1734396835070727784934566751513 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.077 y[1] (analytic) = 0 y[1] (numeric) = 2.1740134150822347872073527090308 absolute error = 2.1740134150822347872073527090308 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.078 y[1] (analytic) = 0 y[1] (numeric) = 2.1745871948125502594907933742984 absolute error = 2.1745871948125502594907933742984 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.079 y[1] (analytic) = 0 y[1] (numeric) = 2.1751610227224982695237586425552 absolute error = 2.1751610227224982695237586425552 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.08 y[1] (analytic) = 0 y[1] (numeric) = 2.1757348988365597609414480240102 absolute error = 2.1757348988365597609414480240102 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.081 y[1] (analytic) = 0 y[1] (numeric) = 2.1763088231792175499695384719111 absolute error = 2.1763088231792175499695384719111 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.082 y[1] (analytic) = 0 y[1] (numeric) = 2.1768827957749563285588044450886 absolute error = 2.1768827957749563285588044450886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.083 y[1] (analytic) = 0 y[1] (numeric) = 2.1774568166482626675191012449793 absolute error = 2.1774568166482626675191012449793 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.084 y[1] (analytic) = 0 y[1] (numeric) = 2.1780308858236250196527127426365 absolute error = 2.1780308858236250196527127426365 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.085 y[1] (analytic) = 0 y[1] (numeric) = 2.178605003325533722887064610384 absolute error = 2.178605003325533722887064610384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.086 y[1] (analytic) = 0 y[1] (numeric) = 2.1791791691784810034068041719162 absolute error = 2.1791791691784810034068041719162 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1152.0MB, alloc=4.6MB, time=121.10 x[1] = 4.087 y[1] (analytic) = 0 y[1] (numeric) = 2.1797533834069609787852479837947 absolute error = 2.1797533834069609787852479837947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.088 y[1] (analytic) = 0 y[1] (numeric) = 2.180327646035469661115198260441 absolute error = 2.180327646035469661115198260441 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.089 y[1] (analytic) = 0 y[1] (numeric) = 2.1809019570885049601391292538761 absolute error = 2.1809019570885049601391292538761 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.09 y[1] (analytic) = 0 y[1] (numeric) = 2.1814763165905666863787446986078 absolute error = 2.1814763165905666863787446986078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.091 y[1] (analytic) = 0 y[1] (numeric) = 2.1820507245661565542639074312191 absolute error = 2.1820507245661565542639074312191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.092 y[1] (analytic) = 0 y[1] (numeric) = 2.1826251810397781852609422933659 absolute error = 2.1826251810397781852609422933659 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.093 y[1] (analytic) = 0 y[1] (numeric) = 2.1831996860359371110003134260441 absolute error = 2.1831996860359371110003134260441 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.094 y[1] (analytic) = 0 y[1] (numeric) = 2.183774239579140776403677062144 absolute error = 2.183774239579140776403677062144 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.095 y[1] (analytic) = 0 y[1] (numeric) = 2.1843488416938985428103109234652 absolute error = 2.1843488416938985428103109234652 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.096 y[1] (analytic) = 0 y[1] (numeric) = 2.1849234924047216911029213275229 absolute error = 2.1849234924047216911029213275229 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.097 y[1] (analytic) = 0 y[1] (numeric) = 2.1854981917361234248328291086361 absolute error = 2.1854981917361234248328291086361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.098 y[1] (analytic) = 0 y[1] (numeric) = 2.1860729397126188733445354569456 absolute error = 2.1860729397126188733445354569456 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.099 y[1] (analytic) = 0 y[1] (numeric) = 2.1866477363587250948996687781735 absolute error = 2.1866477363587250948996687781735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1155.9MB, alloc=4.6MB, time=121.48 x[1] = 4.1 y[1] (analytic) = 0 y[1] (numeric) = 2.1872225816989610798003136760945 absolute error = 2.1872225816989610798003136760945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.101 y[1] (analytic) = 0 y[1] (numeric) = 2.1877974757578477535117231588551 absolute error = 2.1877974757578477535117231588551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.102 y[1] (analytic) = 0 y[1] (numeric) = 2.1883724185599079797844151694377 absolute error = 2.1883724185599079797844151694377 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.103 y[1] (analytic) = 0 y[1] (numeric) = 2.188947410129666563775654539734 absolute error = 2.188947410129666563775654539734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.104 y[1] (analytic) = 0 y[1] (numeric) = 2.1895224504916502551703214668558 absolute error = 2.1895224504916502551703214668558 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.105 y[1] (analytic) = 0 y[1] (numeric) = 2.1900975396703877513011676094805 absolute error = 2.1900975396703877513011676094805 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.106 y[1] (analytic) = 0 y[1] (numeric) = 2.1906726776904097002684609011945 absolute error = 2.1906726776904097002684609011945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.107 y[1] (analytic) = 0 y[1] (numeric) = 2.1912478645762487040590201769676 absolute error = 2.1912478645762487040590201769676 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.108 y[1] (analytic) = 0 y[1] (numeric) = 2.1918231003524393216646407080622 absolute error = 2.1918231003524393216646407080622 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.109 y[1] (analytic) = 0 y[1] (numeric) = 2.1923983850435180721999117398503 absolute error = 2.1923983850435180721999117398503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.11 y[1] (analytic) = 0 y[1] (numeric) = 2.1929737186740234380194271261857 absolute error = 2.1929737186740234380194271261857 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.111 y[1] (analytic) = 0 y[1] (numeric) = 2.1935491012684958678343901531497 absolute error = 2.1935491012684958678343901531497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.112 y[1] (analytic) = 0 y[1] (numeric) = 2.1941245328514777798286136441647 absolute error = 2.1941245328514777798286136441647 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1159.7MB, alloc=4.6MB, time=121.87 x[1] = 4.113 y[1] (analytic) = 0 y[1] (numeric) = 2.1947000134475135647739164376436 absolute error = 2.1947000134475135647739164376436 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.114 y[1] (analytic) = 0 y[1] (numeric) = 2.1952755430811495891449173275198 absolute error = 2.1952755430811495891449173275198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.115 y[1] (analytic) = 0 y[1] (numeric) = 2.1958511217769341982332275561808 absolute error = 2.1958511217769341982332275561808 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.116 y[1] (analytic) = 0 y[1] (numeric) = 2.196426749559417719261042948504 absolute error = 2.196426749559417719261042948504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.117 y[1] (analytic) = 0 y[1] (numeric) = 2.1970024264531524644941367748757 absolute error = 2.1970024264531524644941367748757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.118 y[1] (analytic) = 0 y[1] (numeric) = 2.197578152482692734354254430252 absolute error = 2.197578152482692734354254430252 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.119 y[1] (analytic) = 0 y[1] (numeric) = 2.1981539276725948205309110155034 absolute error = 2.1981539276725948205309110155034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.12 y[1] (analytic) = 0 y[1] (numeric) = 2.1987297520474170090925929064655 absolute error = 2.1987297520474170090925929064655 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.121 y[1] (analytic) = 0 y[1] (numeric) = 2.199305625631719583597364395303 absolute error = 2.199305625631719583597364395303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.122 y[1] (analytic) = 0 y[1] (numeric) = 2.1998815484500648282028804879782 absolute error = 2.1998815484500648282028804879782 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.123 y[1] (analytic) = 0 y[1] (numeric) = 2.2004575205270170307758069407994 absolute error = 2.2004575205270170307758069407994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.124 y[1] (analytic) = 0 y[1] (numeric) = 2.2010335418871424860006486182124 absolute error = 2.2010335418871424860006486182124 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.125 y[1] (analytic) = 0 y[1] (numeric) = 2.2016096125550094984879872531851 absolute error = 2.2016096125550094984879872531851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.126 y[1] (analytic) = 0 y[1] (numeric) = 2.2021857325551883858821296907228 absolute error = 2.2021857325551883858821296907228 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1163.5MB, alloc=4.6MB, time=122.27 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.127 y[1] (analytic) = 0 y[1] (numeric) = 2.2027619019122514819681676942429 absolute error = 2.2027619019122514819681676942429 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.128 y[1] (analytic) = 0 y[1] (numeric) = 2.2033381206507731397784503937263 absolute error = 2.2033381206507731397784503937263 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.129 y[1] (analytic) = 0 y[1] (numeric) = 2.2039143887953297346984704537549 absolute error = 2.2039143887953297346984704537549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.13 y[1] (analytic) = 0 y[1] (numeric) = 2.2044907063704996675721650387376 absolute error = 2.2044907063704996675721650387376 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.131 y[1] (analytic) = 0 y[1] (numeric) = 2.2050670734008633678066326518191 absolute error = 2.2050670734008633678066326518191 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.132 y[1] (analytic) = 0 y[1] (numeric) = 2.2056434899110032964762669231619 absolute error = 2.2056434899110032964762669231619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.133 y[1] (analytic) = 0 y[1] (numeric) = 2.2062199559255039494263084224858 absolute error = 2.2062199559255039494263084224858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.134 y[1] (analytic) = 0 y[1] (numeric) = 2.2067964714689518603758155699466 absolute error = 2.2067964714689518603758155699466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.135 y[1] (analytic) = 0 y[1] (numeric) = 2.2073730365659356040200557186323 absolute error = 2.2073730365659356040200557186323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.136 y[1] (analytic) = 0 y[1] (numeric) = 2.2079496512410457991323174811541 absolute error = 2.2079496512410457991323174811541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.137 y[1] (analytic) = 0 y[1] (numeric) = 2.2085263155188751116651453720088 absolute error = 2.2085263155188751116651453720088 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.138 y[1] (analytic) = 0 y[1] (numeric) = 2.2091030294240182578509978365886 absolute error = 2.2091030294240182578509978365886 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.139 y[1] (analytic) = 0 y[1] (numeric) = 2.2096797929810720073023297369176 absolute error = 2.2096797929810720073023297369176 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1167.3MB, alloc=4.6MB, time=122.66 x[1] = 4.14 y[1] (analytic) = 0 y[1] (numeric) = 2.210256606214635186111100363394 absolute error = 2.210256606214635186111100363394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.141 y[1] (analytic) = 0 y[1] (numeric) = 2.2108334691493086799477080410233 absolute error = 2.2108334691493086799477080410233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.142 y[1] (analytic) = 0 y[1] (numeric) = 2.2114103818096954371593523978292 absolute error = 2.2114103818096954371593523978292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.143 y[1] (analytic) = 0 y[1] (numeric) = 2.2119873442204004718678253623368 absolute error = 2.2119873442204004718678253623368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.144 y[1] (analytic) = 0 y[1] (numeric) = 2.2125643564060308670667319562267 absolute error = 2.2125643564060308670667319562267 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.145 y[1] (analytic) = 0 y[1] (numeric) = 2.213141418391195777718141947468 absolute error = 2.213141418391195777718141947468 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.146 y[1] (analytic) = 0 y[1] (numeric) = 2.2137185302005064338486734284446 absolute error = 2.2137185302005064338486734284446 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.147 y[1] (analytic) = 0 y[1] (numeric) = 2.2142956918585761436450093827994 absolute error = 2.2142956918585761436450093827994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.148 y[1] (analytic) = 0 y[1] (numeric) = 2.2148729033900202965488483039319 absolute error = 2.2148729033900202965488483039319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.149 y[1] (analytic) = 0 y[1] (numeric) = 2.2154501648194563663512899272938 absolute error = 2.2154501648194563663512899272938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.15 y[1] (analytic) = 0 y[1] (numeric) = 2.2160274761715039142866571378415 absolute error = 2.2160274761715039142866571378415 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.151 y[1] (analytic) = 0 y[1] (numeric) = 2.2166048374707845921257551132168 absolute error = 2.2166048374707845921257551132168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.152 y[1] (analytic) = 0 y[1] (numeric) = 2.2171822487419221452685687624405 absolute error = 2.2171822487419221452685687624405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1171.1MB, alloc=4.6MB, time=123.04 x[1] = 4.153 y[1] (analytic) = 0 y[1] (numeric) = 2.2177597100095424158363995191197 absolute error = 2.2177597100095424158363995191197 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.154 y[1] (analytic) = 0 y[1] (numeric) = 2.2183372212982733457634425473859 absolute error = 2.2183372212982733457634425473859 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.155 y[1] (analytic) = 0 y[1] (numeric) = 2.2189147826327449798878054179965 absolute error = 2.2189147826327449798878054179965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.156 y[1] (analytic) = 0 y[1] (numeric) = 2.2194923940375894690419693112518 absolute error = 2.2194923940375894690419693112518 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.157 y[1] (analytic) = 0 y[1] (numeric) = 2.2200700555374410731426938025985 absolute error = 2.2200700555374410731426938025985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.158 y[1] (analytic) = 0 y[1] (numeric) = 2.2206477671569361642803662860096 absolute error = 2.2206477671569361642803662860096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.159 y[1] (analytic) = 0 y[1] (numeric) = 2.2212255289207132298077970894526 absolute error = 2.2212255289207132298077970894526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.16 y[1] (analytic) = 0 y[1] (numeric) = 2.2218033408534128754284613359793 absolute error = 2.2218033408534128754284613359793 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.161 y[1] (analytic) = 0 y[1] (numeric) = 2.222381202979677828284188603194 absolute error = 2.222381202979677828284188603194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.162 y[1] (analytic) = 0 y[1] (numeric) = 2.222959115324152940042301433079 absolute error = 2.222959115324152940042301433079 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.163 y[1] (analytic) = 0 y[1] (numeric) = 2.2235370779114851899822037433837 absolute error = 2.2235370779114851899822037433837 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.164 y[1] (analytic) = 0 y[1] (numeric) = 2.2241150907663236880814201910072 absolute error = 2.2241150907663236880814201910072 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.165 y[1] (analytic) = 0 y[1] (numeric) = 2.2246931539133196781010875370319 absolute error = 2.2246931539133196781010875370319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1174.9MB, alloc=4.6MB, time=123.43 x[1] = 4.166 y[1] (analytic) = 0 y[1] (numeric) = 2.2252712673771265406708990622929 absolute error = 2.2252712673771265406708990622929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.167 y[1] (analytic) = 0 y[1] (numeric) = 2.225849431182399796373503081598 absolute error = 2.225849431182399796373503081598 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.168 y[1] (analytic) = 0 y[1] (numeric) = 2.22642764535379710882835660394 absolute error = 2.22642764535379710882835660394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.169 y[1] (analytic) = 0 y[1] (numeric) = 2.2270059099159782877750351852763 absolute error = 2.2270059099159782877750351852763 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.17 y[1] (analytic) = 0 y[1] (numeric) = 2.2275842248936052921560000196806 absolute error = 2.2275842248936052921560000196806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.171 y[1] (analytic) = 0 y[1] (numeric) = 2.2281625903113422331988233139051 absolute error = 2.2281625903113422331988233139051 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.172 y[1] (analytic) = 0 y[1] (numeric) = 2.2287410061938553774978729896234 absolute error = 2.2287410061938553774978729896234 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.173 y[1] (analytic) = 0 y[1] (numeric) = 2.2293194725658131500954577568606 absolute error = 2.2293194725658131500954577568606 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.174 y[1] (analytic) = 0 y[1] (numeric) = 2.2298979894518861375624336013514 absolute error = 2.2298979894518861375624336013514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.175 y[1] (analytic) = 0 y[1] (numeric) = 2.2304765568767470910782727278024 absolute error = 2.2304765568767470910782727278024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.176 y[1] (analytic) = 0 y[1] (numeric) = 2.2310551748650709295105960002743 absolute error = 2.2310551748650709295105960002743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.177 y[1] (analytic) = 0 y[1] (numeric) = 2.2316338434415347424941699201356 absolute error = 2.2316338434415347424941699201356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.178 y[1] (analytic) = 0 y[1] (numeric) = 2.2322125626308177935093691812797 absolute error = 2.2322125626308177935093691812797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.179 y[1] (analytic) = 0 y[1] (numeric) = 2.2327913324576015229601058415369 absolute error = 2.2327913324576015229601058415369 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1178.7MB, alloc=4.6MB, time=123.82 x[1] = 4.18 y[1] (analytic) = 0 y[1] (numeric) = 2.2333701529465695512512261484547 absolute error = 2.2333701529465695512512261484547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.181 y[1] (analytic) = 0 y[1] (numeric) = 2.2339490241224076818653760568595 absolute error = 2.2339490241224076818653760568595 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.182 y[1] (analytic) = 0 y[1] (numeric) = 2.2345279460098039044393364748588 absolute error = 2.2345279460098039044393364748588 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.183 y[1] (analytic) = 0 y[1] (numeric) = 2.2351069186334483978398292741841 absolute error = 2.2351069186334483978398292741841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.184 y[1] (analytic) = 0 y[1] (numeric) = 2.2356859420180335332387951000209 absolute error = 2.2356859420180335332387951000209 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.185 y[1] (analytic) = 0 y[1] (numeric) = 2.2362650161882538771881440147173 absolute error = 2.2362650161882538771881440147173 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.186 y[1] (analytic) = 0 y[1] (numeric) = 2.2368441411688061946939800090102 absolute error = 2.2368441411688061946939800090102 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.187 y[1] (analytic) = 0 y[1] (numeric) = 2.237423316984389452290300413654 absolute error = 2.237423316984389452290300413654 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.188 y[1] (analytic) = 0 y[1] (numeric) = 2.2380025436597048211121712435873 absolute error = 2.2380025436597048211121712435873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.189 y[1] (analytic) = 0 y[1] (numeric) = 2.2385818212194556799683795060201 absolute error = 2.2385818212194556799683795060201 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.19 y[1] (analytic) = 0 y[1] (numeric) = 2.2391611496883476184135635030774 absolute error = 2.2391611496883476184135635030774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.191 y[1] (analytic) = 0 y[1] (numeric) = 2.2397405290910884398198221588832 absolute error = 2.2397405290910884398198221588832 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.192 y[1] (analytic) = 0 y[1] (numeric) = 2.2403199594523881644478044002231 absolute error = 2.2403199594523881644478044002231 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1182.6MB, alloc=4.6MB, time=124.21 x[1] = 4.193 y[1] (analytic) = 0 y[1] (numeric) = 2.240899440796959032517279619177 absolute error = 2.240899440796959032517279619177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.194 y[1] (analytic) = 0 y[1] (numeric) = 2.241478973149515507277190245366 absolute error = 2.241478973149515507277190245366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.195 y[1] (analytic) = 0 y[1] (numeric) = 2.2420585565347742780751874547136 absolute error = 2.2420585565347742780751874547136 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.196 y[1] (analytic) = 0 y[1] (numeric) = 2.2426381909774542634266510408777 absolute error = 2.2426381909774542634266510408777 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.197 y[1] (analytic) = 0 y[1] (numeric) = 2.2432178765022766140831944747654 absolute error = 2.2432178765022766140831944747654 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.198 y[1] (analytic) = 0 y[1] (numeric) = 2.2437976131339647161006561768015 absolute error = 2.2437976131339647161006561768015 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.199 y[1] (analytic) = 0 y[1] (numeric) = 2.2443774008972441939065780258802 absolute error = 2.2443774008972441939065780258802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.2 y[1] (analytic) = 0 y[1] (numeric) = 2.2449572398168429133671721281878 absolute error = 2.2449572398168429133671721281878 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.201 y[1] (analytic) = 0 y[1] (numeric) = 2.2455371299174909848537768683474 absolute error = 2.2455371299174909848537768683474 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.202 y[1] (analytic) = 0 y[1] (numeric) = 2.2461170712239207663088032645947 absolute error = 2.2461170712239207663088032645947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.203 y[1] (analytic) = 0 y[1] (numeric) = 2.2466970637608668663111726489598 absolute error = 2.2466970637608668663111726489598 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.204 y[1] (analytic) = 0 y[1] (numeric) = 2.24727710755306614714124669269 absolute error = 2.24727710755306614714124669269 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.205 y[1] (analytic) = 0 y[1] (numeric) = 2.2478572026252577278452507964156 absolute error = 2.2478572026252577278452507964156 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1186.4MB, alloc=4.6MB, time=124.60 x[1] = 4.206 y[1] (analytic) = 0 y[1] (numeric) = 2.2484373490021829872991918638238 absolute error = 2.2484373490021829872991918638238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.207 y[1] (analytic) = 0 y[1] (numeric) = 2.2490175467085855672722714768726 absolute error = 2.2490175467085855672722714768726 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.208 y[1] (analytic) = 0 y[1] (numeric) = 2.2495977957692113754897954898443 absolute error = 2.2495977957692113754897954898443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.209 y[1] (analytic) = 0 y[1] (numeric) = 2.250178096208808588695581058804 absolute error = 2.250178096208808588695581058804 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.21 y[1] (analytic) = 0 y[1] (numeric) = 2.2507584480521276557138621223002 absolute error = 2.2507584480521276557138621223002 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.211 y[1] (analytic) = 0 y[1] (numeric) = 2.2513388513239213005106943484111 absolute error = 2.2513388513239213005106943484111 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.212 y[1] (analytic) = 0 y[1] (numeric) = 2.2519193060489445252548605625132 absolute error = 2.2519193060489445252548605625132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.213 y[1] (analytic) = 0 y[1] (numeric) = 2.2524998122519546133782776694196 absolute error = 2.2524998122519546133782776694196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.214 y[1] (analytic) = 0 y[1] (numeric) = 2.2530803699577111326359060828069 absolute error = 2.2530803699577111326359060828069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.215 y[1] (analytic) = 0 y[1] (numeric) = 2.2536609791909759381651626741243 absolute error = 2.2536609791909759381651626741243 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.216 y[1] (analytic) = 0 y[1] (numeric) = 2.2542416399765131755448382524514 absolute error = 2.2542416399765131755448382524514 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.217 y[1] (analytic) = 0 y[1] (numeric) = 2.254822352339089283853520586048 absolute error = 2.254822352339089283853520586048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.218 y[1] (analytic) = 0 y[1] (numeric) = 2.2554031163034729987275239756128 absolute error = 2.2554031163034729987275239756128 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.219 y[1] (analytic) = 0 y[1] (numeric) = 2.2559839318944353554183263885471 absolute error = 2.2559839318944353554183263885471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1190.2MB, alloc=4.6MB, time=124.98 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.22 y[1] (analytic) = 0 y[1] (numeric) = 2.2565647991367496918495151627964 absolute error = 2.2565647991367496918495151627964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.221 y[1] (analytic) = 0 y[1] (numeric) = 2.2571457180551916516732422881213 absolute error = 2.2571457180551916516732422881213 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.222 y[1] (analytic) = 0 y[1] (numeric) = 2.257726688674539187326190271929 absolute error = 2.257726688674539187326190271929 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.223 y[1] (analytic) = 0 y[1] (numeric) = 2.2583077110195725630850495960773 absolute error = 2.2583077110195725630850495960773 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.224 y[1] (analytic) = 0 y[1] (numeric) = 2.2588887851150743581215087703446 absolute error = 2.2588887851150743581215087703446 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.225 y[1] (analytic) = 0 y[1] (numeric) = 2.2594699109858294695567579875405 absolute error = 2.2594699109858294695567579875405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.226 y[1] (analytic) = 0 y[1] (numeric) = 2.2600510886566251155155073845166 absolute error = 2.2600510886566251155155073845166 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.227 y[1] (analytic) = 0 y[1] (numeric) = 2.2606323181522508381795209126193 absolute error = 2.2606323181522508381795209126193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.228 y[1] (analytic) = 0 y[1] (numeric) = 2.2612135994974985068406668204136 absolute error = 2.2612135994974985068406668204136 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.229 y[1] (analytic) = 0 y[1] (numeric) = 2.2617949327171623209534857507896 absolute error = 2.2617949327171623209534857507896 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.23 y[1] (analytic) = 0 y[1] (numeric) = 2.2623763178360388131872774538535 absolute error = 2.2623763178360388131872774538535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.231 y[1] (analytic) = 0 y[1] (numeric) = 2.2629577548789268524777071162906 absolute error = 2.2629577548789268524777071162906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.232 y[1] (analytic) = 0 y[1] (numeric) = 2.2635392438706276470779323071759 absolute error = 2.2635392438706276470779323071759 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1194.0MB, alloc=4.6MB, time=125.37 x[1] = 4.233 y[1] (analytic) = 0 y[1] (numeric) = 2.2641207848359447476092515394994 absolute error = 2.2641207848359447476092515394994 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.234 y[1] (analytic) = 0 y[1] (numeric) = 2.264702377799684050111275445961 absolute error = 2.264702377799684050111275445961 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.235 y[1] (analytic) = 0 y[1] (numeric) = 2.265284022786653799091621566883 absolute error = 2.265284022786653799091621566883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.236 y[1] (analytic) = 0 y[1] (numeric) = 2.2658657198216645905751337473793 absolute error = 2.2658657198216645905751337473793 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.237 y[1] (analytic) = 0 y[1] (numeric) = 2.2664474689295293751526271402131 absolute error = 2.2664474689295293751526271402131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.238 y[1] (analytic) = 0 y[1] (numeric) = 2.2670292701350634610291598100699 absolute error = 2.2670292701350634610291598100699 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.239 y[1] (analytic) = 0 y[1] (numeric) = 2.2676111234630845170718319342657 absolute error = 2.2676111234630845170718319342657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.24 y[1] (analytic) = 0 y[1] (numeric) = 2.2681930289384125758571135942071 absolute error = 2.2681930289384125758571135942071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.241 y[1] (analytic) = 0 y[1] (numeric) = 2.2687749865858700367177021512159 absolute error = 2.2687749865858700367177021512159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.242 y[1] (analytic) = 0 y[1] (numeric) = 2.2693569964302816687889101996284 absolute error = 2.2693569964302816687889101996284 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.243 y[1] (analytic) = 0 y[1] (numeric) = 2.2699390584964746140545850893772 absolute error = 2.2699390584964746140545850893772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.244 y[1] (analytic) = 0 y[1] (numeric) = 2.2705211728092783903925610095629 absolute error = 2.2705211728092783903925610095629 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.245 y[1] (analytic) = 0 y[1] (numeric) = 2.2711033393935248946196446238232 absolute error = 2.2711033393935248946196446238232 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1197.8MB, alloc=4.6MB, time=125.76 x[1] = 4.246 y[1] (analytic) = 0 y[1] (numeric) = 2.2716855582740484055361352476073 absolute error = 2.2716855582740484055361352476073 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.247 y[1] (analytic) = 0 y[1] (numeric) = 2.2722678294756855869698805567646 absolute error = 2.2722678294756855869698805567646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.248 y[1] (analytic) = 0 y[1] (numeric) = 2.272850153023275490819868816161 absolute error = 2.272850153023275490819868816161 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.249 y[1] (analytic) = 0 y[1] (numeric) = 2.2734325289416595600993586163375 absolute error = 2.2734325289416595600993586163375 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.25 y[1] (analytic) = 0 y[1] (numeric) = 2.2740149572556816319785471055316 absolute error = 2.2740149572556816319785471055316 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.251 y[1] (analytic) = 0 y[1] (numeric) = 2.2745974379901879408267777036865 absolute error = 2.2745974379901879408267777036865 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.252 y[1] (analytic) = 0 y[1] (numeric) = 2.2751799711700271212542882843786 absolute error = 2.2751799711700271212542882843786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.253 y[1] (analytic) = 0 y[1] (numeric) = 2.2757625568200502111535008099019 absolute error = 2.2757625568200502111535008099019 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.254 y[1] (analytic) = 0 y[1] (numeric) = 2.2763451949651106547398534040549 absolute error = 2.2763451949651106547398534040549 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.255 y[1] (analytic) = 0 y[1] (numeric) = 2.2769278856300643055921758464838 absolute error = 2.2769278856300643055921758464838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.256 y[1] (analytic) = 0 y[1] (numeric) = 2.2775106288397694296926094717461 absolute error = 2.2775106288397694296926094717461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.257 y[1] (analytic) = 0 y[1] (numeric) = 2.2780934246190867084660724555687 absolute error = 2.2780934246190867084660724555687 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.258 y[1] (analytic) = 0 y[1] (numeric) = 2.2786762729928792418192714700858 absolute error = 2.2786762729928792418192714700858 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.259 y[1] (analytic) = 0 y[1] (numeric) = 2.2792591739860125511792606891533 absolute error = 2.2792591739860125511792606891533 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1201.6MB, alloc=4.6MB, time=126.15 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.26 y[1] (analytic) = 0 y[1] (numeric) = 2.2798421276233545825315491241504 absolute error = 2.2798421276233545825315491241504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.261 y[1] (analytic) = 0 y[1] (numeric) = 2.2804251339297757094577572699927 absolute error = 2.2804251339297757094577572699927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.262 y[1] (analytic) = 0 y[1] (numeric) = 2.281008192930148736172824040394 absolute error = 2.281008192930148736172824040394 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.263 y[1] (analytic) = 0 y[1] (numeric) = 2.2815913046493489005617649707321 absolute error = 2.2815913046493489005617649707321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.264 y[1] (analytic) = 0 y[1] (numeric) = 2.2821744691122538772159826661883 absolute error = 2.2821744691122538772159826661883 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.265 y[1] (analytic) = 0 y[1] (numeric) = 2.2827576863437437804691304721482 absolute error = 2.2827576863437437804691304721482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.266 y[1] (analytic) = 0 y[1] (numeric) = 2.2833409563687011674325303431688 absolute error = 2.2833409563687011674325303431688 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.267 y[1] (analytic) = 0 y[1] (numeric) = 2.2839242792120110410301458861373 absolute error = 2.2839242792120110410301458861373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.268 y[1] (analytic) = 0 y[1] (numeric) = 2.2845076548985608530331115525643 absolute error = 2.2845076548985608530331115525643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.269 y[1] (analytic) = 0 y[1] (numeric) = 2.285091083453240507093818954277 absolute error = 2.285091083453240507093818954277 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.27 y[1] (analytic) = 0 y[1] (numeric) = 2.2856745649009423617795612760981 absolute error = 2.2856745649009423617795612760981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.271 y[1] (analytic) = 0 y[1] (numeric) = 2.2862580992665612336057367584183 absolute error = 2.2862580992665612336057367584183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.272 y[1] (analytic) = 0 y[1] (numeric) = 2.2868416865749944000686122218946 absolute error = 2.2868416865749944000686122218946 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1205.4MB, alloc=4.6MB, time=126.54 x[1] = 4.273 y[1] (analytic) = 0 y[1] (numeric) = 2.2874253268511416026776476058285 absolute error = 2.2874253268511416026776476058285 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.274 y[1] (analytic) = 0 y[1] (numeric) = 2.2880090201199050499873824911055 absolute error = 2.2880090201199050499873824911055 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.275 y[1] (analytic) = 0 y[1] (numeric) = 2.2885927664061894206288855779003 absolute error = 2.2885927664061894206288855779003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.276 y[1] (analytic) = 0 y[1] (numeric) = 2.289176565734901866340768087681 absolute error = 2.289176565734901866340768087681 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.277 y[1] (analytic) = 0 y[1] (numeric) = 2.289760418130952014999762058371 absolute error = 2.289760418130952014999762058371 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.278 y[1] (analytic) = 0 y[1] (numeric) = 2.2903443236192519736508645008565 absolute error = 2.2903443236192519736508645008565 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.279 y[1] (analytic) = 0 y[1] (numeric) = 2.2909282822247163315370483843561 absolute error = 2.2909282822247163315370483843561 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.28 y[1] (analytic) = 0 y[1] (numeric) = 2.2915122939722621631285414174991 absolute error = 2.2915122939722621631285414174991 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.281 y[1] (analytic) = 0 y[1] (numeric) = 2.2920963588868090311516735912892 absolute error = 2.2920963588868090311516735912892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.282 y[1] (analytic) = 0 y[1] (numeric) = 2.2926804769932789896172944494627 absolute error = 2.2926804769932789896172944494627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.283 y[1] (analytic) = 0 y[1] (numeric) = 2.2932646483165965868487610510812 absolute error = 2.2932646483165965868487610510812 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.284 y[1] (analytic) = 0 y[1] (numeric) = 2.2938488728816888685094975895339 absolute error = 2.2938488728816888685094975895339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.285 y[1] (analytic) = 0 y[1] (numeric) = 2.2944331507134853806301276314566 absolute error = 2.2944331507134853806301276314566 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1209.3MB, alloc=4.6MB, time=126.92 x[1] = 4.286 y[1] (analytic) = 0 y[1] (numeric) = 2.2950174818369181726351799384106 absolute error = 2.2950174818369181726351799384106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.287 y[1] (analytic) = 0 y[1] (numeric) = 2.2956018662769218003693688335001 absolute error = 2.2956018662769218003693688335001 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.288 y[1] (analytic) = 0 y[1] (numeric) = 2.2961863040584333291234500744426 absolute error = 2.2961863040584333291234500744426 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.289 y[1] (analytic) = 0 y[1] (numeric) = 2.2967707952063923366596531939452 absolute error = 2.2967707952063923366596531939452 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.29 y[1] (analytic) = 0 y[1] (numeric) = 2.2973553397457409162366912675764 absolute error = 2.2973553397457409162366912675764 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.291 y[1] (analytic) = 0 y[1] (numeric) = 2.2979399377014236796343490686634 absolute error = 2.2979399377014236796343490686634 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.292 y[1] (analytic) = 0 y[1] (numeric) = 2.2985245890983877601776505690833 absolute error = 2.2985245890983877601776505690833 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.293 y[1] (analytic) = 0 y[1] (numeric) = 2.299109293961582815760606744159 absolute error = 2.299109293961582815760606744159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.294 y[1] (analytic) = 0 y[1] (numeric) = 2.2996940523159610318695446392096 absolute error = 2.2996940523159610318695446392096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.295 y[1] (analytic) = 0 y[1] (numeric) = 2.3002788641864771246060186546497 absolute error = 2.3002788641864771246060186546497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.296 y[1] (analytic) = 0 y[1] (numeric) = 2.3008637295980883437093050058736 absolute error = 2.3008637295980883437093050058736 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.297 y[1] (analytic) = 0 y[1] (numeric) = 2.3014486485757544755784803135048 absolute error = 2.3014486485757544755784803135048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.298 y[1] (analytic) = 0 y[1] (numeric) = 2.3020336211444378462940852789359 absolute error = 2.3020336211444378462940852789359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.299 y[1] (analytic) = 0 y[1] (numeric) = 2.3026186473291033246393743994294 absolute error = 2.3026186473291033246393743994294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1213.1MB, alloc=4.6MB, time=127.31 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.3 y[1] (analytic) = 0 y[1] (numeric) = 2.3032037271547183251211526763966 absolute error = 2.3032037271547183251211526763966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.301 y[1] (analytic) = 0 y[1] (numeric) = 2.3037888606462528109902002698179 absolute error = 2.3037888606462528109902002698179 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.302 y[1] (analytic) = 0 y[1] (numeric) = 2.3043740478286792972612860511176 absolute error = 2.3043740478286792972612860511176 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.303 y[1] (analytic) = 0 y[1] (numeric) = 2.3049592887269728537327710061534 absolute error = 2.3049592887269728537327710061534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.304 y[1] (analytic) = 0 y[1] (numeric) = 2.305544583366111108005802439331 absolute error = 2.305544583366111108005802439331 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.305 y[1] (analytic) = 0 y[1] (numeric) = 2.3061299317710742485030999292048 absolute error = 2.3061299317710742485030999292048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.306 y[1] (analytic) = 0 y[1] (numeric) = 2.3067153339668450274873339852769 absolute error = 2.3067153339668450274873339852769 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.307 y[1] (analytic) = 0 y[1] (numeric) = 2.3073007899784087640790983550584 absolute error = 2.3073007899784087640790983550584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.308 y[1] (analytic) = 0 y[1] (numeric) = 2.3078862998307533472744769298098 absolute error = 2.3078862998307533472744769298098 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.309 y[1] (analytic) = 0 y[1] (numeric) = 2.3084718635488692389622061967313 absolute error = 2.3084718635488692389622061967313 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.31 y[1] (analytic) = 0 y[1] (numeric) = 2.3090574811577494769404341847278 absolute error = 2.3090574811577494769404341847278 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.311 y[1] (analytic) = 0 y[1] (numeric) = 2.3096431526823896779330768502296 absolute error = 2.3096431526823896779330768502296 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.312 y[1] (analytic) = 0 y[1] (numeric) = 2.3102288781477880406057728489041 absolute error = 2.3102288781477880406057728489041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1216.9MB, alloc=4.6MB, time=127.70 x[1] = 4.313 y[1] (analytic) = 0 y[1] (numeric) = 2.3108146575789453485814376384532 absolute error = 2.3108146575789453485814376384532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.314 y[1] (analytic) = 0 y[1] (numeric) = 2.3114004910008649734554178570456 absolute error = 2.3114004910008649734554178570456 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.315 y[1] (analytic) = 0 y[1] (numeric) = 2.3119863784385528778102469212952 absolute error = 2.3119863784385528778102469212952 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.316 y[1] (analytic) = 0 y[1] (numeric) = 2.312572319917017618230002787053 absolute error = 2.312572319917017618230002787053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.317 y[1] (analytic) = 0 y[1] (numeric) = 2.3131583154612703483142688156424 absolute error = 2.3131583154612703483142688156424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.318 y[1] (analytic) = 0 y[1] (numeric) = 2.3137443650963248216916986875262 absolute error = 2.3137443650963248216916986875262 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.319 y[1] (analytic) = 0 y[1] (numeric) = 2.3143304688471973950331863047584 absolute error = 2.3143304688471973950331863047584 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.32 y[1] (analytic) = 0 y[1] (numeric) = 2.314916626738907031064641622933 absolute error = 2.314916626738907031064641622933 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.321 y[1] (analytic) = 0 y[1] (numeric) = 2.3155028387964753015793733527082 absolute error = 2.3155028387964753015793733527082 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.322 y[1] (analytic) = 0 y[1] (numeric) = 2.3160891050449263904500794703466 absolute error = 2.3160891050449263904500794703466 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.323 y[1] (analytic) = 0 y[1] (numeric) = 2.3166754255092870966404464760774 absolute error = 2.3166754255092870966404464760774 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.324 y[1] (analytic) = 0 y[1] (numeric) = 2.3172618002145868372163583384526 absolute error = 2.3172618002145868372163583384526 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.325 y[1] (analytic) = 0 y[1] (numeric) = 2.3178482291858576503567160622355 absolute error = 2.3178482291858576503567160622355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1220.7MB, alloc=4.6MB, time=128.09 x[1] = 4.326 y[1] (analytic) = 0 y[1] (numeric) = 2.3184347124481341983638688167267 absolute error = 2.3184347124481341983638688167267 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.327 y[1] (analytic) = 0 y[1] (numeric) = 2.3190212500264537706736575608011 absolute error = 2.3190212500264537706736575608011 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.328 y[1] (analytic) = 0 y[1] (numeric) = 2.3196078419458562868650721002983 absolute error = 2.3196078419458562868650721002983 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.329 y[1] (analytic) = 0 y[1] (numeric) = 2.3201944882313842996695225127784 absolute error = 2.3201944882313842996695225127784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.33 y[1] (analytic) = 0 y[1] (numeric) = 2.3207811889080829979797258740258 absolute error = 2.3207811889080829979797258740258 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.331 y[1] (analytic) = 0 y[1] (numeric) = 2.3213679440010002098582092200535 absolute error = 2.3213679440010002098582092200535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.332 y[1] (analytic) = 0 y[1] (numeric) = 2.3219547535351864055454296777349 absolute error = 2.3219547535351864055454296777349 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.333 y[1] (analytic) = 0 y[1] (numeric) = 2.3225416175356947004675126965605 absolute error = 2.3225416175356947004675126965605 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.334 y[1] (analytic) = 0 y[1] (numeric) = 2.3231285360275808582436093133912 absolute error = 2.3231285360275808582436093133912 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.335 y[1] (analytic) = 0 y[1] (numeric) = 2.3237155090359032936928733814554 absolute error = 2.3237155090359032936928733814554 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.336 y[1] (analytic) = 0 y[1] (numeric) = 2.3243025365857230758410596942097 absolute error = 2.3243025365857230758410596942097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.337 y[1] (analytic) = 0 y[1] (numeric) = 2.3248896187021039309267439340623 absolute error = 2.3248896187021039309267439340623 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.338 y[1] (analytic) = 0 y[1] (numeric) = 2.3254767554101122454071653753311 absolute error = 2.3254767554101122454071653753311 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.339 y[1] (analytic) = 0 y[1] (numeric) = 2.3260639467348170689636932701893 absolute error = 2.3260639467348170689636932701893 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1224.5MB, alloc=4.6MB, time=128.48 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.34 y[1] (analytic) = 0 y[1] (numeric) = 2.3266511927012901175069178457274 absolute error = 2.3266511927012901175069178457274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.341 y[1] (analytic) = 0 y[1] (numeric) = 2.3272384933346057761813668396404 absolute error = 2.3272384933346057761813668396404 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.342 y[1] (analytic) = 0 y[1] (numeric) = 2.3278258486598411023698485014289 absolute error = 2.3278258486598411023698485014289 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.343 y[1] (analytic) = 0 y[1] (numeric) = 2.3284132587020758286974219853824 absolute error = 2.3284132587020758286974219853824 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.344 y[1] (analytic) = 0 y[1] (numeric) = 2.3290007234863923660349960609964 absolute error = 2.3290007234863923660349960609964 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.345 y[1] (analytic) = 0 y[1] (numeric) = 2.3295882430378758065025570658541 absolute error = 2.3295882430378758065025570658541 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.346 y[1] (analytic) = 0 y[1] (numeric) = 2.33017581738161392647202702539 absolute error = 2.33017581738161392647202702539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.347 y[1] (analytic) = 0 y[1] (numeric) = 2.330763446542697189569752863333 absolute error = 2.330763446542697189569752863333 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.348 y[1] (analytic) = 0 y[1] (numeric) = 2.331351130546218749678627626013 absolute error = 2.331351130546218749678627626013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.349 y[1] (analytic) = 0 y[1] (numeric) = 2.3319388694172744539398446431003 absolute error = 2.3319388694172744539398446431003 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.35 y[1] (analytic) = 0 y[1] (numeric) = 2.3325266631809628457542855467314 absolute error = 2.3325266631809628457542855467314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.351 y[1] (analytic) = 0 y[1] (numeric) = 2.3331145118623851677835430703639 absolute error = 2.3331145118623851677835430703639 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.352 y[1] (analytic) = 0 y[1] (numeric) = 2.3337024154866453649505795480885 absolute error = 2.3337024154866453649505795480885 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1228.3MB, alloc=4.6MB, time=128.87 x[1] = 4.353 y[1] (analytic) = 0 y[1] (numeric) = 2.3342903740788500874400220345159 absolute error = 2.3342903740788500874400220345159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.354 y[1] (analytic) = 0 y[1] (numeric) = 2.3348783876641086936980949647453 absolute error = 2.3348783876641086936980949647453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.355 y[1] (analytic) = 0 y[1] (numeric) = 2.3354664562675332534321912733097 absolute error = 2.3354664562675332534321912733097 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.356 y[1] (analytic) = 0 y[1] (numeric) = 2.3360545799142385506100828903861 absolute error = 2.3360545799142385506100828903861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.357 y[1] (analytic) = 0 y[1] (numeric) = 2.3366427586293420864587715329473 absolute error = 2.3366427586293420864587715329473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.358 y[1] (analytic) = 0 y[1] (numeric) = 2.3372309924379640824629807079268 absolute error = 2.3372309924379640824629807079268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.359 y[1] (analytic) = 0 y[1] (numeric) = 2.3378192813652274833632898438592 absolute error = 2.3378192813652274833632898438592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.36 y[1] (analytic) = 0 y[1] (numeric) = 2.3384076254362579601539114668534 absolute error = 2.3384076254362579601539114668534 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.361 y[1] (analytic) = 0 y[1] (numeric) = 2.3389960246761839130801123361492 absolute error = 2.3389960246761839130801123361492 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.362 y[1] (analytic) = 0 y[1] (numeric) = 2.339584479110136474635279453904 absolute error = 2.339584479110136474635279453904 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.363 y[1] (analytic) = 0 y[1] (numeric) = 2.3401729887632495125576318632521 absolute error = 2.3401729887632495125576318632521 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.364 y[1] (analytic) = 0 y[1] (numeric) = 2.340761553660659632826579148075 absolute error = 2.340761553660659632826579148075 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.365 y[1] (analytic) = 0 y[1] (numeric) = 2.3413501738275061826587275473195 absolute error = 2.3413501738275061826587275473195 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1232.2MB, alloc=4.6MB, time=129.26 x[1] = 4.366 y[1] (analytic) = 0 y[1] (numeric) = 2.3419388492889312535035345960981 absolute error = 2.3419388492889312535035345960981 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.367 y[1] (analytic) = 0 y[1] (numeric) = 2.342527580070079684038613205205 absolute error = 2.342527580070079684038613205205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.368 y[1] (analytic) = 0 y[1] (numeric) = 2.3431163661960990631646860900811 absolute error = 2.3431163661960990631646860900811 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.369 y[1] (analytic) = 0 y[1] (numeric) = 2.343705207692139733000191459662 absolute error = 2.343705207692139733000191459662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.37 y[1] (analytic) = 0 y[1] (numeric) = 2.3442941045833547918755408749431 absolute error = 2.3442941045833547918755408749431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.371 y[1] (analytic) = 0 y[1] (numeric) = 2.3448830568949000973270301864995 absolute error = 2.3448830568949000973270301864995 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.372 y[1] (analytic) = 0 y[1] (numeric) = 2.3454720646519342690904044595996 absolute error = 2.3454720646519342690904044595996 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.373 y[1] (analytic) = 0 y[1] (numeric) = 2.3460611278796186920940777949559 absolute error = 2.3460611278796186920940777949559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.374 y[1] (analytic) = 0 y[1] (numeric) = 2.3466502466031175194520089525597 absolute error = 2.3466502466031175194520089525597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.375 y[1] (analytic) = 0 y[1] (numeric) = 2.3472394208475976754562336854525 absolute error = 2.3472394208475976754562336854525 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.376 y[1] (analytic) = 0 y[1] (numeric) = 2.3478286506382288585690546896916 absolute error = 2.3478286506382288585690546896916 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.377 y[1] (analytic) = 0 y[1] (numeric) = 2.3484179360001835444148900761743 absolute error = 2.3484179360001835444148900761743 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.378 y[1] (analytic) = 0 y[1] (numeric) = 2.3490072769586369887717812693918 absolute error = 2.3490072769586369887717812693918 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1236.0MB, alloc=4.6MB, time=129.65 x[1] = 4.379 y[1] (analytic) = 0 y[1] (numeric) = 2.3495966735387672305625612375937 absolute error = 2.3495966735387672305625612375937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.38 y[1] (analytic) = 0 y[1] (numeric) = 2.3501861257657550948456839582492 absolute error = 2.3501861257657550948456839582492 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.381 y[1] (analytic) = 0 y[1] (numeric) = 2.3507756336647841958057160221043 absolute error = 2.3507756336647841958057160221043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.382 y[1] (analytic) = 0 y[1] (numeric) = 2.3513651972610409397434912785421 absolute error = 2.3513651972610409397434912785421 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.383 y[1] (analytic) = 0 y[1] (numeric) = 2.3519548165797145280659294243643 absolute error = 2.3519548165797145280659294243643 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.384 y[1] (analytic) = 0 y[1] (numeric) = 2.3525444916459969602755194375255 absolute error = 2.3525444916459969602755194375255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.385 y[1] (analytic) = 0 y[1] (numeric) = 2.353134222485083036959468756762 absolute error = 2.353134222485083036959468756762 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.386 y[1] (analytic) = 0 y[1] (numeric) = 2.353724009122170362778519107471 absolute error = 2.353724009122170362778519107471 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.387 y[1] (analytic) = 0 y[1] (numeric) = 2.3543138515824593494554298736106 absolute error = 2.3543138515824593494554298736106 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.388 y[1] (analytic) = 0 y[1] (numeric) = 2.3549037498911532187631299148039 absolute error = 2.3549037498911532187631299148039 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.389 y[1] (analytic) = 0 y[1] (numeric) = 2.3554937040734580055125387272478 absolute error = 2.3554937040734580055125387272478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.39 y[1] (analytic) = 0 y[1] (numeric) = 2.3560837141545825605400578464419 absolute error = 2.3560837141545825605400578464419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.391 y[1] (analytic) = 0 y[1] (numeric) = 2.3566737801597385536947333891694 absolute error = 2.3566737801597385536947333891694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.392 y[1] (analytic) = 0 y[1] (numeric) = 2.357263902114140476825090631581 absolute error = 2.357263902114140476825090631581 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1239.8MB, alloc=4.6MB, time=130.04 x[1] = 4.393 y[1] (analytic) = 0 y[1] (numeric) = 2.35785408004300564676564151965 absolute error = 2.35785408004300564676564151965 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.394 y[1] (analytic) = 0 y[1] (numeric) = 2.3584443139715542083230660076851 absolute error = 2.3584443139715542083230660076851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.395 y[1] (analytic) = 0 y[1] (numeric) = 2.3590346039250091372620681200092 absolute error = 2.3590346039250091372620681200092 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.396 y[1] (analytic) = 0 y[1] (numeric) = 2.3596249499285962432909076303309 absolute error = 2.3596249499285962432909076303309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.397 y[1] (analytic) = 0 y[1] (numeric) = 2.3602153520075441730466082527578 absolute error = 2.3602153520075441730466082527578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.398 y[1] (analytic) = 0 y[1] (numeric) = 2.3608058101870844130798432378227 absolute error = 2.3608058101870844130798432378227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.399 y[1] (analytic) = 0 y[1] (numeric) = 2.3613963244924512928394992663146 absolute error = 2.3613963244924512928394992663146 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.4 y[1] (analytic) = 0 y[1] (numeric) = 2.3619868949488819876569195331334 absolute error = 2.3619868949488819876569195331334 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.401 y[1] (analytic) = 0 y[1] (numeric) = 2.3625775215816165217298269128071 absolute error = 2.3625775215816165217298269128071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.402 y[1] (analytic) = 0 y[1] (numeric) = 2.3631682044158977711059280977387 absolute error = 2.3631682044158977711059280977387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.403 y[1] (analytic) = 0 y[1] (numeric) = 2.3637589434769714666661995996728 absolute error = 2.3637589434769714666661995996728 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.404 y[1] (analytic) = 0 y[1] (numeric) = 2.3643497387900861971078565043002 absolute error = 2.3643497387900861971078565043002 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.405 y[1] (analytic) = 0 y[1] (numeric) = 2.3649405903804934119270048683451 absolute error = 2.3649405903804934119270048683451 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1243.6MB, alloc=4.6MB, time=130.43 x[1] = 4.406 y[1] (analytic) = 0 y[1] (numeric) = 2.3655314982734474244009786479063 absolute error = 2.3655314982734474244009786479063 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.407 y[1] (analytic) = 0 y[1] (numeric) = 2.3661224624942054145703620462539 absolute error = 2.3661224624942054145703620462539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.408 y[1] (analytic) = 0 y[1] (numeric) = 2.3667134830680274322206981687108 absolute error = 2.3667134830680274322206981687108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.409 y[1] (analytic) = 0 y[1] (numeric) = 2.3673045600201763998638848716793 absolute error = 2.3673045600201763998638848716793 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.41 y[1] (analytic) = 0 y[1] (numeric) = 2.3678956933759181157192586923026 absolute error = 2.3678956933759181157192586923026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.411 y[1] (analytic) = 0 y[1] (numeric) = 2.3684868831605212566943677446829 absolute error = 2.3684868831605212566943677446829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.412 y[1] (analytic) = 0 y[1] (numeric) = 2.3690781293992573813654344680101 absolute error = 2.3690781293992573813654344680101 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.413 y[1] (analytic) = 0 y[1] (numeric) = 2.3696694321174009329575091113875 absolute error = 2.3696694321174009329575091113875 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.414 y[1] (analytic) = 0 y[1] (numeric) = 2.3702607913402292423243148395738 absolute error = 2.3702607913402292423243148395738 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.415 y[1] (analytic) = 0 y[1] (numeric) = 2.3708522070930225309277853432967 absolute error = 2.3708522070930225309277853432967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.416 y[1] (analytic) = 0 y[1] (numeric) = 2.3714436794010639138172958372255 absolute error = 2.3714436794010639138172958372255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.417 y[1] (analytic) = 0 y[1] (numeric) = 2.3720352082896394026085883281288 absolute error = 2.3720352082896394026085883281288 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.418 y[1] (analytic) = 0 y[1] (numeric) = 2.3726267937840379084623920351775 absolute error = 2.3726267937840379084623920351775 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1247.4MB, alloc=4.6MB, time=130.82 x[1] = 4.419 y[1] (analytic) = 0 y[1] (numeric) = 2.3732184359095512450627398437907 absolute error = 2.3732184359095512450627398437907 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.42 y[1] (analytic) = 0 y[1] (numeric) = 2.3738101346914741315949816738611 absolute error = 2.3738101346914741315949816738611 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.421 y[1] (analytic) = 0 y[1] (numeric) = 2.3744018901551041957234956426332 absolute error = 2.3744018901551041957234956426332 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.422 y[1] (analytic) = 0 y[1] (numeric) = 2.3749937023257419765690979019482 absolute error = 2.3749937023257419765690979019482 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.423 y[1] (analytic) = 0 y[1] (numeric) = 2.3755855712286909276861520290084 absolute error = 2.3755855712286909276861520290084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.424 y[1] (analytic) = 0 y[1] (numeric) = 2.3761774968892574200393788492548 absolute error = 2.3761774968892574200393788492548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.425 y[1] (analytic) = 0 y[1] (numeric) = 2.3767694793327507449803675693937 absolute error = 2.3767694793327507449803675693937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.426 y[1] (analytic) = 0 y[1] (numeric) = 2.3773615185844831172237890980477 absolute error = 2.3773615185844831172237890980477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.427 y[1] (analytic) = 0 y[1] (numeric) = 2.3779536146697696778233124309529 absolute error = 2.3779536146697696778233124309529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.428 y[1] (analytic) = 0 y[1] (numeric) = 2.3785457676139284971472249770633 absolute error = 2.3785457676139284971472249770633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.429 y[1] (analytic) = 0 y[1] (numeric) = 2.3791379774422805778537577013714 absolute error = 2.3791379774422805778537577013714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.43 y[1] (analytic) = 0 y[1] (numeric) = 2.3797302441801498578661159596955 absolute error = 2.3797302441801498578661159596955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.431 y[1] (analytic) = 0 y[1] (numeric) = 2.3803225678528632133472169001325 absolute error = 2.3803225678528632133472169001325 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.432 y[1] (analytic) = 0 y[1] (numeric) = 2.3809149484857504616741343053187 absolute error = 2.3809149484857504616741343053187 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1251.2MB, alloc=4.6MB, time=131.21 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.433 y[1] (analytic) = 0 y[1] (numeric) = 2.3815073861041443644122517490899 absolute error = 2.3815073861041443644122517490899 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.434 y[1] (analytic) = 0 y[1] (numeric) = 2.3820998807333806302891249405792 absolute error = 2.3820998807333806302891249405792 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.435 y[1] (analytic) = 0 y[1] (numeric) = 2.382692432398797918168054128238 absolute error = 2.382692432398797918168054128238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.436 y[1] (analytic) = 0 y[1] (numeric) = 2.3832850411257378400213674357168 absolute error = 2.3832850411257378400213674357168 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.437 y[1] (analytic) = 0 y[1] (numeric) = 2.3838777069395449639034160009902 absolute error = 2.3838777069395449639034160009902 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.438 y[1] (analytic) = 0 y[1] (numeric) = 2.384470429865566816923281789562 absolute error = 2.384470429865566816923281789562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.439 y[1] (analytic) = 0 y[1] (numeric) = 2.3850632099291538882171989520372 absolute error = 2.3850632099291538882171989520372 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.44 y[1] (analytic) = 0 y[1] (numeric) = 2.3856560471556596319206895957987 absolute error = 2.3856560471556596319206895957987 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.441 y[1] (analytic) = 0 y[1] (numeric) = 2.3862489415704404701404148399801 absolute error = 2.3862489415704404701404148399801 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.442 y[1] (analytic) = 0 y[1] (numeric) = 2.3868418931988557959257420223787 absolute error = 2.3868418931988557959257420223787 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.443 y[1] (analytic) = 0 y[1] (numeric) = 2.3874349020662679762400289264062 absolute error = 2.3874349020662679762400289264062 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.444 y[1] (analytic) = 0 y[1] (numeric) = 2.3880279681980423549316258956299 absolute error = 2.3880279681980423549316258956299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.445 y[1] (analytic) = 0 y[1] (numeric) = 2.3886210916195472557045967029119 absolute error = 2.3886210916195472557045967029119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1255.0MB, alloc=4.6MB, time=131.59 x[1] = 4.446 y[1] (analytic) = 0 y[1] (numeric) = 2.3892142723561539850891590406099 absolute error = 2.3892142723561539850891590406099 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.447 y[1] (analytic) = 0 y[1] (numeric) = 2.3898075104332368354118454977597 absolute error = 2.3898075104332368354118454977597 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.448 y[1] (analytic) = 0 y[1] (numeric) = 2.3904008058761730877653858896174 absolute error = 2.3904008058761730877653858896174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.449 y[1] (analytic) = 0 y[1] (numeric) = 2.3909941587103430149783118043962 absolute error = 2.3909941587103430149783118043962 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.45 y[1] (analytic) = 0 y[1] (numeric) = 2.3915875689611298845842842314923 absolute error = 2.3915875689611298845842842314923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.451 y[1] (analytic) = 0 y[1] (numeric) = 2.3921810366539199617911451349532 absolute error = 2.3921810366539199617911451349532 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.452 y[1] (analytic) = 0 y[1] (numeric) = 2.3927745618141025124496938354026 absolute error = 2.3927745618141025124496938354026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.453 y[1] (analytic) = 0 y[1] (numeric) = 2.3933681444670698060221890630949 absolute error = 2.3933681444670698060221890630949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.454 y[1] (analytic) = 0 y[1] (numeric) = 2.3939617846382171185505775442366 absolute error = 2.3939617846382171185505775442366 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.455 y[1] (analytic) = 0 y[1] (numeric) = 2.3945554823529427356244499821711 absolute error = 2.3945554823529427356244499821711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.456 y[1] (analytic) = 0 y[1] (numeric) = 2.3951492376366479553487252944884 absolute error = 2.3951492376366479553487252944884 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.457 y[1] (analytic) = 0 y[1] (numeric) = 2.3957430505147370913110639665829 absolute error = 2.3957430505147370913110639665829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.458 y[1] (analytic) = 0 y[1] (numeric) = 2.3963369210126174755490113816481 absolute error = 2.3963369210126174755490113816481 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1258.9MB, alloc=4.6MB, time=131.97 x[1] = 4.459 y[1] (analytic) = 0 y[1] (numeric) = 2.3969308491556994615168719865609 absolute error = 2.3969308491556994615168719865609 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.46 y[1] (analytic) = 0 y[1] (numeric) = 2.3975248349693964270523151525741 absolute error = 2.3975248349693964270523151525741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.461 y[1] (analytic) = 0 y[1] (numeric) = 2.3981188784791247773427135892013 absolute error = 2.3981188784791247773427135892013 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.462 y[1] (analytic) = 0 y[1] (numeric) = 2.3987129797103039478912151691463 absolute error = 2.3987129797103039478912151691463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.463 y[1] (analytic) = 0 y[1] (numeric) = 2.3993071386883564074825490215958 absolute error = 2.3993071386883564074825490215958 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.464 y[1] (analytic) = 0 y[1] (numeric) = 2.399901355438707661148566750662 absolute error = 2.399901355438707661148566750662 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.465 y[1] (analytic) = 0 y[1] (numeric) = 2.4004956299867862531335196352323 absolute error = 2.4004956299867862531335196352323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.466 y[1] (analytic) = 0 y[1] (numeric) = 2.4010899623580237698590726659505 absolute error = 2.4010899623580237698590726659505 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.467 y[1] (analytic) = 0 y[1] (numeric) = 2.4016843525778548428890562745262 absolute error = 2.4016843525778548428890562745262 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.468 y[1] (analytic) = 0 y[1] (numeric) = 2.4022788006717171518939566100389 absolute error = 2.4022788006717171518939566100389 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.469 y[1] (analytic) = 0 y[1] (numeric) = 2.4028733066650514276151452163747 absolute error = 2.4028733066650514276151452163747 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.47 y[1] (analytic) = 0 y[1] (numeric) = 2.4034678705833014548288489644067 absolute error = 2.4034678705833014548288489644067 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.471 y[1] (analytic) = 0 y[1] (numeric) = 2.4040624924519140753098610920021 absolute error = 2.4040624924519140753098610920021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.472 y[1] (analytic) = 0 y[1] (numeric) = 2.4046571722963391907949942044131 absolute error = 2.4046571722963391907949942044131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1262.7MB, alloc=4.6MB, time=132.36 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.473 y[1] (analytic) = 0 y[1] (numeric) = 2.4052519101420297659462760870829 absolute error = 2.4052519101420297659462760870829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.474 y[1] (analytic) = 0 y[1] (numeric) = 2.4058467060144418313138891823729 absolute error = 2.4058467060144418313138891823729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.475 y[1] (analytic) = 0 y[1] (numeric) = 2.4064415599390344862988545811927 absolute error = 2.4064415599390344862988545811927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.476 y[1] (analytic) = 0 y[1] (numeric) = 2.4070364719412699021154613799911 absolute error = 2.4070364719412699021154613799911 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.477 y[1] (analytic) = 0 y[1] (numeric) = 2.4076314420466133247534422530427 absolute error = 2.4076314420466133247534422530427 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.478 y[1] (analytic) = 0 y[1] (numeric) = 2.4082264702805330779398960894426 absolute error = 2.4082264702805330779398960894426 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.479 y[1] (analytic) = 0 y[1] (numeric) = 2.4088215566685005661009585437 absolute error = 2.4088215566685005661009585437 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.48 y[1] (analytic) = 0 y[1] (numeric) = 2.4094167012359902773232213482999 absolute error = 2.4094167012359902773232213482999 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.481 y[1] (analytic) = 0 y[1] (numeric) = 2.4100119040084797863149012360829 absolute error = 2.4100119040084797863149012360829 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.482 y[1] (analytic) = 0 y[1] (numeric) = 2.4106071650114497573667593197708 absolute error = 2.4106071650114497573667593197708 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.483 y[1] (analytic) = 0 y[1] (numeric) = 2.4112024842703839473127717754504 absolute error = 2.4112024842703839473127717754504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.484 y[1] (analytic) = 0 y[1] (numeric) = 2.411797861810769208490552676305 absolute error = 2.411797861810769208490552676305 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.485 y[1] (analytic) = 0 y[1] (numeric) = 2.4123932976580954917015298223696 absolute error = 2.4123932976580954917015298223696 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1266.5MB, alloc=4.6MB, time=132.75 x[1] = 4.486 y[1] (analytic) = 0 y[1] (numeric) = 2.4129887918378558491708744115651 absolute error = 2.4129887918378558491708744115651 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.487 y[1] (analytic) = 0 y[1] (numeric) = 2.4135843443755464375071853967527 absolute error = 2.4135843443755464375071853967527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.488 y[1] (analytic) = 0 y[1] (numeric) = 2.4141799552966665206619293730327 absolute error = 2.4141799552966665206619293730327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.489 y[1] (analytic) = 0 y[1] (numeric) = 2.4147756246267184728886368389971 absolute error = 2.4147756246267184728886368389971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.49 y[1] (analytic) = 0 y[1] (numeric) = 2.4153713523912077817018556751312 absolute error = 2.4153713523912077817018556751312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.491 y[1] (analytic) = 0 y[1] (numeric) = 2.4159671386156430508358626820441 absolute error = 2.4159671386156430508358626820441 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.492 y[1] (analytic) = 0 y[1] (numeric) = 2.4165629833255360032031340206976 absolute error = 2.4165629833255360032031340206976 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.493 y[1] (analytic) = 0 y[1] (numeric) = 2.417158886546401483852575396287 absolute error = 2.417158886546401483852575396287 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.494 y[1] (analytic) = 0 y[1] (numeric) = 2.4177548483037574629275128269183 absolute error = 2.4177548483037574629275128269183 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.495 y[1] (analytic) = 0 y[1] (numeric) = 2.4183508686231250386234448377132 absolute error = 2.4183508686231250386234448377132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.496 y[1] (analytic) = 0 y[1] (numeric) = 2.4189469475300284401455569204641 absolute error = 2.4189469475300284401455569204641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.497 y[1] (analytic) = 0 y[1] (numeric) = 2.4195430850499950306659990984499 absolute error = 2.4195430850499950306659990984499 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.498 y[1] (analytic) = 0 y[1] (numeric) = 2.4201392812085553102809274355153 absolute error = 2.4201392812085553102809274355153 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1270.3MB, alloc=4.6MB, time=133.14 x[1] = 4.499 y[1] (analytic) = 0 y[1] (numeric) = 2.4207355360312429189673103280071 absolute error = 2.4207355360312429189673103280071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.5 y[1] (analytic) = 0 y[1] (numeric) = 2.4213318495435946395395004176531 absolute error = 2.4213318495435946395395004176531 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.501 y[1] (analytic) = 0 y[1] (numeric) = 2.4219282217711504006055729629619 absolute error = 2.4219282217711504006055729629619 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.502 y[1] (analytic) = 0 y[1] (numeric) = 2.4225246527394532795234315062152 absolute error = 2.4225246527394532795234315062152 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.503 y[1] (analytic) = 0 y[1] (numeric) = 2.423121142474049505356681672618 absolute error = 2.423121142474049505356681672618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.504 y[1] (analytic) = 0 y[1] (numeric) = 2.4237176910004884618302739376668 absolute error = 2.4237176910004884618302739376668 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.505 y[1] (analytic) = 0 y[1] (numeric) = 2.4243142983443226902859161982914 absolute error = 2.4243142983443226902859161982914 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.506 y[1] (analytic) = 0 y[1] (numeric) = 2.424910964531107892637256982821 absolute error = 2.424910964531107892637256982821 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.507 y[1] (analytic) = 0 y[1] (numeric) = 2.4255076895864029343248401343229 absolute error = 2.4255076895864029343248401343229 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.508 y[1] (analytic) = 0 y[1] (numeric) = 2.426104473535769847270831801358 absolute error = 2.426104473535769847270831801358 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.509 y[1] (analytic) = 0 y[1] (numeric) = 2.4267013164047738328335205696967 absolute error = 2.4267013164047738328335205696967 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.51 y[1] (analytic) = 0 y[1] (numeric) = 2.4272982182189832647615915680356 absolute error = 2.4272982182189832647615915680356 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.511 y[1] (analytic) = 0 y[1] (numeric) = 2.4278951790039696921481753802553 absolute error = 2.4278951790039696921481753802553 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.512 y[1] (analytic) = 0 y[1] (numeric) = 2.42849219878530784238467259626 absolute error = 2.42849219878530784238467259626 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1274.1MB, alloc=4.6MB, time=133.53 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.513 y[1] (analytic) = 0 y[1] (numeric) = 2.4290892775885756241143548329378 absolute error = 2.4290892775885756241143548329378 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.514 y[1] (analytic) = 0 y[1] (numeric) = 2.4296864154393541301857430562846 absolute error = 2.4296864154393541301857430562846 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.515 y[1] (analytic) = 0 y[1] (numeric) = 2.4302836123632276406057640352334 absolute error = 2.4302836123632276406057640352334 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.516 y[1] (analytic) = 0 y[1] (numeric) = 2.4308808683857836254926857572351 absolute error = 2.4308808683857836254926857572351 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.517 y[1] (analytic) = 0 y[1] (numeric) = 2.4314781835326127480288326351378 absolute error = 2.4314781835326127480288326351378 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.518 y[1] (analytic) = 0 y[1] (numeric) = 2.4320755578293088674130813344177 absolute error = 2.4320755578293088674130813344177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.519 y[1] (analytic) = 0 y[1] (numeric) = 2.4326729913014690418131380493165 absolute error = 2.4326729913014690418131380493165 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.52 y[1] (analytic) = 0 y[1] (numeric) = 2.4332704839746935313175980559463 absolute error = 2.4332704839746935313175980559463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.521 y[1] (analytic) = 0 y[1] (numeric) = 2.4338680358745858008877883699279 absolute error = 2.4338680358745858008877883699279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.522 y[1] (analytic) = 0 y[1] (numeric) = 2.4344656470267525233093943356354 absolute error = 2.4344656470267525233093943356354 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.523 y[1] (analytic) = 0 y[1] (numeric) = 2.4350633174568035821438709736255 absolute error = 2.4350633174568035821438709736255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.524 y[1] (analytic) = 0 y[1] (numeric) = 2.4356610471903520746796399123374 absolute error = 2.4356610471903520746796399123374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.525 y[1] (analytic) = 0 y[1] (numeric) = 2.4362588362530143148830727296587 absolute error = 2.4362588362530143148830727296587 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1277.9MB, alloc=4.6MB, time=133.94 x[1] = 4.526 y[1] (analytic) = 0 y[1] (numeric) = 2.436856684670409836349261529459 absolute error = 2.436856684670409836349261529459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.527 y[1] (analytic) = 0 y[1] (numeric) = 2.4374545924681613952525775777041 absolute error = 2.4374545924681613952525775777041 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.528 y[1] (analytic) = 0 y[1] (numeric) = 2.4380525596718949732970188222724 absolute error = 2.4380525596718949732970188222724 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.529 y[1] (analytic) = 0 y[1] (numeric) = 2.4386505863072397806663471201058 absolute error = 2.4386505863072397806663471201058 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.53 y[1] (analytic) = 0 y[1] (numeric) = 2.4392486723998282589740159948391 absolute error = 2.4392486723998282589740159948391 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.531 y[1] (analytic) = 0 y[1] (numeric) = 2.4398468179752960842128897475628 absolute error = 2.4398468179752960842128897475628 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.532 y[1] (analytic) = 0 y[1] (numeric) = 2.4404450230592821697047547428874 absolute error = 2.4404450230592821697047547428874 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.533 y[1] (analytic) = 0 y[1] (numeric) = 2.4410432876774286690496236919892 absolute error = 2.4410432876774286690496236919892 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.534 y[1] (analytic) = 0 y[1] (numeric) = 2.4416416118553809790748337538327 absolute error = 2.4416416118553809790748337538327 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.535 y[1] (analytic) = 0 y[1] (numeric) = 2.4422399956187877427839392752772 absolute error = 2.4422399956187877427839392752772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.536 y[1] (analytic) = 0 y[1] (numeric) = 2.442838438993300852305399990292 absolute error = 2.442838438993300852305399990292 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.537 y[1] (analytic) = 0 y[1] (numeric) = 2.4434369420045754518410654980181 absolute error = 2.4434369420045754518410654980181 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.538 y[1] (analytic) = 0 y[1] (numeric) = 2.4440355046782699406144568389319 absolute error = 2.4440355046782699406144568389319 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1281.7MB, alloc=4.6MB, time=134.33 x[1] = 4.539 y[1] (analytic) = 0 y[1] (numeric) = 2.4446341270400459758188459878827 absolute error = 2.4446341270400459758188459878827 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.54 y[1] (analytic) = 0 y[1] (numeric) = 2.4452328091155684755651340822925 absolute error = 2.4452328091155684755651340822925 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.541 y[1] (analytic) = 0 y[1] (numeric) = 2.4458315509305056218295292033255 absolute error = 2.4458315509305056218295292033255 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.542 y[1] (analytic) = 0 y[1] (numeric) = 2.4464303525105288634010245273529 absolute error = 2.4464303525105288634010245273529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.543 y[1] (analytic) = 0 y[1] (numeric) = 2.4470292138813129188286776645575 absolute error = 2.4470292138813129188286776645575 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.544 y[1] (analytic) = 0 y[1] (numeric) = 2.4476281350685357793686920010429 absolute error = 2.4476281350685357793686920010429 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.545 y[1] (analytic) = 0 y[1] (numeric) = 2.4482271160978787119313008603323 absolute error = 2.4482271160978787119313008603323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.546 y[1] (analytic) = 0 y[1] (numeric) = 2.448826156995026262027455299663 absolute error = 2.448826156995026262027455299663 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.547 y[1] (analytic) = 0 y[1] (numeric) = 2.449425257785666256715316356004 absolute error = 2.449425257785666256715316356004 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.548 y[1] (analytic) = 0 y[1] (numeric) = 2.4500244184954898075465525562475 absolute error = 2.4500244184954898075465525562475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.549 y[1] (analytic) = 0 y[1] (numeric) = 2.4506236391501913135124435055462 absolute error = 2.4506236391501913135124435055462 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.55 y[1] (analytic) = 0 y[1] (numeric) = 2.4512229197754684639897903672938 absolute error = 2.4512229197754684639897903672938 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.551 y[1] (analytic) = 0 y[1] (numeric) = 2.4518222603970222416866340477683 absolute error = 2.4518222603970222416866340477683 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.552 y[1] (analytic) = 0 y[1] (numeric) = 2.452421661040556925587781897984 absolute error = 2.452421661040556925587781897984 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1285.6MB, alloc=4.6MB, time=134.72 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.553 y[1] (analytic) = 0 y[1] (numeric) = 2.4530211217317800939001437448227 absolute error = 2.4530211217317800939001437448227 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.554 y[1] (analytic) = 0 y[1] (numeric) = 2.4536206424964026269978780630405 absolute error = 2.4536206424964026269978780630405 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.555 y[1] (analytic) = 0 y[1] (numeric) = 2.4542202233601387103673490992732 absolute error = 2.4542202233601387103673490992732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.556 y[1] (analytic) = 0 y[1] (numeric) = 2.4548198643487058375518957586908 absolute error = 2.4548198643487058375518957586908 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.557 y[1] (analytic) = 0 y[1] (numeric) = 2.455419565487824813096413064479 absolute error = 2.455419565487824813096413064479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.558 y[1] (analytic) = 0 y[1] (numeric) = 2.4560193268032197554917469998543 absolute error = 2.4560193268032197554917469998543 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.559 y[1] (analytic) = 0 y[1] (numeric) = 2.4566191483206181001189035418478 absolute error = 2.4566191483206181001189035418478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.56 y[1] (analytic) = 0 y[1] (numeric) = 2.4572190300657506021930726956233 absolute error = 2.4572190300657506021930726956233 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.561 y[1] (analytic) = 0 y[1] (numeric) = 2.4578189720643513397074683376238 absolute error = 2.4578189720643513397074683376238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.562 y[1] (analytic) = 0 y[1] (numeric) = 2.458418974342157716376984675374 absolute error = 2.458418974342157716376984675374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.563 y[1] (analytic) = 0 y[1] (numeric) = 2.4590190369249104645816701312947 absolute error = 2.4590190369249104645816701312947 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.564 y[1] (analytic) = 0 y[1] (numeric) = 2.4596191598383536483100194574193 absolute error = 2.4596191598383536483100194574193 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.565 y[1] (analytic) = 0 y[1] (numeric) = 2.4602193431082346661020848874347 absolute error = 2.4602193431082346661020848874347 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1289.4MB, alloc=4.6MB, time=135.11 x[1] = 4.566 y[1] (analytic) = 0 y[1] (numeric) = 2.4608195867603042539924071320012 absolute error = 2.4608195867603042539924071320012 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.567 y[1] (analytic) = 0 y[1] (numeric) = 2.461419890820316488452767022841 absolute error = 2.461419890820316488452767022841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.568 y[1] (analytic) = 0 y[1] (numeric) = 2.4620202553140287893347586106184 absolute error = 2.4620202553140287893347586106184 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.569 y[1] (analytic) = 0 y[1] (numeric) = 2.4626206802672019228121845211707 absolute error = 2.4626206802672019228121845211707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.57 y[1] (analytic) = 0 y[1] (numeric) = 2.4632211657056000043232743741838 absolute error = 2.4632211657056000043232743741838 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.571 y[1] (analytic) = 0 y[1] (numeric) = 2.4638217116549905015127270679425 absolute error = 2.4638217116549905015127270679425 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.572 y[1] (analytic) = 0 y[1] (numeric) = 2.464422318141144237173577733323 absolute error = 2.464422318141144237173577733323 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.573 y[1] (analytic) = 0 y[1] (numeric) = 2.4650229851898353921888901597325 absolute error = 2.4650229851898353921888901597325 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.574 y[1] (analytic) = 0 y[1] (numeric) = 2.4656237128268415084732754952379 absolute error = 2.4656237128268415084732754952379 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.575 y[1] (analytic) = 0 y[1] (numeric) = 2.4662245010779434919142380226651 absolute error = 2.4662245010779434919142380226651 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.576 y[1] (analytic) = 0 y[1] (numeric) = 2.4668253499689256153133488129897 absolute error = 2.4668253499689256153133488129897 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.577 y[1] (analytic) = 0 y[1] (numeric) = 2.4674262595255755213272480568784 absolute error = 2.4674262595255755213272480568784 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.578 y[1] (analytic) = 0 y[1] (numeric) = 2.4680272297736842254084768747827 absolute error = 2.4680272297736842254084768747827 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1293.2MB, alloc=4.6MB, time=135.50 x[1] = 4.579 y[1] (analytic) = 0 y[1] (numeric) = 2.4686282607390461187461394055257 absolute error = 2.4686282607390461187461394055257 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.58 y[1] (analytic) = 0 y[1] (numeric) = 2.469229352447458971206395972866 absolute error = 2.469229352447458971206395972866 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.581 y[1] (analytic) = 0 y[1] (numeric) = 2.4698305049247239342727881290629 absolute error = 2.4698305049247239342727881290629 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.582 y[1] (analytic) = 0 y[1] (numeric) = 2.4704317181966455439863963740122 absolute error = 2.4704317181966455439863963740122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.583 y[1] (analytic) = 0 y[1] (numeric) = 2.4710329922890317238858313480633 absolute error = 2.4710329922890317238858313480633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.584 y[1] (analytic) = 0 y[1] (numeric) = 2.4716343272276937879470592961732 absolute error = 2.4716343272276937879470592961732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.585 y[1] (analytic) = 0 y[1] (numeric) = 2.4722357230384464435230626005971 absolute error = 2.4722357230384464435230626005971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.586 y[1] (analytic) = 0 y[1] (numeric) = 2.4728371797471077942833361788614 absolute error = 2.4728371797471077942833361788614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.587 y[1] (analytic) = 0 y[1] (numeric) = 2.4734386973794993431532205433089 absolute error = 2.4734386973794993431532205433089 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.588 y[1] (analytic) = 0 y[1] (numeric) = 2.4740402759614459952530723180535 absolute error = 2.4740402759614459952530723180535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.589 y[1] (analytic) = 0 y[1] (numeric) = 2.4746419155187760608372730087291 absolute error = 2.4746419155187760608372730087291 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.59 y[1] (analytic) = 0 y[1] (numeric) = 2.475243616077321258233076819963 absolute error = 2.475243616077321258233076819963 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.591 y[1] (analytic) = 0 y[1] (numeric) = 2.4758453776629167167792983150539 absolute error = 2.4758453776629167167792983150539 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.592 y[1] (analytic) = 0 y[1] (numeric) = 2.4764472003014009797648407118823 absolute error = 2.4764472003014009797648407118823 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1297.0MB, alloc=4.6MB, time=135.88 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.593 y[1] (analytic) = 0 y[1] (numeric) = 2.477049084018616007367065608631 absolute error = 2.477049084018616007367065608631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.594 y[1] (analytic) = 0 y[1] (numeric) = 2.4776510288404071795900049324424 absolute error = 2.4776510288404071795900049324424 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.595 y[1] (analytic) = 0 y[1] (numeric) = 2.4782530347926232992024159036905 absolute error = 2.4782530347926232992024159036905 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.596 y[1] (analytic) = 0 y[1] (numeric) = 2.4788551019011165946756798080955 absolute error = 2.4788551019011165946756798080955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.597 y[1] (analytic) = 0 y[1] (numeric) = 2.4794572301917427231215453684618 absolute error = 2.4794572301917427231215453684618 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.598 y[1] (analytic) = 0 y[1] (numeric) = 2.4800594196903607732297175073712 absolute error = 2.4800594196903607732297175073712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.599 y[1] (analytic) = 0 y[1] (numeric) = 2.480661670422833268205292291716 absolute error = 2.480661670422833268205292291716 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.6 y[1] (analytic) = 0 y[1] (numeric) = 2.4812639824150261687060388495103 absolute error = 2.4812639824150261687060388495103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.601 y[1] (analytic) = 0 y[1] (numeric) = 2.4818663556928088757795290489721 absolute error = 2.4818663556928088757795290489721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.602 y[1] (analytic) = 0 y[1] (numeric) = 2.4824687902820542338001157294221 absolute error = 2.4824687902820542338001157294221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.603 y[1] (analytic) = 0 y[1] (numeric) = 2.4830712862086385334057602731007 absolute error = 2.4830712862086385334057602731007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.604 y[1] (analytic) = 0 y[1] (numeric) = 2.4836738434984415144347103065608 absolute error = 2.4836738434984415144347103065608 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.605 y[1] (analytic) = 0 y[1] (numeric) = 2.4842764621773463688620283198498 absolute error = 2.4842764621773463688620283198498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1300.8MB, alloc=4.6MB, time=136.27 x[1] = 4.606 y[1] (analytic) = 0 y[1] (numeric) = 2.4848791422712397437359719912502 absolute error = 2.4848791422712397437359719912502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.607 y[1] (analytic) = 0 y[1] (numeric) = 2.4854818838060117441142270049071 absolute error = 2.4854818838060117441142270049071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.608 y[1] (analytic) = 0 y[1] (numeric) = 2.4860846868075559359999931482273 absolute error = 2.4860846868075559359999931482273 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.609 y[1] (analytic) = 0 y[1] (numeric) = 2.4866875513017693492779244754945 absolute error = 2.4866875513017693492779244754945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.61 y[1] (analytic) = 0 y[1] (numeric) = 2.4872904773145524806499243237027 absolute error = 2.4872904773145524806499243237027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.611 y[1] (analytic) = 0 y[1] (numeric) = 2.4878934648718092965707959661711 absolute error = 2.4878934648718092965707959661711 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.612 y[1] (analytic) = 0 y[1] (numeric) = 2.4884965139994472361837496890627 absolute error = 2.4884965139994472361837496890627 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.613 y[1] (analytic) = 0 y[1] (numeric) = 2.4890996247233772142557670754906 absolute error = 2.4890996247233772142557670754906 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.614 y[1] (analytic) = 0 y[1] (numeric) = 2.4897027970695136241128232814563 absolute error = 2.4897027970695136241128232814563 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.615 y[1] (analytic) = 0 y[1] (numeric) = 2.4903060310637743405749680874275 absolute error = 2.4903060310637743405749680874275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.616 y[1] (analytic) = 0 y[1] (numeric) = 2.4909093267320807228912665089239 absolute error = 2.4909093267320807228912665089239 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.617 y[1] (analytic) = 0 y[1] (numeric) = 2.4915126841003576176745997490437 absolute error = 2.4915126841003576176745997490437 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.618 y[1] (analytic) = 0 y[1] (numeric) = 2.4921161031945333618363272754274 absolute error = 2.4921161031945333618363272754274 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1304.6MB, alloc=4.6MB, time=136.66 x[1] = 4.619 y[1] (analytic) = 0 y[1] (numeric) = 2.4927195840405397855208108037174 absolute error = 2.4927195840405397855208108037174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.62 y[1] (analytic) = 0 y[1] (numeric) = 2.4933231266643122150398009691401 absolute error = 2.4933231266643122150398009691401 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.621 y[1] (analytic) = 0 y[1] (numeric) = 2.4939267310917894758066874673999 absolute error = 2.4939267310917894758066874673999 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.622 y[1] (analytic) = 0 y[1] (numeric) = 2.4945303973489138952706134456409 absolute error = 2.4945303973489138952706134456409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.623 y[1] (analytic) = 0 y[1] (numeric) = 2.4951341254616313058504549237995 absolute error = 2.4951341254616313058504549237995 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.624 y[1] (analytic) = 0 y[1] (numeric) = 2.4957379154558910478686660262375 absolute error = 2.4957379154558910478686660262375 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.625 y[1] (analytic) = 0 y[1] (numeric) = 2.4963417673576459724849908031121 absolute error = 2.4963417673576459724849908031121 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.626 y[1] (analytic) = 0 y[1] (numeric) = 2.4969456811928524446300424205096 absolute error = 2.4969456811928524446300424205096 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.627 y[1] (analytic) = 0 y[1] (numeric) = 2.4975496569874703459387504979353 absolute error = 2.4975496569874703459387504979353 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.628 y[1] (analytic) = 0 y[1] (numeric) = 2.4981536947674630776836773713238 absolute error = 2.4981536947674630776836773713238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.629 y[1] (analytic) = 0 y[1] (numeric) = 2.498757794558797563708204059303 absolute error = 2.498757794558797563708204059303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.63 y[1] (analytic) = 0 y[1] (numeric) = 2.4993619563874442533595867100148 absolute error = 2.4993619563874442533595867100148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.631 y[1] (analytic) = 0 y[1] (numeric) = 2.4999661802793771244218843053675 absolute error = 2.4999661802793771244218843053675 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.632 memory used=1308.4MB, alloc=4.6MB, time=137.05 y[1] (analytic) = 0 y[1] (numeric) = 2.5005704662605736860487583991657 absolute error = 2.5005704662605736860487583991657 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.633 y[1] (analytic) = 0 y[1] (numeric) = 2.501174814357014981696145665136 absolute error = 2.501174814357014981696145665136 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.634 y[1] (analytic) = 0 y[1] (numeric) = 2.501779224594685592054804030439 absolute error = 2.501779224594685592054804030439 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.635 y[1] (analytic) = 0 y[1] (numeric) = 2.5023836969995736379827331698321 absolute error = 2.5023836969995736379827331698321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.636 y[1] (analytic) = 0 y[1] (numeric) = 2.5029882315976707834374701352203 absolute error = 2.5029882315976707834374701352203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.637 y[1] (analytic) = 0 y[1] (numeric) = 2.5035928284149722384082608949069 absolute error = 2.5035928284149722384082608949069 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.638 y[1] (analytic) = 0 y[1] (numeric) = 2.5041974874774767618481085564318 absolute error = 2.5041974874774767618481085564318 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.639 y[1] (analytic) = 0 y[1] (numeric) = 2.5048022088111866646056990464591 absolute error = 2.5048022088111866646056990464591 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.64 y[1] (analytic) = 0 y[1] (numeric) = 2.5054069924421078123572050207519 absolute error = 2.5054069924421078123572050207519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.641 y[1] (analytic) = 0 y[1] (numeric) = 2.5060118383962496285379687768502 absolute error = 2.5060118383962496285379687768502 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.642 y[1] (analytic) = 0 y[1] (numeric) = 2.5066167466996250972740649416431 absolute error = 2.5066167466996250972740649416431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.643 y[1] (analytic) = 0 y[1] (numeric) = 2.5072217173782507663137437056047 absolute error = 2.5072217173782507663137437056047 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.644 y[1] (analytic) = 0 y[1] (numeric) = 2.5078267504581467499587553750419 absolute error = 2.5078267504581467499587553750419 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.645 y[1] (analytic) = 0 y[1] (numeric) = 2.5084318459653367319955570132803 absolute error = 2.5084318459653367319955570132803 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1312.3MB, alloc=4.6MB, time=137.44 x[1] = 4.646 y[1] (analytic) = 0 y[1] (numeric) = 2.5090370039258479686264019412939 absolute error = 2.5090370039258479686264019412939 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.647 y[1] (analytic) = 0 y[1] (numeric) = 2.5096422243657112914003128678648 absolute error = 2.5096422243657112914003128678648 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.648 y[1] (analytic) = 0 y[1] (numeric) = 2.5102475073109611101439394189376 absolute error = 2.5102475073109611101439394189376 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.649 y[1] (analytic) = 0 y[1] (numeric) = 2.5108528527876354158923008354172 absolute error = 2.5108528527876354158923008354172 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.65 y[1] (analytic) = 0 y[1] (numeric) = 2.511458260821775783819414608237 absolute error = 2.511458260821775783819414608237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.651 y[1] (analytic) = 0 y[1] (numeric) = 2.5120637314394273761688118191084 absolute error = 2.5120637314394273761688118191084 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.652 y[1] (analytic) = 0 y[1] (numeric) = 2.5126692646666389451839399549453 absolute error = 2.5126692646666389451839399549453 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.653 y[1] (analytic) = 0 y[1] (numeric) = 2.5132748605294628360384539635387 absolute error = 2.5132748605294628360384539635387 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.654 y[1] (analytic) = 0 y[1] (numeric) = 2.5138805190539549897663963176423 absolute error = 2.5138805190539549897663963176423 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.655 y[1] (analytic) = 0 y[1] (numeric) = 2.5144862402661749461922668542125 absolute error = 2.5144862402661749461922668542125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.656 y[1] (analytic) = 0 y[1] (numeric) = 2.5150920241921858468609831551321 absolute error = 2.5150920241921858468609831551321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.657 y[1] (analytic) = 0 y[1] (numeric) = 2.515697870858054437967732235332 absolute error = 2.515697870858054437967732235332 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.658 y[1] (analytic) = 0 y[1] (numeric) = 2.5163037802898510732877143038103 absolute error = 2.5163037802898510732877143038103 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1316.1MB, alloc=4.6MB, time=137.83 x[1] = 4.659 y[1] (analytic) = 0 y[1] (numeric) = 2.5169097525136497171057793626361 absolute error = 2.5169097525136497171057793626361 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.66 y[1] (analytic) = 0 y[1] (numeric) = 2.5175157875555279471459574086108 absolute error = 2.5175157875555279471459574086108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.661 y[1] (analytic) = 0 y[1] (numeric) = 2.5181218854415669575008830018485 absolute error = 2.5181218854415669575008830018485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.662 y[1] (analytic) = 0 y[1] (numeric) = 2.5187280461978515615611149651237 absolute error = 2.5187280461978515615611149651237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.663 y[1] (analytic) = 0 y[1] (numeric) = 2.5193342698504701949443519774242 absolute error = 2.5193342698504701949443519774242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.664 y[1] (analytic) = 0 y[1] (numeric) = 2.5199405564255149184245448247359 absolute error = 2.5199405564255149184245448247359 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.665 y[1] (analytic) = 0 y[1] (numeric) = 2.520546905949081420860906070676 absolute error = 2.520546905949081420860906070676 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.666 y[1] (analytic) = 0 y[1] (numeric) = 2.5211533184472690221268179091802 absolute error = 2.5211533184472690221268179091802 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.667 y[1] (analytic) = 0 y[1] (numeric) = 2.5217597939461806760386389610426 absolute error = 2.5217597939461806760386389610426 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.668 y[1] (analytic) = 0 y[1] (numeric) = 2.522366332471922973284410775695 absolute error = 2.522366332471922973284410775695 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.669 y[1] (analytic) = 0 y[1] (numeric) = 2.5229729340506061443524647992078 absolute error = 2.5229729340506061443524647992078 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.67 y[1] (analytic) = 0 y[1] (numeric) = 2.5235795987083440624599305690839 absolute error = 2.5235795987083440624599305690839 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.671 y[1] (analytic) = 0 y[1] (numeric) = 2.5241863264712542464811458960112 absolute error = 2.5241863264712542464811458960112 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1319.9MB, alloc=4.6MB, time=138.22 x[1] = 4.672 y[1] (analytic) = 0 y[1] (numeric) = 2.5247931173654578638759697923335 absolute error = 2.5247931173654578638759697923335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.673 y[1] (analytic) = 0 y[1] (numeric) = 2.525399971417079733617998906592 absolute error = 2.525399971417079733617998906592 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.674 y[1] (analytic) = 0 y[1] (numeric) = 2.526006888652248329122688223085 absolute error = 2.526006888652248329122688223085 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.675 y[1] (analytic) = 0 y[1] (numeric) = 2.5266138690970957811753767849882 absolute error = 2.5266138690970957811753767849882 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.676 y[1] (analytic) = 0 y[1] (numeric) = 2.527220912777757880859219199174 absolute error = 2.527220912777757880859219199174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.677 y[1] (analytic) = 0 y[1] (numeric) = 2.5278280197203740824830236804633 absolute error = 2.5278280197203740824830236804633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.678 y[1] (analytic) = 0 y[1] (numeric) = 2.5284351899510875065089973926409 absolute error = 2.5284351899510875065089973926409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.679 y[1] (analytic) = 0 y[1] (numeric) = 2.5290424234960449424803998431621 absolute error = 2.5290424234960449424803998431621 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.68 y[1] (analytic) = 0 y[1] (numeric) = 2.5296497203813968519491050880766 absolute error = 2.5296497203813968519491050880766 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.681 y[1] (analytic) = 0 y[1] (numeric) = 2.530257080633297371403073503293 absolute error = 2.530257080633297371403073503293 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.682 y[1] (analytic) = 0 y[1] (numeric) = 2.5308645042779043151937338779064 absolute error = 2.5308645042779043151937338779064 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.683 y[1] (analytic) = 0 y[1] (numeric) = 2.5314719913413791784632765849113 absolute error = 2.5314719913413791784632765849113 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.684 y[1] (analytic) = 0 y[1] (numeric) = 2.532079541849887140071858584221 absolute error = 2.532079541849887140071858584221 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.685 y[1] (analytic) = 0 y[1] (numeric) = 2.5326871558295970655247210125159 absolute error = 2.5326871558295970655247210125159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1323.7MB, alloc=4.6MB, time=138.60 x[1] = 4.686 y[1] (analytic) = 0 y[1] (numeric) = 2.5332948333066815098992201140432 absolute error = 2.5332948333066815098992201140432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.687 y[1] (analytic) = 0 y[1] (numeric) = 2.5339025743073167207717722660923 absolute error = 2.5339025743073167207717722660923 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.688 y[1] (analytic) = 0 y[1] (numeric) = 2.5345103788576826411447138524721 absolute error = 2.5345103788576826411447138524721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.689 y[1] (analytic) = 0 y[1] (numeric) = 2.5351182469839629123730767379186 absolute error = 2.5351182469839629123730767379186 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.69 y[1] (analytic) = 0 y[1] (numeric) = 2.5357261787123448770912800959646 absolute error = 2.5357261787123448770912800959646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.691 y[1] (analytic) = 0 y[1] (numeric) = 2.5363341740690195821397393424066 absolute error = 2.5363341740690195821397393424066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.692 y[1] (analytic) = 0 y[1] (numeric) = 2.5369422330801817814913929261074 absolute error = 2.5369422330801817814913929261074 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.693 y[1] (analytic) = 0 y[1] (numeric) = 2.537550355772029939178147728479 absolute error = 2.537550355772029939178147728479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.694 y[1] (analytic) = 0 y[1] (numeric) = 2.5381585421707662322172438225932 absolute error = 2.5381585421707662322172438225932 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.695 y[1] (analytic) = 0 y[1] (numeric) = 2.5387667923025965535375393424757 absolute error = 2.5387667923025965535375393424757 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.696 y[1] (analytic) = 0 y[1] (numeric) = 2.5393751061937305149057162127426 absolute error = 2.5393751061937305149057162127426 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.697 y[1] (analytic) = 0 y[1] (numeric) = 2.5399834838703814498524074883475 absolute error = 2.5399834838703814498524074883475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.698 y[1] (analytic) = 0 y[1] (numeric) = 2.5405919253587664165982470538125 absolute error = 2.5405919253587664165982470538125 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1327.5MB, alloc=4.6MB, time=138.99 x[1] = 4.699 y[1] (analytic) = 0 y[1] (numeric) = 2.5412004306851062009798424309257 absolute error = 2.5412004306851062009798424309257 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.7 y[1] (analytic) = 0 y[1] (numeric) = 2.5418089998756253193756714434949 absolute error = 2.5418089998756253193756714434949 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.701 y[1] (analytic) = 0 y[1] (numeric) = 2.5424176329565520216319034873559 absolute error = 2.5424176329565520216319034873559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.702 y[1] (analytic) = 0 y[1] (numeric) = 2.5430263299541182939881461534445 absolute error = 2.5430263299541182939881461534445 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.703 y[1] (analytic) = 0 y[1] (numeric) = 2.5436350908945598620031179513485 absolute error = 2.5436350908945598620031179513485 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.704 y[1] (analytic) = 0 y[1] (numeric) = 2.5442439158041161934802478803693 absolute error = 2.5442439158041161934802478803693 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.705 y[1] (analytic) = 0 y[1] (numeric) = 2.5448528047090305013932025947306 absolute error = 2.5448528047090305013932025947306 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.706 y[1] (analytic) = 0 y[1] (numeric) = 2.5454617576355497468113419091851 absolute error = 2.5454617576355497468113419091851 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.707 y[1] (analytic) = 0 y[1] (numeric) = 2.5460707746099246418251033908812 absolute error = 2.5460707746099246418251033908812 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.708 y[1] (analytic) = 0 y[1] (numeric) = 2.5466798556584096524713167829633 absolute error = 2.5466798556584096524713167829633 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.709 y[1] (analytic) = 0 y[1] (numeric) = 2.5472890008072630016584490049936 absolute error = 2.5472890008072630016584490049936 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.71 y[1] (analytic) = 0 y[1] (numeric) = 2.5478982100827466720917804748959 absolute error = 2.5478982100827466720917804748959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.711 y[1] (analytic) = 0 y[1] (numeric) = 2.548507483511126409198513496735 absolute error = 2.548507483511126409198513496735 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1331.3MB, alloc=4.6MB, time=139.38 x[1] = 4.712 y[1] (analytic) = 0 y[1] (numeric) = 2.5491168211186717240528134582614 absolute error = 2.5491168211186717240528134582614 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.713 y[1] (analytic) = 0 y[1] (numeric) = 2.5497262229316558963007835817648 absolute error = 2.5497262229316558963007835817648 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.714 y[1] (analytic) = 0 y[1] (numeric) = 2.5503356889763559770853739713951 absolute error = 2.5503356889763559770853739713951 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.715 y[1] (analytic) = 0 y[1] (numeric) = 2.5509452192790527919712256997265 absolute error = 2.5509452192790527919712256997265 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.716 y[1] (analytic) = 0 y[1] (numeric) = 2.5515548138660309438694506759559 absolute error = 2.5515548138660309438694506759559 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.717 y[1] (analytic) = 0 y[1] (numeric) = 2.5521644727635788159623480377443 absolute error = 2.5521644727635788159623480377443 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.718 y[1] (analytic) = 0 y[1] (numeric) = 2.5527741959979885746280578083268 absolute error = 2.5527741959979885746280578083268 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.719 y[1] (analytic) = 0 y[1] (numeric) = 2.5533839835955561723651525601355 absolute error = 2.5533839835955561723651525601355 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.72 y[1] (analytic) = 0 y[1] (numeric) = 2.5539938355825813507171678257973 absolute error = 2.5539938355825813507171678257973 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.721 y[1] (analytic) = 0 y[1] (numeric) = 2.5546037519853676431970719969884 absolute error = 2.5546037519853676431970719969884 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.722 y[1] (analytic) = 0 y[1] (numeric) = 2.5552137328302223782116764512461 absolute error = 2.5552137328302223782116764512461 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.723 y[1] (analytic) = 0 y[1] (numeric) = 2.555823778143456681985986646459 absolute error = 2.555823778143456681985986646459 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.724 y[1] (analytic) = 0 y[1] (numeric) = 2.5564338879513854814874949223765 absolute error = 2.5564338879513854814874949223765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.725 y[1] (analytic) = 0 y[1] (numeric) = 2.5570440622803275073504157481009 absolute error = 2.5570440622803275073504157481009 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1335.2MB, alloc=4.6MB, time=139.78 x[1] = 4.726 y[1] (analytic) = 0 y[1] (numeric) = 2.5576543011566052967998641541455 absolute error = 2.5576543011566052967998641541455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.727 y[1] (analytic) = 0 y[1] (numeric) = 2.5582646046065451965759780872646 absolute error = 2.5582646046065451965759780872646 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.728 y[1] (analytic) = 0 y[1] (numeric) = 2.5588749726564773658579854258841 absolute error = 2.5588749726564773658579854258841 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.729 y[1] (analytic) = 0 y[1] (numeric) = 2.5594854053327357791882163935847 absolute error = 2.5594854053327357791882163935847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.73 y[1] (analytic) = 0 y[1] (numeric) = 2.5600959026616582293960621077119 absolute error = 2.5600959026616582293960621077119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.731 y[1] (analytic) = 0 y[1] (numeric) = 2.5607064646695863305218799998131 absolute error = 2.5607064646695863305218799998131 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.732 y[1] (analytic) = 0 y[1] (numeric) = 2.5613170913828655207408468442244 absolute error = 2.5613170913828655207408468442244 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.733 y[1] (analytic) = 0 y[1] (numeric) = 2.5619277828278450652867601307566 absolute error = 2.5619277828278450652867601307566 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.734 y[1] (analytic) = 0 y[1] (numeric) = 2.5625385390308780593757885170545 absolute error = 2.5625385390308780593757885170545 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.735 y[1] (analytic) = 0 y[1] (numeric) = 2.5631493600183214311301720958303 absolute error = 2.5631493600183214311301720958303 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.736 y[1] (analytic) = 0 y[1] (numeric) = 2.5637602458165359445018732117971 absolute error = 2.5637602458165359445018732117971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.737 y[1] (analytic) = 0 y[1] (numeric) = 2.5643711964518862021961785627575 absolute error = 2.5643711964518862021961785627575 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.738 y[1] (analytic) = 0 y[1] (numeric) = 2.5649822119507406485952533189282 absolute error = 2.5649822119507406485952533189282 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1339.0MB, alloc=4.6MB, time=140.17 x[1] = 4.739 y[1] (analytic) = 0 y[1] (numeric) = 2.5655932923394715726816479942108 absolute error = 2.5655932923394715726816479942108 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.74 y[1] (analytic) = 0 y[1] (numeric) = 2.5662044376444551109617588027463 absolute error = 2.5662044376444551109617588027463 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.741 y[1] (analytic) = 0 y[1] (numeric) = 2.5668156478920712503892422337211 absolute error = 2.5668156478920712503892422337211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.742 y[1] (analytic) = 0 y[1] (numeric) = 2.567426923108703831288384577021 absolute error = 2.567426923108703831288384577021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.743 y[1] (analytic) = 0 y[1] (numeric) = 2.5680382633207405502774271319601 absolute error = 2.5680382633207405502774271319601 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.744 y[1] (analytic) = 0 y[1] (numeric) = 2.5686496685545729631918478309417 absolute error = 2.5686496685545729631918478309417 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.745 y[1] (analytic) = 0 y[1] (numeric) = 2.5692611388365964880076000095403 absolute error = 2.5692611388365964880076000095403 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.746 y[1] (analytic) = 0 y[1] (numeric) = 2.5698726741932104077643090541238 absolute error = 2.5698726741932104077643090541238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.747 y[1] (analytic) = 0 y[1] (numeric) = 2.5704842746508178734884276577682 absolute error = 2.5704842746508178734884276577682 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.748 y[1] (analytic) = 0 y[1] (numeric) = 2.5710959402358259071163504148498 absolute error = 2.5710959402358259071163504148498 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.749 y[1] (analytic) = 0 y[1] (numeric) = 2.5717076709746454044174884843314 absolute error = 2.5717076709746454044174884843314 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.75 y[1] (analytic) = 0 y[1] (numeric) = 2.5723194668936911379173050513942 absolute error = 2.5723194668936911379173050513942 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.751 y[1] (analytic) = 0 y[1] (numeric) = 2.5729313280193817598203123167006 absolute error = 2.5729313280193817598203123167006 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1342.8MB, alloc=4.6MB, time=140.56 x[1] = 4.752 y[1] (analytic) = 0 y[1] (numeric) = 2.5735432543781398049330307422066 absolute error = 2.5735432543781398049330307422066 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.753 y[1] (analytic) = 0 y[1] (numeric) = 2.5741552459963916935869112820789 absolute error = 2.5741552459963916935869112820789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.754 y[1] (analytic) = 0 y[1] (numeric) = 2.5747673029005677345612213269068 absolute error = 2.5747673029005677345612213269068 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.755 y[1] (analytic) = 0 y[1] (numeric) = 2.5753794251171021280058950890343 absolute error = 2.5753794251171021280058950890343 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.756 y[1] (analytic) = 0 y[1] (numeric) = 2.575991612672432968364349156475 absolute error = 2.575991612672432968364349156475 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.757 y[1] (analytic) = 0 y[1] (numeric) = 2.5766038655930022472962639425098 absolute error = 2.5766038655930022472962639425098 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.758 y[1] (analytic) = 0 y[1] (numeric) = 2.5772161839052558566003317577026 absolute error = 2.5772161839052558566003317577026 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.759 y[1] (analytic) = 0 y[1] (numeric) = 2.5778285676356435911369722307109 absolute error = 2.5778285676356435911369722307109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.76 y[1] (analytic) = 0 y[1] (numeric) = 2.5784410168106191517510158039021 absolute error = 2.5784410168106191517510158039021 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.761 y[1] (analytic) = 0 y[1] (numeric) = 2.5790535314566401481943560294294 absolute error = 2.5790535314566401481943560294294 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.762 y[1] (analytic) = 0 y[1] (numeric) = 2.5796661116001681020485713910578 absolute error = 2.5796661116001681020485713910578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.763 y[1] (analytic) = 0 y[1] (numeric) = 2.5802787572676684496475173766714 absolute error = 2.5802787572676684496475173766714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.764 y[1] (analytic) = 0 y[1] (numeric) = 2.580891468485610544999889526034 absolute error = 2.580891468485610544999889526034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.765 y[1] (analytic) = 0 y[1] (numeric) = 2.5815042452804676627117581780155 absolute error = 2.5815042452804676627117581780155 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1346.6MB, alloc=4.6MB, time=140.95 x[1] = 4.766 y[1] (analytic) = 0 y[1] (numeric) = 2.5821170876787170009090756411374 absolute error = 2.5821170876787170009090756411374 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.767 y[1] (analytic) = 0 y[1] (numeric) = 2.5827299957068396841601565109339 absolute error = 2.5827299957068396841601565109339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.768 y[1] (analytic) = 0 y[1] (numeric) = 2.5833429693913207663981318572654 absolute error = 2.5833429693913207663981318572654 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.769 y[1] (analytic) = 0 y[1] (numeric) = 2.5839560087586492338433780043664 absolute error = 2.5839560087586492338433780043664 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.77 y[1] (analytic) = 0 y[1] (numeric) = 2.5845691138353180079259206260504 absolute error = 2.5845691138353180079259206260504 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.771 y[1] (analytic) = 0 y[1] (numeric) = 2.5851822846478239482078148781409 absolute error = 2.5851822846478239482078148781409 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.772 y[1] (analytic) = 0 y[1] (numeric) = 2.5857955212226678553055022898392 absolute error = 2.5857955212226678553055022898392 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.773 y[1] (analytic) = 0 y[1] (numeric) = 2.5864088235863544738121451353864 absolute error = 2.5864088235863544738121451353864 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.774 y[1] (analytic) = 0 y[1] (numeric) = 2.5870221917653924952199390070216 absolute error = 2.5870221917653924952199390070216 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.775 y[1] (analytic) = 0 y[1] (numeric) = 2.5876356257862945608424043098828 absolute error = 2.5876356257862945608424043098828 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.776 y[1] (analytic) = 0 y[1] (numeric) = 2.5882491256755772647366573991455 absolute error = 2.5882491256755772647366573991455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.777 y[1] (analytic) = 0 y[1] (numeric) = 2.5888626914597611566256620793384 absolute error = 2.5888626914597611566256620793384 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.778 y[1] (analytic) = 0 y[1] (numeric) = 2.5894763231653707448204621854236 absolute error = 2.5894763231653707448204621854236 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1350.4MB, alloc=4.6MB, time=141.33 x[1] = 4.779 y[1] (analytic) = 0 y[1] (numeric) = 2.5900900208189344991423959648772 absolute error = 2.5900900208189344991423959648772 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.78 y[1] (analytic) = 0 y[1] (numeric) = 2.5907037844469848538452929796519 absolute error = 2.5907037844469848538452929796519 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.781 y[1] (analytic) = 0 y[1] (numeric) = 2.5913176140760582105376542465548 absolute error = 2.5913176140760582105376542465548 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.782 y[1] (analytic) = 0 y[1] (numeric) = 2.5919315097326949411048163342198 absolute error = 2.5919315097326949411048163342198 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.783 y[1] (analytic) = 0 y[1] (numeric) = 2.5925454714434393906311001345053 absolute error = 2.5925454714434393906311001345053 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.784 y[1] (analytic) = 0 y[1] (numeric) = 2.5931594992348398803219450257971 absolute error = 2.5931594992348398803219450257971 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.785 y[1] (analytic) = 0 y[1] (numeric) = 2.5937735931334487104260291453472 absolute error = 2.5937735931334487104260291453472 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.786 y[1] (analytic) = 0 y[1] (numeric) = 2.5943877531658221631573764874299 absolute error = 2.5943877531658221631573764874299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.787 y[1] (analytic) = 0 y[1] (numeric) = 2.5950019793585205056174515437478 absolute error = 2.5950019793585205056174515437478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.788 y[1] (analytic) = 0 y[1] (numeric) = 2.5956162717381079927172422021729 absolute error = 2.5956162717381079927172422021729 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.789 y[1] (analytic) = 0 y[1] (numeric) = 2.5962306303311528700993316195596 absolute error = 2.5962306303311528700993316195596 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.79 y[1] (analytic) = 0 y[1] (numeric) = 2.5968450551642273770599597840194 absolute error = 2.5968450551642273770599597840194 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.791 y[1] (analytic) = 0 y[1] (numeric) = 2.5974595462639077494710754817004 absolute error = 2.5974595462639077494710754817004 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1354.2MB, alloc=4.6MB, time=141.72 x[1] = 4.792 y[1] (analytic) = 0 y[1] (numeric) = 2.5980741036567742227023793827694 absolute error = 2.5980741036567742227023793827694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.793 y[1] (analytic) = 0 y[1] (numeric) = 2.5986887273694110345433589609464 absolute error = 2.5986887273694110345433589609464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.794 y[1] (analytic) = 0 y[1] (numeric) = 2.5993034174284064281253159605982 absolute error = 2.5993034174284064281253159605982 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.795 y[1] (analytic) = 0 y[1] (numeric) = 2.5999181738603526548433871250524 absolute error = 2.5999181738603526548433871250524 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.796 y[1] (analytic) = 0 y[1] (numeric) = 2.6005329966918459772785588994479 absolute error = 2.6005329966918459772785588994479 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.797 y[1] (analytic) = 0 y[1] (numeric) = 2.6011478859494866721196768210945 absolute error = 2.6011478859494866721196768210945 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.798 y[1] (analytic) = 0 y[1] (numeric) = 2.6017628416598790330854503099721 absolute error = 2.6017628416598790330854503099721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.799 y[1] (analytic) = 0 y[1] (numeric) = 2.6023778638496313738464535716547 absolute error = 2.6023778638496313738464535716547 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.8 y[1] (analytic) = 0 y[1] (numeric) = 2.602992952545356030947123324604 absolute error = 2.602992952545356030947123324604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.801 y[1] (analytic) = 0 y[1] (numeric) = 2.6036081077736693667277540634339 absolute error = 2.6036081077736693667277540634339 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.802 y[1] (analytic) = 0 y[1] (numeric) = 2.6042233295611917722464915694067 absolute error = 2.6042233295611917722464915694067 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.803 y[1] (analytic) = 0 y[1] (numeric) = 2.6048386179345476702013253790806 absolute error = 2.6048386179345476702013253790806 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.804 y[1] (analytic) = 0 y[1] (numeric) = 2.6054539729203655178520809216861 absolute error = 2.6054539729203655178520809216861 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.805 y[1] (analytic) = 0 y[1] (numeric) = 2.6060693945452778099424120354712 absolute error = 2.6060693945452778099424120354712 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1358.0MB, alloc=4.6MB, time=142.12 x[1] = 4.806 y[1] (analytic) = 0 y[1] (numeric) = 2.6066848828359210816217945729132 absolute error = 2.6066848828359210816217945729132 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.807 y[1] (analytic) = 0 y[1] (numeric) = 2.6073004378189359113675218043573 absolute error = 2.6073004378189359113675218043573 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.808 y[1] (analytic) = 0 y[1] (numeric) = 2.6079160595209669239067023293028 absolute error = 2.6079160595209669239067023293028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.809 y[1] (analytic) = 0 y[1] (numeric) = 2.608531747968662793138261204219 absolute error = 2.608531747968662793138261204219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.81 y[1] (analytic) = 0 y[1] (numeric) = 2.6091475031886762450549449954368 absolute error = 2.6091475031886762450549449954368 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.811 y[1] (analytic) = 0 y[1] (numeric) = 2.6097633252076640606653314653217 absolute error = 2.6097633252076640606653314653217 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.812 y[1] (analytic) = 0 y[1] (numeric) = 2.6103792140522870789158445996 absolute error = 2.6103792140522870789158445996 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.813 y[1] (analytic) = 0 y[1] (numeric) = 2.6109951697492101996127756833721 absolute error = 2.6109951697492101996127756833721 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.814 y[1] (analytic) = 0 y[1] (numeric) = 2.61161119232510238634431113301 absolute error = 2.61161119232510238634431113301 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.815 y[1] (analytic) = 0 y[1] (numeric) = 2.6122272818066366694025677908027 absolute error = 2.6122272818066366694025677908027 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.816 y[1] (analytic) = 0 y[1] (numeric) = 2.6128434382204901487056363888765 absolute error = 2.6128434382204901487056363888765 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.817 y[1] (analytic) = 0 y[1] (numeric) = 2.613459661593343996719633888583 absolute error = 2.613459661593343996719633888583 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.818 y[1] (analytic) = 0 y[1] (numeric) = 2.6140759519518834613807654012135 absolute error = 2.6140759519518834613807654012135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1361.9MB, alloc=4.6MB, time=142.51 x[1] = 4.819 y[1] (analytic) = 0 y[1] (numeric) = 2.6146923093227978690173963955654 absolute error = 2.6146923093227978690173963955654 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.82 y[1] (analytic) = 0 y[1] (numeric) = 2.6153087337327806272721358975518 absolute error = 2.6153087337327806272721358975518 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.821 y[1] (analytic) = 0 y[1] (numeric) = 2.6159252252085292280239313867135 absolute error = 2.6159252252085292280239313867135 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.822 y[1] (analytic) = 0 y[1] (numeric) = 2.6165417837767452503101760941604 absolute error = 2.6165417837767452503101760941604 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.823 y[1] (analytic) = 0 y[1] (numeric) = 2.6171584094641343632488294061373 absolute error = 2.6171584094641343632488294061373 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.824 y[1] (analytic) = 0 y[1] (numeric) = 2.6177751022974063289605510770771 absolute error = 2.6177751022974063289605510770771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.825 y[1] (analytic) = 0 y[1] (numeric) = 2.6183918623032750054908499556744 absolute error = 2.6183918623032750054908499556744 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.826 y[1] (analytic) = 0 y[1] (numeric) = 2.6190086895084583497322479271813 absolute error = 2.6190086895084583497322479271813 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.827 y[1] (analytic) = 0 y[1] (numeric) = 2.619625583939678420346459774798 absolute error = 2.619625583939678420346459774798 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.828 y[1] (analytic) = 0 y[1] (numeric) = 2.6202425456236613806865896626998 absolute error = 2.6202425456236613806865896626998 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.829 y[1] (analytic) = 0 y[1] (numeric) = 2.620859574587137501719344942915 absolute error = 2.620859574587137501719344942915 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.83 y[1] (analytic) = 0 y[1] (numeric) = 2.621476670856841164947267987937 absolute error = 2.621476670856841164947267987937 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.831 y[1] (analytic) = 0 y[1] (numeric) = 2.6220938344595108653309867506286 absolute error = 2.6220938344595108653309867506286 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.832 y[1] (analytic) = 0 y[1] (numeric) = 2.622711065421889214211484752646 absolute error = 2.622711065421889214211484752646 relative error = -1 % memory used=1365.7MB, alloc=4.6MB, time=142.89 Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.833 y[1] (analytic) = 0 y[1] (numeric) = 2.6233283637707229422323912022847 absolute error = 2.6233283637707229422323912022847 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.834 y[1] (analytic) = 0 y[1] (numeric) = 2.6239457295327629022622919423211 absolute error = 2.6239457295327629022622919423211 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.835 y[1] (analytic) = 0 y[1] (numeric) = 2.6245631627347640723170619280989 absolute error = 2.6245631627347640723170619280989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.836 y[1] (analytic) = 0 y[1] (numeric) = 2.6251806634034855584822199357818 absolute error = 2.6251806634034855584822199357818 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.837 y[1] (analytic) = 0 y[1] (numeric) = 2.6257982315656905978353062003694 absolute error = 2.6257982315656905978353062003694 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.838 y[1] (analytic) = 0 y[1] (numeric) = 2.6264158672481465613682836827477 absolute error = 2.6264158672481465613682836827477 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.839 y[1] (analytic) = 0 y[1] (numeric) = 2.6270335704776249569099636647219 absolute error = 2.6270335704776249569099636647219 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.84 y[1] (analytic) = 0 y[1] (numeric) = 2.6276513412809014320484563706535 absolute error = 2.6276513412809014320484563706535 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.841 y[1] (analytic) = 0 y[1] (numeric) = 2.6282691796847557770536473140016 absolute error = 2.6282691796847557770536473140016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.842 y[1] (analytic) = 0 y[1] (numeric) = 2.6288870857159719277997000667438 absolute error = 2.6288870857159719277997000667438 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.843 y[1] (analytic) = 0 y[1] (numeric) = 2.6295050594013379686875861493302 absolute error = 2.6295050594013379686875861493302 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.844 y[1] (analytic) = 0 y[1] (numeric) = 2.6301231007676461355676427385007 absolute error = 2.6301231007676461355676427385007 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.845 y[1] (analytic) = 0 y[1] (numeric) = 2.6307412098416928186621588899753 absolute error = 2.6307412098416928186621588899753 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1369.5MB, alloc=4.6MB, time=143.28 x[1] = 4.846 y[1] (analytic) = 0 y[1] (numeric) = 2.6313593866502785654879909727034 absolute error = 2.6313593866502785654879909727034 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.847 y[1] (analytic) = 0 y[1] (numeric) = 2.6319776312202080837792080110399 absolute error = 2.6319776312202080837792080110399 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.848 y[1] (analytic) = 0 y[1] (numeric) = 2.6325959435782902444097676308927 absolute error = 2.6325959435782902444097676308927 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.849 y[1] (analytic) = 0 y[1] (numeric) = 2.6332143237513380843162233055678 absolute error = 2.6332143237513380843162233055678 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.85 y[1] (analytic) = 0 y[1] (numeric) = 2.6338327717661688094204635967177 absolute error = 2.6338327717661688094204635967177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.851 y[1] (analytic) = 0 y[1] (numeric) = 2.6344512876496037975524840854795 absolute error = 2.6344512876496037975524840854795 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.852 y[1] (analytic) = 0 y[1] (numeric) = 2.6350698714284686013731926885714 absolute error = 2.6350698714284686013731926885714 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.853 y[1] (analytic) = 0 y[1] (numeric) = 2.6356885231295929512972490537959 absolute error = 2.6356885231295929512972490537959 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.854 y[1] (analytic) = 0 y[1] (numeric) = 2.636307242779810758415938729082 absolute error = 2.636307242779810758415938729082 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.855 y[1] (analytic) = 0 y[1] (numeric) = 2.6369260304059601174200827988809 absolute error = 2.6369260304059601174200827988809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.856 y[1] (analytic) = 0 y[1] (numeric) = 2.6375448860348833095229836814109 absolute error = 2.6375448860348833095229836814109 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.857 y[1] (analytic) = 0 y[1] (numeric) = 2.6381638096934268053834077799335 absolute error = 2.6381638096934268053834077799335 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.858 y[1] (analytic) = 0 y[1] (numeric) = 2.6387828014084412680286056809238 absolute error = 2.6387828014084412680286056809238 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1373.3MB, alloc=4.6MB, time=143.67 x[1] = 4.859 y[1] (analytic) = 0 y[1] (numeric) = 2.6394018612067815557773705916844 absolute error = 2.6394018612067815557773705916844 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.86 y[1] (analytic) = 0 y[1] (numeric) = 2.6400209891153067251631357096363 absolute error = 2.6400209891153067251631357096363 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.861 y[1] (analytic) = 0 y[1] (numeric) = 2.6406401851608800338571112152048 absolute error = 2.6406401851608800338571112152048 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.862 y[1] (analytic) = 0 y[1] (numeric) = 2.6412594493703689435914615799043 absolute error = 2.6412594493703689435914615799043 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.863 y[1] (analytic) = 0 y[1] (numeric) = 2.6418787817706451230825238809133 absolute error = 2.6418787817706451230825238809133 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.864 y[1] (analytic) = 0 y[1] (numeric) = 2.6424981823885844509540678131148 absolute error = 2.6424981823885844509540678131148 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.865 y[1] (analytic) = 0 y[1] (numeric) = 2.6431176512510670186605980892667 absolute error = 2.6431176512510670186605980892667 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.866 y[1] (analytic) = 0 y[1] (numeric) = 2.6437371883849771334106999186523 absolute error = 2.6437371883849771334106999186523 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.867 y[1] (analytic) = 0 y[1] (numeric) = 2.6443567938172033210904282542503 absolute error = 2.6443567938172033210904282542503 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.868 y[1] (analytic) = 0 y[1] (numeric) = 2.6449764675746383291867414981507 absolute error = 2.6449764675746383291867414981507 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.869 y[1] (analytic) = 0 y[1] (numeric) = 2.6455962096841791297109803546324 absolute error = 2.6455962096841791297109803546324 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.87 y[1] (analytic) = 0 y[1] (numeric) = 2.6462160201727269221223925200071 absolute error = 2.6462160201727269221223925200071 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.871 y[1] (analytic) = 0 y[1] (numeric) = 2.6468358990671871362517038980239 absolute error = 2.6468358990671871362517038980239 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.872 y[1] (analytic) = 0 y[1] (numeric) = 2.6474558463944694352247370293186 absolute error = 2.6474558463944694352247370293186 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1377.1MB, alloc=4.6MB, time=144.05 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.873 y[1] (analytic) = 0 y[1] (numeric) = 2.648075862181487718386077423082 absolute error = 2.648075862181487718386077423082 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.874 y[1] (analytic) = 0 y[1] (numeric) = 2.6486959464551601242227884788134 absolute error = 2.6486959464551601242227884788134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.875 y[1] (analytic) = 0 y[1] (numeric) = 2.6493160992424090332881756857157 absolute error = 2.6493160992424090332881756857157 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.876 y[1] (analytic) = 0 y[1] (numeric) = 2.6499363205701610711256007869796 absolute error = 2.6499363205701610711256007869796 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.877 y[1] (analytic) = 0 y[1] (numeric) = 2.6505566104653471111923465958989 absolute error = 2.6505566104653471111923465958989 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.878 y[1] (analytic) = 0 y[1] (numeric) = 2.6511769689549022777835331504493 absolute error = 2.6511769689549022777835331504493 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.879 y[1] (analytic) = 0 y[1] (numeric) = 2.6517973960657659489560858926564 absolute error = 2.6517973960657659489560858926564 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.88 y[1] (analytic) = 0 y[1] (numeric) = 2.652417891824881759452756558773 absolute error = 2.652417891824881759452756558773 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.881 y[1] (analytic) = 0 y[1] (numeric) = 2.6530384562591976036261974659791 absolute error = 2.6530384562591976036261974659791 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.882 y[1] (analytic) = 0 y[1] (numeric) = 2.6536590893956656383630898810122 absolute error = 2.6536590893956656383630898810122 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.883 y[1] (analytic) = 0 y[1] (numeric) = 2.6542797912612422860083271558299 absolute error = 2.6542797912612422860083271558299 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.884 y[1] (analytic) = 0 y[1] (numeric) = 2.6549005618828882372892533151028 absolute error = 2.6549005618828882372892533151028 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.885 y[1] (analytic) = 0 y[1] (numeric) = 2.6555214012875684542399577800312 absolute error = 2.6555214012875684542399577800312 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1380.9MB, alloc=4.6MB, time=144.44 x[1] = 4.886 y[1] (analytic) = 0 y[1] (numeric) = 2.6561423095022521731256269126734 absolute error = 2.6561423095022521731256269126734 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.887 y[1] (analytic) = 0 y[1] (numeric) = 2.6567632865539129073669530646727 absolute error = 2.6567632865539129073669530646727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.888 y[1] (analytic) = 0 y[1] (numeric) = 2.6573843324695284504646018139649 absolute error = 2.6573843324695284504646018139649 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.889 y[1] (analytic) = 0 y[1] (numeric) = 2.6580054472760808789237380727455 absolute error = 2.6580054472760808789237380727455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.89 y[1] (analytic) = 0 y[1] (numeric) = 2.6586266310005565551786117496749 absolute error = 2.6586266310005565551786117496749 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.891 y[1] (analytic) = 0 y[1] (numeric) = 2.6592478836699461305172036489968 absolute error = 2.6592478836699461305172036489968 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.892 y[1] (analytic) = 0 y[1] (numeric) = 2.659869205311244548005932288944 absolute error = 2.659869205311244548005932288944 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.893 y[1] (analytic) = 0 y[1] (numeric) = 2.6604905959514510454144223215045 absolute error = 2.6604905959514510454144223215045 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.894 y[1] (analytic) = 0 y[1] (numeric) = 2.661112055617569158140335235321 absolute error = 2.661112055617569158140335235321 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.895 y[1] (analytic) = 0 y[1] (numeric) = 2.6617335843366067221342630231955 absolute error = 2.6617335843366067221342630231955 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.896 y[1] (analytic) = 0 y[1] (numeric) = 2.6623551821355758768246854953725 absolute error = 2.6623551821355758768246854953725 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.897 y[1] (analytic) = 0 y[1] (numeric) = 2.6629768490414930680429919194732 absolute error = 2.6629768490414930680429919194732 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.898 y[1] (analytic) = 0 y[1] (numeric) = 2.6635985850813790509485676676562 absolute error = 2.6635985850813790509485676676562 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1384.7MB, alloc=4.6MB, time=144.83 x[1] = 4.899 y[1] (analytic) = 0 y[1] (numeric) = 2.6642203902822588929539465512797 absolute error = 2.6642203902822588929539465512797 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.9 y[1] (analytic) = 0 y[1] (numeric) = 2.664842264671161976650029523044 absolute error = 2.664842264671161976650029523044 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.901 y[1] (analytic) = 0 y[1] (numeric) = 2.6654642082751220027313704262941 absolute error = 2.6654642082751220027313704262941 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.902 y[1] (analytic) = 0 y[1] (numeric) = 2.6660862211211769929215294708658 absolute error = 2.6660862211211769929215294708658 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.903 y[1] (analytic) = 0 y[1] (numeric) = 2.6667083032363692928984951145616 absolute error = 2.6667083032363692928984951145616 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.904 y[1] (analytic) = 0 y[1] (numeric) = 2.6673304546477455752201750290464 absolute error = 2.6673304546477455752201750290464 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.905 y[1] (analytic) = 0 y[1] (numeric) = 2.6679526753823568422499568286571 absolute error = 2.6679526753823568422499568286571 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.906 y[1] (analytic) = 0 y[1] (numeric) = 2.6685749654672584290823392403247 absolute error = 2.6685749654672584290823392403247 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.907 y[1] (analytic) = 0 y[1] (numeric) = 2.6691973249295100064686343925123 absolute error = 2.6691973249295100064686343925123 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.908 y[1] (analytic) = 0 y[1] (numeric) = 2.6698197537961755837427419007775 absolute error = 2.6698197537961755837427419007775 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.909 y[1] (analytic) = 0 y[1] (numeric) = 2.6704422520943235117469954272745 absolute error = 2.6704422520943235117469954272745 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.91 y[1] (analytic) = 0 y[1] (numeric) = 2.6710648198510264857580823912156 absolute error = 2.6710648198510264857580823912156 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.911 y[1] (analytic) = 0 y[1] (numeric) = 2.6716874570933615484130375070203 absolute error = 2.6716874570933615484130375070203 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.912 y[1] (analytic) = 0 y[1] (numeric) = 2.6723101638484100926353108265852 absolute error = 2.6723101638484100926353108265852 relative error = -1 % Correct digits = -1 h = 0.001 memory used=1388.6MB, alloc=4.6MB, time=145.22 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.913 y[1] (analytic) = 0 y[1] (numeric) = 2.6729329401432578645609109618177 absolute error = 2.6729329401432578645609109618177 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.914 y[1] (analytic) = 0 y[1] (numeric) = 2.6735557860049949664646241632813 absolute error = 2.6735557860049949664646241632813 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.915 y[1] (analytic) = 0 y[1] (numeric) = 2.6741787014607158596863099305119 absolute error = 2.6741787014607158596863099305119 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.916 y[1] (analytic) = 0 y[1] (numeric) = 2.6748016865375193675572738292703 absolute error = 2.6748016865375193675572738292703 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.917 y[1] (analytic) = 0 y[1] (numeric) = 2.675424741262508678326718190707 absolute error = 2.675424741262508678326718190707 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.918 y[1] (analytic) = 0 y[1] (numeric) = 2.6760478656627913480882713671237 absolute error = 2.6760478656627913480882713671237 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.919 y[1] (analytic) = 0 y[1] (numeric) = 2.676671059765479303706596218727 absolute error = 2.676671059765479303706596218727 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.92 y[1] (analytic) = 0 y[1] (numeric) = 2.6772943235976888457440785054789 absolute error = 2.6772943235976888457440785054789 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.921 y[1] (analytic) = 0 y[1] (numeric) = 2.67791765718654065138759585786 absolute error = 2.67791765718654065138759585786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.922 y[1] (analytic) = 0 y[1] (numeric) = 2.6785410605591597773753680000731 absolute error = 2.6785410605591597773753680000731 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.923 y[1] (analytic) = 0 y[1] (numeric) = 2.6791645337426756629238888989249 absolute error = 2.6791645337426756629238888989249 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.924 y[1] (analytic) = 0 y[1] (numeric) = 2.6797880767642221326549415113367 absolute error = 2.6797880767642221326549415113367 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.925 y[1] (analytic) = 0 y[1] (numeric) = 2.6804116896509373995226958031473 absolute error = 2.6804116896509373995226958031473 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1392.4MB, alloc=4.6MB, time=145.62 x[1] = 4.926 y[1] (analytic) = 0 y[1] (numeric) = 2.6810353724299640677408907115835 absolute error = 2.6810353724299640677408907115835 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.927 y[1] (analytic) = 0 y[1] (numeric) = 2.6816591251284491357101007234873 absolute error = 2.6816591251284491357101007234873 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.928 y[1] (analytic) = 0 y[1] (numeric) = 2.6822829477735439989450877411017 absolute error = 2.6822829477735439989450877411017 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.929 y[1] (analytic) = 0 y[1] (numeric) = 2.682906840392404453002238906933 absolute error = 2.682906840392404453002238906933 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.93 y[1] (analytic) = 0 y[1] (numeric) = 2.683530803012190696407091058919 absolute error = 2.683530803012190696407091058919 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.931 y[1] (analytic) = 0 y[1] (numeric) = 2.6841548356600673335819424868501 absolute error = 2.6841548356600673335819424868501 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.932 y[1] (analytic) = 0 y[1] (numeric) = 2.684778938363203377773552660704 absolute error = 2.684778938363203377773552660704 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.933 y[1] (analytic) = 0 y[1] (numeric) = 2.6854031111487722539809306012701 absolute error = 2.6854031111487722539809306012701 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.934 y[1] (analytic) = 0 y[1] (numeric) = 2.6860273540439518018832125631578 absolute error = 2.6860273540439518018832125631578 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.935 y[1] (analytic) = 0 y[1] (numeric) = 2.6866516670759242787676296999966 absolute error = 2.6866516670759242787676296999966 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.936 y[1] (analytic) = 0 y[1] (numeric) = 2.6872760502718763624575663813546 absolute error = 2.6872760502718763624575663813546 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.937 y[1] (analytic) = 0 y[1] (numeric) = 2.6879005036589991542407098306196 absolute error = 2.6879005036589991542407098306196 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.938 y[1] (analytic) = 0 y[1] (numeric) = 2.6885250272644881817972917528024 absolute error = 2.6885250272644881817972917528024 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1396.2MB, alloc=4.6MB, time=146.01 x[1] = 4.939 y[1] (analytic) = 0 y[1] (numeric) = 2.6891496211155434021284226209432 absolute error = 2.6891496211155434021284226209432 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.94 y[1] (analytic) = 0 y[1] (numeric) = 2.6897742852393692044845192895174 absolute error = 2.6897742852393692044845192895174 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.941 y[1] (analytic) = 0 y[1] (numeric) = 2.6903990196631744132938266029585 absolute error = 2.6903990196631744132938266029585 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.942 y[1] (analytic) = 0 y[1] (numeric) = 2.6910238244141722910910336671337 absolute error = 2.6910238244141722910910336671337 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.943 y[1] (analytic) = 0 y[1] (numeric) = 2.6916486995195805414459854513275 absolute error = 2.6916486995195805414459854513275 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.944 y[1] (analytic) = 0 y[1] (numeric) = 2.6922736450066213118924903880101 absolute error = 2.6922736450066213118924903880101 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.945 y[1] (analytic) = 0 y[1] (numeric) = 2.6928986609025211968572246373855 absolute error = 2.6928986609025211968572246373855 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.946 y[1] (analytic) = 0 y[1] (numeric) = 2.6935237472345112405887336834382 absolute error = 2.6935237472345112405887336834382 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.947 y[1] (analytic) = 0 y[1] (numeric) = 2.6941489040298269400865319279159 absolute error = 2.6941489040298269400865319279159 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.948 y[1] (analytic) = 0 y[1] (numeric) = 2.6947741313157082480303009484091 absolute error = 2.6947741313157082480303009484091 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.949 y[1] (analytic) = 0 y[1] (numeric) = 2.69539942911939957570918708641 absolute error = 2.69539942911939957570918708641 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.95 y[1] (analytic) = 0 y[1] (numeric) = 2.6960247974681497959511990309555 absolute error = 2.6960247974681497959511990309555 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.951 y[1] (analytic) = 0 y[1] (numeric) = 2.6966502363892122460527060631828 absolute error = 2.6966502363892122460527060631828 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.952 y[1] (analytic) = 0 y[1] (numeric) = 2.6972757459098447307080376268483 absolute error = 2.6972757459098447307080376268483 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1400.0MB, alloc=4.6MB, time=146.40 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.953 y[1] (analytic) = 0 y[1] (numeric) = 2.6979013260573095249391848895854 absolute error = 2.6979013260573095249391848895854 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.954 y[1] (analytic) = 0 y[1] (numeric) = 2.6985269768588733770256049594001 absolute error = 2.6985269768588733770256049594001 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.955 y[1] (analytic) = 0 y[1] (numeric) = 2.6991526983418075114341284206279 absolute error = 2.6991526983418075114341284206279 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.956 y[1] (analytic) = 0 y[1] (numeric) = 2.6997784905333876317489708533016 absolute error = 2.6997784905333876317489708533016 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.957 y[1] (analytic) = 0 y[1] (numeric) = 2.7004043534608939236018489996029 absolute error = 2.7004043534608939236018489996029 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.958 y[1] (analytic) = 0 y[1] (numeric) = 2.7010302871516110576022022407985 absolute error = 2.7010302871516110576022022407985 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.959 y[1] (analytic) = 0 y[1] (numeric) = 2.701656291632828192267520047786 absolute error = 2.701656291632828192267520047786 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.96 y[1] (analytic) = 0 y[1] (numeric) = 2.7022823669318389769537760681023 absolute error = 2.7022823669318389769537760681023 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.961 y[1] (analytic) = 0 y[1] (numeric) = 2.7029085130759415547859695119741 absolute error = 2.7029085130759415547859695119741 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.962 y[1] (analytic) = 0 y[1] (numeric) = 2.7035347300924385655887744997166 absolute error = 2.7035347300924385655887744997166 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.963 y[1] (analytic) = 0 y[1] (numeric) = 2.7041610180086371488172980325157 absolute error = 2.7041610180086371488172980325157 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.964 y[1] (analytic) = 0 y[1] (numeric) = 2.7047873768518489464879472483551 absolute error = 2.7047873768518489464879472483551 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.965 y[1] (analytic) = 0 y[1] (numeric) = 2.7054138066493901061094066245809 absolute error = 2.7054138066493901061094066245809 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1403.8MB, alloc=4.6MB, time=146.79 x[1] = 4.966 y[1] (analytic) = 0 y[1] (numeric) = 2.7060403074285812836137257883222 absolute error = 2.7060403074285812836137257883222 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.967 y[1] (analytic) = 0 y[1] (numeric) = 2.7066668792167476462875185957179 absolute error = 2.7066668792167476462875185957179 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.968 y[1] (analytic) = 0 y[1] (numeric) = 2.7072935220412188757032741406285 absolute error = 2.7072935220412188757032741406285 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.969 y[1] (analytic) = 0 y[1] (numeric) = 2.707920235929329170650780353242 absolute error = 2.707920235929329170650780353242 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.97 y[1] (analytic) = 0 y[1] (numeric) = 2.7085470209084172500686608487134 absolute error = 2.7085470209084172500686608487134 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.971 y[1] (analytic) = 0 y[1] (numeric) = 2.7091738770058263559760256857083 absolute error = 2.7091738770058263559760256857083 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.972 y[1] (analytic) = 0 y[1] (numeric) = 2.7098008042489042564042366944527 absolute error = 2.7098008042489042564042366944527 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.973 y[1] (analytic) = 0 y[1] (numeric) = 2.7104278026650032483287880336218 absolute error = 2.7104278026650032483287880336218 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.974 y[1] (analytic) = 0 y[1] (numeric) = 2.7110548722814801606013026351338 absolute error = 2.7110548722814801606013026351338 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.975 y[1] (analytic) = 0 y[1] (numeric) = 2.7116820131256963568816451956465 absolute error = 2.7116820131256963568816451956465 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.976 y[1] (analytic) = 0 y[1] (numeric) = 2.7123092252250177385701523732877 absolute error = 2.7123092252250177385701523732877 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.977 y[1] (analytic) = 0 y[1] (numeric) = 2.7129365086068147477399808478826 absolute error = 2.7129365086068147477399808478826 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.978 y[1] (analytic) = 0 y[1] (numeric) = 2.7135638632984623700695739026771 absolute error = 2.7135638632984623700695739026771 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. memory used=1407.6MB, alloc=4.6MB, time=147.18 x[1] = 4.979 y[1] (analytic) = 0 y[1] (numeric) = 2.7141912893273401377752471852879 absolute error = 2.7141912893273401377752471852879 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.98 y[1] (analytic) = 0 y[1] (numeric) = 2.7148187867208321325438943053455 absolute error = 2.7148187867208321325438943053455 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.981 y[1] (analytic) = 0 y[1] (numeric) = 2.7154463555063269884658129260309 absolute error = 2.7154463555063269884658129260309 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.982 y[1] (analytic) = 0 y[1] (numeric) = 2.7160739957112178949676520064431 absolute error = 2.7160739957112178949676520064431 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.983 y[1] (analytic) = 0 y[1] (numeric) = 2.7167017073629025997454808514673 absolute error = 2.7167017073629025997454808514673 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.984 y[1] (analytic) = 0 y[1] (numeric) = 2.7173294904887834116979806255529 absolute error = 2.7173294904887834116979806255529 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.985 y[1] (analytic) = 0 y[1] (numeric) = 2.7179573451162672038597589865445 absolute error = 2.7179573451162672038597589865445 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.986 y[1] (analytic) = 0 y[1] (numeric) = 2.7185852712727654163347884954469 absolute error = 2.7185852712727654163347884954469 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.987 y[1] (analytic) = 0 y[1] (numeric) = 2.7192132689856940592299694577418 absolute error = 2.7192132689856940592299694577418 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.988 y[1] (analytic) = 0 y[1] (numeric) = 2.7198413382824737155888178516115 absolute error = 2.7198413382824737155888178516115 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.989 y[1] (analytic) = 0 y[1] (numeric) = 2.7204694791905295443252789981631 absolute error = 2.7204694791905295443252789981631 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.99 y[1] (analytic) = 0 y[1] (numeric) = 2.7210976917372912831576676284843 absolute error = 2.7210976917372912831576676284843 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.991 y[1] (analytic) = 0 y[1] (numeric) = 2.7217259759501932515427350021012 absolute error = 2.7217259759501932515427350021012 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.992 y[1] (analytic) = 0 y[1] (numeric) = 2.7223543318566743536098637311478 absolute error = 2.7223543318566743536098637311478 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE memory used=1411.5MB, alloc=4.6MB, time=147.57 TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.993 y[1] (analytic) = 0 y[1] (numeric) = 2.7229827594841780810953909642952 absolute error = 2.7229827594841780810953909642952 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.994 y[1] (analytic) = 0 y[1] (numeric) = 2.7236112588601525162770605842291 absolute error = 2.7236112588601525162770605842291 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.995 y[1] (analytic) = 0 y[1] (numeric) = 2.724239830012050334908605072205 absolute error = 2.724239830012050334908605072205 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.996 y[1] (analytic) = 0 y[1] (numeric) = 2.7248684729673288091544576929497 absolute error = 2.7248684729673288091544576929497 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.997 y[1] (analytic) = 0 y[1] (numeric) = 2.7254971877534498105245956529197 absolute error = 2.7254971877534498105245956529197 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.998 y[1] (analytic) = 0 y[1] (numeric) = 2.7261259743978798128095148846684 absolute error = 2.7261259743978798128095148846684 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE TOP MAIN SOLVE Loop WARNING: expt of linear to linear power seems to have NO accuracy - needs more work. x[1] = 4.999 y[1] (analytic) = 0 y[1] (numeric) = 2.7267548329280898950153371098147 absolute error = 2.7267548329280898950153371098147 relative error = -1 % Correct digits = -1 h = 0.001 NO POLE Finished! diff ( y , x , 1 ) = expt((0.1 * x + 0.2) , (0.2 * x + 0.3)); Iterations = 4900 Total Elapsed Time = 2 Minutes 27 Seconds Elapsed Time(since restart) = 2 Minutes 27 Seconds Time to Timeout = 32 Seconds Percent Done = 100 % > quit memory used=1413.5MB, alloc=4.6MB, time=147.77