Skip to content

Commit 914a75f

Browse files
authored
Switch to Project.toml
* switch from require to project.toml * add to project.toml * set random seed in tests
1 parent abddb72 commit 914a75f

5 files changed

Lines changed: 41 additions & 47 deletions

File tree

Manifest.toml

Lines changed: 21 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Project.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name = "DifferentialDynamicProgramming"
2+
uuid = "9cd584b6-1a68-5b24-b787-24af5fbbf48b"
3+
author = ["Fredrik Bagge Carlson <baggepinnen@gmail.com>"]
4+
repo = "https://github.com/baggepinnen/DifferentialDynamicProgramming.jl.git"
5+
version = "0.4.0"
6+
7+
[deps]
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9+
LinearTimeVaryingModelsBase = "5e7a79f3-ee03-5374-bd42-db9a52b6e959"
10+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
11+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
12+
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
13+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
14+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
15+
ValueHistories = "98cad3c8-aec3-5f06-8e41-884608649ab7"
16+
17+
[compat]
18+
julia = "1.1"

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# DifferentialDynamicProgramming
22

3-
[![DifferentialDynamicProgramming](http://pkg.julialang.org/badges/DifferentialDynamicProgramming_0.4.svg)](http://pkg.julialang.org/?pkg=DifferentialDynamicProgramming)
4-
[![DifferentialDynamicProgramming](http://pkg.julialang.org/badges/DifferentialDynamicProgramming_0.5.svg)](http://pkg.julialang.org/?pkg=DifferentialDynamicProgramming)
5-
[![DifferentialDynamicProgramming](http://pkg.julialang.org/badges/DifferentialDynamicProgramming_0.6.svg)](http://pkg.julialang.org/?pkg=DifferentialDynamicProgramming)
63
[![Build Status](https://travis-ci.org/baggepinnen/DifferentialDynamicProgramming.jl.svg?branch=master)](https://travis-ci.org/baggepinnen/DifferentialDynamicProgramming.jl)
74

85
[![Coverage Status](https://coveralls.io/repos/github/baggepinnen/DifferentialDynamicProgramming.jl/badge.png?branch=master)](https://coveralls.io/github/baggepinnen/DifferentialDynamicProgramming.jl?branch=master)

REQUIRE

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

test/test_readme.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using Test, Statistics, LinearAlgebra
1+
using Test, Statistics, LinearAlgebra, Random
22
# make stable linear dynamics
3+
Random.seed!(0)
34
eye = DifferentialDynamicProgramming.eye
45
costs = map(1:10) do MCiteration
56
h = .01 # time step

0 commit comments

Comments
 (0)