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