-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4aa39e
commit a8d30b7
Showing
12 changed files
with
57 additions
and
82 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
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,7 +1,7 @@ | ||
Package: eaf | ||
Type: Package | ||
Title: Plots of the Empirical Attainment Function | ||
Version: 2.5.0.9000 | ||
Version: 2.5.1 | ||
Authors@R: c(person("Manuel", "López-Ibáñez", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-9974-1295")), | ||
|
@@ -30,7 +30,7 @@ URL: https://mlopez-ibanez.github.io/eaf/, https://github.com/MLopez-Ibanez/eaf | |
LazyLoad: true | ||
LazyData: true | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.2 | ||
Roxygen: list(markdown = TRUE) | ||
SystemRequirements: GNU make, Gnu Scientific Library | ||
RdMacros: Rdpack | ||
|
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,6 @@ | ||
# eaf (development version) | ||
# eaf 2.5.1 | ||
|
||
* Fix Clang warning. | ||
|
||
# eaf 2.5 | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,12 @@ | ||
#!/bin/sh | ||
rm -f config.* confdefs.h tests/testthat/*.pdf \ | ||
src/*.o src/*.so src/Makevars src/config.h src/symbols.rds \ | ||
inst/doc/*.blg inst/doc/*.bbl *-Ex.R | ||
inst/doc/*.blg inst/doc/*.bbl *-Ex.R \ | ||
src/eaf/eaf \ | ||
src/mo-tools/dominatedsets \ | ||
src/mo-tools/epsilon \ | ||
src/mo-tools/igd \ | ||
src/mo-tools/ndsort \ | ||
src/mo-tools/nondominated | ||
|
||
rm -rf autom4te.cache |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -81,14 +81,16 @@ static void usage(void) | |
|
||
static void version(void) | ||
{ | ||
printf("%s version %s" | ||
#ifdef MARCH | ||
" (optimised for "MARCH")" | ||
#endif | ||
#ifndef VERSION | ||
#define VERSION "unknown" | ||
#endif | ||
"\n\n", program_invocation_short_name, VERSION); | ||
#ifdef MARCH | ||
#define OPTIMISED_FOR_STR " (optimised for "MARCH")" | ||
#else | ||
#define OPTIMISED_FOR_STR "" | ||
#endif | ||
printf("%s version " VERSION OPTIMISED_FOR_STR | ||
"\n\n", program_invocation_short_name); | ||
printf( | ||
"Copyright (C) 2009\n" | ||
"Carlos Fonseca <[email protected]>\n" | ||
|
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 +1 @@ | ||
292 | ||
292M |
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,17 +1,8 @@ | ||
execs <- c(file.path("eaf", "eaf"), | ||
file.path("mo-tools", c("epsilon","igd","dominatedsets","nondominated","ndsort"))) | ||
|
||
if (WINDOWS) execs <- paste0(execs, ".exe") | ||
if (any(file.exists(execs))) { | ||
dest <- file.path(R_PACKAGE_DIR, paste0('bin', R_ARCH)) | ||
files <- Sys.glob(paste0("*", SHLIB_EXT)) | ||
if (any(file.exists(files))) { | ||
dest <- file.path(R_PACKAGE_DIR, paste0('libs', R_ARCH)) | ||
dir.create(dest, recursive = TRUE, showWarnings = FALSE) | ||
file.copy(execs, dest, overwrite = TRUE) | ||
file.copy(files, dest, overwrite = TRUE) | ||
} | ||
|
||
files <- Sys.glob(paste0("*", SHLIB_EXT)) | ||
dest <- file.path(R_PACKAGE_DIR, paste0('libs', R_ARCH)) | ||
dir.create(dest, recursive = TRUE, showWarnings = FALSE) | ||
file.copy(files, dest, overwrite = TRUE) | ||
if (file.exists("symbols.rds")) { | ||
if (file.exists("symbols.rds")) | ||
file.copy("symbols.rds", dest, overwrite = TRUE) | ||
} |