Skip to content
Snippets Groups Projects
Commit c9205ac9 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Strip Dune:: from anything within that namespace

parent 56a6b697
No related branches found
No related tags found
No related merge requests found
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
namespace Dune { namespace Dune {
template <int dimension> class MyNonlinearity { template <int dimension> class MyNonlinearity {
public: public:
typedef Dune::FieldVector<double, dimension> VectorType; typedef FieldVector<double, dimension> VectorType;
typedef Dune::FieldMatrix<double, dimension, dimension> MatrixType; typedef FieldMatrix<double, dimension, dimension> MatrixType;
MyNonlinearity(NiceFunction const &func) : func_(func) {} MyNonlinearity(NiceFunction const &func) : func_(func) {}
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
namespace Dune { namespace Dune {
template <int dimension> class SampleFunctional { template <int dimension> class SampleFunctional {
public: public:
typedef Dune::FieldVector<double, dimension> SmallVector; typedef FieldVector<double, dimension> SmallVector;
typedef Dune::FieldMatrix<double, dimension, dimension> SmallMatrix; typedef FieldMatrix<double, dimension, dimension> SmallMatrix;
typedef MyNonlinearity<dimension> NonlinearityType; typedef MyNonlinearity<dimension> NonlinearityType;
...@@ -64,19 +64,19 @@ template <int dimension> class SampleFunctional { ...@@ -64,19 +64,19 @@ template <int dimension> class SampleFunctional {
return; return;
} else if (pgx >= 0 && mgx >= 0) { } else if (pgx >= 0 && mgx >= 0) {
ret = pg; ret = pg;
Dune::dverb << "## Directional derivative (as per scalar product w/ " dverb << "## Directional derivative (as per scalar product w/ "
"semigradient): " << -(ret * mg) "semigradient): " << -(ret * mg)
<< " (coordinates of the restriction)" << std::endl; << " (coordinates of the restriction)" << std::endl;
} else if (pgx <= 0 && mgx <= 0) { } else if (pgx <= 0 && mgx <= 0) {
ret = mg; ret = mg;
Dune::dverb << "## Directional derivative (as per scalar product w/ " dverb << "## Directional derivative (as per scalar product w/ "
"semigradient): " << -(ret * pg) "semigradient): " << -(ret * pg)
<< " (coordinates of the restriction)" << std::endl; << " (coordinates of the restriction)" << std::endl;
} else { } else {
ret = project(smoothGradient(x), x); ret = project(smoothGradient(x), x);
Dune::dverb << "## Directional derivative (as per scalar product w/ " dverb << "## Directional derivative (as per scalar product w/ "
"semigradient): " << -(ret * ret) "semigradient): " << -(ret * ret)
<< " (coordinates of the restriction)" << std::endl; << " (coordinates of the restriction)" << std::endl;
} }
ret *= -1; ret *= -1;
} }
...@@ -156,7 +156,7 @@ void minimise(const Functional J, const typename Functional::SmallVector x, ...@@ -156,7 +156,7 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
{ // Debug { // Debug
Interval<double> D; Interval<double> D;
JRest.subDiff(0, D); JRest.subDiff(0, D);
Dune::dverb dverb
<< "## Directional derivative (as per subdifferential of restriction): " << "## Directional derivative (as per subdifferential of restriction): "
<< D[1] << " (coordinates of the restriction)" << std::endl; << D[1] << " (coordinates of the restriction)" << std::endl;
assert(D[1] <= assert(D[1] <=
...@@ -168,8 +168,8 @@ void minimise(const Functional J, const typename Functional::SmallVector x, ...@@ -168,8 +168,8 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
int count; int count;
// FIXME: The value of x_old should not matter if the factor is 1.0, correct? // FIXME: The value of x_old should not matter if the factor is 1.0, correct?
double const stepsize = bisection.minimize(JRest, 0.0, 1.0, count); double const stepsize = bisection.minimize(JRest, 0.0, 1.0, count);
Dune::dverb << "Number of iterations in the bisection method: " << count dverb << "Number of iterations in the bisection method: " << count
<< std::endl; << std::endl;
; ;
corr = descDir; corr = descDir;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment