Reference documentation for deal.II version 9.1.0-pre
dof_renumbering.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2003 - 2018 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_dof_renumbering_h
17 #define dealii_dof_renumbering_h
18 
19 
20 #include <deal.II/base/config.h>
21 
22 #include <deal.II/base/exceptions.h>
23 #include <deal.II/base/point.h>
24 
25 #include <deal.II/dofs/dof_handler.h>
26 
27 #include <deal.II/hp/dof_handler.h>
28 
29 #include <vector>
30 
31 DEAL_II_NAMESPACE_OPEN
32 
345 namespace DoFRenumbering
346 {
352  template <class Iterator, int dim>
354  {
359  : dir(dir)
360  {}
364  bool
365  operator()(const Iterator &c1, const Iterator &c2) const
366  {
367  const Tensor<1, dim> diff = c2->center() - c1->center();
368  return (diff * dir > 0);
369  }
370 
371  private:
376  };
377 
378 
386  template <int dim>
388  {
393  : dir(dir)
394  {}
398  bool
400  const std::pair<Point<dim>, types::global_dof_index> &c2) const
401  {
402  const Tensor<1, dim> diff = c2.first - c1.first;
403  return (diff * dir > 0 || (diff * dir == 0 && c1.second < c2.second));
404  }
405 
406  private:
411  };
412 
413 
414 
428  namespace boost
429  {
441  template <typename DoFHandlerType>
442  void
443  Cuthill_McKee(DoFHandlerType &dof_handler,
444  const bool reversed_numbering = false,
445  const bool use_constraints = false);
446 
452  template <typename DoFHandlerType>
453  void
454  compute_Cuthill_McKee(std::vector<types::global_dof_index> &new_dof_indices,
455  const DoFHandlerType &,
456  const bool reversed_numbering = false,
457  const bool use_constraints = false);
458 
471  template <typename DoFHandlerType>
472  void
473  king_ordering(DoFHandlerType &dof_handler,
474  const bool reversed_numbering = false,
475  const bool use_constraints = false);
476 
481  template <typename DoFHandlerType>
482  void
483  compute_king_ordering(std::vector<types::global_dof_index> &new_dof_indices,
484  const DoFHandlerType &,
485  const bool reversed_numbering = false,
486  const bool use_constraints = false);
487 
499  template <typename DoFHandlerType>
500  void
501  minimum_degree(DoFHandlerType &dof_handler,
502  const bool reversed_numbering = false,
503  const bool use_constraints = false);
504 
509  template <typename DoFHandlerType>
510  void
512  std::vector<types::global_dof_index> &new_dof_indices,
513  const DoFHandlerType &,
514  const bool reversed_numbering = false,
515  const bool use_constraints = false);
516  } // namespace boost
517 
582  template <typename DoFHandlerType>
583  void
584  Cuthill_McKee(DoFHandlerType &dof_handler,
585  const bool reversed_numbering = false,
586  const bool use_constraints = false,
587  const std::vector<types::global_dof_index> &starting_indices =
588  std::vector<types::global_dof_index>());
589 
597  template <typename DoFHandlerType>
598  void
600  std::vector<types::global_dof_index> &new_dof_indices,
601  const DoFHandlerType &,
602  const bool reversed_numbering = false,
603  const bool use_constraints = false,
604  const std::vector<types::global_dof_index> &starting_indices =
605  std::vector<types::global_dof_index>());
606 
620  template <typename DoFHandlerType>
621  void
622  Cuthill_McKee(DoFHandlerType & dof_handler,
623  const unsigned int level,
624  const bool reversed_numbering = false,
625  const std::vector<types::global_dof_index> &starting_indices =
626  std::vector<types::global_dof_index>());
627 
659  template <typename DoFHandlerType>
660  void
661  component_wise(DoFHandlerType & dof_handler,
662  const std::vector<unsigned int> &target_component =
663  std::vector<unsigned int>());
664 
665 
672  template <typename DoFHandlerType>
673  void
674  component_wise(DoFHandlerType & dof_handler,
675  const unsigned int level,
676  const std::vector<unsigned int> &target_component =
677  std::vector<unsigned int>());
678 
684  template <int dim, int spacedim, typename CellIterator>
686  compute_component_wise(std::vector<types::global_dof_index> &new_dof_indices,
687  const CellIterator & start,
688  const typename identity<CellIterator>::type &end,
689  const std::vector<unsigned int> &target_component,
690  const bool is_level_operation);
691 
708  template <int dim, int spacedim>
709  void
711 
718  template <int dim, int spacedim>
719  void
720  block_wise(DoFHandler<dim, spacedim> &dof_handler, const unsigned int level);
721 
738  template <int dim, int spacedim>
739  void
741 
747  template <int dim, int spacedim, class ITERATOR, class ENDITERATOR>
749  compute_block_wise(std::vector<types::global_dof_index> &new_dof_indices,
750  const ITERATOR & start,
751  const ENDITERATOR & end,
752  bool is_level_operation);
753 
835  template <int dim>
836  void
837  hierarchical(DoFHandler<dim> &dof_handler);
838 
860  template <typename DoFHandlerType>
861  void
862  cell_wise(DoFHandlerType &dof_handler,
863  const std::vector<typename DoFHandlerType::active_cell_iterator>
864  &cell_order);
865 
897  template <typename DoFHandlerType>
898  void
900  std::vector<types::global_dof_index> &renumbering,
901  std::vector<types::global_dof_index> &inverse_renumbering,
902  const DoFHandlerType & dof_handler,
903  const std::vector<typename DoFHandlerType::active_cell_iterator>
904  &cell_order);
905 
910  template <typename DoFHandlerType>
911  void
912  cell_wise(DoFHandlerType & dof_handler,
913  const unsigned int level,
914  const std::vector<typename DoFHandlerType::level_cell_iterator>
915  &cell_order);
916 
921  template <typename DoFHandlerType>
922  void
924  std::vector<types::global_dof_index> &renumbering,
925  std::vector<types::global_dof_index> &inverse_renumbering,
926  const DoFHandlerType & dof_handler,
927  const unsigned int level,
928  const std::vector<typename DoFHandlerType::level_cell_iterator>
929  &cell_order);
930 
966  template <typename DoFHandlerType>
967  void
968  downstream(DoFHandlerType & dof_handler,
970  const bool dof_wise_renumbering = false);
971 
972 
978  template <typename DoFHandlerType>
979  void
980  downstream(DoFHandlerType & dof_handler,
981  const unsigned int level,
983  const bool dof_wise_renumbering = false);
984 
990  template <typename DoFHandlerType>
991  void
993  std::vector<types::global_dof_index> & new_dof_indices,
994  std::vector<types::global_dof_index> & reverse,
995  const DoFHandlerType & dof_handler,
997  const bool dof_wise_renumbering);
998 
1004  template <typename DoFHandlerType>
1005  void
1007  std::vector<types::global_dof_index> & new_dof_indices,
1008  std::vector<types::global_dof_index> & reverse,
1009  const DoFHandlerType & dof_handler,
1010  const unsigned int level,
1012  const bool dof_wise_renumbering);
1013 
1022  template <typename DoFHandlerType>
1023  void
1024  clockwise_dg(DoFHandlerType & dof_handler,
1026  const bool counter = false);
1027 
1032  template <typename DoFHandlerType>
1033  void
1034  clockwise_dg(DoFHandlerType & dof_handler,
1035  const unsigned int level,
1037  const bool counter = false);
1038 
1044  template <typename DoFHandlerType>
1045  void
1046  compute_clockwise_dg(std::vector<types::global_dof_index> &new_dof_indices,
1047  const DoFHandlerType & dof_handler,
1049  const bool counter);
1050 
1069  template <typename DoFHandlerType>
1070  void
1071  sort_selected_dofs_back(DoFHandlerType & dof_handler,
1072  const std::vector<bool> &selected_dofs);
1073 
1084  template <typename DoFHandlerType>
1085  void
1086  sort_selected_dofs_back(DoFHandlerType & dof_handler,
1087  const std::vector<bool> &selected_dofs,
1088  const unsigned int level);
1089 
1098  template <typename DoFHandlerType>
1099  void
1101  std::vector<types::global_dof_index> &new_dof_indices,
1102  const DoFHandlerType & dof_handler,
1103  const std::vector<bool> & selected_dofs);
1104 
1114  template <typename DoFHandlerType>
1115  void
1117  std::vector<types::global_dof_index> &new_dof_indices,
1118  const DoFHandlerType & dof_handler,
1119  const std::vector<bool> & selected_dofs,
1120  const unsigned int level);
1121 
1132  template <typename DoFHandlerType>
1133  void
1134  random(DoFHandlerType &dof_handler);
1135 
1143  template <typename DoFHandlerType>
1144  void
1145  compute_random(std::vector<types::global_dof_index> &new_dof_indices,
1146  const DoFHandlerType & dof_handler);
1147 
1179  template <typename DoFHandlerType>
1180  void
1181  subdomain_wise(DoFHandlerType &dof_handler);
1182 
1188  template <typename DoFHandlerType>
1189  void
1190  compute_subdomain_wise(std::vector<types::global_dof_index> &new_dof_indices,
1191  const DoFHandlerType & dof_handler);
1192 
1205  "The DoFHandler on which this function should work has not "
1206  "been initialized, i.e., it doesn't appear that DoF indices "
1207  "have been distributed on it.");
1208 
1215 
1223 } // namespace DoFRenumbering
1224 
1225 
1226 DEAL_II_NAMESPACE_CLOSE
1227 
1228 #endif
static::ExceptionBase & ExcInvalidComponentOrder()
void compute_downstream(std::vector< types::global_dof_index > &new_dof_indices, std::vector< types::global_dof_index > &reverse, const DoFHandlerType &dof_handler, const Tensor< 1, DoFHandlerType::space_dimension > &direction, const bool dof_wise_renumbering)
void downstream(DoFHandlerType &dof_handler, const Tensor< 1, DoFHandlerType::space_dimension > &direction, const bool dof_wise_renumbering=false)
void minimum_degree(DoFHandlerType &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false)
void compute_cell_wise(std::vector< types::global_dof_index > &renumbering, std::vector< types::global_dof_index > &inverse_renumbering, const DoFHandlerType &dof_handler, const std::vector< typename DoFHandlerType::active_cell_iterator > &cell_order)
void compute_king_ordering(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &, const bool reversed_numbering=false, const bool use_constraints=false)
void sort_selected_dofs_back(DoFHandlerType &dof_handler, const std::vector< bool > &selected_dofs)
void hierarchical(DoFHandler< dim > &dof_handler)
void component_wise(DoFHandlerType &dof_handler, const std::vector< unsigned int > &target_component=std::vector< unsigned int >())
types::global_dof_index compute_component_wise(std::vector< types::global_dof_index > &new_dof_indices, const CellIterator &start, const typename identity< CellIterator >::type &end, const std::vector< unsigned int > &target_component, const bool is_level_operation)
CompareDownstream(const Tensor< 1, dim > &dir)
unsigned long long int global_dof_index
Definition: types.h:72
static::ExceptionBase & ExcDoFHandlerNotInitialized()
void random(DoFHandlerType &dof_handler)
void compute_minimum_degree(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &, const bool reversed_numbering=false, const bool use_constraints=false)
void compute_subdomain_wise(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &dof_handler)
#define DeclExceptionMsg(Exception, defaulttext)
Definition: exceptions.h:397
static::ExceptionBase & ExcNotDGFEM()
#define DeclException0(Exception0)
Definition: exceptions.h:385
void compute_random(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &dof_handler)
void compute_sort_selected_dofs_back(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &dof_handler, const std::vector< bool > &selected_dofs)
void compute_Cuthill_McKee(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &, const bool reversed_numbering=false, const bool use_constraints=false, const std::vector< types::global_dof_index > &starting_indices=std::vector< types::global_dof_index >())
bool operator()(const Iterator &c1, const Iterator &c2) const
void compute_clockwise_dg(std::vector< types::global_dof_index > &new_dof_indices, const DoFHandlerType &dof_handler, const Point< DoFHandlerType::space_dimension > &center, const bool counter)
void king_ordering(DoFHandlerType &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false)
void block_wise(DoFHandler< dim, spacedim > &dof_handler)
void Cuthill_McKee(DoFHandlerType &dof_handler, const bool reversed_numbering=false, const bool use_constraints=false, const std::vector< types::global_dof_index > &starting_indices=std::vector< types::global_dof_index >())
bool operator()(const std::pair< Point< dim >, types::global_dof_index > &c1, const std::pair< Point< dim >, types::global_dof_index > &c2) const
ComparePointwiseDownstream(const Tensor< 1, dim > &dir)
void subdomain_wise(DoFHandlerType &dof_handler)
void clockwise_dg(DoFHandlerType &dof_handler, const Point< DoFHandlerType::space_dimension > &center, const bool counter=false)
types::global_dof_index compute_block_wise(std::vector< types::global_dof_index > &new_dof_indices, const ITERATOR &start, const ENDITERATOR &end, bool is_level_operation)
void cell_wise(DoFHandlerType &dof_handler, const std::vector< typename DoFHandlerType::active_cell_iterator > &cell_order)