-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type Conversion Error with Measurements #211
Comments
Quick workaround: turn-off adaption. julia> m2 = central_fdm(5, 1; adapt=0);
julia> m2(f, 0.0)
0.0 ± 0.00014 There are a few places in the code, FiniteDifferences.jl/src/methods.jl Lines 246 to 250 in 93cd547
and FiniteDifferences.jl/src/methods.jl Line 263 in 93cd547
where we use But the question then is where is our julia> FiniteDifferences.estimate_step(m, f, 0.0)
(0.00097 ± 2500.0, 4.3e-13 ± 1.1e-6) Something is off somewhere in the adaption logic of FiniteDifferences.jl/src/methods.jl Lines 362 to 426 in 93cd547
because it is yielding a |
The text was updated successfully, but these errors were encountered: