Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sybil
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
general
ccb
sybil
Commits
9a6ae39e
Commit
9a6ae39e
authored
10 years ago
by
Claus Jonathan Fritzemeier
Browse files
Options
Downloads
Patches
Plain Diff
multiDel now doesnt use require any more
parent
faab9173
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
DESCRIPTION
+2
-2
2 additions, 2 deletions
DESCRIPTION
R/multiDel.R
+7
-2
7 additions, 2 deletions
R/multiDel.R
inst/NEWS.Rd
+4
-2
4 additions, 2 deletions
inst/NEWS.Rd
with
13 additions
and
6 deletions
DESCRIPTION
+
2
−
2
View file @
9a6ae39e
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: 201
4-11-19
Date: 201
5-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"),
...
...
This diff is collapsed.
Click to expand it.
R/multiDel.R
+
7
−
2
View file @
9a6ae39e
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
inst/NEWS.Rd
+
4
−
2
View file @
9a6ae39e
...
@@ -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-0
2
}{
\section{Changes in version 1.2.10 2015-03-
3
0}{
\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}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment