[cig-commits] r11200 - cs/benchmark/cigma/trunk/src

luis at geodynamics.org luis at geodynamics.org
Wed Feb 20 05:12:42 PST 2008


Author: luis
Date: 2008-02-20 05:12:41 -0800 (Wed, 20 Feb 2008)
New Revision: 11200

Modified:
   cs/benchmark/cigma/trunk/src/FE_Field.cpp
Log:
Removed obsolete code from FE_Field::eval()


Modified: cs/benchmark/cigma/trunk/src/FE_Field.cpp
===================================================================
--- cs/benchmark/cigma/trunk/src/FE_Field.cpp	2008-02-20 13:12:40 UTC (rev 11199)
+++ cs/benchmark/cigma/trunk/src/FE_Field.cpp	2008-02-20 13:12:41 UTC (rev 11200)
@@ -59,13 +59,10 @@
     // use dofs as weights on the shape function values
     const int ndofs = cell->n_nodes();
     int valdim = n_rank();
+    double field_dofs[ndofs * valdim]; // XXX
 
-    //double globalCellCoords[cell_nno * cell_nsd];
-    //meshPart->get_cell_coords(e, globalCellCoords);
-    //cell->interpolate(globalCellCoords, point, value, valdim);
-
-    double field_dofs[ndofs * valdim];
     get_cell_dofs(e, field_dofs);
+
     double uvw[3];
     cell->xyz2uvw(point,uvw);
     cell->interpolate(field_dofs, uvw, value, valdim);



More information about the cig-commits mailing list