1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
\name{test_sequential}
\alias{test_sequential}
\title{
Test/example of using RcppProgress in sequential code, i.e not in multithreaded code
}
\description{
Test function for the package rngOpenMP in a sequential mode.
}
\usage{
test_sequential(max=100, nb=1000, display_progress=TRUE)
}
\arguments{
\item{max}{ number of long computation jobs to perform }
\item{nb}{ number of interruptible steps a long computaton job is made of }
\item{display_progress}{ whether to display the progress bar or not }
}
\details{
Will perform max long jobs made of nb interruptible steps.
The jobs are performed sequentially. The computation can be interrupted by the user.
}
\value{
None
}
\author{
Karl Forner
}
|