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

Include guards

parent 48069693
No related branches found
No related tags found
No related merge requests found
#ifndef PROPER_SCALAR_INCREASING_CONVEX_FUNCTION_HH
#define PROPER_SCALAR_INCREASING_CONVEX_FUNCTION_HH
class ProperScalarIncreasingConvexFunction { class ProperScalarIncreasingConvexFunction {
public: public:
virtual double operator()(const double s) const = 0; virtual double operator()(const double s) const = 0;
...@@ -22,3 +25,5 @@ class TrivialFunction : public ProperScalarIncreasingConvexFunction { ...@@ -22,3 +25,5 @@ class TrivialFunction : public ProperScalarIncreasingConvexFunction {
double rightDifferential(const double) const { return 0; } double rightDifferential(const double) const { return 0; }
}; };
#endif
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