From bf43dbd4ffca86dcc72b65357ee9907c96927b31 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 24 Dec 2023 21:53:21 -0500 Subject: [PATCH] fix typo --- test/alternative_ad_frontend.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/alternative_ad_frontend.jl b/test/alternative_ad_frontend.jl index bc380eca0..67c178b31 100644 --- a/test/alternative_ad_frontend.jl +++ b/test/alternative_ad_frontend.jl @@ -2,7 +2,7 @@ using OrdinaryDiffEq, SciMLSensitivity, ForwardDiff, Zygote, ReverseDiff, Tracke using Test odef(u,p,t) = u .* p -prob = ODEProblem(f, [2.0], (0.0, 1.0), [3.0]) +const prob = ODEProblem(odef, [2.0], (0.0, 1.0), [3.0]) struct senseloss0{T} sense::T