Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
"""
Some constants used by the samplers
FILE_SUFFIX = ".out"
LOG_FILE_SUFFIX = ".log"
PROB_PREFIX = "prob"
BURNIN_PREFIX = "burnin"
STATE_PREFIX = "state"
PROB_SUFFIX = PROB_PREFIX+FILE_SUFFIX
BURNIN_SUFFIX = BURNIN_PREFIX+FILE_SUFFIX
BURNIN_PROB_SUFFIX = BURNIN_PREFIX+PROB_PREFIX+FILE_SUFFIX
BURNIN_STATE_SUFFIX = BURNIN_PREFIX+STATE_PREFIX+FILE_SUFFIX