]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Replace distance by using SynchronousIterators in derivative_approximation.
authorturcksin <turcksin@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 15 Oct 2013 17:34:45 +0000 (17:34 +0000)
committerturcksin <turcksin@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 15 Oct 2013 17:34:45 +0000 (17:34 +0000)
git-svn-id: https://svn.dealii.org/trunk@31240 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/include/deal.II/numerics/derivative_approximation.h
deal.II/source/numerics/derivative_approximation.cc

index 3fd49856c484eddff2fe64a7d55f4f8ca7260821..31a3b118c829727665cba8a793f14cb25a7575eb 100644 (file)
@@ -19,6 +19,8 @@
 
 #include <deal.II/base/config.h>
 #include <deal.II/base/exceptions.h>
+#include <deal.II/base/std_cxx1x/tuple.h>
+#include <deal.II/base/synchronous_iterator.h>
 #include <deal.II/fe/fe_update_flags.h>
 #include <deal.II/fe/mapping.h>
 #include <utility>
@@ -673,12 +675,12 @@ private:
   template <class DerivativeDescription, int dim,
            template <int, int> class DH, class InputVector, int spacedim>
   static void
-  approximate (const typename DH<dim,spacedim>::active_cell_iterator &cell,
+  approximate (SynchronousIterators<std_cxx1x::tuple<typename DH<dim,spacedim>
+               ::active_cell_iterator,Vector<float>::iterator> > const &cell,              
                const Mapping<dim,spacedim>    &mapping,
                const DH<dim,spacedim>         &dof,
                const InputVector     &solution,
-               const unsigned int     component,
-               Vector<float>         &derivative_norm);
+               const unsigned int     component);
 
   /**
    * Compute the derivative approximation on
index 397e688c60d98f74201d95f84856167b24e4ee8c..cb8825c807ca698c97508bdd92e82adea7420ee9 100644 (file)
@@ -650,20 +650,25 @@ approximate_derivative (const Mapping<dim,spacedim>    &mapping,
 
   // Only act on the locally owned cells
   typedef FilteredIterator<typename DH<dim,spacedim>::active_cell_iterator> CellFilter;
-
-  // There is no need for a copier because there is no conflict between threads
+  
+  typedef std_cxx1x::tuple<typename DH<dim,spacedim>::active_cell_iterator,Vector<float>::iterator>
+    Iterators;
+  SynchronousIterators<Iterators> begin(Iterators (CellFilter(IteratorFilters::LocallyOwnedCell(),
+            dof_handler.begin_active()),derivative_norm.begin())),
+    end(Iterators (CellFilter(IteratorFilters::LocallyOwnedCell(),dof_handler.end()),
+          derivative_norm.end()));
+  
+  // There is no need for a copier because there is no conflict between threads 
   // to write in derivative_norm. Scratch and CopyData are also useless.
-  WorkStream::run(CellFilter(IteratorFilters::LocallyOwnedCell(),dof_handler.begin_active()),
-      CellFilter(IteratorFilters::LocallyOwnedCell(),dof_handler.end()),
-      static_cast<std_cxx1x::function<void (typename DH<dim,spacedim>::active_cell_iterator const&,
+  WorkStream::run(begin,end,
+      static_cast<std_cxx1x::function<void (SynchronousIterators<Iterators> const&,
         internal::Assembler::Scratch const&,internal::Assembler::CopyData &)> >
       (std_cxx1x::bind(DerivativeApproximation::template approximate<DerivativeDescription,dim,DH,
                        InputVector,spacedim>,
                        std_cxx1x::_1,
                        std_cxx1x::cref(mapping),
                        std_cxx1x::cref(dof_handler),
-                       std_cxx1x::cref(solution),component,
-                       std_cxx1x::ref(derivative_norm))),
+                       std_cxx1x::cref(solution),component)),
     static_cast<std_cxx1x::function<void (internal::Assembler::CopyData const &)> >
       (internal::Assembler::copier),internal::Assembler::Scratch (),
       internal::Assembler::CopyData ());
@@ -674,27 +679,21 @@ approximate_derivative (const Mapping<dim,spacedim>    &mapping,
 template <class DerivativeDescription, int dim,
          template <int, int> class DH, class InputVector, int spacedim>
 void
-DerivativeApproximation::approximate (const typename DH<dim,spacedim>::active_cell_iterator &cell,
+DerivativeApproximation::approximate (SynchronousIterators<std_cxx1x::tuple<typename DH<dim,spacedim>
+                                      ::active_cell_iterator,Vector<float>::iterator> > const &cell,
                                       const Mapping<dim,spacedim>                  &mapping,
                                       const DH<dim,spacedim>                       &dof_handler,
                                       const InputVector                            &solution,
-                                      const unsigned int                            component,
-                                      Vector<float>                                &derivative_norm)
+                                      const unsigned int                            component)
 {
-  // iterators over all cells and the
-  // respective entries in the output
-  // vector:
-  Vector<float>::iterator derivative_norm_on_this_cell = derivative_norm.begin() + 
-    std::distance(dof_handler.begin_active(),cell);
-
   typename DerivativeDescription::Derivative derivative;
   // call the function doing the actual
   // work on this cell
   DerivativeApproximation::template approximate_cell<DerivativeDescription,dim,DH,InputVector>
-    (mapping,dof_handler,solution,component,cell,derivative);
+    (mapping,dof_handler,solution,component,std_cxx1x::get<0>(cell.iterators),derivative);
   // evaluate the norm and fill the vector
-  *derivative_norm_on_this_cell
-    = DerivativeDescription::derivative_norm (derivative);
+  //*derivative_norm_on_this_cell
+  *std_cxx1x::get<1>(cell.iterators) = DerivativeDescription::derivative_norm (derivative);
 }
 
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.