Skip to content

Commit bee8269

Browse files
committed
Merge branch 'fix-sbliss-patched-bliss-build' into 'v92-bugfix'
fix compilation with SYM=sbliss and patched Bliss version See merge request integer/scip!4042
2 parents 8c875c7 + 6555586 commit bee8269

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Fixed bugs
2626
- adjust further bounds before checking feasibility in SCIPvarAddVlb() and SCIPvarAddVub() to detect integrality cutoff
2727
- fixed issue in cons_linking.c where the last fixed binary variable was not set after the binary variables are created.
2828
- fixed issue in cons_linking.c where the number of binary variable is 1, but the constraint is added during solving.
29+
- fixed set_search_limits call when using SYM=sbliss with an old patched Bliss version
2930

3031
Build system
3132
------------

src/symmetry/compute_symmetry_sassy_bliss.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ SCIP_RETCODE computeAutomorphisms(
331331
/* If patch is present, do not use a node limit, but set generator limit. This approach is not very accurate, since
332332
* it limits the generators considered in bliss and not the ones that we generate (the ones that work on the variable
333333
* set). */
334-
G->set_search_limits(0, (unsigned) maxgenerators);
334+
blissgraph.set_search_limits(0, (unsigned) maxgenerators);
335335
#endif
336336

337337
/* start search */

0 commit comments

Comments
 (0)