Skip to content

Commit

Permalink
issue #327 make fields protected instead of package private
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouckaert committed May 26, 2015
1 parent 4a14de0 commit 9981e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/beast/evolution/likelihood/TreeLikelihood.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ enum Scaling {none, always, _default};
/**
* memory allocation for likelihoods for each of the patterns *
*/
double[] patternLogLikelihoods;
protected double[] patternLogLikelihoods;
/**
* memory allocation for the root partials *
*/
double[] m_fRootPartials;
protected double[] m_fRootPartials;
/**
* memory allocation for probability tables obtained from the SiteModel *
*/
Expand Down

0 comments on commit 9981e8b

Please sign in to comment.