Skip to content

Commit 5faef2f

Browse files
authored
Merge pull request #26 from RoboticExplorationLab/toc
Remove solvers and keep only problem setup
2 parents b36685b + 69b5e8a commit 5faef2f

File tree

194 files changed

+6353
-459871
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+6353
-459871
lines changed

.travis.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ addons:
3636
# - julia -e 'cd(Pkg.dir("TrajectoryOptimization")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
3737

3838

39-
jobs:
40-
include:
41-
- stage: "Documentation"
42-
julia: 1.3
43-
os: linux
44-
script:
45-
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
46-
Pkg.instantiate()'
47-
- julia --project=docs/ docs/make.jl
48-
after_success: skip
39+
# jobs:
40+
# include:
41+
# - stage: "Documentation"
42+
# julia: 1.3
43+
# os: linux
44+
# script:
45+
# - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
46+
# Pkg.instantiate()'
47+
# - julia --project=docs/ docs/make.jl
48+
# after_success: skip

Project.toml

Lines changed: 4 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,21 @@
11
name = "TrajectoryOptimization"
22
uuid = "c79d492b-0548-5874-b488-5a62c1d9d0ca"
3-
version = "0.2.0"
3+
version = "0.3.0"
44

55
[deps]
6-
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
7-
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
8-
CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298"
9-
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
106
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
11-
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
12-
FFMPEG = "c87230d0-a227-11e9-1b43-d7ebe4e7570a"
13-
Formatting = "59287772-0a20-5a39-b81b-1366585eb4c0"
147
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
15-
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
16-
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
17-
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
188
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
19-
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
209
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
21-
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
22-
Quaternions = "94ee1d12-ae83-5a48-8b1c-48b8ff168ae0"
23-
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
24-
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
25-
Rotations = "6038ab10-8711-5258-84ad-4b1120ba62dc"
10+
RobotDynamics = "38ceca67-d8d3-44e8-9852-78a5596522e1"
2611
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2712
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
28-
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
29-
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
30-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3113
UnsafeArrays = "c4a57d5a-5b31-53a6-b365-19f8c011fbd6"
3214

3315
[compat]
34-
BenchmarkTools = "0.4"
35-
Combinatorics = "1"
36-
CoordinateTransformations = "0.5,0.6"
37-
Distributions = "0.23"
3816
DocStringExtensions = "0.8"
39-
Documenter = "0.24"
40-
FFMPEG = "0.3"
41-
Formatting = "0.4"
4217
ForwardDiff = "0.10"
43-
Interpolations = "0.12"
44-
Ipopt = "0.6.0"
45-
IterTools = "1"
4618
MathOptInterface = "0.9"
47-
Parameters = "0.12"
48-
Quaternions = "0.4"
49-
RecipesBase = "1"
50-
Rotations = "0.13,1.0"
51-
StaticArrays = "0.12.3"
52-
StatsBase = "0.33"
19+
RobotDynamics = "0.1.2"
20+
StaticArrays = "0.12"
5321
UnsafeArrays = "1"
54-
julia = "1.1.0"
55-
56-
[extras]
57-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
58-
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
59-
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
60-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
61-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
62-
63-
[targets]
64-
test = ["LinearAlgebra", "SparseArrays", "Random", "Test", "Logging", "ForwardDiff"]

benchmark/benchmark_results.md

Lines changed: 0 additions & 71 deletions
This file was deleted.

benchmark/benchmarks.jl

Lines changed: 0 additions & 63 deletions
This file was deleted.

benchmark/run_benchmarks.jl

Lines changed: 0 additions & 4 deletions
This file was deleted.

benchmark/tune.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

controllers/rbstate.jl

Lines changed: 0 additions & 117 deletions
This file was deleted.

0 commit comments

Comments
 (0)