-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprover.mli
More file actions
executable file
·30 lines (24 loc) · 1.25 KB
/
prover.mli
File metadata and controls
executable file
·30 lines (24 loc) · 1.25 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
30
(* 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. *)
(* *)
(******************************************************************************)
(** Must-subtraction implementation *)
open Exp
open Assertions
(** This module implements the Must-subtraction algorithm, also known as
frame inference, which is a generalization of entailment checking.
For efficiency purposes, the implementation differs substantially from
(Berdine, Calcagno, O'Hearn, 2005).
*)
val default_prover : prover
val verbose : int ref
val args : (Arg.key * Arg.spec * Arg.doc) list