| 31 | const int DEDICATE_CONTROL_AT = 1000; |
| 32 | |
| 33 | void NetworkSequenceCollection::loadSequences() |
| 34 | { |
| 35 | Timer timer("LoadSequences"); |
| 36 | for (unsigned i = opt::rank; i < opt::inFiles.size(); |
| 37 | i += opt::numProc) |
| 38 | AssemblyAlgorithms::loadSequences(this, opt::inFiles[i]); |
| 39 | } |
| 40 | |
| 41 | /** Receive, process, send, and synchronize. |
| 42 | * @return the number of inflight messages |
nothing calls this directly
no test coverage detected