Jorge Pérez

Results 9 comments of Jorge Pérez

Perhaps we should just follow behavior of `==` as it is used in `scmutils`, where if I remember correctly the equivalent of `x*y == y*x` gives `false`?

Thanks @lbenet and @dpsanders for the work you are putting into this; it is helping me a lot! Perhaps a note should be added in the documentation regarding the fact...

My solution doesn't work for `TaylorN` :( ``` julia julia> using TaylorSeries julia> x, y = set_variables("x y", order=25) 2-element Array{TaylorSeries.TaylorN{Float64},1}: 1.0 x + 𝒪(‖x‖²⁶) 1.0 y + 𝒪(‖x‖²⁶) julia>...

It seems that the problem has to do with the actual calculation: ```julia julia> using TaylorSeries julia> δv = set_variables("δ", order=1, numvars=66); julia> a = (1+δv[1])^2 1.0 + 2.0 δ₂...

Thank you so much! This is really helpful!

Should this branch rebase master, now that PRs #90 and #91 have been merged?

A simple case which illustrates the difference in performance between Taylor1 and TaylorN for jet transport applications is the following: ```julia using Suppressor #suppress warnings using BenchmarkTools, TaylorIntegration, TaylorSeries f(t,...

I'd personally prefer pytest over unittest, but I'm not sure if there's a reason why some tests use one or the other. I would also be in favor of having...

> @mforets I like the idea you propose of defining a Taylor1Vector, actually a lot! Looks like a slick solution! It'd be nice to try it! Should that be implemented...