diff options
author | Adam Chlipala <adam@chlipala.net> | 2010-12-18 14:17:45 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2010-12-18 14:17:45 -0500 |
commit | 4d07c227812b49e71de49b3e64ec6da1fbc30aed (patch) | |
tree | a234fad234187fc2eb74166ebdcd4e810bf60d30 /lib | |
parent | c71de1db0cf31466bfc5fe7e96021e5d3cba6979 (diff) |
Change tasks to support parametric code; add clientLeaves
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ur/basis.urs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 6fa92a7c..2a61b701 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -810,8 +810,9 @@ val show_xml : ctx ::: {Unit} -> use ::: {Type} -> bind ::: {Type} -> show (xml (** Tasks *) -type task_kind -val initialize : task_kind +con task_kind :: Type -> Type +val initialize : task_kind unit +val clientLeaves : task_kind client (** Information flow security *) |