Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.13.1 #158

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/TestLTS.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test v1.6 (LTS)
name: Test v1.10 (LTS)

on:
workflow_dispatch:
Expand All @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.6']
julia-version: ['lts']
julia-arch: [x64]
os: [ubuntu-latest, windows-latest]
experimental: [false]
Expand Down
Binary file added examples/jupyter-src/result.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion test/solution_gradients.jl
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ stepCb = FunctionCallingCallback(stepCompleted; func_everystep = true, func_star
#fmu_params = nothing
fmu = loadFMU("BouncingBall1D", "Dymola", "2023x"; type = :ME)
fmu_params = Dict("damping" => 0.7, "mass_radius" => 0.0, "mass_s_min" => DBL_MIN)
fmu.executionConfig.isolatedStateDependency = true

net = Chain(#Dense(W1, b1, identity),
x -> fmu(; x = x, dx_refs = :all),
Expand Down
3 changes: 2 additions & 1 deletion test/supported_sensitivities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#

using Flux
using DifferentialEquations
using DifferentialEquations, Sundials

import Random
Random.seed!(5678);
Expand Down Expand Up @@ -58,6 +58,7 @@ for fmu in fmus
@info "##### CHECKING FMU WITH $(fmu.modelDescription.numberOfEventIndicators) SIMULTANEOUS EVENT INDICATOR(S) #####"
solvers = [
Tsit5(),
CVODE_BDF(),
Rosenbrock23(autodiff = false),
Rodas5(autodiff = false),
FBDF(autodiff = false),
Expand Down
1 change: 0 additions & 1 deletion test/time_solution_gradients.jl
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ fmu_params = Dict(
"mass_m" => MASS,
"mass_s_min" => DBL_MIN,
)
fmu.executionConfig.isolatedStateDependency = true

net = Chain(#Dense(W1, b1, identity),
x -> fmu(; x = x, dx_refs = :all),
Expand Down
Loading