File: SMC.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 (21 lines) | stat: -rw-r--r-- 1,409 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
module SMC where

import Data.Text

import Probability
foreign import bpcall "SMC:smc_density" builtin_smc_density :: () -> () -> () -> () -> () -> ()
foreign import bpcall "SMC:smc_trace" builtin_smc_trace   :: () -> () -> () -> () -> () -> ()
foreign import bpcall "SMC:trace_to_trees" builtin_trace_to_trees      :: () -> ()

trace_to_trees = Text . builtin_trace_to_trees

smc_density rho_over_theta rates level_boundaries error_rate sequences = builtin_smc_density rho_over_theta rates' level_boundaries' error_rate sequences
                                                                where rates' = toVector rates
                                                                      level_boundaries' = toVector level_boundaries

smc_trace   rho_over_theta rates level_boundaries error_rate sequences = builtin_smc_trace rho_over_theta rates' level_boundaries' error_rate sequences
                                                                where rates' = toVector rates
                                                                      level_boundaries' = toVector level_boundaries

smc rho_over_theta rates level_boundaries error_rate = Distribution "SMC" (make_densities $ smc_density rho_over_theta rates level_boundaries error_rate)
                                                                    (error "SMC has no quantile") (return 0) (list_to_string("AlignmentRangeString"))