forked from sgsokol/r2sundials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Serguei Sokol <[email protected]>
- Loading branch information
Showing
203 changed files
with
36,007 additions
and
6,336 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
todo.txt | ||
gdb.txt | ||
NAMESPACE.empty | ||
NAMESPACE.save | ||
^.*\.save$ | ||
^\.git.*$ | ||
^autom.*$ | ||
Readme.Rmd | ||
Readme.md | ||
gdb.txt | ||
^rm$ | ||
^.*\.toremove$ | ||
lib-5.0.0 |
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,8 +1,8 @@ | ||
Package: r2sundials | ||
Type: Package | ||
Title: Wrapper for 'SUNDIALS' Solving ODE and Sensitivity Problem | ||
Version: 5.0.0-10 | ||
Date: 2021-05-17 | ||
Version: 6.5.0-3 | ||
Date: 2023-03-21 | ||
Authors@R: c( | ||
person("Serguei", "Sokol", role=c("cre", "aut"), email="[email protected]"), | ||
person("Carol S.", "Woodward", role="ctb"), | ||
|
@@ -33,7 +33,9 @@ Authors@R: c( | |
person("Chris", "White", role="ctb"), | ||
person("Lawrence Livermore National Security", role="cph"), | ||
person("Southern Methodist University", role="cph"), | ||
person("INRAE", role="cph") | ||
person("INSA", role="cph"), | ||
person("INRAE", role="cph"), | ||
person("CNRS", role="cph") | ||
) | ||
Maintainer: Serguei Sokol <[email protected]> | ||
Description: Wrapper for widely used 'SUNDIALS' software (SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers) and more precisely to its 'CVODES' solver. It is aiming to solve ordinary differential equations (ODE) and optionally pending forward sensitivity problem. The wrapper is made 'R' friendly by allowing to pass custom parameters to user's callback functions. Such functions can be both written in 'R' and in 'C++' ('RcppArmadillo' flavor). In case of 'C++', performance is greatly improved so this option is highly advisable when performance matters. If provided, Jacobian matrix can be calculated either in dense or sparse format. In the latter case 'rmumps' package is used to solve corresponding linear systems. Root finding and pending event management are optional and can be specified as 'R' or 'C++' functions too. This makes them a very flexible tool for controlling the ODE system during the time course simulation. 'SUNDIALS' library was published in Hindmarsh et al. (2005) <doi:10.1145/1089014.1089020>. | ||
|
@@ -43,7 +45,7 @@ License: GPL (>=2) | |
Imports: Rcpp (>= 1.0.0) | ||
LinkingTo: Rcpp, RcppArmadillo, rmumps (>= 5.2.1-6) | ||
Suggests: RcppXPtrUtils, slam, RUnit, deSolve, RcppArmadillo | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.2.2 | ||
Encoding: UTF-8 | ||
NeedsCompilation: yes | ||
Biarch: FALSE |
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
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 @@ | ||
For SUNDIALS code: | ||
Copyright (c) 2002-2019, Lawrence Livermore National Security and Southern Methodist University. | ||
Copyright (c) 2002-2022, Lawrence Livermore National Security and Southern Methodist University. | ||
All rights reserved. | ||
|
||
For r2sundials wrapper: | ||
Copyright (c) 2020, INRAE/INSA/CNRS | ||
Copyright (c) 2023, INRAE/INSA/CNRS | ||
All rights reserved. |
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
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
Oops, something went wrong.