diff --git a/.gitignore b/.gitignore index 150b4fa8..0e16cd6d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.DS_STORE + # Files generated by invoking Julia with --code-coverage *.jl.cov *.jl.*.cov diff --git a/Project.toml b/Project.toml index 880cbe73..80626757 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "CTBase" uuid = "54762871-cc72-4466-b8e8-f6c8b58076cd" authors = ["Olivier Cots "] -version = "0.7.10" +version = "0.7.11" [deps] DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" diff --git a/src/CTBase.jl b/src/CTBase.jl index c3a88dfb..47c14021 100644 --- a/src/CTBase.jl +++ b/src/CTBase.jl @@ -166,7 +166,7 @@ export replace_call, constraint_type export @def # repl -export ct_repl -isdefined(Base, :active_repl) && ct_repl() +##export ct_repl +##isdefined(Base, :active_repl) && ct_repl() end diff --git a/src/plot.jl b/src/plot.jl index 24024649..2518b233 100644 --- a/src/plot.jl +++ b/src/plot.jl @@ -396,20 +396,6 @@ function recipe_label(sol::OptimalControlSolution, xx::Union{Symbol,Tuple{Symbol return label end -@recipe function f(sol::OptimalControlSolution, - xx::Union{Symbol,Tuple{Symbol,Integer}}, - yy::Union{Symbol,Tuple{Symbol,Integer}}) - - # - x = __get_data_plot(sol, xx) - y = __get_data_plot(sol, yy) - - # - label = recipe_label(sol, xx, yy) - - return x, y -end - """ $(TYPEDSIGNATURES)