From 8c8d526749c42ff9a4d3f610f60410ec2b0b244b Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Mon, 30 Jan 2017 16:51:25 +0100
Subject: [PATCH] [disc] Introduce default discretization type None

---
 dumux/discretization/methods.hh | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dumux/discretization/methods.hh b/dumux/discretization/methods.hh
index 81a8054d7a..54b2cd04bb 100644
--- a/dumux/discretization/methods.hh
+++ b/dumux/discretization/methods.hh
@@ -26,9 +26,13 @@
 
 namespace Dumux
 {
+    //! The discretization methods
+    //! \note Use none if specifying a discretization method is required but
+    //!       the class in question is not specific to a a discretization method
+    //!       or the classification is non-applicable
     enum class DiscretizationMethods : unsigned int
     {
-        Box, CCTpfa, CCMpfa
+        None, Box, CCTpfa, CCMpfa
     };
 
 } // end namespace Dumux
-- 
GitLab