You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DataFrames.jl pirates reduce(vcat, ::Vector{Union{}}), which ModelingToolkit can hit during the structural simplification of an SDE (not sure if it's intentional, but 🤷), and this causes complete to error out:
Minimal Reproducible Example 👇
Setup:
using DataFrames # only errors if this line is hereusing ModelingToolkit
using ModelingToolkit: t_nounits as t, D_nounits as D
# Define some variables@parameters σ ρ β
@variablesx(t) y(t) z(t)
@brownian a
eqs = [D(x) ~ σ * (y - x) +0.1a * x,
D(y) ~ x * (ρ - z) - y +0.1a * y,
D(z) ~ x * y - β * z +0.1a * z]
@mtkbuild de =System(eqs, t)
Describe the bug 🐞
DataFrames.jl pirates
reduce(vcat, ::Vector{Union{}})
, which ModelingToolkit can hit during the structural simplification of an SDE (not sure if it's intentional, but 🤷), and this causescomplete
to error out:Minimal Reproducible Example 👇
Setup:
Error & Stacktrace⚠️
Environment (please complete the following information):
using Pkg; Pkg.status()
using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
versioninfo()
(I also tested and reproduced this on v1.10)
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: