Skip to content

Commit

Permalink
use delayembedding.jl dimension instead
Browse files Browse the repository at this point in the history
I was a MORON to not use it in the first place!!!!
  • Loading branch information
Datseris committed Nov 11, 2020
1 parent c9dc224 commit 3f1389c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DynamicalSystemsBase"
uuid = "6e36e845-645a-534a-86f2-f5d4aa5a06b4"
repo = "https://github.com/JuliaDynamics/DynamicalSystemsBase.jl.git"
version = "1.6.2"
version = "1.6.3"

[deps]
DelayEmbeddings = "5732040d-69e3-5649-938a-b6b4f237613f"
Expand Down
1 change: 1 addition & 0 deletions src/DynamicalSystemsBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module DynamicalSystemsBase

using Reexport
@reexport using DelayEmbeddings
import DelayEmbeddings: dimension

include("dynamicalsystem.jl")
include("discrete.jl")
Expand Down
7 changes: 0 additions & 7 deletions src/dynamicalsystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,6 @@ isautodiff(::DS{IIP, S, D, F, P, JAC, JM, IAD}) where
{IIP, S, D, F, P, JAC, JM, IAD} = IAD

get_state(ds::DS) = ds.u0



"""
dimension(thing) -> D
Return the dimension of the `thing`, in the sense of state-space dimensionality.
"""
dimension(ds::DS{IIP, S, D}) where {IIP, S, D} = D

"""
Expand Down

2 comments on commit 3f1389c

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/24546

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.6.3 -m "<description of version>" 3f1389c83aa42ea182c32ae3de967f4b96c894ec
git push origin v1.6.3

Please sign in to comment.