Closed mlubin closed 8 years ago
+1 to throwing out the vectorized case.
I think using map(Dual, [1.0, 2.0, 3.0])
is preferable to defining Dual(::Vector)
, if there aren't any performance issues with falling back to map
(not sure if that's the case).
This is stale
drops support for 0.3. The package fell a bit behind in following the Julia convention of deprecating
int
forInt
etc. Only question is what we should do for the vectorized versions.float([1,2,3])
is still around, butint([1.0,2.0,3.0])
is not. IsDual([1.0,2.0,3.0])
okay for creating an array of dual numbers, or should we keepdual
for the vectorized case?