Skip to content

Commit c7c1753

Browse files
committed
Fix bug in System constructor
1 parent af0da8c commit c7c1753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/control_affine_system.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ end
2424
Construct a control affine system. Name defaults to `missing` if not provided.
2525
"""
2626
ControlAffineSystem(n::Int, m::Int, f::Function, g::Function) =
27-
ControlAffineSystem(missing, n, m, f, g)
27+
ControlAffineSystem("", n, m, f, g)
2828

2929
"""
3030
dynamics(Σ::ControlAffineSystem, x)

0 commit comments

Comments
 (0)