Skip to content

Commit

Permalink
"normal form time" is now printed with info_level at least 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jerebertho committed Sep 26, 2023
1 parent 0fb562f commit 3372b2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/neogb/la_ff_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -2574,7 +2574,9 @@ static void exact_sparse_reduced_echelon_form_sat_ff_32(
upivs = (hm_t **)calloc((unsigned long)sat->ld, sizeof(hm_t *));
len_t ctr = 0;

printf(" normal form time");
if (st->info_level > 1) {
printf(" normal form time");
}
print_sat_nf_round_timings(stdout, st, rt, ct);
/* compute kernel */
for (i = 0; i < sat->ld; ++i) {
Expand Down

0 comments on commit 3372b2a

Please sign in to comment.