Skip to content
Snippets Groups Projects
Commit fd6d3318 authored by Thorsten Wißmann's avatar Thorsten Wißmann :guitar:
Browse files

Add lambdas for partial constructor application

parent 1e892e16
No related branches found
No related tags found
No related merge requests found
......@@ -145,8 +145,8 @@ let doTestK () : testresults =
let timeout = 300 in (* 5 minutes *)
let lF = List.map (fun p -> (string_of_int p, 1)) (0--10) in
let lFF = [((fun x -> C.NOT x),1)] in
let lFFF = [(C.AND,1),(C.OR,1)] in
let lPFF = [(C.EX,1),(C.AX,1)] in
let lFFF = [((fun x y -> C.AND x y),1), ((fun x y -> C.OR x y),1)] in
let lPFF = [(fun p f -> C.EX p f,1),(fun p f -> C.AX p f,1)] in
(* role names *)
let lP = List.map (fun p -> (string_of_int p, 1)) (0--10) in
let lPP = [] in
......
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