/[ff3d]/ff3d/language/FunctionExpression.cpp
ViewVC logotype

Diff of /ff3d/language/FunctionExpression.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by delpinux, Fri Aug 8 08:39:56 2003 UTC revision 1.7 by delpinux, Wed Oct 22 17:08:29 2003 UTC
# Line 117  const real_t FunctionExpressionFEM::__ev Line 117  const real_t FunctionExpressionFEM::__ev
117    MeshType& M = static_cast<MeshType&>(*(*__mesh).mesh());    MeshType& M = static_cast<MeshType&>(*(*__mesh).mesh());
118    typename MeshType::const_iterator i = M.find(x,y,z);    typename MeshType::const_iterator i = M.find(x,y,z);
119    
120    if (i == 0) { // outside of the mesh!    if (i.end()) { // outside of the mesh!
121      return 0;      return 0;
122    }    }
123    
# Line 182  __dx(const double& x, Line 182  __dx(const double& x,
182    
183    typename MeshType::const_iterator i = M.find(x,y,z);    typename MeshType::const_iterator i = M.find(x,y,z);
184    
185    if (i == 0) { // outside of the mesh!    if (i.end()) { // outside of the mesh!
186      return 0;      return 0;
187    }    }
188    
# Line 268  __dx<Structured3DMesh>(const double& x, Line 268  __dx<Structured3DMesh>(const double& x,
268    
269    Structured3DMesh::const_iterator i = M.find(x,y,z);    Structured3DMesh::const_iterator i = M.find(x,y,z);
270    
271    if (i == 0) { // outside of the mesh!    if (i.end()) { // outside of the mesh!
272      return 0;      return 0;
273    }    }
274    

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26