Skip to content

Commit

Permalink
Fix bug in System constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhcohen committed Aug 17, 2024
1 parent af0da8c commit c7c1753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/control_affine_system.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ end
Construct a control affine system. Name defaults to `missing` if not provided.
"""
ControlAffineSystem(n::Int, m::Int, f::Function, g::Function) =
ControlAffineSystem(missing, n, m, f, g)
ControlAffineSystem("", n, m, f, g)

"""
dynamics(Σ::ControlAffineSystem, x)
Expand Down

0 comments on commit c7c1753

Please sign in to comment.