Fix Polynomial

This commit is contained in:
Andreas Fabri 2023-03-07 13:13:30 +00:00
parent ba6893b239
commit 7106e960e2
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ polynomial_power_to_bernstein_approx(
std::vector<Integer> f(n+1);
polynomial_affine_transform_approx_log_denom(
first, beyond, f.begin(),
upper_num - lower_num, lower_num, log_denom,
Integer(upper_num - lower_num), lower_num, log_denom,
p+q,
approx, log, logl
);