Skip to content

Commit abddb72

Browse files
authored
Fixrepeat (#14)
* Bump julia version to fix weird repeat bug * update travis * update readme
1 parent 7a7f192 commit abddb72

4 files changed

Lines changed: 5 additions & 10 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 1.0
7+
- 1.1
88
- nightly
99
notifications:
1010
email: false
@@ -14,6 +14,7 @@ git:
1414
## uncomment the following lines to allow failures on nightly julia
1515
## (tests will run but not make your overall status red)
1616
matrix:
17+
fast_finish: true
1718
allow_failures:
1819
- julia: nightly
1920
# uncomment the following lines to override the default test script

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,7 @@
1010
## Installation
1111
The package is registered and can be added with
1212
`] add DifferentialDynamicProgramming`
13-
To get the latest updates, install using
14-
```
15-
] add https://github.com/baggepinnen/LinearTimeVaryingModelsBase.jl
16-
add DifferentialDynamicProgramming#master
17-
```
18-
13+
The latest version is formally compatible with Julia v1.1+ (but probably works well for julia v1.0 as well if you `dev` it).
1914

2015
## Demo functions
2116
The following demo functions are provided
@@ -124,4 +119,3 @@ The code above was extended with KL-divergence constrained optimization for the
124119
url = {https://lup.lub.lu.se/search/publication/ffb8dc85-ce12-4f75-8f2b-0881e492f6c0},
125120
}
126121
```
127-

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.7
1+
julia 1.1
22
LinearTimeVaryingModelsBase
33
Requires
44
ValueHistories

src/DifferentialDynamicProgramming.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module DifferentialDynamicProgramming
22
using LinearTimeVaryingModelsBase, Requires, ValueHistories, LinearAlgebra, Statistics, Printf
33
const DEBUG = false # Set this flag to true in order to print debug messages
4-
# package code goes here
4+
55

66
export QPTrace, boxQP, demoQP, iLQG,iLQGkl, demo_linear, demo_linear_kl, demo_pendcart, GaussianPolicy
77

0 commit comments

Comments
 (0)