Skip to content

Commit

Permalink
reduce sampling for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
omalled committed Nov 17, 2016
1 parent f95591c commit 8a6a604
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/BIGDT.jl
Expand Up @@ -20,7 +20,8 @@ type BigDT
end

"Get MCMC chain"
function getmcmcchain(bigdt::BigDT, likelihoodparams; steps=10 ^ 2, burnin=10, numwalkers=10 ^ 2)
#function getmcmcchain(bigdt::BigDT, likelihoodparams; steps=10 ^ 2, burnin=10, numwalkers=10 ^ 2)
function getmcmcchain(bigdt::BigDT, likelihoodparams; steps=3, burnin=2, numwalkers=8)
conditionalloglikelihood = bigdt.makeloglikelihood(likelihoodparams)
function loglikelihood(params)
l1 = bigdt.logprior(params)
Expand Down
2 changes: 2 additions & 0 deletions test/testdt.jl
@@ -1,6 +1,8 @@
import BIGUQ
import BlackBoxOptim

srand(0)

function getbiguq1()
function model(params)
k = params[1]
Expand Down

0 comments on commit 8a6a604

Please sign in to comment.