Added P&P&Q = P&Q and P|P|Q = P|Q.
--- a/src/HOL/simpdata.ML Mon Mar 17 15:38:26 1997 +0100
+++ b/src/HOL/simpdata.ML Tue Mar 18 08:42:18 1997 +0100
@@ -96,9 +96,11 @@
"(P --> True) = True", "(P --> P) = True",
"(P --> False) = (~P)", "(P --> ~P) = (~P)",
"(P & True) = P", "(True & P) = P",
- "(P & False) = False", "(False & P) = False", "(P & P) = P",
+ "(P & False) = False", "(False & P) = False",
+ "(P & P) = P", "(P & (P & Q)) = (P & Q)",
"(P | True) = True", "(True | P) = True",
- "(P | False) = P", "(False | P) = P", "(P | P) = P",
+ "(P | False) = P", "(False | P) = P",
+ "(P | P) = P", "(P | (P | Q)) = (P | Q)",
"((~P) = (~Q)) = (P=Q)",
"(!x.P) = P", "(? x.P) = P", "? x. x=t", "? x. t=x",
"(? x. x=t & P(x)) = P(t)", "(? x. t=x & P(x)) = P(t)",