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

Comments: FIXMEs, TODOs, etc.

parent 0ab2f471
No related branches found
No related tags found
No related merge requests found
......@@ -18,14 +18,12 @@
#include "properscalarincreasingconvexfunction.hh"
// TODO: default to TrivialFunction
template <int dimension, class Function = TrivialFunction>
class SampleFunctional {
public:
typedef Dune::FieldVector<double, dimension> SmallVector;
typedef Dune::FieldMatrix<double, dimension, dimension> SmallMatrix;
// FIXME: hardcoded function H
SampleFunctional(SmallMatrix A, SmallVector b) : A_(A), b_(b), func_() {}
double operator()(const SmallVector v) const {
......@@ -39,7 +37,7 @@ class SampleFunctional {
double directionalDerivative(const SmallVector x,
const SmallVector dir) const {
if (x == SmallVector(0.0))
// Well, not in this way -- but can we compute them?
// FIXME: Well, not in this way -- but can we compute them?
DUNE_THROW(Dune::Exception,
"Directional derivatives cannot be computed at zero.");
......
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