File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name = " OptimalControl"
22uuid = " 5f98b655-cc9a-415a-b60e-744165666948"
33authors = [" Olivier Cots <olivier.cots@toulouse-inp.fr>" ]
4- version = " 1.1.3 "
4+ version = " 1.1.4 "
55
66[deps ]
77ADNLPModels = " 54578032-b7ea-4c30-94aa-7cbd1cce6c9a"
@@ -13,6 +13,7 @@ CTParser = "32681960-a1b1-40db-9bff-a1ca817385d1"
1313CommonSolve = " 38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
1414DocStringExtensions = " ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
1515ExaModels = " 1037b233-b668-4ce9-9b63-f9f681f55dd2"
16+ RecipesBase = " 3cdcf5f2-1ef4-517c-9805-6587b60abb01"
1617
1718[compat ]
1819ADNLPModels = " 0.8"
@@ -24,4 +25,5 @@ CTParser = "0.7"
2425CommonSolve = " 0.2"
2526DocStringExtensions = " 0.9"
2627ExaModels = " 0.9"
28+ RecipesBase = " 1"
2729julia = " 1.10"
Original file line number Diff line number Diff line change @@ -32,18 +32,26 @@ Private = false
3232
3333``` @docs; canonical=true
3434*(::CTFlowsODE.AbstractFlow)
35+ AmbiguousDescription
36+ CTException
37+ ExtensionError
3538Flow
3639Hamiltonian
3740HamiltonianLift
3841HamiltonianVectorField
42+ IncorrectArgument
43+ IncorrectMethod
44+ IncorrectOutput
3945@Lie
4046Lie
4147Lift
4248Model
49+ NotImplemented
4350ParsingError
4451Poisson
4552Solution
4653VectorField
54+ UnauthorizedCall
4755available_methods
4856build_OCP_solution
4957constraint(::Model, ::Symbol)
Original file line number Diff line number Diff line change @@ -10,8 +10,26 @@ module OptimalControl
1010using DocStringExtensions
1111
1212# CTBase
13- import CTBase: CTBase, ParsingError
14- export ParsingError
13+ import CTBase:
14+ CTBase,
15+ ParsingError,
16+ CTException,
17+ AmbiguousDescription,
18+ IncorrectArgument,
19+ IncorrectMethod,
20+ IncorrectOutput,
21+ NotImplemented,
22+ UnauthorizedCall,
23+ ExtensionError
24+ export ParsingError,
25+ CTException,
26+ AmbiguousDescription,
27+ IncorrectArgument,
28+ IncorrectMethod,
29+ IncorrectOutput,
30+ NotImplemented,
31+ UnauthorizedCall,
32+ ExtensionError
1533
1634# CTParser
1735import CTParser: CTParser, @def
@@ -23,6 +41,10 @@ function __init__()
2341 CTParser. e_prefix! (:OptimalControl )
2442end
2543
44+ # RecipesBase.plot
45+ import RecipesBase: RecipesBase, plot
46+ export plot
47+
2648# CTModels
2749import CTModels:
2850 CTModels,
You can’t perform that action at this time.
0 commit comments