├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── RcppExports.R └── altrepisode.R ├── README.Rmd ├── README.md ├── altrepisode.Rproj ├── man ├── doubles.Rd └── lazy_abs.Rd └── src ├── .gitignore ├── RcppExports.cpp ├── altrepisode.h ├── lazy_abs.cpp └── stdvec_double.cpp /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Romain François 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/altrepisode.R: -------------------------------------------------------------------------------- 1 | #' @useDynLib altrepisode, .registration=TRUE 2 | #' @importFrom Rcpp sourceCpp 3 | NULL 4 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/README.md -------------------------------------------------------------------------------- /altrepisode.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/altrepisode.Rproj -------------------------------------------------------------------------------- /man/doubles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/man/doubles.Rd -------------------------------------------------------------------------------- /man/lazy_abs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/man/lazy_abs.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/altrepisode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/src/altrepisode.h -------------------------------------------------------------------------------- /src/lazy_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/src/lazy_abs.cpp -------------------------------------------------------------------------------- /src/stdvec_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/altrepisode/HEAD/src/stdvec_double.cpp --------------------------------------------------------------------------------