Skip to content

Commit a11f713

Browse files
Add exp.priv-prec-dump-suffix
1 parent 6e17641 commit a11f713

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/analyses/basePriv.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1762,7 +1762,7 @@ struct
17621762
(* LVH.iter (fun (l, x) v ->
17631763
Logs.debug "%a %a = %a" CilType.Location.pretty l CilType.Varinfo.pretty x VD.pretty v
17641764
) lvh; *)
1765-
Marshal.output f ({name = get_string "ana.base.privatization"; results = lvh}: result);
1765+
Marshal.output f ({name = get_string "ana.base.privatization" ^ get_string "exp.priv-prec-dump-suffix"; results = lvh}: result);
17661766
close_out_noerr f
17671767

17681768
let finalize () =

src/config/options.schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1634,6 +1634,12 @@
16341634
"type": "string",
16351635
"default": ""
16361636
},
1637+
"priv-prec-dump-suffix": {
1638+
"title": "exp.priv-prec-dump-suffix",
1639+
"description": "Suffix for name of precision dump. Useful if one has several configurations for one privatization.",
1640+
"type": "string",
1641+
"default": ""
1642+
},
16371643
"priv-distr-init": {
16381644
"title": "exp.priv-distr-init",
16391645
"description":

0 commit comments

Comments
 (0)