From b7cda10ea95d46faa9a2b0b1b45e6fe54b16b462 Mon Sep 17 00:00:00 2001 From: Aayush Sabharwal Date: Fri, 25 Apr 2025 12:06:01 +0530 Subject: [PATCH] docs: add docstring for discretes support in `AbstractDiffEqArray` --- src/RecursiveArrayTools.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/RecursiveArrayTools.jl b/src/RecursiveArrayTools.jl index a616c592..c6ba9d71 100644 --- a/src/RecursiveArrayTools.jl +++ b/src/RecursiveArrayTools.jl @@ -126,6 +126,9 @@ additional properties: An AbstractDiffEqArray adds the following fields: * `t` which holds the times of each timestep. +* `discretes` (optional) which contains a + `SymbolicIndexingInterface.ParameterTimeseriesCollection` to allow storing and indexing + discrete variables. Indexing behavior is handled via `SymbolicIndexingInterface.getu`. """ abstract type AbstractDiffEqArray{T, N, A} <: AbstractVectorOfArray{T, N, A} end