Skip to content

Commit 3ed5124

Browse files
Merge branch 'remove-SCIPheurIsExact' into 'master'
remove unused method SCIPheurIsExact() See merge request integer/scip!3867
2 parents eb5b113 + a7aeb1a commit 3ed5124

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/scip/heur.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2071,13 +2071,3 @@ void SCIPvariableGraphFree(
20712071

20722072
SCIPfreeBlockMemory(scip, vargraph);
20732073
}
2074-
2075-
/** returns TRUE if the heuristic is safe to be executed in exact solving mode */
2076-
SCIP_Bool SCIPheurIsExact(
2077-
SCIP_HEUR* heur /**< primal heuristic */
2078-
)
2079-
{
2080-
assert(heur != NULL);
2081-
2082-
return heur->exact;
2083-
}

src/scip/heur.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,6 @@ void SCIPheurEnableOrDisableClocks(
258258
SCIP_Bool enable /**< should the clocks of the heuristic be enabled? */
259259
);
260260

261-
/** returns TRUE if the heuristic is safe to be executed in exact solving mode */
262-
SCIP_Bool SCIPheurIsExact(
263-
SCIP_HEUR* heur /**< primal heuristic */
264-
);
265-
266261
#ifdef __cplusplus
267262
}
268263
#endif

0 commit comments

Comments
 (0)