]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
renaming in Quadrature
authorguido <guido@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 31 May 2000 04:46:22 +0000 (04:46 +0000)
committerguido <guido@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 31 May 2000 04:46:22 +0000 (04:46 +0000)
git-svn-id: https://svn.dealii.org/trunk@2982 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/Todo
deal.II/deal.II/source/fe/fe_values.cc
tests/base/quadrature_test.cc

index 14e7526923127f3c8fabdae0289b4d352c51f514..f76b3cdd5e0841f39e1fe8a996d05fb5ca2875ef 100644 (file)
@@ -136,4 +136,8 @@ Why is dof_renumbering.h in include/numerics, but dof_renumbering.cc
 DataOut determines whether something is a DoF or cell vector by the
   size of the vector. This will fail if someone is using DG0 elements,
   since there the number of elements of both types of vectors is the
-  same, but the ordering will usually differ.
+  same, but the ordering will usually differ. Errors cannot be plotted
+  anyway, since they are float vectors.
+
+
+Move GeometryInfo to base
index 98dd3caa462a278f3a21823a8e1ff61283bfca62..d1cf51ff7c65e2a2d82eece9e1f13f221e54dd72 100644 (file)
@@ -335,7 +335,7 @@ FEValues<dim>::FEValues (const FiniteElement<dim> &fe,
                                           vector<Tensor<2,dim> >(quadrature.n_quadrature_points)),
                unit_shape_gradients_transform(fe.n_transform_functions(),
                                               vector<Tensor<1,dim> >(quadrature.n_quadrature_points)),
-               unit_quadrature_points(quadrature.get_quad_points())
+               unit_quadrature_points(quadrature.get_points())
 {
   Assert ((update_flags & update_normal_vectors) == false,
          ExcInvalidUpdateFlag());
@@ -519,7 +519,7 @@ FEFaceValues<dim>::FEFaceValues (const FiniteElement<dim> &fe,
                                       update_flags,
                                       fe)
 {
-  unit_face_quadrature_points = quadrature.get_quad_points();
+  unit_face_quadrature_points = quadrature.get_points();
   weights = quadrature.get_weights ();  
 
                                   // set up an array of the unit points
@@ -680,7 +680,7 @@ FESubfaceValues<dim>::FESubfaceValues (const FiniteElement<dim> &fe,
   Assert ((update_flags & update_support_points) == false,
          ExcInvalidUpdateFlag());
   
-  unit_face_quadrature_points = quadrature.get_quad_points();
+  unit_face_quadrature_points = quadrature.get_points();
   weights = quadrature.get_weights ();  
 
                                   // set up an array of the unit points
index cf81d7db4609eda6dbee974dcfffb6fcbe701af8..29622090f36ce56e5bc68ea2b0bf60d18557b925 100644 (file)
@@ -37,7 +37,7 @@ int main(int,char)
   for (unsigned int n=2; n<9; ++n)
     {
       Quadrature<1> *quadrature=gauss_quadratures[n];
-      const vector<Point<1> > &points=quadrature->get_quad_points();
+      const vector<Point<1> > &points=quadrature->get_points();
       const vector<double> &weights=quadrature->get_weights();
 
       deallog << "Gauss" << n;

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.