-
Notifications
You must be signed in to change notification settings - Fork 16
Release v0.1.1 #65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v0.1.1 #65
Conversation
frapac
commented
May 1, 2016
- improve sphinx documentation
- improve coverage of unit-tests
- fix some messy code in SDDPoptimize.jl
- add cuts pruning
- remove deprecated code and examples
Add cuts pruning to SDDP
Update sphinx documentation
+ remove deprecated error in SDDPoptimize + remove deprecated function in noise.jl + update backward pass
Improve coverage of unit-testing
Current coverage is 91.36%
@@ master #65 diff @@
========================================
Files 8 8
Lines 638 648 +10
Methods 0 0
Branches 0 0
========================================
+ Hits 545 592 +47
+ Misses 93 56 -37
Partials 0 0
|
|
|
||
| Install a linear programming solver | ||
| ----------------------------------- | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If Clp is installed by the Pkg.clone above we should state it.
doc/quickstart.rst
Outdated
|
|
||
| and we consider the following initial position:: | ||
|
|
||
| X0 = [50, 50] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Explain why there is two values ?
| :code:`costsddp` returns the value of costs along each scenario, and :code:`stocks` the evolution of each stock along time. | ||
|
|
||
| .. _JuMP: http://jump.readthedocs.io/en/latest/installation.html#coin-or-clp-and-cbc | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finish with a plot of the trajectories, and an estimation of the gap given by the strategy.
| Polyhedral functions where cuts will be removed | ||
| """ | ||
| function prune_cuts!(model::SPModel, params::SDDPparameters, V::Vector{PolyhedralFunction}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"exact_prune_cuts!" would be more precise
|
Great work ! |