src/HOL/Data_Structures/Cmp.thy
author nipkow
Mon, 11 Jan 2016 20:51:13 +0100
changeset 62130 90a3016a6c12
parent 61640 44c9198f210c
child 63411 e051eea34990
permissions -rw-r--r--
added AA_Map; tuned titles

(* Author: Tobias Nipkow *)

section {* Three-Way Comparison *}

theory Cmp
imports Main
begin

datatype cmp = LT | EQ | GT

class cmp = linorder +
fixes cmp :: "'a \<Rightarrow> 'a \<Rightarrow> cmp"
assumes LT[simp]: "cmp x y = LT \<longleftrightarrow> x < y"
assumes EQ[simp]: "cmp x y = EQ \<longleftrightarrow> x = y"
assumes GT[simp]: "cmp x y = GT \<longleftrightarrow> x > y"

lemma case_cmp_if[simp]: "(case c of EQ \<Rightarrow> e | LT \<Rightarrow> l | GT \<Rightarrow> g) =
  (if c = LT then l else if c = GT then g else e)"
by(simp split: cmp.split)

end