1# Export all names unless they start with a dot
2exportPattern("^[^.]")
3
4importFrom("graphics", "abline", "axis", "plot", "rect", "segments")
5importFrom("stats", "runif")
6importFrom("utils", "flush.console")
7importFrom("parallel", "detectCores") ## really just to get `[,cluster`!
8
9S3method(plot, snowTimingData)
10S3method(print, snowTimingData)
11
12S3method(closeNode, SOCKnode)
13S3method(closeNode, default)
14
15S3method(recvData, MPInode)
16S3method(recvData, SOCKnode)
17
18S3method(recvOneData, MPIcluster)
19S3method(recvOneData, SOCKcluster)
20
21S3method(sendData, MPInode)
22S3method(sendData, SOCKnode)
23
24S3method(stopCluster, MPIcluster)
25S3method(stopCluster, default)
26S3method(stopCluster, spawnedMPIcluster)
27
28