From 837d54d1ffd6167f8db3234a9a38b3dd8a55eda2 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Thu, 29 Apr 2010 13:36:49 +0000
Subject: [PATCH] bugfix: loop was over blocksize where it should have been the
 embeddedBlocksize

[[Imported from SVN: r5995]]
---
 dune/gfe/localgeodesicfestiffness.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/gfe/localgeodesicfestiffness.hh b/dune/gfe/localgeodesicfestiffness.hh
index 129c4faa..a8353378 100644
--- a/dune/gfe/localgeodesicfestiffness.hh
+++ b/dune/gfe/localgeodesicfestiffness.hh
@@ -372,7 +372,7 @@ public:
         std::vector<TargetSpace> backwardSolution = localSolution;
         
         
-        for (int j=0; j<blocksize; j++) {
+        for (int j=0; j<embeddedBlocksize; j++) {
             
             // The return value does not have unit norm.  But assigning it to a UnitVector object
             // will normalize it.  This amounts to an extension of the energy functional 
-- 
GitLab