From d29b176cb372405d92a37b7fe68b2b4b01facce8 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 1 Apr 2022 10:38:55 +0200 Subject: --export-pgf-unparam: also export argument values --- lib/cli.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/cli.py b/lib/cli.py index fe0a5b3..b6ccbc2 100644 --- a/lib/cli.py +++ b/lib/cli.py @@ -168,7 +168,15 @@ def export_pgf_unparam(model, pgf_prefix): for name in model.names: for attribute in model.attributes(name): with open(f"{pgf_prefix}{name}-{attribute}.txt", "w") as f: - print("measurement value " + " ".join(model.parameters), file=f) + print( + "measurement value " + + " ".join(model.parameters) + + " " + + " ".join( + map(lambda x: f"arg{x}", range(model._num_args.get(name, 0))) + ), + file=f, + ) for i, value in enumerate(model.attr_by_name[name][attribute].data): parameters = list() for param in model.attr_by_name[name][attribute].param_values[i]: -- cgit v1.2.3