-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from mailund/release-0.1.0
Release 0.1.0
- Loading branch information
Showing
35 changed files
with
2,715 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ | |
^cleanup\.R$ | ||
^experiments\.R$ | ||
^.imdone$ | ||
^cran-comments\.md$ | ||
^docs$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
Package: dynprog | ||
Version: 0.0.0.9000 | ||
Title: Dynamic Programming DSL | ||
Description: A domain-specific langauge for specifying dynamic-programming | ||
algorithms. | ||
Version: 0.1.0 | ||
Title: Dynamic Programming Domain-Specific Language | ||
Description: A domain-specific language for specifying translating recursions | ||
into dynamic-programming algorithms. See | ||
<https://en.wikipedia.org/wiki/Dynamic_programming> for a description | ||
of dynamic programming. | ||
Authors@R: person("Thomas", "Mailund", | ||
email = "[email protected]", | ||
role = c("aut", "cre")) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# dynprog 0.0.0.9000 | ||
# dynprog 0.1.0 | ||
|
||
* Initial package setup. | ||
* Initial release. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# dynprog: Domain-specific langauge for specifying dynamic programming algorithms. | ||
|
||
Implements a small domain-specific language that translates recursions into | ||
dynamic programming computations. | ||
|
||
This is a resubmission with changes based on email. I have: | ||
|
||
- Added examples so "checking examples" should not show NONE. | ||
- %where% is the only exported function, so the examples are there | ||
- I have added a reference to Dynamic Programming on Wikipedia | ||
(it is a common algorithmic technique, so there is no obvious | ||
paper to quote; the paper introducing it is dated compared to | ||
modern algorithmic textbooks). | ||
|
||
## Test environments | ||
* local OS X install, R 3.4.4 | ||
* ubuntu 14.04 (on travis-ci), R 3.4.4 | ||
* win-builder (devel and release) | ||
* RHub: | ||
|
||
- Fedora Linux, R-devel, clang, gfortran | ||
- Ubuntu Linux 16.04 LTS, R-release, GCC | ||
- Windows Server 2008 R2 SP1, R-devel, 32/64 bit | ||
|
||
On RHub on Windows a warning that Pandoc cannot | ||
find the badges images (which Pandoc always complain about on Windows). | ||
|
||
Other than that, the package checks. | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 1 note | ||
|
||
* This is a new release. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.