Skip to content
Snippets Groups Projects
Commit c2eb2788 authored by Christian Engwer's avatar Christian Engwer
Browse files

initialize MPI

[[Imported from SVN: r6418]]
parent 1210bac7
Branches
Tags
No related merge requests found
......@@ -3,6 +3,7 @@
#include <assert.h>
#include <iostream>
#include <dune/common/lru.hh>
#include <dune/common/mpihelper.hh>
void lru_test()
{
......@@ -34,8 +35,10 @@ void lru_test()
std::cout << "... passed\n";
}
int main ()
int main (int argc, char** argv)
{
Dune::MPIHelper::instance(argc,argv);
lru_test();
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment