From 2a0c6dcbd1598b63bdea175e7de6baae88420ffa Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 1 Oct 2023 10:44:47 +0200 Subject: [PATCH] fix kwargs for FunctionMap --- src/functionmap.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functionmap.jl b/src/functionmap.jl index a5ea0a5..5d3d630 100644 --- a/src/functionmap.jl +++ b/src/functionmap.jl @@ -67,8 +67,8 @@ mutable struct DiscreteIntegrator{F, IIP, uType, tType, P, S} <: end function DiffEqBase.__init(prob::DiscreteProblem, - alg::SimpleFunctionMap) - sol = solve(prob, alg; calculate_values = false) + alg::SimpleFunctionMap) + sol = DiffEqBase.__solve(prob, alg; calculate_values = false) F = typeof(prob.f) IIP = isinplace(prob) uType = typeof(prob.u0)