Skip to content

Commit

Permalink
Remove split_from_parent
Browse files Browse the repository at this point in the history
  • Loading branch information
jmid committed Aug 6, 2024
1 parent 8a668e1 commit 581a520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/stm_tests_dls.ml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct
| Get _ -> s
| Set (i,n) -> List.mapi (fun j x -> if i=j then n else x) s

let init_sut () = List.init length (fun i -> DLS.new_key ~split_from_parent:(fun x -> x) (fun () -> i))
let init_sut () = List.init length (fun i -> DLS.new_key (fun () -> i))

let cleanup _ = ()

Expand Down

0 comments on commit 581a520

Please sign in to comment.