Require Import ZArith. Inductive Z_fbtree : Set := | Z_fleaf : Z_fbtree | Z_fnode : Z -> (bool -> Z_fbtree) -> Z_fbtree.