Step 1 is to convert the odd-ness constraint of Colbit
to the type level:
{-# LANGUAGE TypeSynonymInstances #-}
data Color = Black | White deriving (Bounded, Enum, Eq, Ord, Read, Show)
data Odd = Evens Color Even Even | Odds Color Odd Odd deriving (Eq, Ord, Read, Show)
data Even = Tip | OddL Color Odd Even | OddR Color Even Odd deriving (Eq, Ord, Read, Show)
type Colbit = Odd
Then you can play the tricks I described in my previous answer to one of your questions to build a bijection with the naturals. Recalling the preamble:
type Nat = Integer
class Godel a where
to :: a -> Nat
from :: Nat -> a
instance Godel Nat where to = id; from = id
-- you should probably fix this instance to not use
-- Double if you plan to use it for anything serious
instance (Godel a, Godel b) => Godel (a, b) where
to (m_, n_) = (m + n) * (m + n + 1) `quot` 2 + m where
m = to m_
n = to n_
from p = (from m, from n) where
isqrt = floor . sqrt . fromIntegral
base = (isqrt (1 + 8 * p) - 1) `quot` 2
triangle = base * (base + 1) `quot` 2
m = p - triangle
n = base - m
instance (Godel a, Godel b) => Godel (Either a b) where
to (Left l) = 0 + 2 * to l
to (Right r) = 1 + 2 * to r
from n = case n `quotRem` 2 of
(l, 0) -> Left (from l)
(r, 1) -> Right (from r)
With that in place, the instances for our types are pretty easy.
monomorph :: Either a a -> Either a a
monomorph = id
toColored :: Godel v => (Color, v) -> Nat
toColored (Black, v) = to (monomorph (Left v))
toColored (White, v) = to (monomorph (Right v))
fromColored :: Godel v => Nat -> (Color, v)
fromColored n = case from n of
Left v -> (Black, v)
Right v -> (White, v)
instance Godel Odd where
to (Evens c l r) = 0 + 2 * toColored (c, (l, r))
to (Odds c l r) = 1 + 2 * toColored (c, (l, r))
from n = case n `quotRem` 2 of
(clr, 0) -> Evens c l r where (c, (l, r)) = fromColored clr
(clr, 1) -> Odds c l r where (c, (l, r)) = fromColored clr
instance Godel Even where
to Tip = 0
to (OddL c l r) = 1 + 2 * toColored (c, (l, r))
to (OddR c l r) = 2 + 2 * toColored (c, (l, r))
from 0 = Tip
from n = case (n-1) `quotRem` 2 of
(clr, 0) -> OddL c l r where (c, (l, r)) = fromColored clr
(clr, 1) -> OddR c l r where (c, (l, r)) = fromColored clr
And that's pretty much it. Now you've got your bijection with the naturals, and you can pick your favorite bijection between the naturals and bitstreams to postcompose with.