Skip to content

Commit

Permalink
Allow non-DNA
Browse files Browse the repository at this point in the history
  • Loading branch information
afmagee committed Sep 27, 2023
1 parent 25150b8 commit aa8b1e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public double[] getGradientLogDensity() {
double[] qQPlus = getQQPlus(eigenVectors, inverseEigenVectors, index);
double[] qPlusQ = getQPlusQ(eigenVectors, inverseEigenVectors, index);

double[] generator = new double[16];
double[] generator = new double[stateCount * stateCount];
substitutionModel.getInfinitesimalMatrix(generator);

for (int m = 0; m < stateCount; ++m) {
Expand Down

0 comments on commit aa8b1e6

Please sign in to comment.