ChrisRackauckas on individual
tabbit (compare)
ChrisRackauckas on individual
Allow individualized work-preci… (compare)
kanav99 on gh-pages
build based on 4cdcd9d (compare)
ChrisRackauckas on master
Typo with Modelingtoolkitize Merge pull request #753 from Gl… (compare)
NewOptimizatonType
names in them. I can guess that Expected Improvement is going to be EI(), but it could be nice to add them.[slack] <briochemc> What's the correct way to check if a function is inplace? I.e., in
```julia> foo(du, u, p, t) = "in place"
foo (generic function with 1 method)
julia> ODEFunction(foo)
(::ODEFunction{true,typeof(foo),LinearAlgebra.UniformScaling{Bool},Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing}) (generic function with 7 methods)``
how does ODEFunction assign
iip = true`? Not sure where to look for the code that does that 😅
nargs
search on DiffEqBase gave me no results 🤔)
A\b
works, but I am benchmarking different methods.
A\b
does something perhaps overly smart and switches the solver depending on the dimensions i believe
A
matrix comprises derivative operators, so I'm also looking at DiffEqOperators.
SecondOrderODEProblem
still supported? I had a hard time understand what inputs the dynamics function should take. Unfortunately reading https://github.com/SciML/DiffEqBase.jl/blob/864c379ead274243acdd965bd8942d1da1deb3bb/test/problem_creation_tests.jl#L51 didn't shed a lot of light for me. I'm not sure what the relationship between u
and v
are, and the docstring args from the SecondOrderODEProblem
constructor seems flipped compared to its implementation. Thanks for any information!