diff --git a/applications/ebos/eclcpgridmanager.hh b/applications/ebos/eclcpgridmanager.hh index 4d73e389b..328ecf869 100644 --- a/applications/ebos/eclcpgridmanager.hh +++ b/applications/ebos/eclcpgridmanager.hh @@ -134,18 +134,10 @@ public: int mpiSize = 1; MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank); MPI_Comm_size(MPI_COMM_WORLD, &mpiSize); - if (mpiSize > 1) { - // TODO: always load balance as soon as Dune::CpGrid works correctly for the - // Norne deck! - if (mpiRank == 0) - std::cerr << "Since Dune::CpGrid is buggy when load balancing, " - << "ebos currently disables parallelism when using Dune::CpGrid.\n"; - std::exit(1); - // distribute the grid and switch to the distributed view. - grid_->loadBalance(); - grid_->switchToDistributedView(); - } + // distribute the grid and switch to the distributed view. + grid_->loadBalance(); + grid_->switchToDistributedView(); #endif cartesianIndexMapper_ = new CartesianIndexMapper(*grid_);