6
6
*
7
7
* This file is part of BEAGLE.
8
8
*
9
- * BEAGLE is free software: you can redistribute it and/or modify
10
- * it under the terms of the GNU Lesser General Public License as
11
- * published by the Free Software Foundation, either version 3 of
12
- * the License, or (at your option) any later version.
9
+ * Use of this source code is governed by an MIT-style
10
+ * license that can be found in the LICENSE file or at
11
+ * https://opensource.org/licenses/MIT.
13
12
*
14
- * BEAGLE is distributed in the hope that it will be useful,
15
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
- * GNU Lesser General Public License for more details.
18
- *
19
- * You should have received a copy of the GNU Lesser General Public
20
- * License along with BEAGLE. If not, see
21
- * <http://www.gnu.org/licenses/>.
22
- *
23
13
* @author Andrew Rambaut
24
14
* @author Marc Suchard
25
15
* @author Daniel Ayres
@@ -42,31 +32,31 @@ class BeagleImpl
42
32
{
43
33
public:
44
34
virtual ~BeagleImpl (){}
45
-
35
+
46
36
virtual int createInstance (int tipCount,
47
37
int partialsBufferCount,
48
38
int compactBufferCount,
49
39
int stateCount,
50
40
int patternCount,
51
41
int eigenBufferCount,
52
- int matrixBufferCount,
42
+ int matrixBufferCount,
53
43
int categoryCount,
54
44
int scaleBufferCount,
55
45
int resourceNumber,
56
46
int pluginResourceNumber,
57
47
long preferenceFlags,
58
48
long requirementFlags) = 0;
59
-
49
+
60
50
virtual int getInstanceDetails (BeagleInstanceDetails* returnInfo) = 0;
61
-
51
+
62
52
virtual int setCPUThreadCount (int threadCount) = 0;
63
53
64
54
virtual int setTipStates (int tipIndex,
65
55
const int * inStates) = 0;
66
56
67
57
virtual int setTipPartials (int tipIndex,
68
58
const double * inPartials) = 0;
69
-
59
+
70
60
virtual int setPartials (int bufferIndex,
71
61
const double * inPartials) = 0;
72
62
@@ -77,28 +67,28 @@ class BeagleImpl
77
67
virtual int getPartials (int bufferIndex,
78
68
int scaleIndex,
79
69
double * outPartials) = 0;
80
-
70
+
81
71
virtual int setEigenDecomposition (int eigenIndex,
82
72
const double * inEigenVectors,
83
73
const double * inInverseEigenVectors,
84
74
const double * inEigenValues) = 0;
85
-
75
+
86
76
virtual int setStateFrequencies (int stateFrequenciesIndex,
87
- const double * inStateFrequencies) = 0;
88
-
77
+ const double * inStateFrequencies) = 0;
78
+
89
79
virtual int setCategoryWeights (int categoryWeightsIndex,
90
80
const double * inCategoryWeights) = 0;
91
-
81
+
92
82
virtual int setPatternWeights (const double * inPatternWeights) = 0;
93
83
94
84
virtual int setPatternPartitions (int partitionCount,
95
85
const int * inPatternPartitions) = 0;
96
-
86
+
97
87
virtual int setCategoryRates (const double * inCategoryRates) = 0;
98
88
99
89
virtual int setCategoryRatesWithIndex (int categoryRatesIndex,
100
90
const double * inCategoryRates) = 0;
101
-
91
+
102
92
virtual int setTransitionMatrix (int matrixIndex,
103
93
const double * inMatrix,
104
94
double paddedValue) = 0;
@@ -109,8 +99,8 @@ class BeagleImpl
109
99
virtual int setTransitionMatrices (const int * matrixIndices,
110
100
const double * inMatrices,
111
101
const double * paddedValues,
112
- int count) = 0;
113
-
102
+ int count) = 0;
103
+
114
104
virtual int getTransitionMatrix (int matrixIndex,
115
105
double * outMatrix) = 0;
116
106
@@ -149,7 +139,7 @@ class BeagleImpl
149
139
const int * secondDerivativeIndices,
150
140
const double * edgeLengths,
151
141
int count) = 0;
152
-
142
+
153
143
virtual int updatePartials (const int * operations,
154
144
int operationCount,
155
145
int cumulativeScalingIndex) = 0;
@@ -166,7 +156,7 @@ class BeagleImpl
166
156
167
157
virtual int waitForPartials (const int * destinationPartials,
168
158
int destinationPartialsCount) = 0;
169
-
159
+
170
160
virtual int accumulateScaleFactors (const int * scalingIndices,
171
161
int count,
172
162
int cumulativeScalingIndex) = 0;
@@ -175,7 +165,7 @@ class BeagleImpl
175
165
int count,
176
166
int cumulativeScaleIndex,
177
167
int partitionIndex) = 0;
178
-
168
+
179
169
virtual int removeScaleFactors (const int * scalingIndices,
180
170
int count,
181
171
int cumulativeScalingIndex) = 0;
@@ -184,18 +174,18 @@ class BeagleImpl
184
174
int count,
185
175
int cumulativeScaleIndex,
186
176
int partitionIndex) = 0;
187
-
188
- virtual int resetScaleFactors (int cumulativeScalingIndex) = 0;
177
+
178
+ virtual int resetScaleFactors (int cumulativeScalingIndex) = 0;
189
179
190
180
virtual int resetScaleFactorsByPartition (int cumulativeScaleIndex,
191
- int partitionIndex) = 0;
192
-
181
+ int partitionIndex) = 0;
182
+
193
183
virtual int copyScaleFactors (int destScalingIndex,
194
- int srcScalingIndex) = 0;
195
-
184
+ int srcScalingIndex) = 0;
185
+
196
186
virtual int getScaleFactors (int srcScalingIndex,
197
- double * scaleFactors) = 0;
198
-
187
+ double * scaleFactors) = 0;
188
+
199
189
virtual int calculateRootLogLikelihoods (const int * bufferIndices,
200
190
const int * categoryWeightsIndices,
201
191
const int * stateFrequenciesIndices,
@@ -263,14 +253,14 @@ class BeagleImpl
263
253
double * outSumFirstDerivative,
264
254
double * outSumSecondDerivativeByPartition,
265
255
double * outSumSecondDerivative) = 0;
266
-
256
+
267
257
virtual int getLogLikelihood (double * outSumLogLikelihood) = 0;
268
258
269
259
virtual int getDerivatives (double * outSumFirstDerivative,
270
260
double * outSumSecondDerivative) = 0;
271
261
272
262
virtual int getSiteLogLikelihoods (double * outLogLikelihoods) = 0;
273
-
263
+
274
264
virtual int getSiteDerivatives (double * outFirstDerivatives,
275
265
double * outSecondDerivatives) = 0;
276
266
// protected:
@@ -293,9 +283,9 @@ class BeagleImplFactory {
293
283
long preferenceFlags,
294
284
long requirementFlags,
295
285
int * errorCode) = 0; // pure virtual
296
-
286
+
297
287
virtual const char * getName () = 0; // pure virtual
298
-
288
+
299
289
virtual const long getFlags () = 0; // pure virtual
300
290
};
301
291
0 commit comments