• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inst/H06-Feb-2020-1,133727

man/H10-May-2018-210156

tests/H10-May-2018-9268

DESCRIPTIONH A D06-Feb-2020827 2423

MD5H A D06-Feb-20202.6 KiB3635

README.mdH A D10-May-20181.7 KiB6037

README.md

1# RcppProgress
2[![Build Status](https://travis-ci.org/kforner/rcpp_progress.svg?branch=dev)](https://travis-ci.org/kforner/rcpp_progress?branch=dev)
3[![codecov](https://codecov.io/github/kforner/rcpp_progress/coverage.svg?branch=dev)](https://codecov.io/github/kforner/rcpp_progress?branch=dev)
4[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/RcppProgress)](https://cran.r-project.org/package=RcppProgress)
5
6a R package that provides a c++ interruptible progress bar with OpenMP support for c++ code in R packages
7
8## example
9see a detailed example on Rcpp Gallery:
10http://gallery.rcpp.org/articles/using-rcppprogress/
11
12## How to build
13
14Prerequisites:
15
16- OpenMP support to use the multithreaded parallelized version. OpenMP is available in GCC >= 4.2
17
18Just install it the usual way.
19
20If you want more control, unarchive it, cd to the source directory, then type
21R CMD INSTALL . in the console.
22
23
24## Contribute
25Send me a pull request with at least one test or example
26
27
28## For developers
29
30### tests and check
31
32If you have all the RcppProgress dependencies (and suggests) installed:
33
34type:
35 - `make tests`: to run the tests
36 - `make check`: to check the package
37
38### docker-checker
39
40A Dockerfile (<docker_checker/Dockerfile>) is provided to help building the
41dev environment (built on rocker/r-devel) in which to develop
42and test RcppProgress.
43
44type:
45
46 - `make docker/build`: to build the docker
47 - `make docker/run`: to run a shell in the docker with the current dir mounted
48 	inside
49 - `make docker/check`: to check the package inside the docker
50 - `make docker/tests`: to run test tests of the package inside the docker
51
52### test on windows using rhub
53
54```
55make docker/run
56make check_rhub_windows
57```
58
59
60