Skip to content

Commit

Permalink
periodic_orbit docstring change
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKoziorek committed Jul 11, 2024
1 parent 1293e40 commit 24d3b2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/api.jl
Original file line number Diff line number Diff line change
Expand Up @@ -276,18 +276,18 @@ Abstract type `PeriodicOrbitFinder` represents a supertype for all the periodic
abstract type PeriodicOrbitFinder end

"""
periodic_orbit(ds::DynamicalSystem, alg::PeriodicOrbitFinder, igs::Vector{InitialGuess} = InitialGuess(ds)) → po
periodic_orbit(ds::DynamicalSystem, alg::PeriodicOrbitFinder, ig::InitialGuess = InitialGuess(ds)) → PeriodicOrbit
Try to find single periodic orbit of the dynamical system `ds` using the algorithm `alg` given some initial guesses `igs`.
Try to find single periodic orbit of the dynamical system `ds` using the algorithm `alg` given some initial guess `ig`.
For more details on the periodic orbit detection algorithms, see the documentation of the specific algorithm.
"""
function periodic_orbit(ds::DynamicalSystem, alg::PeriodicOrbitFinder, igs::InitialGuess = InitialGuess(ds))
function periodic_orbit(ds::DynamicalSystem, alg::PeriodicOrbitFinder, ig::InitialGuess = InitialGuess(ds))
result::PeriodicOrbit
return result
end

"""
periodic_orbit(ds::DynamicalSystem, alg::PeriodicOrbitFinder, igs::Vector{InitialGuess} = InitialGuess(ds)) → po
periodic_orbit(ds::DynamicalSystem, alg::PeriodicOrbitFinder, igs::Vector{InitialGuess} = InitialGuess(ds)) → Vector{PeriodicOrbit}
Try to find multiple periodic orbits of the dynamical system `ds` using the algorithm `alg` given some initial guesses `igs`.
For more details on the periodic orbit detection algorithms, see the documentation of the specific algorithm.
Expand Down

0 comments on commit 24d3b2e

Please sign in to comment.