~blechta/dolfin/serial-meshes

« back to all changes in this revision

Viewing changes to dolfin/fem/DofMapBuilder.cpp

  • Committer: Garth N. Wells
  • Date: 2013-01-06 16:13:41 UTC
  • Revision ID: gnw20@cam.ac.uk-20130106161341-lauw0ktyrt2adfy3
Remove some debug

Show diffs side-by-side

added added

removed removed

Lines of Context:
443
443
  }
444
444
 
445
445
  // Reorder dofs locally
446
 
  std::cout << "Calling re-order locally: " << MPI::process_number() << std::endl;
447
446
  const std::vector<std::size_t> dof_remap
448
447
      = BoostGraphOrdering::compute_cuthill_mckee(graph, true);
449
 
  std::cout << "End calling re-order locally: " << MPI::process_number() << std::endl;
450
448
 
451
449
  // Map from old to new index for dofs
452
450
  boost::unordered_map<std::size_t, std::size_t> old_to_new_dof_index;