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

[Cleanup] Remove broken debugging code

parent 3a32efc3
No related branches found
No related tags found
No related merge requests found
......@@ -4,9 +4,6 @@
#ifndef MY_DIRECTIONAL_CONVEX_FUNCTION_HH
#define MY_DIRECTIONAL_CONVEX_FUNCTION_HH
// just for debugging
#include <dune/solvers/computeenergy.hh>
#include <dune/fufem/interval.hh>
/*
......@@ -43,13 +40,6 @@ template <class NonlinearityType> class MyDirectionalConvexFunction {
phi.directionalDomain(u, v, dom);
}
/* Just for debugging */
double operator()(double x) const {
VectorType tmp = v;
tmp *= x;
return computeEnergy(A, x, b) + phi(tmp);
}
double quadraticPart() const { return A; }
double linearPart() const { return b; }
......
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