Skip to content

Commit 1d4b21d

Browse files
committed
change file headers to MIT
1 parent aee7aae commit 1d4b21d

40 files changed

+967
-2415
lines changed

examples/standalone/epochtest/COPYING

-674
This file was deleted.

examples/standalone/epochtest/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Phylogenetic Likelihood Working Group
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

java/beagle/Beagle.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,9 @@
55
*
66
* This file is part of BEAGLE.
77
*
8-
* BEAGLE is free software: you can redistribute it and/or modify
9-
* it under the terms of the GNU Lesser General Public License as
10-
* published by the Free Software Foundation, either version 3 of
11-
* the License, or (at your option) any later version.
12-
*
13-
* BEAGLE is distributed in the hope that it will be useful,
14-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16-
* GNU Lesser General Public License for more details.
17-
*
18-
* You should have received a copy of the GNU Lesser General Public
19-
* License along with BEAGLE. If not, see
20-
* <http://www.gnu.org/licenses/>.
8+
* Use of this source code is governed by an MIT-style
9+
* license that can be found in the LICENSE file or at
10+
* https://opensource.org/licenses/MIT.
2111
*
2212
* @brief This file documents the API as well as header for the
2313
* Broad-platform Evolutionary Analysis General Likelihood Evaluator

libhmsbeagle/BeagleImpl.h

+32-42
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,10 @@
66
*
77
* This file is part of BEAGLE.
88
*
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.
1312
*
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-
*
2313
* @author Andrew Rambaut
2414
* @author Marc Suchard
2515
* @author Daniel Ayres
@@ -42,31 +32,31 @@ class BeagleImpl
4232
{
4333
public:
4434
virtual ~BeagleImpl(){}
45-
35+
4636
virtual int createInstance(int tipCount,
4737
int partialsBufferCount,
4838
int compactBufferCount,
4939
int stateCount,
5040
int patternCount,
5141
int eigenBufferCount,
52-
int matrixBufferCount,
42+
int matrixBufferCount,
5343
int categoryCount,
5444
int scaleBufferCount,
5545
int resourceNumber,
5646
int pluginResourceNumber,
5747
long preferenceFlags,
5848
long requirementFlags) = 0;
59-
49+
6050
virtual int getInstanceDetails(BeagleInstanceDetails* returnInfo) = 0;
61-
51+
6252
virtual int setCPUThreadCount(int threadCount) = 0;
6353

6454
virtual int setTipStates(int tipIndex,
6555
const int* inStates) = 0;
6656

6757
virtual int setTipPartials(int tipIndex,
6858
const double* inPartials) = 0;
69-
59+
7060
virtual int setPartials(int bufferIndex,
7161
const double* inPartials) = 0;
7262

@@ -77,28 +67,28 @@ class BeagleImpl
7767
virtual int getPartials(int bufferIndex,
7868
int scaleIndex,
7969
double* outPartials) = 0;
80-
70+
8171
virtual int setEigenDecomposition(int eigenIndex,
8272
const double* inEigenVectors,
8373
const double* inInverseEigenVectors,
8474
const double* inEigenValues) = 0;
85-
75+
8676
virtual int setStateFrequencies(int stateFrequenciesIndex,
87-
const double* inStateFrequencies) = 0;
88-
77+
const double* inStateFrequencies) = 0;
78+
8979
virtual int setCategoryWeights(int categoryWeightsIndex,
9080
const double* inCategoryWeights) = 0;
91-
81+
9282
virtual int setPatternWeights(const double* inPatternWeights) = 0;
9383

9484
virtual int setPatternPartitions(int partitionCount,
9585
const int* inPatternPartitions) = 0;
96-
86+
9787
virtual int setCategoryRates(const double* inCategoryRates) = 0;
9888

9989
virtual int setCategoryRatesWithIndex(int categoryRatesIndex,
10090
const double* inCategoryRates) = 0;
101-
91+
10292
virtual int setTransitionMatrix(int matrixIndex,
10393
const double* inMatrix,
10494
double paddedValue) = 0;
@@ -109,8 +99,8 @@ class BeagleImpl
10999
virtual int setTransitionMatrices(const int* matrixIndices,
110100
const double* inMatrices,
111101
const double* paddedValues,
112-
int count) = 0;
113-
102+
int count) = 0;
103+
114104
virtual int getTransitionMatrix(int matrixIndex,
115105
double* outMatrix) = 0;
116106

@@ -149,7 +139,7 @@ class BeagleImpl
149139
const int* secondDerivativeIndices,
150140
const double* edgeLengths,
151141
int count) = 0;
152-
142+
153143
virtual int updatePartials(const int* operations,
154144
int operationCount,
155145
int cumulativeScalingIndex) = 0;
@@ -166,7 +156,7 @@ class BeagleImpl
166156

167157
virtual int waitForPartials(const int* destinationPartials,
168158
int destinationPartialsCount) = 0;
169-
159+
170160
virtual int accumulateScaleFactors(const int* scalingIndices,
171161
int count,
172162
int cumulativeScalingIndex) = 0;
@@ -175,7 +165,7 @@ class BeagleImpl
175165
int count,
176166
int cumulativeScaleIndex,
177167
int partitionIndex) = 0;
178-
168+
179169
virtual int removeScaleFactors(const int* scalingIndices,
180170
int count,
181171
int cumulativeScalingIndex) = 0;
@@ -184,18 +174,18 @@ class BeagleImpl
184174
int count,
185175
int cumulativeScaleIndex,
186176
int partitionIndex) = 0;
187-
188-
virtual int resetScaleFactors(int cumulativeScalingIndex) = 0;
177+
178+
virtual int resetScaleFactors(int cumulativeScalingIndex) = 0;
189179

190180
virtual int resetScaleFactorsByPartition(int cumulativeScaleIndex,
191-
int partitionIndex) = 0;
192-
181+
int partitionIndex) = 0;
182+
193183
virtual int copyScaleFactors(int destScalingIndex,
194-
int srcScalingIndex) = 0;
195-
184+
int srcScalingIndex) = 0;
185+
196186
virtual int getScaleFactors(int srcScalingIndex,
197-
double* scaleFactors) = 0;
198-
187+
double* scaleFactors) = 0;
188+
199189
virtual int calculateRootLogLikelihoods(const int* bufferIndices,
200190
const int* categoryWeightsIndices,
201191
const int* stateFrequenciesIndices,
@@ -263,14 +253,14 @@ class BeagleImpl
263253
double* outSumFirstDerivative,
264254
double* outSumSecondDerivativeByPartition,
265255
double* outSumSecondDerivative) = 0;
266-
256+
267257
virtual int getLogLikelihood(double* outSumLogLikelihood) = 0;
268258

269259
virtual int getDerivatives(double* outSumFirstDerivative,
270260
double* outSumSecondDerivative) = 0;
271261

272262
virtual int getSiteLogLikelihoods(double* outLogLikelihoods) = 0;
273-
263+
274264
virtual int getSiteDerivatives(double* outFirstDerivatives,
275265
double* outSecondDerivatives) = 0;
276266
//protected:
@@ -293,9 +283,9 @@ class BeagleImplFactory {
293283
long preferenceFlags,
294284
long requirementFlags,
295285
int* errorCode) = 0; // pure virtual
296-
286+
297287
virtual const char* getName() = 0; // pure virtual
298-
288+
299289
virtual const long getFlags() = 0; // pure virtual
300290
};
301291

libhmsbeagle/CPU/AVXDefinitions.h

+3-13
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,9 @@
66
*
77
* This file is part of BEAGLE.
88
*
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.
13-
*
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/>.
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.
2212
*
2313
* @author Marc Suchard
2414
*/

0 commit comments

Comments
 (0)