# HG changeset patch # User Shinji KONO # Date 1558784900 -32400 # Node ID 7c23969befc97c94be27c8ed2169deb6e10e3ca1 # Parent 4fb2a239061dec6527c346e16d956de91528d056 fix Select diff -r 4fb2a239061d -r 7c23969befc9 ordinal-definable.agda --- a/ordinal-definable.agda Sat May 25 18:45:47 2019 +0900 +++ b/ordinal-definable.agda Sat May 25 20:48:20 2019 +0900 @@ -173,7 +173,7 @@ Replace : OD {n} → (OD {n} → OD {n} ) → OD {n} Replace X ψ = sup-od ψ Select : OD {n} → (OD {n} → Set n ) → OD {n} - Select X ψ = record { def = λ x → ψ ( ord→od x ) } + Select X ψ = record { def = λ x → ( ( def X x ) ∧ ψ ( ord→od x )) } _,_ : OD {n} → OD {n} → OD {n} x , y = record { def = λ z → ( (z ≡ od→ord x ) ∨ ( z ≡ od→ord y )) } Union : OD {n} → OD {n} @@ -228,13 +228,17 @@ minimul