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
solve(IntegralProblem(...), ...) should give the solution
Minimal Reproducible Example 👇
Without MRE, we would only be able to help you to a limited extent, and attention to the issue would be limited. to know more about MRE refer to wikipedia and stackoverflow.
ENV["JULIA_PKG_SERVER_REGISTRY_PREFERENCE"] ="eager"using Pkg
Pkg.Registry.update()
Pkg.activate(".")
Pkg.add(name="SciMLBase", version="2.66.0")
Pkg.add("Integrals")
using Integrals
f(x, p) = x * p
g =IntegralFunction(f)
prob =IntegralProblem(g, ([1,2], [3,4]), 1)
sol =solve(prob, HCubatureJL())
julia>versioninfo()
Julia Version 1.11.2
Commit 5e9a32e7af2 (2024-12-0120:02 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU:16× AMD Ryzen 75700U with Radeon Graphics
WORD_SIZE:64
LLVM: libLLVM-16.0.6 (ORCJIT, znver2)
Threads:1 default, 0 interactive, 1 GC (on 16 virtual cores)
Environment:
JULIA_CONDAPKG_BACKEND = Null
JULIA_PYTHONCALL_EXE =/usr/bin/python
Additional context
I discovered the bug since I am developing a little package that uses Integrals and yesterday my CI started failing while locally the tests passed. The difference was in the SciMLBase version.
The text was updated successfully, but these errors were encountered:
Describe the bug 🐞
Version 2.66.0 of SciMLBase breaks Integrals.
Expected behavior
solve(IntegralProblem(...), ...)
should give the solutionMinimal Reproducible Example 👇
Without MRE, we would only be able to help you to a limited extent, and attention to the issue would be limited. to know more about MRE refer to wikipedia and stackoverflow.
Error & Stacktrace⚠️
Environment (please complete the following information):
using Pkg; Pkg.status()
using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
versioninfo()
Additional context
I discovered the bug since I am developing a little package that uses Integrals and yesterday my CI started failing while locally the tests passed. The difference was in the SciMLBase version.
The text was updated successfully, but these errors were encountered: