Skip to content

Commit

Permalink
Adding tests and improving website.
Browse files Browse the repository at this point in the history
  • Loading branch information
melinavidoni committed Jun 5, 2018
1 parent 290b6d8 commit 56660ef
Show file tree
Hide file tree
Showing 32 changed files with 431 additions and 320 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@
language: R
sudo: false
cache: packages

r_packages:
- covr

after_success:
- Rscript -e 'library(covr); codecov()'

codecov:
token: b6939c0b-8d6c-4259-9974-3a2755ee8253
6 changes: 4 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ Depends: R (>= 3.4.0)
Imports: dplyr,
magrittr,
foreach,
doParallel
doParallel,
igraph
License: GPL-3 + file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
Suggests: knitr,
rmarkdown,
testthat,
covr
covr,
ggplot2
VignetteBuilder: knitr
URL: https://github.com/melvidoni/rsppfp
BugReports: https://github.com/melvidoni/rsppfp/issues
5 changes: 5 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ export(get_shortest_path)
export(modify_graph_hsu)
export(modify_graph_vd)
export(parse_vpath)
importFrom(doParallel,registerDoParallel)
importFrom(foreach,"%do%")
importFrom(foreach,"%dopar%")
importFrom(foreach,foreach)
importFrom(igraph,E)
importFrom(igraph,graph_from_data_frame)
importFrom(igraph,shortest_paths)
importFrom(magrittr,"%>%")
importFrom(parallel,makeCluster)
importFrom(parallel,stopCluster)
14 changes: 8 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# rsppfp 2.0.0.0

* Added a `NEWS.md` file to track changes to the package.



## RSPPFP 1.0.0.0
First stable release of advanced implementation of R-SPPFP, released on June 2018.

### Major Changes
First stable release of advanced implementation of R-SPPFP! Includes the following functions:
- Transformation algorithms (Villeneuve & Desaulniers, and Hsu's et al.).
- Basic parsing functions: graph-to-digraph, and vpath translation.
- Integration functions: equivalent nodes selection, and igraph's integration.
Loading

0 comments on commit 56660ef

Please sign in to comment.