/* ---------------------------------------------------------------------
*
- * Copyright (C) 2010 - 2013 by the deal.II authors
+ * Copyright (C) 2010 - 2013, 2015 by the deal.II authors
*
* This file is part of the deal.II library.
*
// @sect3{The <code>main()</code> function}
//
-// The main function looks almost the same as in all other programs. In
-// particular, it is essentially the same as in step-31 where we also explain
-// the need to initialize the MPI subsystem.
-int main (int argc, char *argv[])
+// The main function looks almost the same as in all other programs:
+int main ()
{
try
{
deallog.depth_console (0);
- Utilities::MPI::MPI_InitFinalize mpi_initialization (argc, argv);
-
TwoPhaseFlowProblem<2> two_phase_flow_problem(1);
two_phase_flow_problem.run ();
}