From 3138e2dd0694dcc085ad1ce01da09afe208cbea6 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Sat, 26 Jun 2021 14:20:02 -0400 Subject: [PATCH] Use RecursiveArrayTools.AllObserved --- Project.toml | 4 ++-- src/solutions/solution_interface.jl | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index 2223ff7a6..296aeed92 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SciMLBase" uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" authors = ["Chris Rackauckas and contributors"] -version = "1.13.6" +version = "1.14.0" [deps] ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" @@ -26,7 +26,7 @@ ConstructionBase = "1" DocStringExtensions = "0.8" IteratorInterfaceExtensions = "^0.1, ^1" RecipesBase = "0.7.0, 0.8, 1.0" -RecursiveArrayTools = "2" +RecursiveArrayTools = "2.14" StaticArrays = "0.11, 0.12, 1.0" Tables = "1" TreeViews = "0.3" diff --git a/src/solutions/solution_interface.jl b/src/solutions/solution_interface.jl index 9d737e1ce..429c4b4cf 100644 --- a/src/solutions/solution_interface.jl +++ b/src/solutions/solution_interface.jl @@ -1,6 +1,5 @@ ### Abstract Interface -struct AllObserved -end +const AllObserved = RecursiveArrayTools.AllObserved # No Time Solution : Forward to `A.u` Base.getindex(A::AbstractNoTimeSolution,i::Int) = A.u[i]