Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/msolve/msolve.c
Original file line number Diff line number Diff line change
Expand Up @@ -5205,7 +5205,9 @@ int core_msolve(
oldminpolydeg = minpolydeg; // need to run a 2nd time
} else if (oldminpolydeg == minpolydeg) {
/* same degree for both random linear forms */
printf ("\nRestarting with a non-random linear form");
if (info_level > 0) {
printf ("\nRestarting with a non-random linear form");
}
/* set back the base coefficient to its previous form
before introducing the random linear form.
Only for value larger than 1
Expand All @@ -5229,7 +5231,9 @@ int core_msolve(
} /* else oldminpolydeg > minpoly deg so need to run
another 2nd time */
minpolydeg = -1;
printf ("\nRestarting with another random linear form");
if (info_level > 0) {
printf ("\nRestarting with another random linear form");
}
/* set back the base coefficient to its previous form
before introducing the random linear form.
Only for value larger than 1
Expand Down
Loading