-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
12 changed files
with
147 additions
and
36 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,10 +1,10 @@ | ||
Package: Rcppsbmod | ||
Package: sundialr | ||
Type: Package | ||
Title: Provides a Wrapper Around CVODE from Sundials Library | ||
Title: Ordinary Differential Equation Solvers (ODE) from Sundials C Library in R | ||
Version: 0.1.0 | ||
Author: Satya | ||
Maintainer: Satya <[email protected]> | ||
Description: Provides a way to call the CVODE function in SUNDIALS C ODE solving library. | ||
Author: Satyaprakash Nayak | ||
Maintainer: Satyaprakash Nayak <[email protected]> | ||
Description: Provides a way to call the functions in SUNDIALS C ODE solving library (developed by Lawrence Livermore National Laboratory) in R. Currently ODE solver, CVODE, and routine to perform sensitivity analysis, CVODES, from the library can be accessed. | ||
License: MIT + file LICENSE | ||
LazyData: TRUE | ||
Imports: | ||
|
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,3 +1,3 @@ | ||
exportPattern("^[[:alpha:]]+") | ||
importFrom(Rcpp, evalCpp) | ||
useDynLib(Rcppsbmod) | ||
useDynLib(sundialr) |
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,3 +1,3 @@ | ||
# Rcppsbmod | ||
# sundialr | ||
|
||
A wrapper around the SUNDIALS ODE solving library. | ||
A wrapper around the SUNDIALS ODE solving C library. |
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
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
File renamed without changes.
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