Skip to content
Snippets Groups Projects
Commit d8b2c9db authored by Frama-CI's avatar Frama-CI
Browse files

[Shuffle] move it in util

parent cd179508
No related branches found
No related tags found
No related merge requests found
......@@ -7,28 +7,12 @@
*)
open Stdlib
open Shuffle
let debug = Debug.register_info_flag
~desc:"for the simple version of the egraph"
"egraph_simple"
(** {!shuffle} is used for test. It's used want the swap of two value
can give different result
*)
let opt_shuffle = ref None
let set_shuffle = function
| None -> opt_shuffle := None
| Some i -> opt_shuffle := Some (Random.State.make i)
let is_shuffle () = !opt_shuffle <> None
let shuffle ((t1,t2) as p) =
match !opt_shuffle with
| None -> p
| Some rnd when Random.State.bool rnd -> p
| _ -> (t2,t1)
module UnionFind (* simple *) :
sig type t
val empty: t
......@@ -173,7 +157,7 @@ let rec equal_aux queue env t1 t2 =
end
else
begin
shuffle (parent, parent')
shufflep (parent, parent')
end
in
if p1 != p2 then Queue.push (p1,p2) queue;
......@@ -187,7 +171,7 @@ let rec equal_aux queue env t1 t2 =
end
let equal env t1 t2 =
let t1,t2 = shuffle (t1,t2) in
let t1,t2 = shufflep (t1,t2) in
let queue = Queue.create () in
equal_aux queue env t1 t2
......
val debug: Debug.flag
val set_shuffle: int array option -> unit
val is_shuffle: unit -> bool
type env
val empty_env: env
......
(** {!shuffle} is used for test. Used for shuffling input entry *)
let opt_shuffle = ref None
let set_shuffle = function
| None -> opt_shuffle := None
| Some i -> opt_shuffle := Some (Random.State.make i)
let is_shuffle () = !opt_shuffle <> None
let shufflep ((t1,t2) as p) =
match !opt_shuffle with
| None -> p
| Some rnd when Random.State.bool rnd -> p
| _ -> (t2,t1)
let shufflel l =
match !opt_shuffle with
| None -> l
| Some rnd ->
let rec aux head tail = function
| [] -> List.rev_append head tail
| a::l when Random.State.bool rnd -> aux (a::head) tail l
| a::l -> aux head (a::tail) l in
aux [] [] l
val set_shuffle: int array option -> unit
(** if None is given shuffling is disable (default) *)
val is_shuffle: unit -> bool
val shufflep: ('a * 'a) -> ('a * 'a)
(* uniform *)
val shufflel: 'a list -> 'a list
(* not uniform *)
......@@ -11,7 +11,7 @@ let rec make_tests acc seed =
let module Uf = Tests_uf.Tests(Egraph_simple) in
let test = ((Pp.sprintf "seed %a" print_seed seed) >::: [Uf.tests]) in
let test = test_decorate
(fun f -> (fun () -> Egraph_simple.set_shuffle seed; f ())) test in
(fun f -> (fun () -> Shuffle.set_shuffle seed; f ())) test in
test::acc
let tests =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment