forked from cubicle-model-checker/cubicle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtyping.mli
30 lines (23 loc) · 1.35 KB
/
typing.mli
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
(**************************************************************************)
(* *)
(* Cubicle *)
(* *)
(* Copyright (C) 2011-2014 *)
(* *)
(* Sylvain Conchon and Alain Mebsout *)
(* Universite Paris-Sud 11 *)
(* *)
(* *)
(* This file is distributed under the terms of the Apache Software *)
(* License version 2.0 *)
(* *)
(**************************************************************************)
open Format
open Ast
(** Typing of parameterized systems *)
type error
exception Error of error * Util.loc
val report : Format.formatter -> error -> unit
val system : system -> t_system
(** Types an untyped system and performs subtyping analysis is the flag
{! Options.subtyping} is [true]. *)