Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
numberOfPossibilitiesSkat :: Integercombinatorial Combinatorics.CardPairs No documentation available.
numberDistinct :: Int -> Int -> Int -> Int -> Integercombinatorial Combinatorics.Mastermind numberDistinct n k b w computes the number of matching codes, given that all codes have distinct symbols. n is the alphabet size, k the width of the code, b the number of black evaluation sticks and w the number of white evaluation sticks.
QC.forAll genMastermindDistinct $ \(n,k,b,w) -> let alphabet = take n ['a'..]; code = take k alphabet in Mastermind.numberDistinct n k b w == (genericLength $ filter ((Mastermind.Eval b w ==) . Mastermind.evaluate code) $ Comb.variate k alphabet)
numberDistinctWhite :: Int -> Int -> Int -> Integercombinatorial Combinatorics.Mastermind QC.forAll genMastermindDistinct $ \(n,k,_b,w) -> Mastermind.numberDistinctWhite n k w == Mastermind.numberDistinct n k 0 w
numberOfPossibilities :: [Int]combinatorial Combinatorics.MaxNim No documentation available.
-
combinatorial Combinatorics.PaperStripGame No documentation available.
numbersOfGamesSeries :: [Integer]combinatorial Combinatorics.PaperStripGame No documentation available.
-
combinatorial Combinatorics.Partitions No documentation available.
-
combinatorial Combinatorics.Permutation.WithoutSomeFixpoints QC.forAll genPermutationWOFP $ \(k,xs) -> PermWOFP.numbers !! length xs !! k == length (PermWOFP.enumerate k xs)
QC.forAll (QC.choose (0,100)) $ \k -> Comb.factorial (toInteger k) == PermWOFP.numbers !! k !! 0
QC.forAll (QC.choose (0,100)) $ \k -> Comb.derangementNumber (toInteger k) == PermWOFP.numbers !! k !! k
number :: (Num a, Read a, Typeable a) => Text -> Either String aconfig-ini Data.Ini.Config Try to use the Read instance for a numeric type to parse a value, failing with a human-readable error message if reading fails.
>>> number "5" :: Either String Int Right 5 >>> number "hello" :: Either String Int Left "Unable to parse \"hello\" as a value of type Int"
number :: (Show a, Read a, Num a, Typeable a) => FieldValue aconfig-ini Data.Ini.Config.Bidir Represents a numeric field whose value is parsed according to the Read implementation for that type, and is serialized according to the Show implementation for that type.