(* Title: Binary Search Trees, Tactic-Style Author: Viktor Kuncak, MIT CSAIL, November 2003 Maintainer: Larry Paulson <Larry.Paulson at cl.cam.ac.uk> License: LGPL *) section ‹Tactic-Style Reasoning for Binary Tree Operations› theory BinaryTree_TacticStyle imports Main begin text ‹This example theory illustrates automated proofs of correctness for binary tree operations using tactic-style reasoning. The current proofs for remove operation are by Tobias Nipkow, some modifications and the remaining tree operations are by Viktor Kuncak.› (*============================================================*) section ‹Definition of a sorted binary tree› (*============================================================*)