-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtycheck.mli
More file actions
executable file
·29 lines (27 loc) · 1.32 KB
/
tycheck.mli
File metadata and controls
executable file
·29 lines (27 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(* Poling: Proof Of Linearizability Generator
* Poling is built on top of CAVE and shares the same license with CAVE
* See LICENSE.txt for license.
* Contact: He Zhu, Department of Computer Science, Purdue University
* Email: zhu103@purdue.edu
*)
(******************************************************************************)
(* __ ___ CAVE: Concurrent Algorithm VErifier *)
(* / /\ \ / | Copyright (c) 2010, Viktor Vafeiadis *)
(* | /--\ \ / |--- *)
(* \__ / \ \/ |___ See LICENSE.txt for license. *)
(* *)
(******************************************************************************)(** Type checking & conversion into command language *)
open Assertions
open Commands
(** Returns
[(globals, fun_specifications, resources, res_initializers, fun_proofs)] *)
val convert : Parsetree.p_item list ->
string list *
Misc.StringSet.t *
Exp.IdSet.t *
(string, fun_info) Hashtbl.t *
(Misc.component, act list) Hashtbl.t *
(Misc.component, Predicate.t) Hashtbl.t *
(Misc.component * res_init) list *
(string * can_entailment) list *
(string * Predicate.t) option