Skip to content

Commit

Permalink
fixes display
Browse files Browse the repository at this point in the history
  • Loading branch information
mohabsafey committed Feb 12, 2024
1 parent e431471 commit 9c40824
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/msolve/lifting-gb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,12 @@ void print_msolve_gbtrace_qq(data_gens_ff_t *gens,
fprintf(ofile, "#Leading ideal data\n");
} else {
if (flags->print_gb > 1) {
fprintf(ofile, "#Reduced Groebner basis data\n");
if(flags->truncate_lifting>0){
fprintf(ofile, "#Truncated reduced Groebner basis data\n");
}
else{
fprintf(ofile, "#Reduced Groebner basis data\n");
}
}
}
fprintf(ofile, "#---\n");
Expand Down

0 comments on commit 9c40824

Please sign in to comment.