From b0b2f41f79347943cfd1fa5e873a5e89ffb9b616 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Wed, 23 Jul 2008 15:50:25 +0000
Subject: [PATCH] change paths to ag-common -- again

[[Imported from SVN: r2603]]
---
 src/rodsolver.cc | 10 +++++-----
 src/rodsolver.hh |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/rodsolver.cc b/src/rodsolver.cc
index 457847b6..5ecd5f84 100644
--- a/src/rodsolver.cc
+++ b/src/rodsolver.cc
@@ -7,12 +7,12 @@
 #include <dune/disc/operators/p1operator.hh>
 
 #include <dune/ag-common/trustregiongsstep.hh>
-#include <dune/ag-common/solver/mmgstep.hh>
+#include <dune/ag-common/solvers/mmgstep.hh>
 #include <dune/ag-common/contactobsrestrict.hh>
 #include <dune/ag-common/iterativesolver.hh>
 
-#include <dune/ag-common/norm/energynorm.hh>
-#include <dune/ag-common/norm/h1seminorm.hh>
+#include <dune/ag-common/norms/energynorm.hh>
+#include <dune/ag-common/norms/h1seminorm.hh>
 
 #include "configuration.hh"
 #include "quaternion.hh"
@@ -277,7 +277,7 @@ void RodSolver<GridType>::solve()
     
             // Write statistics of the initial solution
             // Compute the energy norm
-            oldError = h1SemiNorm_->compute(exactSolution);
+            oldError = h1SemiNorm_->operator()(exactSolution);
     
             for (int j=0; j<multigridIterations_; j++) {
         
@@ -303,7 +303,7 @@ void RodSolver<GridType>::solve()
                 //std::cout << "error\n" << intermediateSol << std::endl;
 
                 // Compute the H1 norm
-                double error = h1SemiNorm_->compute(intermediateSol);
+                double error = h1SemiNorm_->operator()(intermediateSol);
 
                 convRate = error / oldError;
                 totalConvRate *= convRate;
diff --git a/src/rodsolver.hh b/src/rodsolver.hh
index 06788d47..4850ac68 100644
--- a/src/rodsolver.hh
+++ b/src/rodsolver.hh
@@ -7,7 +7,7 @@
 #include <dune/istl/bvector.hh>
 
 #include <dune/ag-common/boxconstraint.hh>
-#include <dune/ag-common/norm/h1seminorm.hh>
+#include <dune/ag-common/norms/h1seminorm.hh>
 #include <dune/ag-common/iterativesolver.hh>
 
 #include "rodassembler.hh"
-- 
GitLab