Skip to content

Commit

Permalink
make Koopman operators functions and patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Feb 17, 2021
1 parent cf47e85 commit 8c13066
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DataDrivenDiffEq"
uuid = "2445eb08-9709-466a-b3fc-47e12bd697a2"
authors = ["Julius Martensen <[email protected]>"]
version = "0.5.4"
version = "0.5.5"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand Down
4 changes: 2 additions & 2 deletions src/DataDrivenDiffEq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using FiniteDifferences, DataInterpolations
using Compat
using DocStringExtensions

abstract type AbstractKoopmanOperator end;
abstract type AbstractKoopmanOperator <: Function end;

include("./optimizers/Optimize.jl")
using .Optimize
Expand Down Expand Up @@ -85,6 +85,6 @@ export burst_sampling, subsample

include("./basis_generators.jl")
export chebyshev_basis, monomial_basis, polynomial_basis
export sin_basis, cos_basis, fourier_basis
export sin_basis, cos_basis, fourier_basis

end # module

0 comments on commit 8c13066

Please sign in to comment.