From 022ab8b40ff9ebca9bf07c6595fcd2db2214ccd0 Mon Sep 17 00:00:00 2001 From: Erik Sverdrup Date: Sat, 29 Jun 2024 17:06:40 -0700 Subject: [PATCH] Add copyright notice to remaining source files (#1426) --- core/src/analysis/SplitFrequencyComputer.cpp | 4 +++- core/src/analysis/SplitFrequencyComputer.h | 4 +++- core/src/commons/Data.cpp | 4 +++- core/src/prediction/collector/SampleWeightComputer.cpp | 4 +++- core/src/prediction/collector/SampleWeightComputer.h | 4 +++- core/src/prediction/collector/TreeTraverser.cpp | 4 +++- core/src/prediction/collector/TreeTraverser.h | 4 +++- core/src/splitting/CausalSurvivalSplittingRule.h | 4 +++- core/src/splitting/InstrumentalSplittingRule.h | 4 +++- core/test/analysis/SplitFrequencyUnitTest.cpp | 4 +++- core/test/forest/ForestSmokeTest.cpp | 4 +++- core/test/splitting/MultiCausalSplittingRuleTest.cpp | 4 +++- core/test/splitting/MultiRegressionSplittingRuleTest.cpp | 4 +++- core/test/splitting/SplittingRuleInvarianceTest.cpp | 4 +++- core/test/splitting/SurvivalSplittingRuleTest.cpp | 4 +++- core/test/tree/TreePruningUnitTest.cpp | 4 +++- r-package/grf/bindings/AnalysisToolsBindings.cpp | 4 +++- 17 files changed, 51 insertions(+), 17 deletions(-) diff --git a/core/src/analysis/SplitFrequencyComputer.cpp b/core/src/analysis/SplitFrequencyComputer.cpp index 672ebaa51..2b1a2c9dd 100644 --- a/core/src/analysis/SplitFrequencyComputer.cpp +++ b/core/src/analysis/SplitFrequencyComputer.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/analysis/SplitFrequencyComputer.h b/core/src/analysis/SplitFrequencyComputer.h index 318ed5287..c5f8bc434 100644 --- a/core/src/analysis/SplitFrequencyComputer.h +++ b/core/src/analysis/SplitFrequencyComputer.h @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/commons/Data.cpp b/core/src/commons/Data.cpp index 879c25d39..02a3a436c 100644 --- a/core/src/commons/Data.cpp +++ b/core/src/commons/Data.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/prediction/collector/SampleWeightComputer.cpp b/core/src/prediction/collector/SampleWeightComputer.cpp index c9b81ab5b..b26789327 100644 --- a/core/src/prediction/collector/SampleWeightComputer.cpp +++ b/core/src/prediction/collector/SampleWeightComputer.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/prediction/collector/SampleWeightComputer.h b/core/src/prediction/collector/SampleWeightComputer.h index 706494253..02a08e0fc 100644 --- a/core/src/prediction/collector/SampleWeightComputer.h +++ b/core/src/prediction/collector/SampleWeightComputer.h @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/prediction/collector/TreeTraverser.cpp b/core/src/prediction/collector/TreeTraverser.cpp index 8436f05d5..8445eaf98 100644 --- a/core/src/prediction/collector/TreeTraverser.cpp +++ b/core/src/prediction/collector/TreeTraverser.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/prediction/collector/TreeTraverser.h b/core/src/prediction/collector/TreeTraverser.h index 9129f9e8c..7539f27f5 100644 --- a/core/src/prediction/collector/TreeTraverser.h +++ b/core/src/prediction/collector/TreeTraverser.h @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/splitting/CausalSurvivalSplittingRule.h b/core/src/splitting/CausalSurvivalSplittingRule.h index a6a5b16ec..bb68921b7 100644 --- a/core/src/splitting/CausalSurvivalSplittingRule.h +++ b/core/src/splitting/CausalSurvivalSplittingRule.h @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/src/splitting/InstrumentalSplittingRule.h b/core/src/splitting/InstrumentalSplittingRule.h index f085e191d..fa0c2b8aa 100644 --- a/core/src/splitting/InstrumentalSplittingRule.h +++ b/core/src/splitting/InstrumentalSplittingRule.h @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/analysis/SplitFrequencyUnitTest.cpp b/core/test/analysis/SplitFrequencyUnitTest.cpp index eea05ed78..0606fa5fe 100644 --- a/core/test/analysis/SplitFrequencyUnitTest.cpp +++ b/core/test/analysis/SplitFrequencyUnitTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/forest/ForestSmokeTest.cpp b/core/test/forest/ForestSmokeTest.cpp index 50e616112..bf48675b8 100644 --- a/core/test/forest/ForestSmokeTest.cpp +++ b/core/test/forest/ForestSmokeTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/splitting/MultiCausalSplittingRuleTest.cpp b/core/test/splitting/MultiCausalSplittingRuleTest.cpp index f2e01e228..60e742074 100644 --- a/core/test/splitting/MultiCausalSplittingRuleTest.cpp +++ b/core/test/splitting/MultiCausalSplittingRuleTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/splitting/MultiRegressionSplittingRuleTest.cpp b/core/test/splitting/MultiRegressionSplittingRuleTest.cpp index 374fc3e30..b8b2c7b68 100644 --- a/core/test/splitting/MultiRegressionSplittingRuleTest.cpp +++ b/core/test/splitting/MultiRegressionSplittingRuleTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/splitting/SplittingRuleInvarianceTest.cpp b/core/test/splitting/SplittingRuleInvarianceTest.cpp index fd46a5fd6..0cf32c0bd 100644 --- a/core/test/splitting/SplittingRuleInvarianceTest.cpp +++ b/core/test/splitting/SplittingRuleInvarianceTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/splitting/SurvivalSplittingRuleTest.cpp b/core/test/splitting/SurvivalSplittingRuleTest.cpp index 2d17df8fe..29528d05e 100644 --- a/core/test/splitting/SurvivalSplittingRuleTest.cpp +++ b/core/test/splitting/SurvivalSplittingRuleTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/core/test/tree/TreePruningUnitTest.cpp b/core/test/tree/TreePruningUnitTest.cpp index 487e18da6..34273c0a3 100644 --- a/core/test/tree/TreePruningUnitTest.cpp +++ b/core/test/tree/TreePruningUnitTest.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/r-package/grf/bindings/AnalysisToolsBindings.cpp b/r-package/grf/bindings/AnalysisToolsBindings.cpp index 876a171fb..95c7ff5e9 100644 --- a/r-package/grf/bindings/AnalysisToolsBindings.cpp +++ b/r-package/grf/bindings/AnalysisToolsBindings.cpp @@ -1,5 +1,7 @@ /*------------------------------------------------------------------------------- - This file is part of generalized-random-forest. + Copyright (c) 2024 GRF Contributors. + + This file is part of generalized random forest (grf). grf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by