Skip to content
Snippets Groups Projects
Commit b0b2f41f authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

change paths to ag-common -- again

[[Imported from SVN: r2603]]
parent 41e850d1
No related branches found
No related tags found
No related merge requests found
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
#include <dune/disc/operators/p1operator.hh> #include <dune/disc/operators/p1operator.hh>
#include <dune/ag-common/trustregiongsstep.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/contactobsrestrict.hh>
#include <dune/ag-common/iterativesolver.hh> #include <dune/ag-common/iterativesolver.hh>
#include <dune/ag-common/norm/energynorm.hh> #include <dune/ag-common/norms/energynorm.hh>
#include <dune/ag-common/norm/h1seminorm.hh> #include <dune/ag-common/norms/h1seminorm.hh>
#include "configuration.hh" #include "configuration.hh"
#include "quaternion.hh" #include "quaternion.hh"
...@@ -277,7 +277,7 @@ void RodSolver<GridType>::solve() ...@@ -277,7 +277,7 @@ void RodSolver<GridType>::solve()
// Write statistics of the initial solution // Write statistics of the initial solution
// Compute the energy norm // Compute the energy norm
oldError = h1SemiNorm_->compute(exactSolution); oldError = h1SemiNorm_->operator()(exactSolution);
for (int j=0; j<multigridIterations_; j++) { for (int j=0; j<multigridIterations_; j++) {
...@@ -303,7 +303,7 @@ void RodSolver<GridType>::solve() ...@@ -303,7 +303,7 @@ void RodSolver<GridType>::solve()
//std::cout << "error\n" << intermediateSol << std::endl; //std::cout << "error\n" << intermediateSol << std::endl;
// Compute the H1 norm // Compute the H1 norm
double error = h1SemiNorm_->compute(intermediateSol); double error = h1SemiNorm_->operator()(intermediateSol);
convRate = error / oldError; convRate = error / oldError;
totalConvRate *= convRate; totalConvRate *= convRate;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include <dune/istl/bvector.hh> #include <dune/istl/bvector.hh>
#include <dune/ag-common/boxconstraint.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 <dune/ag-common/iterativesolver.hh>
#include "rodassembler.hh" #include "rodassembler.hh"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment