Files
why3/stdlib/tree.mlw
Claude Marche 7454f91538 Add modules in the stdlibdoc
fixes issue #329
2019-06-05 18:57:02 +02:00

76 lines
1.2 KiB
Plaintext

(** {1 Polymorphic n-ary trees} *)
(** {2 Basic theory with polymorphic lists of children} *)
module Tree
use list.List
type forest 'a = list (tree 'a)
with tree 'a = Node 'a (forest 'a)
end
(** {2 Tree size} *)
module Size
use Tree
use list.List
use int.Int
let rec function size_forest (f: forest 'a) : int
ensures { result >= 0 }
= match f with
| Nil -> 0
| Cons t f -> size_tree t + size_forest f
end
with function size_tree (t: tree 'a) : int
ensures { result > 0 }
= match t with
| Node _ f -> 1 + size_forest f
end
end
(** {2 Forests} *)
module Forest
use int.Int
type forest 'a =
| E
| N 'a (forest 'a) (forest 'a)
end
(** {2 Forest size} *)
module SizeForest
use Forest
use int.Int
let rec function size_forest (f: forest 'a) : int
ensures { result >= 0 }
= match f with
| E -> 0
| N _ f1 f2 -> 1 + size_forest f1 + size_forest f2
end
end
(** {2 Membership in a forest} *)
module MemForest
use Forest
predicate mem_forest (n: 'a) (f: forest 'a) = match f with
| E -> false
| N i f1 f2 -> i = n || mem_forest n f1 || mem_forest n f2
end
end