diff --git a/compileTimeOptions.h b/compileTimeOptions.h
index 10fa76ac861c27825491a57e361739e1f59809ab..4b32d858a5135937d2ca727bc610df329f31b17e 100644
--- a/compileTimeOptions.h
+++ b/compileTimeOptions.h
@@ -14,9 +14,9 @@ BOOL_OPTION(OPTIMIZE_COMBINE, 0)
 
 BOOL_OPTION(USE_NEXT_FORB, 1)
 
-BOOL_OPTION(EXPLICIT_NORMAL_EDGES, 0)
+BOOL_OPTION(EXPLICIT_NORMAL_EDGES, 1)
 REQUIRES(EXPLICIT_NORMAL_EDGES, USE_NEXT_FORB)
 
-BOOL_OPTION(USE_TWO_CUTS, 0)
+BOOL_OPTION(USE_TWO_CUTS, 1)
 REQUIRES(USE_TWO_CUTS, USE_NEXT_FORB && EXPLICIT_NORMAL_EDGES)
 
diff --git a/groupConnectivity.pyx b/groupConnectivity.pyx
index 083bd1264d000b98ea65f6deb7c585d9f76546dd..356f3ed1308e0c8b899fe1e5333d6a706adb25c9 100644
--- a/groupConnectivity.pyx
+++ b/groupConnectivity.pyx
@@ -38,7 +38,7 @@ def pathToEdges(G, path):
 
 
 def testGroupConnectivity(G, group = "Z4", getClasses = False,
-                          useTwoCuts = False, debug = False):
+                          useTwoCuts = True, debug = False):
   cdef AbstractTester* tester = NULL
   if group == "Z4":
     tester = new Tester[Z4[int]]()