Skip to content

Commit b6f5cbf

Browse files
committed
fixes if statement
1 parent a126fc3 commit b6f5cbf

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/msolve/msolve.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5203,9 +5203,11 @@ int core_msolve(
52035203
if (genericity_handling == 2) {
52045204
if (oldminpolydeg == -1 || oldminpolydeg < minpolydeg) {
52055205
oldminpolydeg = minpolydeg; // need to run a 2nd time
5206-
} else if (oldminpolydeg == minpolydeg && info_level > 0) {
5206+
} else if (oldminpolydeg == minpolydeg) {
52075207
/* same degree for both random linear forms */
5208-
printf ("\nRestarting with a non-random linear form");
5208+
if (info_level > 0) {
5209+
printf ("\nRestarting with a non-random linear form");
5210+
}
52095211
/* set back the base coefficient to its previous form
52105212
before introducing the random linear form.
52115213
Only for value larger than 1

0 commit comments

Comments
 (0)