Introduction
Statistics
Contact
Development
Disclaimer
Help
gopher.rbfh.de home page
#include <vector>
#include <mptl.h>
#include <mptl_algo.h>
#include <mptl_qsort.h>
int main (int argc, char * const argv[])
{
mptl::setNumThreads(2);
std::vector<int> zahlen(100000);
mptl::sort(zahlen.begin(), zahlen.end());
return 0;
}