-
Notifications
You must be signed in to change notification settings - Fork 130
ToposortEngine.h
schlangster edited this page May 24, 2014
·
1 revision
#include "react/engine/ToposortEngine.h"
Contains the toposort engine classes.
namespace react
{
// Single-threaded sequential updating
class ToposortEngine<sequential>;
// Multi-threaded parallel updating
class ToposortEngine<parallel>;
// Queuing of input from multiple threads
class ToposortEngine<sequential_queue>;
class ToposortEngine<parallel_queue>;
// Pipelining of input from multiple threads (experimental)
class ToposortEngine<parallel_pipeline>;
}