summaryrefslogtreecommitdiff
path: root/mg2d.c
diff options
context:
space:
mode:
Diffstat (limited to 'mg2d.c')
-rw-r--r--mg2d.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mg2d.c b/mg2d.c
index a1d6950..01c7624 100644
--- a/mg2d.c
+++ b/mg2d.c
@@ -814,9 +814,8 @@ void mg2d_print_stats(MG2DContext *ctx, const char *prefix)
p += ret;
} else if (e) {
ret = snprintf(p, sizeof(buf) - (p - buf),
- " %2.2f%% const %2.2f%% transp %2.2f%% bicgstab %2.2f%% lu %2.2f%% export",
+ " %2.2f%% const %2.2f%% bicgstab %2.2f%% lu %2.2f%% export",
e->time_mat_construct * 100.0 / level->solver->time_total,
- e->time_mat_transpose * 100.0 / level->solver->time_total,
e->time_bicgstab_solve * 100.0 / level->solver->time_total,
e->time_lu_solve * 100.0 / level->solver->time_total,
e->time_export * 100.0 / level->solver->time_total);