Skip to content

Commit

Permalink
Hard-coded exp priors on IOU parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaneguindon committed Sep 24, 2024
1 parent 2a420d9 commit c5bcf51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/iou.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ phydbl IOU_Prior_Theta(t_tree *tree)
phydbl lbda,lnP;

lnP = 0.0;
lbda = 1.0E+4;
lbda = 1.0E+2;
lnP += Log_Dexp(tree->mmod->ou_theta,lbda);
return(lnP);
}
Expand All @@ -173,7 +173,7 @@ phydbl IOU_Prior_Mu(t_tree *tree)
phydbl lbda,lnP;

lnP = 0.0;
lbda = 1.0E+3;
lbda = 1.0E+0;
for (int i = 0; i < tree->mmod->n_dim; i++)
lnP += Log_Dexp(tree->mmod->ou_mu[i], lbda);
return (lnP);
Expand Down
1 change: 1 addition & 0 deletions src/mcmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -14689,6 +14689,7 @@ void MCMC_PHYREX_IOU_Update_Theta(t_tree *tree)

tree->mcmc->run++;

PHYREX_Print_MCMC_Stats(tree);
PHYREX_Print_MCMC_Tree(tree);
PHYREX_Print_MCMC_Summary(tree);
}
Expand Down

0 comments on commit c5bcf51

Please sign in to comment.