summaryrefslogtreecommitdiff
path: root/src/gen_lib/prompt.lem
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen_lib/prompt.lem')
-rw-r--r--src/gen_lib/prompt.lem13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gen_lib/prompt.lem b/src/gen_lib/prompt.lem
index 9642c714..1d8623df 100644
--- a/src/gen_lib/prompt.lem
+++ b/src/gen_lib/prompt.lem
@@ -30,6 +30,19 @@ end
declare {isabelle} termination_argument foreachM = automatic
+val bool_of_bitU_undef : forall 'rv 'e. bitU -> monad 'rv bool 'e
+let bool_of_bitU_undef = function
+ | B0 -> return false
+ | B1 -> return true
+ | BU -> undefined_bool ()
+end
+
+val bools_of_bitUs : forall 'rv 'e. list bitU -> monad 'rv (list bool) 'e
+let bools_of_bitUs bits =
+ foreachM bits []
+ (fun b bools ->
+ bool_of_bitU_undef b >>= (fun b ->
+ return (bools ++ [b])))
val whileM : forall 'rv 'vars 'e. 'vars -> ('vars -> monad 'rv bool 'e) ->
('vars -> monad 'rv 'vars 'e) -> monad 'rv 'vars 'e