Skip to content

Commit

Permalink
0.1.7 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
egarpor authored Sep 3, 2020
1 parent 43d2e86 commit 8aa1184
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Package: sdetorus
Type: Package
Title: Statistical Tools for Toroidal Diffusions
Version: 0.1.6
Date: 2020-08-26
Version: 0.1.7
Date: 2020-09-03
Authors@R: person("Eduardo", "García-Portugués", role = c("aut", "cre"),
email = "edgarcia@est-econ.uc3m.es",
email = "edgarcia@est-econ.uc3m.es",
comment = c(ORCID = "0000-0002-9224-4111"))
Description: Implementation of statistical methods for the estimation of
toroidal diffusions. Several diffusive models are provided, most of them
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# sdetorus 0.1.6

* Initial version

# sdetorus 0.1.7

* Fix the redefinition of arma::mat forwardSweepPeriodicTridiag() as arma::vec raising an "additional issue" on CRAN.
5 changes: 2 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@

0 errors | 0 warnings | 0 notes

* This is a new release.
* "Days since last update: 3" I am resubmitting to fix the additional issues (1 warning and 4 notes) appearing in https://www.stats.ox.ac.uk/pub/bdr/LTO/sdetorus.out

## Resubmission

This is a resubmission. In this version I have:

* Removed all instances of \dontrun{} in examples. Used if(identical(.Platform$GUI, "RStudio")) {} to avoid running 'manipulate' examples, as it requires to be run in RStudio, instead of relying in \dontrun.
* Commented save() statements in examples of logBesselI0Scaled.Rd.
* Fix the redefinition of arma::mat forwardSweepPeriodicTridiag() as arma::vec to avoid 1 warning and 4 notes in https://www.stats.ox.ac.uk/pub/bdr/LTO/sdetorus.out.
2 changes: 1 addition & 1 deletion src/crankNicolson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using namespace Rcpp;

// Declarations for solvePeriodicTridiag and forwardSweepPeriodicTridiag
arma::vec solvePeriodicTridiag(arma::vec a, arma::vec b, arma::vec c, arma::vec d, int LU);
arma::vec forwardSweepPeriodicTridiag(arma::vec a, arma::vec b, arma::vec c);
arma::mat forwardSweepPeriodicTridiag(arma::vec a, arma::vec b, arma::vec c);

//' @title Crank--Nicolson finite difference scheme for the 1D Fokker--Planck equation with periodic boundaries
//'
Expand Down

0 comments on commit 8aa1184

Please sign in to comment.