Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into throw_error
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Dec 14, 2023
2 parents 3ab8605 + 1f7d5b3 commit 52c2b93
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# Cancel ongoing CI test runs if pushing to branch again before the previous tests
# have finished
- name: Cancel ongoing test runs for previous commits
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ github.token }}

Expand Down
3 changes: 2 additions & 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 = "3.4.0"
version = "3.4.2"

[deps]
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
Expand All @@ -21,4 +21,5 @@ Reexport = "1"
Roots = "1, 2"
SciMLBase = "1.19.5, 2"
StateSpaceSets = "1"
Statistics = "1"
julia = "1.9"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# DynamicalSystemsBase.jl

[![](https://img.shields.io/badge/docs-dev-lightblue.svg)](https://JuliaDynamics.github.io/DynamicalSystemsBase.jl/dev)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaDynamics.github.io/DynamicalSystemsBase.jl/stable)
[![docsdev](https://img.shields.io/badge/docs-dev-lightblue.svg)](https://juliadynamics.github.io/DynamicalSystemsDocs.jl/dynamicalsystemsbase/dev/)
[![docsstable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliadynamics.github.io/DynamicalSystemsDocs.jl/dynamicalsystemsbase/stable/)
[![](https://img.shields.io/badge/DOI-10.1007%2F978--3--030--91032--7-purple)](https://link.springer.com/book/10.1007/978-3-030-91032-7)
[![CI](https://github.com/JuliaDynamics/DynamicalSystemsBase.jl/workflows/CI/badge.svg)](https://github.com/JuliaDynamics/DynamicalSystemsBase.jl/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/JuliaDynamics/DynamicalSystemsBase.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaDynamics/DynamicalSystemsBase.jl)
[![Package Downloads](https://shields.io/endpoint?url=https://pkgs.genieframework.com/api/v1/badge/DynamicalSystemsBase)](https://pkgs.genieframework.com?packages=DynamicalSystemsBase)

A Julia package that defines the `DynamicalSystem` interface and many concrete implementations used in the [DynamicalSystems.jl](https://juliadynamics.github.io/DynamicalSystems.jl/dev/) ecosystem.
A Julia package that defines the `DynamicalSystem` interface and many concrete implementations used in the DynamicalSystems.jl ecosystem.

To install it, run `import Pkg; Pkg.add("DynamicalSystemsBase")`.
Typically, you do not want to use `DynamicalSystemsBase` directly,
as downstream analysis packages re-export it.

All further information is provided in the documentation, which you can either find [online](https://juliadynamics.github.io/DynamicalSystemsBase.jl/dev/) or build locally by running the `docs/make.jl` file.
All further information is provided in the documentation, which you can either find online or build locally by running the `docs/make.jl` file.
2 changes: 1 addition & 1 deletion src/derived_systems/poincare/hyperplane.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function poincaresos(A::AbstractStateSpaceSet, plane;
i = typeof(save_idxs) <: Int ? save_idxs : SVector{length(save_idxs), Int}(save_idxs...)
planecrossing = PlaneCrossing(plane, direction > 0)
data = poincaresos(A, planecrossing, i)
warning && length(data) == 0 && @warn PSOS_ERROR
warning && length(data) == 0 && @warn "Poincaré surface of section does not contain any points!"
return StateSpaceSet(data)
end
function poincaresos(A::StateSpaceSet, planecrossing::PlaneCrossing, j)
Expand Down

0 comments on commit 52c2b93

Please sign in to comment.