Skip to content

Commit 4f93251

Browse files
style(mcp): simplify sync helper parameter name
Agent-Logs-Url: https://github.com/goblint/analyzer/sessions/351c80a9-dc9f-4603-a357-a186a213399d Co-authored-by: michael-schwarz <13812333+michael-schwarz@users.noreply.github.com>
1 parent c574d95 commit 4f93251

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/analyses/mCP.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ struct
510510
let d = do_emits man !emits d q in
511511
if q then raise Deadcode else d
512512

513-
let rec sync_with_split_tf should_transform_splits (man:(D.t, G.t, C.t, V.t) man) reason =
513+
let rec sync_with_split_tf transform_splits (man:(D.t, G.t, C.t, V.t) man) reason =
514514
let spawns = ref [] in
515515
let splits = ref [] in
516516
let sides = ref [] in
@@ -524,7 +524,7 @@ struct
524524
do_sideg man !sides;
525525
do_spawns man !spawns;
526526
let local_tf =
527-
if should_transform_splits then
527+
if transform_splits then
528528
fun d -> sync_with_split_tf false {man with local = d} reason
529529
else
530530
Fun.id

0 commit comments

Comments
 (0)