diff --git a/dune/mmdg/problems/coupleddgproblem.hh b/dune/mmdg/problems/coupleddgproblem.hh
index 9f7774ff6e3611f92dfcf8b16d21727815fda430..ff022d9742290c56a2fc674a861b4860ac9ca611 100644
--- a/dune/mmdg/problems/coupleddgproblem.hh
+++ b/dune/mmdg/problems/coupleddgproblem.hh
@@ -68,7 +68,7 @@ public:
   //over x * qInterface(x)
   virtual int quadratureOrder_qInterface () const
   {
-    return 1;
+    return 10;//1;
   }
 
   //returns the recommended quadrature order to compute an integral
@@ -77,7 +77,7 @@ public:
   //and   d^2 * interfaceBoundary(x) * Kpar
   virtual int quadratureOrderInterfaceBoundary () const
   {
-    return 1;
+    return 10;//1;
   }
 
   //returns the recommended quadrature order to compute integrals
@@ -87,14 +87,14 @@ public:
   //and   x * d^2 * Kpar
   virtual int quadratureOrder_Kparallel () const
   {
-    return 2;
+    return 10;//2;
   }
 
   //returns the recommended quadrature order to compute an integral
   //over x * Kperp(x)
   virtual int quadratureOrder_Kperp () const
   {
-    return 1;
+    return 10;//1;
   }
 };