Skip to content
Snippets Groups Projects
Commit 9a6ae39e authored by Claus Jonathan Fritzemeier's avatar Claus Jonathan Fritzemeier
Browse files

multiDel now doesnt use require any more

parent faab9173
No related branches found
No related tags found
No related merge requests found
Package: sybil Package: sybil
Type: Package Type: Package
Title: sybil - Efficient Constrained Based Modelling in R Title: sybil - Efficient Constrained Based Modelling in R
Version: 1.2.9 Version: 1.2.10
Date: 2014-11-19 Date: 2015-03-30
Authors@R: c(person("Gabriel", "Gelius-Dietrich", role = c("aut", "cre"), email = "geliudie@uni-duesseldorf.de"), Authors@R: c(person("Gabriel", "Gelius-Dietrich", role = c("aut", "cre"), email = "geliudie@uni-duesseldorf.de"),
person(c("C.", "Jonathan"), "Fritzemeier", role = "ctb"), person(c("C.", "Jonathan"), "Fritzemeier", role = "ctb"),
person("Rajen", "Piernikarczyk", role = "ctb"), person("Rajen", "Piernikarczyk", role = "ctb"),
......
...@@ -85,10 +85,15 @@ multiDel <- function(model, nProc = 2, ...@@ -85,10 +85,15 @@ multiDel <- function(model, nProc = 2,
# load library 'parallel' # load library 'parallel'
if(!isTRUE(require("parallel"))) { if (!requireNamespace("parallel", quietly = TRUE)) {
stop("package parallel not found.") stop("package parallel not found.")
} }
# unwanted conditioning for loading packages...
# if(!isTRUE(require("parallel"))) {
# stop("package parallel not found.")
# }
# number of cores # number of cores
ncore <- parallel::detectCores() ncore <- parallel::detectCores()
......
...@@ -7,9 +7,11 @@ ...@@ -7,9 +7,11 @@
\newcommand{\CRANpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}} \newcommand{\CRANpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
% ---------------------------------------------------------------------------- % % ---------------------------------------------------------------------------- %
\section{Changes in version 1.2.10 2015-03-02}{ \section{Changes in version 1.2.10 2015-03-30}{
\itemize{ \itemize{
\item \code{findExchangeReact} can now deal with bigger matrices \item \code{findExchangeReact} can now deal with real big matrices (>30.000 columns).
\item additional example for readProb and writeProb.
\item modified \code{multiDel} to not use \code{require}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment