From 2a4fa7e0a4f4f271ff798cf681c4d3348aceda00 Mon Sep 17 00:00:00 2001
From: Rene Milk <rene.milk@uni-muenster.de>
Date: Wed, 22 Jul 2015 16:59:27 +0200
Subject: [PATCH] [functions] adjust for playground removal

---
 dune/stuff/functions.hh | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/dune/stuff/functions.hh b/dune/stuff/functions.hh
index 860bf1d59..b1b1ce7dc 100644
--- a/dune/stuff/functions.hh
+++ b/dune/stuff/functions.hh
@@ -19,7 +19,6 @@
 #include "functions/expression.hh"
 #include "functions/flattop.hh"
 #include "functions/ESV2007.hh"
-#include "playground/functions/indicator.hh"
 #include "functions/spe10.hh"
 
 namespace Dune {
@@ -147,7 +146,6 @@ private:
   typedef Functions::FlatTop<E, D, d, R, r, rC> FlattopType;
   typedef Functions::ESV2007::Testcase1Force<E, D, d, R, r, rC> ESV2007Testcase1ForceType;
   typedef Functions::ESV2007::Testcase1ExactSolution<E, D, d, R, r, rC> ESV2007Testcase1ExactSolutionType;
-  typedef Functions::Indicator<E, D, d, R, r, rC> IndicatorType;
   typedef Functions::Spe10::Model1<E, D, d, R, r, rC> Spe10Model1Type;
 
 public:
@@ -160,7 +158,6 @@ public:
     ret = call_append<FlattopType>(ret);
     ret = call_append<ESV2007Testcase1ForceType>(ret);
     ret = call_append<ESV2007Testcase1ExactSolutionType>(ret);
-    ret = call_append<IndicatorType>(ret);
     ret = call_append<Spe10Model1Type>(ret);
     return ret;
   } // ... available(...)
@@ -179,8 +176,6 @@ public:
       return call_default_config<ESV2007Testcase1ForceType>(sub_name);
     else if (call_compare<ESV2007Testcase1ExactSolutionType>(type))
       return call_default_config<ESV2007Testcase1ExactSolutionType>(sub_name);
-    else if (call_compare<IndicatorType>(type))
-      return call_default_config<IndicatorType>(sub_name);
     else if (call_compare<Spe10Model1Type>(type))
       return call_default_config<Spe10Model1Type>(sub_name);
     else if (available().empty())
@@ -215,8 +210,6 @@ public:
       return call_create<ESV2007Testcase1ForceType>(cfg);
     else if (call_compare<ESV2007Testcase1ExactSolutionType>(type))
       return call_create<ESV2007Testcase1ExactSolutionType>(cfg);
-    else if (call_compare<IndicatorType>(type))
-      return call_create<IndicatorType>(cfg);
     else if (call_compare<Spe10Model1Type>(type))
       return call_create<Spe10Model1Type>(cfg);
     else if (available().empty())
-- 
GitLab