Skip to content

Commit

Permalink
Change data storage website
Browse files Browse the repository at this point in the history
  • Loading branch information
ewarchul committed May 11, 2021
1 parent 85a77cd commit f4b5b1a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: cecs
Title: R Interface for the C Implementation of CEC Benchmark Functions
Version: 0.2.0
Version: 0.2.1
Authors@R: c(
person("Eryk", "Warchulski", role = c("aut", "cre"), email = "[email protected]"),
person("Dariusz", "Jagodziński", role = c("cph"), email = "[email protected]"),
Expand Down
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 0.2.1

## Changes

* change data storage website

# 0.2.0

## Changes

* extend package with new benchmarks: 2015 and 2019
* clean up C codebase
* fix performance and memory management issues

# 0.1.0 (unreleased)

* initial version of the package.
3 changes: 2 additions & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ clean <- function() {
#' @param cec name of benchmark

download_data <- function(cec) {
url <- stringr::str_glue("http://home.elka.pw.edu.pl/~ewarchul/{cec}.zip")
url <-
stringr::str_glue("https://github.com/ewarchul/cec/raw/main/data/{cec}.zip")
destfile <- stringr::str_glue(
'{system.file("extdata/", package = "cecs")}{cec}.zip'
)
Expand Down

0 comments on commit f4b5b1a

Please sign in to comment.