Imports

B-tree deletion: child-bound projection

This submodule retains the public composedDelete_childBounded name as a small projection from the bundled raw-deletion preservation theorem.

namespace CLRSnamespace Chapter18namespace BTree

Raw deletion preserves recursive child key ranges for a structurally well-formed input node.

lemma composedDelete_childBounded (t x : Nat) (ht : 2 t) (tr : BTree) {isRoot : Bool} (hinv : NodeWF t isRoot tr) : ChildBounded (composedDelete t x tr) := by exact (composedDelete_rootResult t x ht (hinv.asRoot ht)).2.1.2.1
end BTreeend Chapter18end CLRS