File: UniqueDist.hs

package info (click to toggle)
bali-phy 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,392 kB
  • sloc: cpp: 120,442; xml: 13,966; haskell: 9,975; python: 2,936; yacc: 1,328; perl: 1,169; lex: 912; sh: 343; makefile: 26
file content (29 lines) | stat: -rw-r--r-- 738 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module Probability.Distribution.UniqueDist where

import Probability.Random
import MCMC
import Data.Unique

data UniqueDist = UniqueDist

instance Dist UniqueDist where
    type Result UniqueDist = Unique
    dist_name _ = "unique"

instance IOSampleable UniqueDist where
    sampleIO UniqueDist = newUnique

-- Hmm.. Maybe we want the result of discrete distributionts to be Probability instead of LogDouble?

instance HasPdf UniqueDist where
    pdf UniqueDist u = 1

instance HasAnnotatedPdf UniqueDist where
    annotated_densities UniqueDist u = return ([],())

instance Sampleable UniqueDist where
    sample UniqueDist = RanDistribution2 UniqueDist do_nothing


uniqueDist = UniqueDist
uniqueInt = hashUnique <$> sample uniqueDist