Skip to content
Snippets Groups Projects
Commit f5d0ef77 authored by Tim Behrens's avatar Tim Behrens
Browse files

*** empty log message ***

parent 0baf4c8b
No related branches found
No related tags found
No related merge requests found
...@@ -58,8 +58,13 @@ namespace FIBRE{ ...@@ -58,8 +58,13 @@ namespace FIBRE{
const ColumnVector& m_alpha; const ColumnVector& m_alpha;
const ColumnVector& m_beta; const ColumnVector& m_beta;
const Matrix& m_bvals; const Matrix& m_bvals;
<<<<<<< fibre.h
xfibresOptions& opts;
public:
=======
xfibresOptions& opts; xfibresOptions& opts;
public: public:
>>>>>>> 1.10
//constructors:: //constructors::
Fibre( const ColumnVector& alpha, const ColumnVector& beta, Fibre( const ColumnVector& alpha, const ColumnVector& beta,
const Matrix& bvals,const float& d): const Matrix& bvals,const float& d):
...@@ -221,7 +226,12 @@ namespace FIBRE{ ...@@ -221,7 +226,12 @@ namespace FIBRE{
if (m_f<0 | m_f>=1 ) if (m_f<0 | m_f>=1 )
return true; return true;
else{ else{
m_f_prior=-(log(m_lam) + (m_lam-1)*log(1-m_f)); //m_f_prior=-(log(m_lam) + (m_lam-1)*log(1-m_f));
if(m_lam_jump)
m_f_prior=log(1-f)+2*log(fabs(log(1-f))); //marginalised with uniform prior on lambda
else
m_f_prior=0;
m_f_prior=opts.fudge.value()*m_f_prior; m_f_prior=opts.fudge.value()*m_f_prior;
return false; return false;
} }
...@@ -696,20 +706,20 @@ namespace FIBRE{ ...@@ -696,20 +706,20 @@ namespace FIBRE{
} }
if(!m_fibres[f].propose_lam()){ // if(!m_fibres[f].propose_lam()){
compute_prior(); // compute_prior();
compute_energy(); // compute_energy();
if(test_energy()){ // if(test_energy()){
m_fibres[f].accept_lam(); // m_fibres[f].accept_lam();
} // }
else{ // else{
m_fibres[f].reject_lam(); // m_fibres[f].reject_lam();
restore_energy_no_lik(); // restore_energy_no_lik();
} // }
} // }
else{ // else{
m_fibres[f].reject_lam(); // m_fibres[f].reject_lam();
} // }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment