You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/scip/prop_symmetry.c
+5-13Lines changed: 5 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -203,11 +203,8 @@
203
203
/* other defines */
204
204
#defineMAXGENNUMERATOR 64000000 /**< determine maximal number of generators by dividing this number by the number of variables */
205
205
#defineCOMPRESSNVARSLB 25000 /**< lower bound on the number of variables above which compression could be performed */
206
-
#defineDEFAULT_NAUTYMAXNCELLS 100000 /**< terminate symmetry detection using Nauty when number of cells in color refinment is at least this number
207
-
* (avoids segfaults due to Nauty for large graphs) */
208
-
#defineDEFAULT_NAUTYMAXNNODES 10000000 /**< terminate symmetry detection using Nauty when its search tree has at least this number of nodes */
209
-
/*@todo investigate why the Nauty works well for some large instances (miplib2010/mspp16.mps) but not for PB instances (e.g., normalized-celar6-sub0_wcsp.wbo) */
210
-
206
+
#defineDEFAULT_NAUTYMAXLEVEL 10000 /**< terminate symmetry detection using Nauty when depth level of Nauty's search tree exceeds this number
207
+
* (avoids call stack overflows in Nauty for deep graphs) */
211
208
212
209
/* macros for getting activeness of symmetry handling methods */
213
210
#defineISSYMRETOPESACTIVE(x) (((unsigned) x & SYM_HANDLETYPE_SYMBREAK) != 0)
0 commit comments