Pratik, I dont know how feasible it would be, but maybe you could move it to > grid_tools.cc . It seems that even doxygen > <http://www.dealii.org/developer/doxygen/deal.II/namespaceGridTools.html> > does not pick up the source code as it does for all the other functions. > The reason why this function is not defined in grid_tools.cc is that it does not only depend on the template parameter "MeshType" (for which we might all reasonable values) but it also depends on "DataType" which we can't know when compiling the library. Hence, it has to live in some file that you include when using this function. For some functions we know most of the reasonable template parameters (and a suitable implementation), but want to allow for others as well. These end up in the "*.templates.h" files. This is not true for "GridTools::exchange_cell_data_to_ghosts" and the reason why we define it in "grid_tools.h".
Best, Daniel -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
