[/] [trunk/] [src/] [uppaal/] [result.sig] - Blame information for rev 62

Line No. Rev Author Line
1 62 tbourke
(* $Id: result.sig 62 2008-08-20 11:20:33Z tbourke $
2
 *
3
 * Copyright (c) 2008 Timothy Bourke (University of NSW and NICTA)
4
 * All rights reserved.
5
 *
6
 * This program is free software; you can redistribute it and/or modify it
7
 * under the terms of the "BSD License" which is distributed with the
8
 * software in the file LICENSE.
9
 *
10
 * This program is distributed in the hope that it will be useful, but
11
 * WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the BSD
13
 * License for more details.
14
 *)
15 4 tbourke
 
16
signature RESULT =
17
sig
18
  type expr
19
  type boundid
20
  type direction
21
  type decl
22
  type param
23
  type symbol = Atom.atom
24
 
25
  datatype t = Expr of expr
26
             | Decls of decl list
27
             | Select of boundid list
28
             | Sync of symbol * direction * expr list
29
             | ExprList of expr list
30
             | Params of param list
31
end
32