packages feed

leancheck-0.7.1: tests/diff/tiers-mixed-Bool-MBool.out

map length (tiers :: [[ Bool->Maybe Bool ]])  =  [2,8,8]

length (list :: [ Bool->Maybe Bool ])  =  Infinity

allUnique (list :: [ Bool->Maybe Bool ])  =  False

ratioRepetitions (list :: [ Bool->Maybe Bool ])  =  1 % 2

tiers :: [Bool->Maybe Bool]  =
  [ [ \x -> case x of
              False -> Nothing
              True -> Nothing
    , \x -> case x of
              False -> Nothing
              True -> Nothing
    ]
  , [ \x -> case x of
              False -> Nothing
              True -> Just False
    , \x -> case x of
              False -> Nothing
              True -> Just True
    , \x -> case x of
              False -> Just False
              True -> Nothing
    , \x -> case x of
              False -> Just True
              True -> Nothing
    , \x -> case x of
              False -> Just False
              True -> Nothing
    , \x -> case x of
              False -> Just True
              True -> Nothing
    , \x -> case x of
              False -> Nothing
              True -> Just False
    , \x -> case x of
              False -> Nothing
              True -> Just True
    ]
  , [ \x -> case x of
              False -> Just False
              True -> Just False
    , \x -> case x of
              False -> Just False
              True -> Just True
    , \x -> case x of
              False -> Just True
              True -> Just False
    , \x -> case x of
              False -> Just True
              True -> Just True
    , \x -> case x of
              False -> Just False
              True -> Just False
    , \x -> case x of
              False -> Just True
              True -> Just False
    , \x -> case x of
              False -> Just False
              True -> Just True
    , \x -> case x of
              False -> Just True
              True -> Just True
    ]
  ]