Learn R Programming

rmoo (version 0.3.2)

stopParallel: Stop Parallel Backend

Description

Stops the parallel backend and reverts to sequential execution.

Usage

stopParallel(cluster, ...)

Value

invisible(NULL), used for side effects.

Arguments

cluster

A cluster object, typically retrieved from attr(parallel, "cluster")

...

Additional arguments (currently unused).

Examples

Run this code
if (FALSE) {
  cl <- startParallel()
  stopParallel(attr(cl, "cluster"))
}

Run the code above in your browser using DataLab