From 488cb8debba27a43bfc811074acb914cd61964e9 Mon Sep 17 00:00:00 2001 From: Sebastian Buchwald Date: Fri, 3 Oct 2008 21:49:38 +0000 Subject: [PATCH] Renamed function. [r22451] --- heuristical.c | 2 +- html_dumper.c | 2 +- html_dumper.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/heuristical.c b/heuristical.c index 0233c46f7..92098e14a 100644 --- a/heuristical.c +++ b/heuristical.c @@ -4,6 +4,6 @@ void solve_pbqp_heuristical(pbqp *pbqp) { if (pbqp->dump_file) { - dump_input(pbqp); + pbqp_dump_input(pbqp); } } diff --git a/html_dumper.c b/html_dumper.c index 389656ec7..56d268d55 100644 --- a/html_dumper.c +++ b/html_dumper.c @@ -139,7 +139,7 @@ void pbqp_dump_graph(pbqp *pbqp) fputs("\t}\n\n

\n", pbqp->dump_file); } -void dump_input(pbqp *pbqp) +void pbqp_dump_input(pbqp *pbqp) { assert(pbqp); assert(pbqp->dump_file); diff --git a/html_dumper.h b/html_dumper.h index 5b7ac2d78..8507d5335 100644 --- a/html_dumper.h +++ b/html_dumper.h @@ -3,6 +3,6 @@ #include "pbqp_t.h" -void dump_input(pbqp *pbqp); +void pbqp_dump_input(pbqp *pbqp); #endif /* KAPS_HTML_DUMPER_H */ -- 2.20.1