control-toolbox / OptimalControl.jl

Model and solve optimal control problems in Julia
http://control-toolbox.org/OptimalControl.jl/
MIT License
69 stars 6 forks source link

Run ct repl automatically after loading #189

Closed ocots closed 3 months ago

ocots commented 3 months ago

For the moment we have

isdefined(Base, :active_repl) && ct_repl()

Maybe replace by

function __init__()
    ct_repl()
    nothing
end