From 85d0a936a38444c9bde36c7d0833391a5ea9bb5a Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Fri, 17 Apr 2009 14:19:28 +0000
Subject: [PATCH] roddifference.hh is now called geodesicdifference.hh

[[Imported from SVN: r4027]]
---
 rod3d.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/rod3d.cc b/rod3d.cc
index e6921ee7..6251722c 100644
--- a/rod3d.cc
+++ b/rod3d.cc
@@ -12,7 +12,7 @@
 #include <dune-solvers/norms/energynorm.hh>
 
 #include "src/rigidbodymotion.hh"
-#include "src/roddifference.hh"
+#include "src/geodesicdifference.hh"
 #include "src/rodwriter.hh"
 #include "src/rotation.hh"
 #include "src/rodassembler.hh"
@@ -180,7 +180,7 @@ int main (int argc, char *argv[]) try
 
     // Compute error of the initial iterate
     typedef BlockVector<FieldVector<double,6> > RodDifferenceType;
-    RodDifferenceType rodDifference = computeRodDifference(exactSolution, initialIterate);
+    RodDifferenceType rodDifference = computeGeodesicDifference(exactSolution, initialIterate);
     double oldError = std::sqrt(EnergyNorm<BCRSMatrix<FieldMatrix<double, blocksize, blocksize> >, BlockVector<FieldVector<double,blocksize> > >::normSquared(rodDifference, hessian));
 
     int i;
@@ -206,7 +206,7 @@ int main (int argc, char *argv[]) try
         //   Compute error
         // /////////////////////////////////////////////////////
 
-        rodDifference = computeRodDifference(exactSolution, intermediateSolution);
+        rodDifference = computeGeodesicDifference(exactSolution, intermediateSolution);
         
         error = std::sqrt(EnergyNorm<BCRSMatrix<FieldMatrix<double, blocksize, blocksize> >, BlockVector<FieldVector<double,blocksize> > >::normSquared(rodDifference, hessian));
         
-- 
GitLab