Luis Benet
Luis Benet
Today I noticed that some tests are failing in TaylorIntegration.jl with Julia nightly (Julia 1.5.0-DEV), which seem related to Espresso.jl. The travis log with the "illegal instruction" can be found...
Fixes #332, #287 and #402
This comes from the (Reliable_computing) mailing list, (posted by Mark A. Stadtherr): - Minimization problems: http://dx.doi.org/10.1021/ie034073d - Equation-solving problems (with many roots): http://dx.doi.org/10.1002/aic.690470817 - Other interesting problems/methods by perusing: https://www3.nd.edu/~markst/interval-publications.html
The following throws a `MethodError`: ```jullia julia> using IntervalArithmetic, IntervalRootFinding julia> f(x) = -4*x^3 + 5*x^4 f (generic function with 1 method) julia> dom = big(0) .. big(1) [0, 1]₂₅₆...
This is a follow up of #298, where it was mentioned that some ambiguities were detected by [`Aqua.jl`](https://github.com/JuliaTesting/Aqua.jl). This PR solves all ambiguities, but leaves some unbound type parameters (`unbound_args`)...
This is a small modification addressing [#85]. It simply carries on the hashing of the vectors of integers in `UInt128` arithmetic.
`TaylorRec{T,N}` is an implementation of multivariate Taylor polynomials as a recursive dense representation, including tests. It is in the "TaylorRec" branch. The idea is to generate a polynomial in N...
See [this comment](https://github.com/JuliaReach/ReachabilityAnalysis.jl/pull/621#issuecomment-1107752118); the MWE there is: ```julia julia> @taylorize function f!(du, u, p, t) x, t = u return du end ERROR: syntax: "__tmpTaylor[2]" is not a valid function...
This is motivated by [this comment](https://github.com/gacarita).
Reference: https://github.com/JuliaReach/ReachabilityAnalysis.jl/pull/621#issuecomment-1107752118 The following is a minimal example: ```julia julia> @taylorize function f!(du, u, p, t) x, t = u return du end ERROR: syntax: "__tmpTaylor[2]" is not a valid...