You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a bug in the code before the major rewrite 147c8d9. It is a valid displacement algebra, though it's different from what's called "Fractal" on paper / in OCaml. The question is---what is it??? @cangiuli@TOTBWF
This was the "wrong" Fractal:
_⊗ᶠ_ :List⁺⌞𝒟⌟→List⁺⌞𝒟⌟→List⁺⌞𝒟⌟
[ x ] ⊗ᶠ [ y ] = [ x ⊗ y ]
[ x ] ⊗ᶠ (y ∷ys) = (x ⊗ y) ∷ys
(x ∷xs) ⊗ᶠ [ y ] = (x ⊗ y) ∷xs
(x ∷xs) ⊗ᶠ (y ∷ys) = (x ⊗ y) ∷ (xs⊗ᶠ ys)
This is the correct one:
_⊗ᶠ_ :List⁺⌞𝒟⌟→List⁺⌞𝒟⌟→List⁺⌞𝒟⌟
[ x ] ⊗ᶠ [ y ] = [ x ⊗ y ]
[ x ] ⊗ᶠ (y ∷ys) = (x ⊗ y) ∷ys
(x ∷xs) ⊗ᶠ ys = x ∷ (xs⊗ᶠ ys)
However, the "wrong" one is a valid displacement algebra. What's this "wrong" one anyway?
The text was updated successfully, but these errors were encountered:
favonia
changed the title
Study the wrong Fractal
Study the "wrong" Fractal
Nov 27, 2023
There was a bug in the code before the major rewrite 147c8d9. It is a valid displacement algebra, though it's different from what's called "Fractal" on paper / in OCaml. The question is---what is it??? @cangiuli @TOTBWF
This was the "wrong" Fractal:
This is the correct one:
However, the "wrong" one is a valid displacement algebra. What's this "wrong" one anyway?
The text was updated successfully, but these errors were encountered: