Skip to content

Commit

Permalink
Merge pull request #312 from JuliaReach/bl/exact
Browse files Browse the repository at this point in the history
Change :exact to ExactDiscretization in discretize
  • Loading branch information
mforets authored Nov 8, 2024
2 parents 6dc936c + f766b57 commit 0941cde
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/discretize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -194,16 +194,17 @@ function _discretize(::EulerDiscretization, ΔT::Real,
end

"""
_discretize(A::AbstractMatrix, ΔT::Real; algorithm=:exact)
_discretize(algorithm::AbstractDiscretizationAlgorithm, ΔT::Real,
A::AbstractMatrix)
Discretize the state matrix `A` with sampling time `ΔT` and discretization method
`algorithm`.
### Input
- `A` -- state matrix
- `algorithm` -- discretization algorithm
- `ΔT` -- sampling time
- `algorithm` -- (optional, default: `:exact`) discretization algorithm
- `A` -- state matrix
### Output
Expand Down

0 comments on commit 0941cde

Please sign in to comment.