From a203bb1d8ff29a49b37506642dc8eced96fbd802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Boull=C3=A9?= Date: Mon, 11 Dec 2023 16:15:11 +0100 Subject: [PATCH 1/7] Fix bug in regex within multi-table-dictionary Probleme: - les regex ne fonctionne pas dans certains cas (en release, dans le cas multi-table) - du a une compilation des regex uniquement dans la methode CheckCompletness Correction: - compilation des regex dans la methode dediee KWDRRegex::Compile Jeu de test dedie: LearningTest\TestKhiops\Rules\BugMultiTableRegexRules --- src/Learning/KWDRRuleLibrary/KWDRString.cpp | 17 +++++++++++++++++ src/Learning/KWDRRuleLibrary/KWDRString.h | 3 +++ 2 files changed, 20 insertions(+) diff --git a/src/Learning/KWDRRuleLibrary/KWDRString.cpp b/src/Learning/KWDRRuleLibrary/KWDRString.cpp index b1db53f46..eff638eee 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRString.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRString.cpp @@ -968,6 +968,23 @@ boolean KWDRRegex::CheckCompleteness(const KWClass* kwcOwnerClass) const return bOk; } +void KWDRRegex::Compile(KWClass* kwcOwnerClass) +{ + int nRegexOperandIndex; + + // Appel de la methode ancetre + KWDerivationRule::Compile(kwcOwnerClass); + + // Acces a l'index de l'operande de regex: 2, sauf pour pour la regle Match + nRegexOperandIndex = 2; + if (GetOperandNumber() <= nRegexOperandIndex) + nRegexOperandIndex = GetOperandNumber() - 1; + + // On ne verifie pas l'expression si elle a deja ete validee + if (not regEx.IsValid() or regEx.GetRegex() != GetOperandAt(nRegexOperandIndex)->GetSymbolConstant().GetValue()) + regEx.Initialize(GetOperandAt(nRegexOperandIndex)->GetSymbolConstant().GetValue(), this); +} + ////////////////////////////////////////////////////////////////////////////////////// KWDRRegexMatch::KWDRRegexMatch() diff --git a/src/Learning/KWDRRuleLibrary/KWDRString.h b/src/Learning/KWDRRuleLibrary/KWDRString.h index 57bfdc7a6..0d4977011 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRString.h +++ b/src/Learning/KWDRRuleLibrary/KWDRString.h @@ -336,6 +336,9 @@ class KWDRRegex : public KWDRStringRule // Verification qu'une regle est completement renseignee et compilable boolean CheckCompleteness(const KWClass* kwcOwnerClass) const override; + // Compilation pour optimiser la gestion du format + void Compile(KWClass* kwcOwnerClass) override; + /////////////////////////////////////////// ///// Implementation protected: From f75a9a50a90be33102d7a3b59d1c0ac92fd526c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Boull=C3=A9?= Date: Thu, 21 Dec 2023 14:19:41 +0100 Subject: [PATCH 2/7] fix instability in coclustering optimization MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Les resultats d'optimisation du coclustering sont instables d'un OS à l'autre Non critique pour les utilisateurs, mais critique pour la reproductibilite des jeux de test, dans tous les cas de cocluseing et d'analyse bivariee. Report du commit "fix instability in coclustering optimization" dans la branche V11 Impact dans fonction KWDGMPartMergeCompare de KWDataGridMerger.cpp - stabilisation de la methode de comparaison pour ordonner les fusions lors de l'optimisation d'un coclustering --- .../KWDataPreparation/KWDataGridMerger.cpp | 60 ++++++++++++++++--- 1 file changed, 52 insertions(+), 8 deletions(-) diff --git a/src/Learning/KWDataPreparation/KWDataGridMerger.cpp b/src/Learning/KWDataPreparation/KWDataGridMerger.cpp index 6dc5af9d1..0ebea710b 100644 --- a/src/Learning/KWDataPreparation/KWDataGridMerger.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridMerger.cpp @@ -1959,13 +1959,19 @@ const ALString KWDGMPartMerge::GetObjectLabel() const int KWDGMPartMergeCompare(const void* elem1, const void* elem2) { - // On utilise Epsilon=0 en escomptant le resultat du Diff est reproductible si les operandes sont les memes + // On utilise Epsilon=0 en escomptant que le resultat du Diff est reproductible si les operandes sont les memes // Pour Epsilon > 0, on court le risque d'avoir diff(PM1,PM2) < Epsilon et diff(PM2,PM3) < Epsilon, // mais diff(PM1,PM3) >= Epsilon (ce bug (avec consequence desatreuse dans une SortedList) est deja arrive) const double dEpsilon = 0; + int nCompare; KWDGMPartMerge* partMerge1; KWDGMPartMerge* partMerge2; double dDiff; + ALString sFirstPartLabel1; + ALString sSecondPartLabel1; + ALString sFirstPartLabel2; + ALString sSecondPartLabel2; + ALString sSwapPartLabel; require(elem1 != NULL); require(elem2 != NULL); @@ -1977,15 +1983,53 @@ int KWDGMPartMergeCompare(const void* elem1, const void* elem2) assert(partMerge2->Check()); // Calcul de la difference + nCompare = 0; dDiff = partMerge1->GetMergeCost() - partMerge2->GetMergeCost(); if (dDiff > dEpsilon) - return 1; + nCompare = 1; else if (dDiff < -dEpsilon) - return -1; - // Si egalite, on renvoie 0 + nCompare = -1; + + // Si egalite, on compare sur les nom de des attributs, puis sur celui des parties // On ne peut se baser sur le nombre de cellules des fusions, qui varie a cout egal, - // ce qui empeche les optimisation poussees visant a ne reevaluer que les - // fusions impactees - else - return 0; + // ce qui empeche les optimisation poussees visant a ne reevaluer que les fusions impactees + if (nCompare == 0) + { + // On se base d'abord sur le libelle de l'attribut + // (on pourrait avoir des attribut differents ayant meme libelle de partie) + assert(partMerge1->GetPart1()->GetAttribute() == partMerge1->GetPart2()->GetAttribute()); + assert(partMerge2->GetPart1()->GetAttribute() == partMerge2->GetPart2()->GetAttribute()); + nCompare = partMerge1->GetPart1()->GetAttribute()->GetAttributeName().Compare( + partMerge2->GetPart1()->GetAttribute()->GetAttributeName()); + + // On se base ensuite sur le libelle du plus petit des deux libelles de partie + if (nCompare == 0) + { + // Collecte des libelles de parties pour le Merge 1 + sFirstPartLabel1 = partMerge1->GetPart1()->GetObjectLabel(); + sSecondPartLabel1 = partMerge1->GetPart2()->GetObjectLabel(); + if (sFirstPartLabel1 > sSecondPartLabel1) + { + sSwapPartLabel = sSecondPartLabel1; + sSecondPartLabel1 = sFirstPartLabel1; + sFirstPartLabel1 = sSwapPartLabel; + } + + // Collecte des libelles de parties pour le Merge 2 + sFirstPartLabel2 = partMerge2->GetPart1()->GetObjectLabel(); + sSecondPartLabel2 = partMerge2->GetPart2()->GetObjectLabel(); + if (sFirstPartLabel2 > sSecondPartLabel2) + { + sSwapPartLabel = sSecondPartLabel2; + sSecondPartLabel2 = sFirstPartLabel2; + sFirstPartLabel2 = sSwapPartLabel; + } + + // Comparaison des libelles + nCompare = sFirstPartLabel1.Compare(sFirstPartLabel2); + if (nCompare == 0) + nCompare = sSecondPartLabel1.Compare(sSecondPartLabel2); + } + } + return nCompare; } From 60a7287f4b55c9718c91e8ef6986959b8ca07067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Boull=C3=A9?= Date: Mon, 8 Jan 2024 16:26:43 +0100 Subject: [PATCH 3/7] Update copyright year from 2023 to 2024 This has to be done every begining of year Most of the job should be done using git command - pre-commit run --all-files Search 2023 in source files to find potential remaining cases (ex: licence, README.txt, histogram tool...) --- LICENSE | 2 +- packaging/common/khiops/README.txt | 2 +- packaging/windows/nsis/khiops.nsi | 2 +- src/Learning/DTForest/DTAttributeSelection.cpp | 2 +- src/Learning/DTForest/DTAttributeSelection.h | 2 +- src/Learning/DTForest/DTBaseLoader.cpp | 2 +- src/Learning/DTForest/DTBaseLoader.h | 2 +- src/Learning/DTForest/DTBaseLoaderSplitter.cpp | 2 +- src/Learning/DTForest/DTBaseLoaderSplitter.h | 2 +- src/Learning/DTForest/DTConfig.cpp | 2 +- src/Learning/DTForest/DTConfig.h | 2 +- src/Learning/DTForest/DTCreationReport.cpp | 2 +- src/Learning/DTForest/DTCreationReport.h | 2 +- src/Learning/DTForest/DTDecisionBinaryTreeCost.cpp | 2 +- src/Learning/DTForest/DTDecisionBinaryTreeCost.h | 2 +- src/Learning/DTForest/DTDecisionTree.cpp | 2 +- src/Learning/DTForest/DTDecisionTree.h | 2 +- src/Learning/DTForest/DTDecisionTreeCost.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeCost.h | 2 +- src/Learning/DTForest/DTDecisionTreeCreationTask.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeCreationTask.h | 2 +- .../DTForest/DTDecisionTreeCreationTaskSequential.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.h | 2 +- .../DTForest/DTDecisionTreeCreationTaskSequentialView.cpp | 2 +- .../DTForest/DTDecisionTreeCreationTaskSequentialView.h | 2 +- src/Learning/DTForest/DTDecisionTreeCreationTaskView.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeCreationTaskView.h | 2 +- src/Learning/DTForest/DTDecisionTreeDatabaseObject.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeDatabaseObject.h | 2 +- src/Learning/DTForest/DTDecisionTreeGlobalCost.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeGlobalCost.h | 2 +- src/Learning/DTForest/DTDecisionTreeNode.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeNode.h | 2 +- src/Learning/DTForest/DTDecisionTreeParameter.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeParameter.h | 2 +- src/Learning/DTForest/DTDecisionTreeParameterView.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeParameterView.h | 2 +- src/Learning/DTForest/DTDecisionTreeRecursiveCost.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeRecursiveCost.h | 2 +- src/Learning/DTForest/DTDecisionTreeSpec.cpp | 2 +- src/Learning/DTForest/DTDecisionTreeSpec.h | 2 +- src/Learning/DTForest/DTDiscretizerMODL.cpp | 2 +- src/Learning/DTForest/DTDiscretizerMODL.h | 2 +- src/Learning/DTForest/DTForestAttributeSelection.cpp | 2 +- src/Learning/DTForest/DTForestAttributeSelection.h | 2 +- src/Learning/DTForest/DTForestParameter.cpp | 2 +- src/Learning/DTForest/DTForestParameter.h | 2 +- src/Learning/DTForest/DTForestParameterView.cpp | 2 +- src/Learning/DTForest/DTForestParameterView.h | 2 +- src/Learning/DTForest/DTGlobalTag.cpp | 2 +- src/Learning/DTForest/DTGlobalTag.h | 2 +- src/Learning/DTForest/DTGrouperMODL.cpp | 2 +- src/Learning/DTForest/DTGrouperMODL.h | 2 +- src/Learning/DTForest/DTGrouperMODLBasic.cpp | 2 +- src/Learning/DTForest/DTGrouperMODLInternal.cpp | 2 +- src/Learning/DTForest/DTGrouperMODLInternal.h | 2 +- src/Learning/DTForest/DTGrouperMODLOptimization.cpp | 2 +- src/Learning/DTForest/DTStat.cpp | 2 +- src/Learning/DTForest/DTStat.h | 2 +- src/Learning/DTForest/DTUnivariatePartitionCost.cpp | 2 +- src/Learning/DTForest/DTUnivariatePartitionCost.h | 2 +- src/Learning/KDDomainKnowledge/KDClassBuilder.cpp | 2 +- src/Learning/KDDomainKnowledge/KDClassBuilder.h | 2 +- src/Learning/KDDomainKnowledge/KDClassCompliantRules.cpp | 2 +- src/Learning/KDDomainKnowledge/KDClassCompliantRules.h | 2 +- src/Learning/KDDomainKnowledge/KDConstructedRule.cpp | 2 +- src/Learning/KDDomainKnowledge/KDConstructedRule.h | 2 +- src/Learning/KDDomainKnowledge/KDConstructionDomain.cpp | 2 +- src/Learning/KDDomainKnowledge/KDConstructionDomain.h | 2 +- src/Learning/KDDomainKnowledge/KDConstructionRule.cpp | 2 +- src/Learning/KDDomainKnowledge/KDConstructionRule.h | 2 +- src/Learning/KDDomainKnowledge/KDDomainConstraint.cpp | 2 +- src/Learning/KDDomainKnowledge/KDDomainConstraint.h | 2 +- src/Learning/KDDomainKnowledge/KDEntity.cpp | 2 +- src/Learning/KDDomainKnowledge/KDEntity.h | 2 +- src/Learning/KDDomainKnowledge/KDFeatureConstruction.cpp | 2 +- src/Learning/KDDomainKnowledge/KDFeatureConstruction.h | 2 +- .../KDDomainKnowledge/KDMultiTableFeatureConstruction.cpp | 2 +- .../KDDomainKnowledge/KDMultiTableFeatureConstruction.h | 2 +- .../KDDomainKnowledge/KDMultinomialSampleGenerator.cpp | 2 +- src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.h | 2 +- src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.cpp | 2 +- src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.h | 2 +- .../KDDomainKnowledge/KDSelectionOperandDataSampler.cpp | 2 +- .../KDDomainKnowledge/KDSelectionOperandDataSampler.h | 2 +- .../KDDomainKnowledge/KDSelectionOperandSamplingTask.cpp | 2 +- .../KDDomainKnowledge/KDSelectionOperandSamplingTask.h | 2 +- src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.cpp | 2 +- src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.h | 2 +- src/Learning/KDDomainKnowledge/KDTextFeatureSpec.cpp | 2 +- src/Learning/KDDomainKnowledge/KDTextFeatureSpec.h | 2 +- .../KDDomainKnowledge/KDTextTokenSampleCollectionTask.cpp | 2 +- .../KDDomainKnowledge/KDTextTokenSampleCollectionTask.h | 2 +- src/Learning/KDDomainKnowledge/KDTokenFrequency.cpp | 2 +- src/Learning/KDDomainKnowledge/KDTokenFrequency.h | 2 +- src/Learning/KIInterpretation/KIDRPredictor.cpp | 2 +- src/Learning/KIInterpretation/KIDRPredictor.h | 2 +- src/Learning/KIInterpretation/KIDRRegisterAllRules.cpp | 2 +- src/Learning/KIInterpretation/KIDRRegisterAllRules.h | 2 +- src/Learning/KIInterpretation/KIHowParameterView.cpp | 2 +- src/Learning/KIInterpretation/KIHowParameterView.h | 2 +- src/Learning/KIInterpretation/KIInterpretationDictionary.cpp | 2 +- src/Learning/KIInterpretation/KIInterpretationDictionary.h | 2 +- src/Learning/KIInterpretation/KIInterpretationSpec.cpp | 2 +- src/Learning/KIInterpretation/KIInterpretationSpec.h | 2 +- src/Learning/KIInterpretation/KIInterpretationSpecView.cpp | 2 +- src/Learning/KIInterpretation/KIInterpretationSpecView.h | 2 +- src/Learning/KIInterpretation/KILeverVariablesSpecView.cpp | 2 +- src/Learning/KIInterpretation/KILeverVariablesSpecView.h | 2 +- .../KIInterpretation/KIPredictorInterpretationView.cpp | 2 +- src/Learning/KIInterpretation/KIPredictorInterpretationView.h | 2 +- src/Learning/KIInterpretation/KIWhyParameterView.cpp | 2 +- src/Learning/KIInterpretation/KIWhyParameterView.h | 2 +- src/Learning/KMDRRuleLibrary/KMDRClassifier.cpp | 2 +- src/Learning/KMDRRuleLibrary/KMDRClassifier.h | 2 +- src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.cpp | 2 +- src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.h | 2 +- src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.cpp | 2 +- src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.h | 2 +- src/Learning/KNITransfer/KNIDatabaseTransferView.cpp | 2 +- src/Learning/KNITransfer/KNIDatabaseTransferView.h | 2 +- src/Learning/KNITransfer/KNIRecodeFile.cpp | 2 +- src/Learning/KNITransfer/KNIRecodeFile.h | 2 +- src/Learning/KNITransfer/KNIRecodeMTFiles.cpp | 2 +- src/Learning/KNITransfer/KNIRecodeMTFiles.h | 2 +- src/Learning/KNITransfer/KNITransfer.cpp | 2 +- src/Learning/KNITransfer/KNITransfer.h | 2 +- src/Learning/KNITransfer/KNITransferProblem.cpp | 2 +- src/Learning/KNITransfer/KNITransferProblem.h | 2 +- src/Learning/KNITransfer/KNITransferProblemView.cpp | 2 +- src/Learning/KNITransfer/KNITransferProblemView.h | 2 +- src/Learning/KNITransfer/KNITransferProject.cpp | 2 +- src/Learning/KNITransfer/KNITransferProject.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRAll.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRAll.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRCompare.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRCompare.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRDateTime.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRDateTime.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRHashMap.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRHashMap.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRLogical.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRLogical.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRMath.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRMath.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRMultiTable.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRMultiTable.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRString.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRString.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRStringEncrypt.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRText.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRText.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRTextList.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRTextList.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.h | 2 +- src/Learning/KWDRRuleLibrary/KWDRVector.cpp | 2 +- src/Learning/KWDRRuleLibrary/KWDRVector.h | 2 +- src/Learning/KWData/JSONFile.cpp | 2 +- src/Learning/KWData/JSONFile.h | 2 +- src/Learning/KWData/JSONTokenizer.cpp | 2 +- src/Learning/KWData/JSONTokenizer.h | 2 +- src/Learning/KWData/KWAttribute.cpp | 2 +- src/Learning/KWData/KWAttribute.h | 2 +- src/Learning/KWData/KWAttributeBlock.cpp | 2 +- src/Learning/KWData/KWAttributeBlock.h | 2 +- src/Learning/KWData/KWAttributeName.cpp | 2 +- src/Learning/KWData/KWAttributeName.h | 2 +- src/Learning/KWData/KWAttributePairName.cpp | 2 +- src/Learning/KWData/KWAttributePairName.h | 2 +- src/Learning/KWData/KWCDUniqueString.cpp | 2 +- src/Learning/KWData/KWCDUniqueString.h | 2 +- src/Learning/KWData/KWCYac.cpp | 2 +- src/Learning/KWData/KWCharFrequencyVector.cpp | 2 +- src/Learning/KWData/KWCharFrequencyVector.h | 2 +- src/Learning/KWData/KWClass.cpp | 2 +- src/Learning/KWData/KWClass.h | 2 +- src/Learning/KWData/KWClassDomain.cpp | 2 +- src/Learning/KWData/KWClassDomain.h | 2 +- src/Learning/KWData/KWContinuous.cpp | 2 +- src/Learning/KWData/KWContinuous.h | 2 +- src/Learning/KWData/KWDRRandom.cpp | 2 +- src/Learning/KWData/KWDRRandom.h | 2 +- src/Learning/KWData/KWDRReference.cpp | 2 +- src/Learning/KWData/KWDRReference.h | 2 +- src/Learning/KWData/KWDRStandard.cpp | 2 +- src/Learning/KWData/KWDRStandard.h | 2 +- src/Learning/KWData/KWDataItem.cpp | 2 +- src/Learning/KWData/KWDataItem.h | 2 +- src/Learning/KWData/KWDataTableDriver.cpp | 2 +- src/Learning/KWData/KWDataTableDriver.h | 2 +- src/Learning/KWData/KWDataTableDriverTextFile.cpp | 2 +- src/Learning/KWData/KWDataTableDriverTextFile.h | 2 +- src/Learning/KWData/KWDatabase.cpp | 2 +- src/Learning/KWData/KWDatabase.h | 2 +- src/Learning/KWData/KWDatabaseFormatDetector.cpp | 2 +- src/Learning/KWData/KWDatabaseFormatDetector.h | 2 +- src/Learning/KWData/KWDatabaseMemoryGuard.cpp | 2 +- src/Learning/KWData/KWDatabaseMemoryGuard.h | 2 +- src/Learning/KWData/KWDate.cpp | 2 +- src/Learning/KWData/KWDate.h | 2 +- src/Learning/KWData/KWDerivationRule.cpp | 2 +- src/Learning/KWData/KWDerivationRule.h | 2 +- src/Learning/KWData/KWDerivationRuleOperand.cpp | 2 +- src/Learning/KWData/KWIndexedKeyBlock.cpp | 2 +- src/Learning/KWData/KWIndexedKeyBlock.h | 2 +- src/Learning/KWData/KWLoadIndex.cpp | 2 +- src/Learning/KWData/KWLoadIndex.h | 2 +- src/Learning/KWData/KWMTDatabase.cpp | 2 +- src/Learning/KWData/KWMTDatabase.h | 2 +- src/Learning/KWData/KWMTDatabaseMapping.cpp | 2 +- src/Learning/KWData/KWMTDatabaseMapping.h | 2 +- src/Learning/KWData/KWMTDatabaseTextFile.cpp | 2 +- src/Learning/KWData/KWMTDatabaseTextFile.h | 2 +- src/Learning/KWData/KWMetaData.cpp | 2 +- src/Learning/KWData/KWMetaData.h | 2 +- src/Learning/KWData/KWObject.cpp | 2 +- src/Learning/KWData/KWObject.h | 2 +- src/Learning/KWData/KWObjectKey.cpp | 2 +- src/Learning/KWData/KWObjectKey.h | 2 +- src/Learning/KWData/KWSTDatabase.cpp | 2 +- src/Learning/KWData/KWSTDatabase.h | 2 +- src/Learning/KWData/KWSTDatabaseTextFile.cpp | 2 +- src/Learning/KWData/KWSTDatabaseTextFile.h | 2 +- src/Learning/KWData/KWSortableIndex.cpp | 2 +- src/Learning/KWData/KWSortableIndex.h | 2 +- src/Learning/KWData/KWStructureRule.cpp | 2 +- src/Learning/KWData/KWStructureRule.h | 2 +- src/Learning/KWData/KWSymbol.cpp | 2 +- src/Learning/KWData/KWSymbol.h | 2 +- src/Learning/KWData/KWTime.cpp | 2 +- src/Learning/KWData/KWTime.h | 2 +- src/Learning/KWData/KWTimestamp.cpp | 2 +- src/Learning/KWData/KWTimestamp.h | 2 +- src/Learning/KWData/KWTimestampTZ.cpp | 2 +- src/Learning/KWData/KWTimestampTZ.h | 2 +- src/Learning/KWData/KWType.cpp | 2 +- src/Learning/KWData/KWType.h | 2 +- src/Learning/KWData/KWTypeAutomaticRecognition.cpp | 2 +- src/Learning/KWData/KWTypeAutomaticRecognition.h | 2 +- src/Learning/KWData/KWValueBlock.cpp | 2 +- src/Learning/KWData/KWValueBlock.h | 2 +- src/Learning/KWData/KWValueDictionary.cpp | 2 +- src/Learning/KWData/KWValueDictionary.h | 2 +- src/Learning/KWData/KWValueSparseVector.cpp | 2 +- src/Learning/KWData/KWValueSparseVector.h | 2 +- .../KDDataPreparationAttributeCreationTask.cpp | 2 +- .../KDDataPreparationAttributeCreationTask.h | 2 +- src/Learning/KWDataPreparation/KWAttributePairsSpec.cpp | 2 +- src/Learning/KWDataPreparation/KWAttributePairsSpec.h | 2 +- src/Learning/KWDataPreparation/KWAttributeStats.cpp | 2 +- src/Learning/KWDataPreparation/KWAttributeStats.h | 2 +- src/Learning/KWDataPreparation/KWAttributeSubsetStats.cpp | 2 +- src/Learning/KWDataPreparation/KWAttributeSubsetStats.h | 2 +- src/Learning/KWDataPreparation/KWClassStats.cpp | 2 +- src/Learning/KWDataPreparation/KWClassStats.h | 2 +- src/Learning/KWDataPreparation/KWDGMPartMergeAction.cpp | 2 +- src/Learning/KWDataPreparation/KWDGMPartMergeAction.h | 2 +- src/Learning/KWDataPreparation/KWDRDataGrid.cpp | 2 +- src/Learning/KWDataPreparation/KWDRDataGrid.h | 2 +- src/Learning/KWDataPreparation/KWDRDataGridBlock.cpp | 2 +- src/Learning/KWDataPreparation/KWDRDataGridBlock.h | 2 +- src/Learning/KWDataPreparation/KWDRDataGridDeployment.cpp | 2 +- src/Learning/KWDataPreparation/KWDRDataGridDeployment.h | 2 +- src/Learning/KWDataPreparation/KWDRPreprocessing.cpp | 2 +- src/Learning/KWDataPreparation/KWDRPreprocessing.h | 2 +- src/Learning/KWDataPreparation/KWDRTableBlock.cpp | 2 +- src/Learning/KWDataPreparation/KWDRTableBlock.h | 2 +- src/Learning/KWDataPreparation/KWDRTablePartition.cpp | 2 +- src/Learning/KWDataPreparation/KWDRTablePartition.h | 2 +- src/Learning/KWDataPreparation/KWDataGrid.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGrid.h | 2 +- src/Learning/KWDataPreparation/KWDataGridCosts.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridCosts.h | 2 +- src/Learning/KWDataPreparation/KWDataGridDeployment.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridDeployment.h | 2 +- src/Learning/KWDataPreparation/KWDataGridManager.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridManager.h | 2 +- src/Learning/KWDataPreparation/KWDataGridMerger.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridMerger.h | 2 +- src/Learning/KWDataPreparation/KWDataGridOptimizer.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridOptimizer.h | 2 +- .../KWDataPreparation/KWDataGridOptimizerParameters.cpp | 2 +- .../KWDataPreparation/KWDataGridOptimizerParameters.h | 2 +- src/Learning/KWDataPreparation/KWDataGridPostOptimizer.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridPostOptimizer.h | 2 +- src/Learning/KWDataPreparation/KWDataGridStats.cpp | 2 +- src/Learning/KWDataPreparation/KWDataGridStats.h | 2 +- .../KWDataPreparation/KWDataPreparationBivariateTask.cpp | 2 +- .../KWDataPreparation/KWDataPreparationBivariateTask.h | 2 +- src/Learning/KWDataPreparation/KWDataPreparationTask.cpp | 2 +- src/Learning/KWDataPreparation/KWDataPreparationTask.h | 2 +- .../KWDataPreparation/KWDataPreparationUnivariateTask.cpp | 2 +- .../KWDataPreparation/KWDataPreparationUnivariateTask.h | 2 +- src/Learning/KWDataPreparation/KWDescriptiveStats.cpp | 2 +- src/Learning/KWDataPreparation/KWDescriptiveStats.h | 2 +- src/Learning/KWDataPreparation/KWDiscretizer.cpp | 2 +- src/Learning/KWDataPreparation/KWDiscretizer.h | 2 +- src/Learning/KWDataPreparation/KWDiscretizerMODL.cpp | 2 +- src/Learning/KWDataPreparation/KWDiscretizerMODL.h | 2 +- src/Learning/KWDataPreparation/KWDiscretizerMODLLine.cpp | 2 +- src/Learning/KWDataPreparation/KWDiscretizerMODLLine.h | 2 +- .../KWDataPreparation/KWDiscretizerMODLOptimization.cpp | 2 +- src/Learning/KWDataPreparation/KWDiscretizerSpec.cpp | 2 +- src/Learning/KWDataPreparation/KWDiscretizerSpec.h | 2 +- src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.cpp | 2 +- src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.h | 2 +- src/Learning/KWDataPreparation/KWFrequencyVector.cpp | 2 +- src/Learning/KWDataPreparation/KWFrequencyVector.h | 2 +- src/Learning/KWDataPreparation/KWGrouper.cpp | 2 +- src/Learning/KWDataPreparation/KWGrouper.h | 2 +- src/Learning/KWDataPreparation/KWGrouperMODL.cpp | 2 +- src/Learning/KWDataPreparation/KWGrouperMODL.h | 2 +- src/Learning/KWDataPreparation/KWGrouperMODLBasic.cpp | 2 +- src/Learning/KWDataPreparation/KWGrouperMODLInternal.cpp | 2 +- src/Learning/KWDataPreparation/KWGrouperMODLInternal.h | 2 +- src/Learning/KWDataPreparation/KWGrouperMODLOptimization.cpp | 2 +- src/Learning/KWDataPreparation/KWGrouperSpec.cpp | 2 +- src/Learning/KWDataPreparation/KWGrouperSpec.h | 2 +- src/Learning/KWDataPreparation/KWLearningErrorManager.cpp | 2 +- src/Learning/KWDataPreparation/KWLearningErrorManager.h | 2 +- src/Learning/KWDataPreparation/KWLearningReport.cpp | 2 +- src/Learning/KWDataPreparation/KWLearningReport.h | 2 +- src/Learning/KWDataPreparation/KWLearningSpec.cpp | 2 +- src/Learning/KWDataPreparation/KWLearningSpec.h | 2 +- src/Learning/KWDataPreparation/KWPreprocessingSpec.cpp | 2 +- src/Learning/KWDataPreparation/KWPreprocessingSpec.h | 2 +- src/Learning/KWDataPreparation/KWProbabilityTable.cpp | 2 +- src/Learning/KWDataPreparation/KWProbabilityTable.h | 2 +- src/Learning/KWDataPreparation/KWQuantileBuilder.cpp | 2 +- src/Learning/KWDataPreparation/KWQuantileBuilder.h | 2 +- src/Learning/KWDataPreparation/KWStat.cpp | 2 +- src/Learning/KWDataPreparation/KWStat.h | 2 +- src/Learning/KWDataPreparation/KWStatisticalEvaluation.cpp | 2 +- src/Learning/KWDataPreparation/KWStatisticalEvaluation.h | 2 +- src/Learning/KWDataPreparation/KWTupleTable.cpp | 2 +- src/Learning/KWDataPreparation/KWTupleTable.h | 2 +- .../KWDataPreparation/KWTupleTableCompareFunctions.cpp | 2 +- src/Learning/KWDataPreparation/KWTupleTableLoader.cpp | 2 +- src/Learning/KWDataPreparation/KWTupleTableLoader.h | 2 +- src/Learning/KWDataPreparation/KWUnivariatePartitionCost.cpp | 2 +- src/Learning/KWDataPreparation/KWUnivariatePartitionCost.h | 2 +- src/Learning/KWDataUtils/KWArtificialDataset.cpp | 2 +- src/Learning/KWDataUtils/KWArtificialDataset.h | 2 +- src/Learning/KWDataUtils/KWChunkSorterTask.cpp | 2 +- src/Learning/KWDataUtils/KWChunkSorterTask.h | 2 +- src/Learning/KWDataUtils/KWDataTableSliceSet.cpp | 2 +- src/Learning/KWDataUtils/KWDataTableSliceSet.h | 2 +- src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.h | 2 +- src/Learning/KWDataUtils/KWDatabaseCheckTask.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseCheckTask.h | 2 +- src/Learning/KWDataUtils/KWDatabaseChunkBuilder.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseChunkBuilder.h | 2 +- src/Learning/KWDataUtils/KWDatabaseIndexer.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseIndexer.h | 2 +- src/Learning/KWDataUtils/KWDatabaseSlicerTask.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseSlicerTask.h | 2 +- src/Learning/KWDataUtils/KWDatabaseTask.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseTask.h | 2 +- src/Learning/KWDataUtils/KWDatabaseTransferTask.cpp | 2 +- src/Learning/KWDataUtils/KWDatabaseTransferTask.h | 2 +- src/Learning/KWDataUtils/KWFileIndexerTask.cpp | 2 +- src/Learning/KWDataUtils/KWFileIndexerTask.h | 2 +- src/Learning/KWDataUtils/KWFileKeyExtractorTask.cpp | 2 +- src/Learning/KWDataUtils/KWFileKeyExtractorTask.h | 2 +- src/Learning/KWDataUtils/KWFileSorter.cpp | 2 +- src/Learning/KWDataUtils/KWFileSorter.h | 2 +- src/Learning/KWDataUtils/KWKey.cpp | 2 +- src/Learning/KWDataUtils/KWKey.h | 2 +- src/Learning/KWDataUtils/KWKeyExtractor.cpp | 2 +- src/Learning/KWDataUtils/KWKeyExtractor.h | 2 +- src/Learning/KWDataUtils/KWKeyPositionFinderTask.cpp | 2 +- src/Learning/KWDataUtils/KWKeyPositionFinderTask.h | 2 +- src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.cpp | 2 +- src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.h | 2 +- src/Learning/KWDataUtils/KWKeySampleExtractorTask.cpp | 2 +- src/Learning/KWDataUtils/KWKeySampleExtractorTask.h | 2 +- src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.cpp | 2 +- src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.h | 2 +- src/Learning/KWDataUtils/KWSortBuckets.cpp | 2 +- src/Learning/KWDataUtils/KWSortBuckets.h | 2 +- src/Learning/KWDataUtils/KWSortedChunkBuilderTask.cpp | 2 +- src/Learning/KWDataUtils/KWSortedChunkBuilderTask.h | 2 +- src/Learning/KWDataUtils/KWTestDatabaseTransfer.cpp | 2 +- src/Learning/KWDataUtils/KWTestDatabaseTransfer.h | 2 +- src/Learning/KWDataUtils/PLDataTableDriverTextFile.cpp | 2 +- src/Learning/KWDataUtils/PLDataTableDriverTextFile.h | 2 +- src/Learning/KWDataUtils/PLDatabaseTextFile.cpp | 2 +- src/Learning/KWDataUtils/PLDatabaseTextFile.h | 2 +- src/Learning/KWDataUtils/PLMTDatabaseTextFile.cpp | 2 +- src/Learning/KWDataUtils/PLMTDatabaseTextFile.h | 2 +- src/Learning/KWDataUtils/PLSTDatabaseTextFile.cpp | 2 +- src/Learning/KWDataUtils/PLSTDatabaseTextFile.h | 2 +- src/Learning/KWDataUtils/PLUseMPI.h | 2 +- src/Learning/KWLearningProblem/KWAnalysisResults.cpp | 2 +- src/Learning/KWLearningProblem/KWAnalysisResults.h | 2 +- src/Learning/KWLearningProblem/KWAnalysisResultsView.cpp | 2 +- src/Learning/KWLearningProblem/KWAnalysisResultsView.h | 2 +- src/Learning/KWLearningProblem/KWAnalysisSpec.cpp | 2 +- src/Learning/KWLearningProblem/KWAnalysisSpec.h | 2 +- src/Learning/KWLearningProblem/KWAnalysisSpecView.cpp | 2 +- src/Learning/KWLearningProblem/KWAnalysisSpecView.h | 2 +- src/Learning/KWLearningProblem/KWCrashTestParametersView.cpp | 2 +- src/Learning/KWLearningProblem/KWCrashTestParametersView.h | 2 +- src/Learning/KWLearningProblem/KWLearningProblem.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProblem.h | 2 +- .../KWLearningProblem/KWLearningProblemActionView.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProblemActionView.h | 2 +- .../KWLearningProblem/KWLearningProblemComputeStats.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProblemHelpCard.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProblemHelpCard.h | 2 +- src/Learning/KWLearningProblem/KWLearningProblemTrain.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProblemView.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProblemView.h | 2 +- src/Learning/KWLearningProblem/KWLearningProject.cpp | 2 +- src/Learning/KWLearningProblem/KWLearningProject.h | 2 +- src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.cpp | 2 +- src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.h | 2 +- src/Learning/KWLearningProblem/KWModelingSpec.cpp | 2 +- src/Learning/KWLearningProblem/KWModelingSpec.h | 2 +- src/Learning/KWLearningProblem/KWModelingSpecView.cpp | 2 +- src/Learning/KWLearningProblem/KWModelingSpecView.h | 2 +- src/Learning/KWLearningProblem/KWRecoderSpec.cpp | 2 +- src/Learning/KWLearningProblem/KWRecoderSpec.h | 2 +- src/Learning/KWLearningProblem/KWRecoderSpecView.cpp | 2 +- src/Learning/KWLearningProblem/KWRecoderSpecView.h | 2 +- src/Learning/KWLearningProblem/KWSystemParametersView.cpp | 2 +- src/Learning/KWLearningProblem/KWSystemParametersView.h | 2 +- src/Learning/KWModeling/KWAttributeConstructionReport.cpp | 2 +- src/Learning/KWModeling/KWAttributeConstructionReport.h | 2 +- src/Learning/KWModeling/KWAttributeConstructionSpec.cpp | 2 +- src/Learning/KWModeling/KWAttributeConstructionSpec.h | 2 +- src/Learning/KWModeling/KWBenchmarkClassSpec.cpp | 2 +- src/Learning/KWModeling/KWBenchmarkClassSpec.h | 2 +- src/Learning/KWModeling/KWBenchmarkSpec.cpp | 2 +- src/Learning/KWModeling/KWBenchmarkSpec.h | 2 +- src/Learning/KWModeling/KWClassifierPostOptimizer.cpp | 2 +- src/Learning/KWModeling/KWClassifierPostOptimizer.h | 2 +- src/Learning/KWModeling/KWDRNBPredictor.cpp | 2 +- src/Learning/KWModeling/KWDRNBPredictor.h | 2 +- src/Learning/KWModeling/KWDRPredictor.cpp | 2 +- src/Learning/KWModeling/KWDRPredictor.h | 2 +- src/Learning/KWModeling/KWDataPreparationBase.cpp | 2 +- src/Learning/KWModeling/KWDataPreparationBase.h | 2 +- src/Learning/KWModeling/KWDataPreparationClass.cpp | 2 +- src/Learning/KWModeling/KWDataPreparationClass.h | 2 +- src/Learning/KWModeling/KWLearningBenchmark.cpp | 2 +- src/Learning/KWModeling/KWLearningBenchmark.h | 2 +- src/Learning/KWModeling/KWLearningBenchmarkBivariate.cpp | 2 +- src/Learning/KWModeling/KWLearningBenchmarkBivariate.h | 2 +- src/Learning/KWModeling/KWLearningBenchmarkUnivariate.cpp | 2 +- src/Learning/KWModeling/KWLearningBenchmarkUnivariate.h | 2 +- src/Learning/KWModeling/KWPredictor.cpp | 2 +- src/Learning/KWModeling/KWPredictor.h | 2 +- src/Learning/KWModeling/KWPredictorBaseline.cpp | 2 +- src/Learning/KWModeling/KWPredictorBaseline.h | 2 +- src/Learning/KWModeling/KWPredictorBivariate.cpp | 2 +- src/Learning/KWModeling/KWPredictorBivariate.h | 2 +- src/Learning/KWModeling/KWPredictorDataGrid.cpp | 2 +- src/Learning/KWModeling/KWPredictorDataGrid.h | 2 +- src/Learning/KWModeling/KWPredictorEvaluation.cpp | 2 +- src/Learning/KWModeling/KWPredictorEvaluation.h | 2 +- src/Learning/KWModeling/KWPredictorEvaluationTask.cpp | 2 +- src/Learning/KWModeling/KWPredictorEvaluationTask.h | 2 +- src/Learning/KWModeling/KWPredictorNaiveBayes.cpp | 2 +- src/Learning/KWModeling/KWPredictorNaiveBayes.h | 2 +- src/Learning/KWModeling/KWPredictorReport.cpp | 2 +- src/Learning/KWModeling/KWPredictorReport.h | 2 +- src/Learning/KWModeling/KWPredictorSelectionScore.cpp | 2 +- src/Learning/KWModeling/KWPredictorSelectionScore.h | 2 +- src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.cpp | 2 +- src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.h | 2 +- .../KWModeling/KWPredictorSelectiveNaiveBayesOptimization.cpp | 2 +- src/Learning/KWModeling/KWPredictorSpec.cpp | 2 +- src/Learning/KWModeling/KWPredictorSpec.h | 2 +- src/Learning/KWModeling/KWPredictorUnivariate.cpp | 2 +- src/Learning/KWModeling/KWPredictorUnivariate.h | 2 +- src/Learning/KWModeling/KWRecodingSpec.cpp | 2 +- src/Learning/KWModeling/KWRecodingSpec.h | 2 +- src/Learning/KWModeling/KWSelectionParameters.cpp | 2 +- src/Learning/KWModeling/KWSelectionParameters.h | 2 +- src/Learning/KWModeling/KWTrainParameters.cpp | 2 +- src/Learning/KWModeling/KWTrainParameters.h | 2 +- src/Learning/KWModeling/KWTrainedPredictor.cpp | 2 +- src/Learning/KWModeling/KWTrainedPredictor.h | 2 +- src/Learning/KWTest/CreateLargeFiles.cpp | 2 +- src/Learning/KWTest/CreateLargeFiles.h | 2 +- src/Learning/KWTest/Divers.cpp | 2 +- src/Learning/KWTest/Divers.h | 2 +- src/Learning/KWTest/HanoiTower.cpp | 2 +- src/Learning/KWTest/HanoiTower.h | 2 +- src/Learning/KWTest/KDMultinomialSamplingStudy.cpp | 2 +- src/Learning/KWTest/KDMultinomialSamplingStudy.h | 2 +- src/Learning/KWTest/KWDataGridTest.cpp | 2 +- src/Learning/KWTest/KWDataGridTest.h | 2 +- src/Learning/KWTest/KWDensityEstimationTest.cpp | 2 +- src/Learning/KWTest/KWDensityEstimationTest.h | 2 +- src/Learning/KWTest/KWDiscretizerTest.cpp | 2 +- src/Learning/KWTest/KWDiscretizerTest.h | 2 +- src/Learning/KWTest/KWGrouperTest.cpp | 2 +- src/Learning/KWTest/KWGrouperTest.h | 2 +- src/Learning/KWTest/KWHierarchicalMultinomialStudy.cpp | 2 +- src/Learning/KWTest/KWHierarchicalMultinomialStudy.h | 2 +- src/Learning/KWTest/KWNewType.cpp | 2 +- src/Learning/KWTest/KWNewType.h | 2 +- src/Learning/KWTest/KWSNBStudy.cpp | 2 +- src/Learning/KWTest/KWSNBStudy.h | 2 +- src/Learning/KWTest/KWTextParser.cpp | 2 +- src/Learning/KWTest/KWTextParser.h | 2 +- src/Learning/KWTest/SizeofStudy.cpp | 2 +- src/Learning/KWTest/SizeofStudy.h | 2 +- src/Learning/KWTest/SparseStudy.cpp | 2 +- src/Learning/KWTest/SparseStudy.h | 2 +- src/Learning/KWTest/StreamTest.cpp | 2 +- src/Learning/KWTest/StreamTest.h | 2 +- src/Learning/KWTest/SystemDivers.cpp | 2 +- src/Learning/KWTest/SystemDivers.h | 2 +- src/Learning/KWTest/Test.cpp | 2 +- src/Learning/KWTest/Test.h | 2 +- src/Learning/KWUserInterface/KDConstructionDomainView.cpp | 2 +- src/Learning/KWUserInterface/KDConstructionDomainView.h | 2 +- src/Learning/KWUserInterface/KDConstructionRuleArrayView.cpp | 2 +- src/Learning/KWUserInterface/KDConstructionRuleArrayView.h | 2 +- src/Learning/KWUserInterface/KDConstructionRuleView.cpp | 2 +- src/Learning/KWUserInterface/KDConstructionRuleView.h | 2 +- .../KDDataPreparationAttributeCreationTaskView.cpp | 2 +- .../KDDataPreparationAttributeCreationTaskView.h | 2 +- src/Learning/KWUserInterface/KDTextFeatureSpecView.cpp | 2 +- src/Learning/KWUserInterface/KDTextFeatureSpecView.h | 2 +- .../KWUserInterface/KWAttributeConstructionSpecView.cpp | 2 +- .../KWUserInterface/KWAttributeConstructionSpecView.h | 2 +- src/Learning/KWUserInterface/KWAttributeNameArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributeNameArrayView.h | 2 +- src/Learning/KWUserInterface/KWAttributeNameView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributeNameView.h | 2 +- src/Learning/KWUserInterface/KWAttributePairNameArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributePairNameArrayView.h | 2 +- src/Learning/KWUserInterface/KWAttributePairNameView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributePairNameView.h | 2 +- src/Learning/KWUserInterface/KWAttributePairsSpecFileView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributePairsSpecFileView.h | 2 +- src/Learning/KWUserInterface/KWAttributePairsSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributePairsSpecView.h | 2 +- src/Learning/KWUserInterface/KWAttributeSpec.cpp | 2 +- src/Learning/KWUserInterface/KWAttributeSpec.h | 2 +- src/Learning/KWUserInterface/KWAttributeSpecArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributeSpecArrayView.h | 2 +- src/Learning/KWUserInterface/KWAttributeSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWAttributeSpecView.h | 2 +- src/Learning/KWUserInterface/KWBenchmarkClassSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWBenchmarkClassSpecView.h | 2 +- src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.h | 2 +- src/Learning/KWUserInterface/KWBenchmarkSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWBenchmarkSpecView.h | 2 +- src/Learning/KWUserInterface/KWClassAttributeHelpList.cpp | 2 +- src/Learning/KWUserInterface/KWClassAttributeHelpList.h | 2 +- src/Learning/KWUserInterface/KWClassBuilderView.cpp | 2 +- src/Learning/KWUserInterface/KWClassBuilderView.h | 2 +- src/Learning/KWUserInterface/KWClassManagement.cpp | 2 +- src/Learning/KWUserInterface/KWClassManagement.h | 2 +- src/Learning/KWUserInterface/KWClassManagementView.cpp | 2 +- src/Learning/KWUserInterface/KWClassManagementView.h | 2 +- src/Learning/KWUserInterface/KWClassSpec.cpp | 2 +- src/Learning/KWUserInterface/KWClassSpec.h | 2 +- src/Learning/KWUserInterface/KWClassSpecArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWClassSpecArrayView.h | 2 +- src/Learning/KWUserInterface/KWClassSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWClassSpecView.h | 2 +- .../KWUserInterface/KWDataGridOptimizerParametersView.cpp | 2 +- .../KWUserInterface/KWDataGridOptimizerParametersView.h | 2 +- src/Learning/KWUserInterface/KWDataTableKeyExtractorView.cpp | 2 +- src/Learning/KWUserInterface/KWDataTableKeyExtractorView.h | 2 +- src/Learning/KWUserInterface/KWDataTableSorterView.cpp | 2 +- src/Learning/KWUserInterface/KWDataTableSorterView.h | 2 +- .../KWUserInterface/KWDatabaseAttributeValuesHelpList.cpp | 2 +- .../KWUserInterface/KWDatabaseAttributeValuesHelpList.h | 2 +- src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.cpp | 2 +- src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.h | 2 +- src/Learning/KWUserInterface/KWDatabaseTransferView.cpp | 2 +- src/Learning/KWUserInterface/KWDatabaseTransferView.h | 2 +- src/Learning/KWUserInterface/KWDatabaseView.cpp | 2 +- src/Learning/KWUserInterface/KWDatabaseView.h | 2 +- src/Learning/KWUserInterface/KWDiscretizerSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWDiscretizerSpecView.h | 2 +- src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.cpp | 2 +- src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.h | 2 +- .../KWUserInterface/KWEvaluatedPredictorSpecArrayView.cpp | 2 +- .../KWUserInterface/KWEvaluatedPredictorSpecArrayView.h | 2 +- src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.h | 2 +- src/Learning/KWUserInterface/KWGrouperSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWGrouperSpecView.h | 2 +- src/Learning/KWUserInterface/KWLearningBenchmarkView.cpp | 2 +- src/Learning/KWUserInterface/KWLearningBenchmarkView.h | 2 +- src/Learning/KWUserInterface/KWMTClassBuilderView.cpp | 2 +- src/Learning/KWUserInterface/KWMTClassBuilderView.h | 2 +- src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.h | 2 +- src/Learning/KWUserInterface/KWMTDatabaseMappingView.cpp | 2 +- src/Learning/KWUserInterface/KWMTDatabaseMappingView.h | 2 +- src/Learning/KWUserInterface/KWMTDatabaseTextFileView.cpp | 2 +- src/Learning/KWUserInterface/KWMTDatabaseTextFileView.h | 2 +- src/Learning/KWUserInterface/KWPredictorDataGridView.cpp | 2 +- src/Learning/KWUserInterface/KWPredictorDataGridView.h | 2 +- src/Learning/KWUserInterface/KWPredictorEvaluator.cpp | 2 +- src/Learning/KWUserInterface/KWPredictorEvaluator.h | 2 +- src/Learning/KWUserInterface/KWPredictorEvaluatorView.cpp | 2 +- src/Learning/KWUserInterface/KWPredictorEvaluatorView.h | 2 +- .../KWUserInterface/KWPredictorSelectiveNaiveBayesView.cpp | 2 +- .../KWUserInterface/KWPredictorSelectiveNaiveBayesView.h | 2 +- src/Learning/KWUserInterface/KWPredictorSpecArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWPredictorSpecArrayView.h | 2 +- src/Learning/KWUserInterface/KWPredictorSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWPredictorSpecView.h | 2 +- src/Learning/KWUserInterface/KWPredictorView.cpp | 2 +- src/Learning/KWUserInterface/KWPredictorView.h | 2 +- src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.h | 2 +- src/Learning/KWUserInterface/KWPreprocessingSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWPreprocessingSpecView.h | 2 +- src/Learning/KWUserInterface/KWRecodingSpecView.cpp | 2 +- src/Learning/KWUserInterface/KWRecodingSpecView.h | 2 +- src/Learning/KWUserInterface/KWSTDatabaseTextFileView.cpp | 2 +- src/Learning/KWUserInterface/KWSTDatabaseTextFileView.h | 2 +- src/Learning/KWUserInterface/KWSelectionParametersView.cpp | 2 +- src/Learning/KWUserInterface/KWSelectionParametersView.h | 2 +- src/Learning/KWUserInterface/KWSortAttributeNameArrayView.cpp | 2 +- src/Learning/KWUserInterface/KWSortAttributeNameArrayView.h | 2 +- src/Learning/KWUserInterface/KWTrainParametersView.cpp | 2 +- src/Learning/KWUserInterface/KWTrainParametersView.h | 2 +- src/Learning/KWUtils/KWKhiopsVersion.h | 4 ++-- src/Learning/KWUtils/KWVersion.cpp | 2 +- src/Learning/KWUtils/KWVersion.h | 2 +- src/Learning/KWUtils/LMLicenseManager.cpp | 2 +- src/Learning/KWUtils/LMLicenseManager.h | 2 +- src/Learning/KWUtils/LMLicenseService.cpp | 2 +- src/Learning/KWUtils/LMLicenseService.h | 2 +- src/Learning/KWUtils/ProfileStats.cpp | 2 +- src/Learning/KWUtils/ProfileStats.h | 2 +- src/Learning/KhiopsNativeInterface/KNIStream.cpp | 2 +- src/Learning/KhiopsNativeInterface/KNIStream.h | 2 +- .../KhiopsNativeInterface/KWDataTableDriverStream.cpp | 2 +- src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.h | 2 +- src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.cpp | 2 +- src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.h | 2 +- src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.cpp | 2 +- src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.h | 2 +- src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.cpp | 2 +- src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.h | 2 +- src/Learning/KhiopsNativeInterface/resource.h | 2 +- src/Learning/MHHistograms/MHBin.cpp | 2 +- src/Learning/MHHistograms/MHBin.h | 2 +- src/Learning/MHHistograms/MHContinuousLimits.cpp | 2 +- src/Learning/MHHistograms/MHContinuousLimits.h | 2 +- src/Learning/MHHistograms/MHDataSubset.cpp | 2 +- src/Learning/MHHistograms/MHDataSubset.h | 2 +- src/Learning/MHHistograms/MHDiscretizerHistogramMODL.cpp | 2 +- src/Learning/MHHistograms/MHDiscretizerHistogramMODL.h | 2 +- src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.cpp | 2 +- src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.h | 2 +- src/Learning/MHHistograms/MHEnumHistogramCost.cpp | 2 +- src/Learning/MHHistograms/MHEnumHistogramCost.h | 2 +- .../MHHistograms/MHFloatingPointFrequencyTableBuilder.cpp | 2 +- .../MHHistograms/MHFloatingPointFrequencyTableBuilder.h | 2 +- src/Learning/MHHistograms/MHHistogram.cpp | 2 +- src/Learning/MHHistograms/MHHistogram.h | 2 +- src/Learning/MHHistograms/MHHistogramSpec.cpp | 2 +- src/Learning/MHHistograms/MHHistogramSpec.h | 2 +- src/Learning/MHHistograms/MHHistogramSpecView.cpp | 2 +- src/Learning/MHHistograms/MHHistogramSpecView.h | 2 +- src/Learning/MHHistograms/MHHistogramVector.cpp | 2 +- src/Learning/MHHistograms/MHHistogramVector.h | 2 +- src/Learning/MHHistograms/MHHistogramVector_fp.cpp | 2 +- src/Learning/MHHistograms/MHHistogramVector_fp.h | 2 +- src/Learning/MHHistograms/MHKMHistogramCost.cpp | 2 +- src/Learning/MHHistograms/MHKMHistogramCost.h | 2 +- src/Learning/MHHistograms/MHMODLHistogramCost.cpp | 2 +- src/Learning/MHHistograms/MHMODLHistogramCost.h | 2 +- src/Learning/MHHistograms/MHMODLHistogramCost_fp.cpp | 2 +- src/Learning/MHHistograms/MHMODLHistogramCost_fp.h | 2 +- src/Learning/MHHistograms/MHNMLStat.cpp | 2 +- src/Learning/MHHistograms/MHNMLStat.h | 2 +- .../MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.cpp | 2 +- .../MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.h | 2 +- .../MHTruncationFloatingPointFrequencyTableBuilder.cpp | 2 +- .../MHTruncationFloatingPointFrequencyTableBuilder.h | 2 +- src/Learning/MODL/MDKhiopsLearningProblem.cpp | 2 +- src/Learning/MODL/MDKhiopsLearningProblem.h | 2 +- src/Learning/MODL/MDKhiopsLearningProblemView.cpp | 2 +- src/Learning/MODL/MDKhiopsLearningProblemView.h | 2 +- src/Learning/MODL/MDKhiopsLearningProject.cpp | 2 +- src/Learning/MODL/MDKhiopsLearningProject.h | 2 +- src/Learning/MODL/MDKhiopsModelingSpec.cpp | 2 +- src/Learning/MODL/MDKhiopsModelingSpec.h | 2 +- src/Learning/MODL/MDKhiopsModelingSpecView.cpp | 2 +- src/Learning/MODL/MDKhiopsModelingSpecView.h | 2 +- src/Learning/MODL/MODL.cpp | 2 +- src/Learning/MODL/MODL.h | 2 +- src/Learning/MODL/MODL_dll.cpp | 4 ++-- src/Learning/MODL/MODL_dll.h | 2 +- src/Learning/MODL/resource.h | 2 +- src/Learning/MODL_Coclustering/CCAnalysisResults.cpp | 2 +- src/Learning/MODL_Coclustering/CCAnalysisResults.h | 2 +- src/Learning/MODL_Coclustering/CCAnalysisResultsView.cpp | 2 +- src/Learning/MODL_Coclustering/CCAnalysisResultsView.h | 2 +- src/Learning/MODL_Coclustering/CCAnalysisSpec.cpp | 2 +- src/Learning/MODL_Coclustering/CCAnalysisSpec.h | 2 +- src/Learning/MODL_Coclustering/CCAnalysisSpecView.cpp | 2 +- src/Learning/MODL_Coclustering/CCAnalysisSpecView.h | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringBuilder.cpp | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringBuilder.h | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringReport.cpp | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringReport.h | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringSpec.cpp | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringSpec.h | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringSpecView.cpp | 2 +- src/Learning/MODL_Coclustering/CCCoclusteringSpecView.h | 2 +- src/Learning/MODL_Coclustering/CCDeploymentSpec.cpp | 2 +- src/Learning/MODL_Coclustering/CCDeploymentSpec.h | 2 +- src/Learning/MODL_Coclustering/CCDeploymentSpecView.cpp | 2 +- src/Learning/MODL_Coclustering/CCDeploymentSpecView.h | 2 +- src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.cpp | 2 +- src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.h | 2 +- src/Learning/MODL_Coclustering/CCLearningProblem.cpp | 2 +- src/Learning/MODL_Coclustering/CCLearningProblem.h | 2 +- .../MODL_Coclustering/CCLearningProblemActionView.cpp | 2 +- src/Learning/MODL_Coclustering/CCLearningProblemActionView.h | 2 +- .../CCLearningProblemClusterExtractionView.cpp | 2 +- .../CCLearningProblemClusterExtractionView.h | 2 +- .../CCLearningProblemDeploymentPreparationView.cpp | 2 +- .../CCLearningProblemDeploymentPreparationView.h | 2 +- .../CCLearningProblemPostOptimizationView.cpp | 2 +- .../MODL_Coclustering/CCLearningProblemPostOptimizationView.h | 2 +- .../MODL_Coclustering/CCLearningProblemPostProcessingView.cpp | 2 +- .../MODL_Coclustering/CCLearningProblemPostProcessingView.h | 2 +- src/Learning/MODL_Coclustering/CCLearningProblemToolView.cpp | 2 +- src/Learning/MODL_Coclustering/CCLearningProblemToolView.h | 2 +- src/Learning/MODL_Coclustering/CCLearningProblemView.cpp | 2 +- src/Learning/MODL_Coclustering/CCLearningProblemView.h | 2 +- src/Learning/MODL_Coclustering/CCLearningProject.cpp | 2 +- src/Learning/MODL_Coclustering/CCLearningProject.h | 2 +- src/Learning/MODL_Coclustering/CCPostProcessedAttribute.cpp | 2 +- src/Learning/MODL_Coclustering/CCPostProcessedAttribute.h | 2 +- .../MODL_Coclustering/CCPostProcessedAttributeArrayView.cpp | 2 +- .../MODL_Coclustering/CCPostProcessedAttributeArrayView.h | 2 +- .../MODL_Coclustering/CCPostProcessedAttributeView.cpp | 2 +- src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.h | 2 +- src/Learning/MODL_Coclustering/CCPostProcessingSpec.cpp | 2 +- src/Learning/MODL_Coclustering/CCPostProcessingSpec.h | 2 +- src/Learning/MODL_Coclustering/CCPostProcessingSpecView.cpp | 2 +- src/Learning/MODL_Coclustering/CCPostProcessingSpecView.h | 2 +- src/Learning/MODL_Coclustering/MODL_Coclustering.cpp | 2 +- src/Learning/MODL_Coclustering/MODL_Coclustering.h | 2 +- src/Learning/MODL_Coclustering/MODL_Coclustering_dll.cpp | 2 +- src/Learning/MODL_Coclustering/MODL_Coclustering_dll.h | 2 +- src/Learning/MODL_Coclustering/resource.h | 2 +- src/Learning/SNBPredictor/SNBAttributeSelectionScorer.cpp | 2 +- src/Learning/SNBPredictor/SNBAttributeSelectionScorer.h | 2 +- .../SNBPredictor/SNBAttributeSelectionWeightCalculator.cpp | 2 +- .../SNBPredictor/SNBAttributeSelectionWeightCalculator.h | 2 +- src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.cpp | 2 +- src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.h | 2 +- src/Learning/SNBPredictor/SNBIndexVector.cpp | 2 +- src/Learning/SNBPredictor/SNBIndexVector.h | 2 +- .../SNBPredictor/SNBPredictorSelectionDataCostCalculator.cpp | 2 +- .../SNBPredictor/SNBPredictorSelectionDataCostCalculator.h | 2 +- src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.cpp | 2 +- src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.h | 2 +- .../SNBPredictorSelectiveNaiveBayesTrainingTask.cpp | 2 +- .../SNBPredictorSelectiveNaiveBayesTrainingTask.h | 2 +- .../SNBPredictor/SNBPredictorSelectiveNaiveBayesView.cpp | 2 +- .../SNBPredictor/SNBPredictorSelectiveNaiveBayesView.h | 2 +- src/Learning/genum/GenumCommandLine.cpp | 2 +- src/Learning/genum/GenumCommandLine.h | 2 +- src/Learning/genum/Version.h | 4 ++-- src/Learning/genum/genum.cpp | 2 +- src/Learning/genum/genum.h | 2 +- src/Learning/genum/resource.h | 2 +- src/Learning/genumfp/MHCommandLine.cpp | 2 +- src/Learning/genumfp/MHCommandLine.h | 2 +- src/Learning/genumfp/Version.h | 4 ++-- src/Learning/genumfp/genumfp.cpp | 2 +- src/Learning/genumfp/genumfp.h | 2 +- src/Learning/genumfp/resource.h | 2 +- src/Learning/samples/sample1/SampleOneLearningProblem.cpp | 2 +- src/Learning/samples/sample1/SampleOneLearningProblem.h | 2 +- src/Learning/samples/sample1/SampleOneLearningProblemView.cpp | 2 +- src/Learning/samples/sample1/SampleOneLearningProblemView.h | 2 +- src/Learning/samples/sample1/SampleOneLearningProject.cpp | 2 +- src/Learning/samples/sample1/SampleOneLearningProject.h | 2 +- src/Learning/samples/sample1/test.cpp | 2 +- src/Learning/samples/sample1/test.h | 2 +- src/Learning/samples/sample2/CMDRMajority.cpp | 2 +- src/Learning/samples/sample2/CMDRMajority.h | 2 +- src/Learning/samples/sample2/CMLearningProblem.cpp | 2 +- src/Learning/samples/sample2/CMLearningProblem.h | 2 +- src/Learning/samples/sample2/CMLearningProblemView.cpp | 2 +- src/Learning/samples/sample2/CMLearningProblemView.h | 2 +- src/Learning/samples/sample2/CMLearningProject.cpp | 2 +- src/Learning/samples/sample2/CMLearningProject.h | 2 +- src/Learning/samples/sample2/CMMajorityClassifier.cpp | 2 +- src/Learning/samples/sample2/CMMajorityClassifier.h | 2 +- src/Learning/samples/sample2/CMModelingSpec.cpp | 2 +- src/Learning/samples/sample2/CMModelingSpec.h | 2 +- src/Learning/samples/sample2/CMModelingSpecView.cpp | 2 +- src/Learning/samples/sample2/CMModelingSpecView.h | 2 +- src/Learning/samples/sample2/ClassifieurMajoritaire.cpp | 2 +- src/Learning/samples/sample2/ClassifieurMajoritaire.h | 2 +- src/Learning/samples/sample3/MYAnalysisResults.cpp | 2 +- src/Learning/samples/sample3/MYAnalysisResults.h | 2 +- src/Learning/samples/sample3/MYAnalysisResultsView.cpp | 2 +- src/Learning/samples/sample3/MYAnalysisResultsView.h | 2 +- src/Learning/samples/sample3/MYLearningProblem.cpp | 2 +- src/Learning/samples/sample3/MYLearningProblem.h | 2 +- src/Learning/samples/sample3/MYLearningProblemView.cpp | 2 +- src/Learning/samples/sample3/MYLearningProblemView.h | 2 +- src/Learning/samples/sample3/MYLearningProject.cpp | 2 +- src/Learning/samples/sample3/MYLearningProject.h | 2 +- src/Learning/samples/sample3/MYMain.cpp | 2 +- src/Learning/samples/sample3/MYMain.h | 2 +- src/Learning/samples/sample3/MYModelingSpec.cpp | 2 +- src/Learning/samples/sample3/MYModelingSpec.h | 2 +- src/Learning/samples/sample3/MYModelingSpecView.cpp | 2 +- src/Learning/samples/sample3/MYModelingSpecView.h | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIAction.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIBooleanElement.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUICard.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUICharElement.java | 2 +- .../NormGUI/src/normGUI/engine/GUIComboBoxAutoComplete.java | 2 +- .../NormGUI/src/normGUI/engine/GUIComboBoxImageRenderer.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIData.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIDialog.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIDoubleElement.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIElement.java | 2 +- .../NormGUI/src/normGUI/engine/GUIFileDirectoryChooser.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIIntElement.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIList.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIManager.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIMessage.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIObject.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIStringElement.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUITable.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUITableModel.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUITaskProgression.java | 2 +- src/Norm/NormGUI/src/normGUI/engine/GUIUnit.java | 2 +- .../NormGUI/src/normGUI/extensions/GUICardTabbedPanes.java | 2 +- .../widgets/booleanWidgets/GUIBooleanElementCheckBox.java | 2 +- .../widgets/booleanWidgets/GUIBooleanElementComboBox.java | 2 +- .../widgets/booleanWidgets/GUIBooleanElementRadioButton.java | 2 +- .../normGUI/widgets/charWidgets/GUICharElementComboBox.java | 2 +- .../widgets/charWidgets/GUICharElementEditableComboBox.java | 2 +- .../widgets/charWidgets/GUICharElementRadioButton.java | 2 +- .../widgets/doubleWidgets/GUIDoubleElementComboBox.java | 2 +- .../doubleWidgets/GUIDoubleElementEditableComboBox.java | 2 +- .../widgets/doubleWidgets/GUIDoubleElementRadioButton.java | 2 +- .../widgets/doubleWidgets/GUIDoubleElementSpinner.java | 2 +- .../src/normGUI/widgets/intWidgets/GUIIntElementComboBox.java | 2 +- .../widgets/intWidgets/GUIIntElementEditableComboBox.java | 2 +- .../normGUI/widgets/intWidgets/GUIIntElementRadioButton.java | 2 +- .../src/normGUI/widgets/intWidgets/GUIIntElementSlider.java | 2 +- .../src/normGUI/widgets/intWidgets/GUIIntElementSpinner.java | 2 +- .../widgets/stringWidgets/GUIStringElementComboBox.java | 2 +- .../stringWidgets/GUIStringElementDirectoryChooser.java | 2 +- .../stringWidgets/GUIStringElementEditableComboBox.java | 2 +- .../widgets/stringWidgets/GUIStringElementFileChooser.java | 2 +- .../stringWidgets/GUIStringElementFileDirectoryChooser.java | 2 +- .../widgets/stringWidgets/GUIStringElementFormattedLabel.java | 2 +- .../widgets/stringWidgets/GUIStringElementHelpedComboBox.java | 2 +- .../widgets/stringWidgets/GUIStringElementImageComboBox.java | 2 +- .../widgets/stringWidgets/GUIStringElementPassword.java | 2 +- .../widgets/stringWidgets/GUIStringElementRadioButton.java | 2 +- .../stringWidgets/GUIStringElementSelectableLabel.java | 2 +- .../widgets/stringWidgets/GUIStringElementTextArea.java | 2 +- .../widgets/stringWidgets/GUIStringElementUriLabel.java | 2 +- src/Norm/base/ALString.cpp | 2 +- src/Norm/base/ALString.h | 2 +- src/Norm/base/BufferedFile.cpp | 2 +- src/Norm/base/BufferedFile.h | 2 +- src/Norm/base/CharVector.cpp | 2 +- src/Norm/base/CharVector.h | 2 +- src/Norm/base/CommandLine.cpp | 2 +- src/Norm/base/CommandLine.h | 2 +- src/Norm/base/Ermgt.cpp | 2 +- src/Norm/base/Ermgt.h | 2 +- src/Norm/base/FileCache.cpp | 2 +- src/Norm/base/FileCache.h | 2 +- src/Norm/base/FileService.cpp | 2 +- src/Norm/base/FileService.h | 2 +- src/Norm/base/HugeBuffer.cpp | 2 +- src/Norm/base/HugeBuffer.h | 2 +- src/Norm/base/InputBufferedFile.cpp | 2 +- src/Norm/base/InputBufferedFile.h | 2 +- src/Norm/base/Longint.cpp | 2 +- src/Norm/base/Longint.h | 2 +- src/Norm/base/MemVector.cpp | 2 +- src/Norm/base/MemVector.h | 2 +- src/Norm/base/MemoryBufferedFile.cpp | 2 +- src/Norm/base/MemoryBufferedFile.h | 2 +- src/Norm/base/MemoryManager.cpp | 2 +- src/Norm/base/MemoryManager.h | 2 +- src/Norm/base/MemoryStatsManager.cpp | 2 +- src/Norm/base/MemoryStatsManager.h | 2 +- src/Norm/base/Obarray.cpp | 2 +- src/Norm/base/Obdic.cpp | 2 +- src/Norm/base/Object.h | 2 +- src/Norm/base/Oblist.cpp | 2 +- src/Norm/base/OutputBufferedFile.cpp | 2 +- src/Norm/base/OutputBufferedFile.h | 2 +- src/Norm/base/PLRemoteFileService.cpp | 2 +- src/Norm/base/PLRemoteFileService.h | 2 +- src/Norm/base/Portability.cpp | 2 +- src/Norm/base/Portability.h | 2 +- src/Norm/base/Regexp.cpp | 2 +- src/Norm/base/Regexp.h | 2 +- src/Norm/base/SortedList.cpp | 2 +- src/Norm/base/SortedList.h | 2 +- src/Norm/base/Standard.cpp | 2 +- src/Norm/base/Standard.h | 2 +- src/Norm/base/SystemFile.cpp | 2 +- src/Norm/base/SystemFile.h | 2 +- src/Norm/base/SystemFileDriver.cpp | 2 +- src/Norm/base/SystemFileDriver.h | 2 +- src/Norm/base/SystemFileDriverANSI.cpp | 2 +- src/Norm/base/SystemFileDriverANSI.h | 2 +- src/Norm/base/SystemFileDriverCreator.cpp | 2 +- src/Norm/base/SystemFileDriverCreator.h | 2 +- src/Norm/base/SystemFileDriverLibrary.cpp | 2 +- src/Norm/base/SystemFileDriverLibrary.h | 2 +- src/Norm/base/SystemResource.cpp | 2 +- src/Norm/base/SystemResource.h | 2 +- src/Norm/base/TaskProgression.cpp | 2 +- src/Norm/base/TaskProgression.h | 2 +- src/Norm/base/TaskProgressionManager.cpp | 2 +- src/Norm/base/TaskProgressionManager.h | 2 +- src/Norm/base/Timer.cpp | 2 +- src/Norm/base/Timer.h | 2 +- src/Norm/base/UICard.cpp | 2 +- src/Norm/base/UIData.cpp | 2 +- src/Norm/base/UIElements.cpp | 2 +- src/Norm/base/UIList.cpp | 2 +- src/Norm/base/UIObject.cpp | 2 +- src/Norm/base/UIObjectArrayView.cpp | 2 +- src/Norm/base/UIObjectView.cpp | 2 +- src/Norm/base/UITaskProgression.cpp | 2 +- src/Norm/base/UIUnit.cpp | 2 +- src/Norm/base/UserInterface.h | 2 +- src/Norm/base/Vector.cpp | 2 +- src/Norm/base/Vector.h | 2 +- src/Norm/base/jni_md_linux.h | 2 +- src/Norm/base/jni_md_windows.h | 2 +- src/Norm/base/jni_wrapper.h | 2 +- src/Norm/basetest/BaseTest.cpp | 2 +- src/Norm/basetest/BaseTest.h | 2 +- src/Norm/basetest/DiversTests.cpp | 2 +- src/Norm/basetest/DiversTests.h | 2 +- src/Norm/basetest/UITest.cpp | 2 +- src/Norm/basetest/UITest.h | 2 +- src/Norm/basetest/UITestActionSubObject.cpp | 2 +- src/Norm/basetest/UITestActionSubObject.h | 2 +- src/Norm/basetest/UITestActionSubObjectView.cpp | 2 +- src/Norm/basetest/UITestActionSubObjectView.h | 2 +- src/Norm/basetest/UITestClassSpec.cpp | 2 +- src/Norm/basetest/UITestClassSpec.h | 2 +- src/Norm/basetest/UITestClassSpecArrayView.cpp | 2 +- src/Norm/basetest/UITestClassSpecArrayView.h | 2 +- src/Norm/basetest/UITestClassSpecView.cpp | 2 +- src/Norm/basetest/UITestClassSpecView.h | 2 +- src/Norm/basetest/UITestObject.cpp | 2 +- src/Norm/basetest/UITestObject.h | 2 +- src/Norm/basetest/UITestObjectView.cpp | 2 +- src/Norm/basetest/UITestObjectView.h | 2 +- src/Norm/basetest/UITestSubObject.cpp | 2 +- src/Norm/basetest/UITestSubObject.h | 2 +- src/Norm/basetest/UITestSubObjectView.cpp | 2 +- src/Norm/basetest/UITestSubObjectView.h | 2 +- src/Norm/basetest/main.cpp | 2 +- src/Norm/basetest/main.h | 2 +- src/Norm/genere/Attribute.cpp | 2 +- src/Norm/genere/Attribute.h | 2 +- src/Norm/genere/AttributeTable.cpp | 2 +- src/Norm/genere/AttributeTable.h | 2 +- src/Norm/genere/Genere.h | 2 +- src/Norm/genere/GenereAttArrayViewC.cpp | 2 +- src/Norm/genere/GenereAttC.cpp | 2 +- src/Norm/genere/GenereAttH.cpp | 2 +- src/Norm/genere/GenereAttViewC.cpp | 2 +- src/Norm/genere/GenereAttViewH.cpp | 2 +- src/Norm/genere/ManagedObject.cpp | 2 +- src/Norm/genere/ManagedObject.h | 2 +- src/Norm/genere/ManagedObjectTable.cpp | 2 +- src/Norm/genere/ManagedObjectTable.h | 2 +- src/Norm/genere/QueryServices.cpp | 2 +- src/Norm/genere/QueryServices.h | 2 +- src/Norm/genere/QueryServicesView.cpp | 2 +- src/Norm/genere/QueryServicesView.h | 2 +- src/Norm/genere/Section.cpp | 2 +- src/Norm/genere/Section.h | 2 +- src/Norm/genere/SectionTable.cpp | 2 +- src/Norm/genere/SectionTable.h | 2 +- src/Norm/genere/TableGenerator.cpp | 2 +- src/Norm/genere/TableGenerator.h | 2 +- src/Norm/genere/TableServices.cpp | 2 +- src/Norm/genere/TableServices.h | 2 +- src/Norm/genere/genere.cpp | 2 +- src/Norm/genere/genereattarrayviewH.cpp | 2 +- src/Norm/generetest/Sample.cpp | 2 +- src/Norm/generetest/Sample.h | 2 +- src/Norm/generetest/SampleArrayView.cpp | 2 +- src/Norm/generetest/SampleArrayView.h | 2 +- src/Norm/generetest/SampleView.cpp | 2 +- src/Norm/generetest/SampleView.h | 2 +- src/Norm/generetest/generetest.cpp | 2 +- src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.cpp | 2 +- src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.h | 2 +- src/Norm/samples/sample1/main.cpp | 2 +- src/Norm/samples/sample1/main.h | 2 +- src/Norm/samples/sample2/PRWorker.cpp | 2 +- src/Norm/samples/sample2/PRWorker.h | 2 +- src/Norm/samples/sample2/PRWorkerView.cpp | 2 +- src/Norm/samples/sample2/PRWorkerView.h | 2 +- src/Norm/samples/sample2/main.cpp | 2 +- src/Norm/samples/sample2/main.h | 2 +- src/Norm/samples/sample3/PRAddress.cpp | 2 +- src/Norm/samples/sample3/PRAddress.h | 2 +- src/Norm/samples/sample3/PRAddressView.cpp | 2 +- src/Norm/samples/sample3/PRAddressView.h | 2 +- src/Norm/samples/sample3/PRChild.cpp | 2 +- src/Norm/samples/sample3/PRChild.h | 2 +- src/Norm/samples/sample3/PRChildArrayView.cpp | 2 +- src/Norm/samples/sample3/PRChildArrayView.h | 2 +- src/Norm/samples/sample3/PRChildView.cpp | 2 +- src/Norm/samples/sample3/PRChildView.h | 2 +- src/Norm/samples/sample3/PRWorker.cpp | 2 +- src/Norm/samples/sample3/PRWorker.h | 2 +- src/Norm/samples/sample3/PRWorkerView.cpp | 2 +- src/Norm/samples/sample3/PRWorkerView.h | 2 +- src/Norm/samples/sample3/main.cpp | 2 +- src/Norm/samples/sample3/main.h | 2 +- src/Parallel/PLMPI/PLMPIFileServerSlave.cpp | 2 +- src/Parallel/PLMPI/PLMPIFileServerSlave.h | 2 +- src/Parallel/PLMPI/PLMPIMaster.cpp | 2 +- src/Parallel/PLMPI/PLMPIMaster.h | 2 +- src/Parallel/PLMPI/PLMPIMasterSlaveTags.h | 2 +- src/Parallel/PLMPI/PLMPIMessageManager.cpp | 2 +- src/Parallel/PLMPI/PLMPIMessageManager.h | 2 +- src/Parallel/PLMPI/PLMPIMsgContext.cpp | 2 +- src/Parallel/PLMPI/PLMPIMsgContext.h | 2 +- src/Parallel/PLMPI/PLMPISlave.cpp | 2 +- src/Parallel/PLMPI/PLMPISlave.h | 2 +- src/Parallel/PLMPI/PLMPISlaveLauncher.cpp | 2 +- src/Parallel/PLMPI/PLMPISlaveLauncher.h | 2 +- src/Parallel/PLMPI/PLMPISlaveProgressionManager.cpp | 2 +- src/Parallel/PLMPI/PLMPISlaveProgressionManager.h | 2 +- src/Parallel/PLMPI/PLMPISystemFileDriverRemote.cpp | 2 +- src/Parallel/PLMPI/PLMPISystemFileDriverRemote.h | 2 +- src/Parallel/PLMPI/PLMPITaskDriver.cpp | 2 +- src/Parallel/PLMPI/PLMPITaskDriver.h | 2 +- src/Parallel/PLMPI/PLMPITracer.cpp | 2 +- src/Parallel/PLMPI/PLMPITracer.h | 2 +- src/Parallel/PLMPI/PLMPImpi_wrapper.h | 2 +- src/Parallel/PLParallelTask/PLErrorWithIndex.cpp | 2 +- src/Parallel/PLParallelTask/PLErrorWithIndex.h | 2 +- src/Parallel/PLParallelTask/PLFileConcatenater.cpp | 2 +- src/Parallel/PLParallelTask/PLFileConcatenater.h | 2 +- src/Parallel/PLParallelTask/PLIncrementalStats.cpp | 2 +- src/Parallel/PLParallelTask/PLIncrementalStats.h | 2 +- src/Parallel/PLParallelTask/PLParallelTask.cpp | 2 +- src/Parallel/PLParallelTask/PLParallelTask.h | 2 +- src/Parallel/PLParallelTask/PLSerializer.cpp | 2 +- src/Parallel/PLParallelTask/PLSerializer.h | 2 +- src/Parallel/PLParallelTask/PLSharedObject.cpp | 2 +- src/Parallel/PLParallelTask/PLSharedObject.h | 2 +- src/Parallel/PLParallelTask/PLSharedVariable.cpp | 2 +- src/Parallel/PLParallelTask/PLSharedVariable.h | 2 +- src/Parallel/PLParallelTask/PLSharedVector.cpp | 2 +- src/Parallel/PLParallelTask/PLSharedVector.h | 2 +- src/Parallel/PLParallelTask/PLShared_HostResource.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_HostResource.h | 2 +- src/Parallel/PLParallelTask/PLShared_ObjectArray.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_ObjectDictionary.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_ObjectList.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_ResourceRequirement.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_ResourceRequirement.h | 2 +- src/Parallel/PLParallelTask/PLShared_SampleObject.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_SampleObject.h | 2 +- src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.cpp | 2 +- src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.h | 2 +- src/Parallel/PLParallelTask/PLSlaveState.cpp | 2 +- src/Parallel/PLParallelTask/PLSlaveState.h | 2 +- src/Parallel/PLParallelTask/PLTaskDriver.cpp | 2 +- src/Parallel/PLParallelTask/PLTaskDriver.h | 2 +- src/Parallel/PLParallelTask/PLTracer.cpp | 2 +- src/Parallel/PLParallelTask/PLTracer.h | 2 +- src/Parallel/PLParallelTask/RMParallelResourceDriver.cpp | 2 +- src/Parallel/PLParallelTask/RMParallelResourceDriver.h | 2 +- src/Parallel/PLParallelTask/RMParallelResourceManager.cpp | 2 +- src/Parallel/PLParallelTask/RMParallelResourceManager.h | 2 +- src/Parallel/PLParallelTask/RMTaskResourceGrant.cpp | 2 +- src/Parallel/PLParallelTask/RMTaskResourceGrant.h | 2 +- src/Parallel/PLParallelTask/RMTaskResourceRequirement.cpp | 2 +- src/Parallel/PLParallelTask/RMTaskResourceRequirement.h | 2 +- src/Parallel/PLSamples/PEFileSearchTask.cpp | 2 +- src/Parallel/PLSamples/PEFileSearchTask.h | 2 +- src/Parallel/PLSamples/PEHelloWorldTask.cpp | 2 +- src/Parallel/PLSamples/PEHelloWorldTask.h | 2 +- src/Parallel/PLSamples/PEIOParallelTestTask.cpp | 2 +- src/Parallel/PLSamples/PEIOParallelTestTask.h | 2 +- src/Parallel/PLSamples/PELullaby.cpp | 2 +- src/Parallel/PLSamples/PELullabyTask.h | 2 +- src/Parallel/PLSamples/PEPi.cpp | 2 +- src/Parallel/PLSamples/PEPi.h | 2 +- src/Parallel/PLSamples/PEPiTask.cpp | 2 +- src/Parallel/PLSamples/PEPiTask.h | 2 +- src/Parallel/PLSamples/PEPiView.cpp | 2 +- src/Parallel/PLSamples/PEPiView.h | 2 +- src/Parallel/PLSamples/PEProgressionTask.cpp | 2 +- src/Parallel/PLSamples/PEProgressionTask.h | 2 +- src/Parallel/PLSamples/PEProtocolTestTask.cpp | 2 +- src/Parallel/PLSamples/PEProtocolTestTask.h | 2 +- src/Parallel/PLSamples/PESerializerLongTestTask.cpp | 2 +- src/Parallel/PLSamples/PESerializerLongTestTask.h | 2 +- src/Parallel/PLSamples/PESerializerTestTask.cpp | 2 +- src/Parallel/PLSamples/PESerializerTestTask.h | 2 +- src/Parallel/PLSamples/PEShared_SampleObject.cpp | 2 +- src/Parallel/PLSamples/PEShared_SampleObject.h | 2 +- src/Parallel/PLTest/PLTest.cpp | 2 +- src/Parallel/PLTest/PLTest.h | 2 +- src/Parallel/RMResourceManager/RMResourceConstraints.cpp | 2 +- src/Parallel/RMResourceManager/RMResourceConstraints.h | 2 +- src/Parallel/RMResourceManager/RMResourceManager.cpp | 2 +- src/Parallel/RMResourceManager/RMResourceManager.h | 2 +- src/Parallel/RMResourceManager/RMResourceSystem.cpp | 2 +- src/Parallel/RMResourceManager/RMResourceSystem.h | 2 +- src/Parallel/RMResourceManager/RMStandardResourceDriver.cpp | 2 +- src/Parallel/RMResourceManager/RMStandardResourceDriver.h | 2 +- test/KNITest/KNITest.cpp | 2 +- test/KNITest/KNITest.h | 2 +- test/Learning/KWClass_test.cpp | 2 +- test/Norm/InputBufferedFile_test.cpp | 2 +- test/Parallel-mpi/PEProtocolTest.cpp | 2 +- test/Parallel-mpi/main.cpp | 2 +- test/Parallel/PLSerializer_test.cpp | 2 +- test/Utils/MpiEnvironment.h | 2 +- test/Utils/ParallelTest.h | 2 +- test/Utils/TestServices.cpp | 2 +- test/Utils/TestServices.h | 2 +- 1150 files changed, 1154 insertions(+), 1154 deletions(-) diff --git a/LICENSE b/LICENSE index 1d6da0342..c58c9dfaf 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The Clear BSD License -Copyright (c) 2023 Orange S.A. +Copyright (c) 2024 Orange S.A. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/packaging/common/khiops/README.txt b/packaging/common/khiops/README.txt index d471bb99d..d84d9c515 100644 --- a/packaging/common/khiops/README.txt +++ b/packaging/common/khiops/README.txt @@ -1,6 +1,6 @@ Khiops 10.0 =========== - (c) 2023 Orange - All rights reserved. + (c) 2024 Orange - All rights reserved. https://khiops.org Khiops is a fully automatic tool for mining large multi-table databases, diff --git a/packaging/windows/nsis/khiops.nsi b/packaging/windows/nsis/khiops.nsi index 8c28d718c..6a53615e0 100644 --- a/packaging/windows/nsis/khiops.nsi +++ b/packaging/windows/nsis/khiops.nsi @@ -146,7 +146,7 @@ Page custom RequirementsPageShow RequirementsPageLeave VIProductVersion "${KHIOPS_REDUCED_VERSION}.0" VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "Khiops" VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "Orange" -VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright (c) 2023 Orange" +VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright (c) 2024 Orange" VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Khiops Installer" VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "${KHIOPS_VERSION}" diff --git a/src/Learning/DTForest/DTAttributeSelection.cpp b/src/Learning/DTForest/DTAttributeSelection.cpp index e13ca5013..ded7666f1 100644 --- a/src/Learning/DTForest/DTAttributeSelection.cpp +++ b/src/Learning/DTForest/DTAttributeSelection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTAttributeSelection.h b/src/Learning/DTForest/DTAttributeSelection.h index af53a1056..41497b0ce 100644 --- a/src/Learning/DTForest/DTAttributeSelection.h +++ b/src/Learning/DTForest/DTAttributeSelection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTBaseLoader.cpp b/src/Learning/DTForest/DTBaseLoader.cpp index e38639c9c..41fffc3f3 100644 --- a/src/Learning/DTForest/DTBaseLoader.cpp +++ b/src/Learning/DTForest/DTBaseLoader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTBaseLoader.h b/src/Learning/DTForest/DTBaseLoader.h index 715372d27..c529639ff 100644 --- a/src/Learning/DTForest/DTBaseLoader.h +++ b/src/Learning/DTForest/DTBaseLoader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTBaseLoaderSplitter.cpp b/src/Learning/DTForest/DTBaseLoaderSplitter.cpp index cb9157995..4cad7391b 100644 --- a/src/Learning/DTForest/DTBaseLoaderSplitter.cpp +++ b/src/Learning/DTForest/DTBaseLoaderSplitter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTBaseLoaderSplitter.h b/src/Learning/DTForest/DTBaseLoaderSplitter.h index ed25336a7..d2e415ae4 100644 --- a/src/Learning/DTForest/DTBaseLoaderSplitter.h +++ b/src/Learning/DTForest/DTBaseLoaderSplitter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTConfig.cpp b/src/Learning/DTForest/DTConfig.cpp index f1b0ca52e..ea2ab3676 100644 --- a/src/Learning/DTForest/DTConfig.cpp +++ b/src/Learning/DTForest/DTConfig.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTConfig.h b/src/Learning/DTForest/DTConfig.h index fb91859d1..40eabab6d 100644 --- a/src/Learning/DTForest/DTConfig.h +++ b/src/Learning/DTForest/DTConfig.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTCreationReport.cpp b/src/Learning/DTForest/DTCreationReport.cpp index 3f11a7bdd..fd724da91 100644 --- a/src/Learning/DTForest/DTCreationReport.cpp +++ b/src/Learning/DTForest/DTCreationReport.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTCreationReport.h b/src/Learning/DTForest/DTCreationReport.h index e022f58e9..9d96f438d 100644 --- a/src/Learning/DTForest/DTCreationReport.h +++ b/src/Learning/DTForest/DTCreationReport.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionBinaryTreeCost.cpp b/src/Learning/DTForest/DTDecisionBinaryTreeCost.cpp index 12ec3e9e6..d8c6410f7 100644 --- a/src/Learning/DTForest/DTDecisionBinaryTreeCost.cpp +++ b/src/Learning/DTForest/DTDecisionBinaryTreeCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionBinaryTreeCost.h b/src/Learning/DTForest/DTDecisionBinaryTreeCost.h index 5edce9f93..98e9b9bfe 100644 --- a/src/Learning/DTForest/DTDecisionBinaryTreeCost.h +++ b/src/Learning/DTForest/DTDecisionBinaryTreeCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTree.cpp b/src/Learning/DTForest/DTDecisionTree.cpp index 7f9c1f29a..5b47ff326 100644 --- a/src/Learning/DTForest/DTDecisionTree.cpp +++ b/src/Learning/DTForest/DTDecisionTree.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTree.h b/src/Learning/DTForest/DTDecisionTree.h index 6ee9ec3fa..d6f6cab40 100644 --- a/src/Learning/DTForest/DTDecisionTree.h +++ b/src/Learning/DTForest/DTDecisionTree.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCost.cpp b/src/Learning/DTForest/DTDecisionTreeCost.cpp index 6c68b9133..8af09c693 100644 --- a/src/Learning/DTForest/DTDecisionTreeCost.cpp +++ b/src/Learning/DTForest/DTDecisionTreeCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCost.h b/src/Learning/DTForest/DTDecisionTreeCost.h index fa508dab0..7950db2a8 100644 --- a/src/Learning/DTForest/DTDecisionTreeCost.h +++ b/src/Learning/DTForest/DTDecisionTreeCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTask.cpp b/src/Learning/DTForest/DTDecisionTreeCreationTask.cpp index 027b9d6f4..ed42fb915 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTask.cpp +++ b/src/Learning/DTForest/DTDecisionTreeCreationTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTask.h b/src/Learning/DTForest/DTDecisionTreeCreationTask.h index 3b5ae84fe..a87f4e4e8 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTask.h +++ b/src/Learning/DTForest/DTDecisionTreeCreationTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.cpp b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.cpp index 1456b85e0..f00330ad0 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.cpp +++ b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.h b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.h index 3162e47bb..aa1f9dda7 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.h +++ b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequential.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.cpp b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.cpp index 340ab10b6..3b5f0d946 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.cpp +++ b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.h b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.h index ee96958b0..440551112 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.h +++ b/src/Learning/DTForest/DTDecisionTreeCreationTaskSequentialView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTaskView.cpp b/src/Learning/DTForest/DTDecisionTreeCreationTaskView.cpp index 4ac7d4b6b..61997e4e9 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTaskView.cpp +++ b/src/Learning/DTForest/DTDecisionTreeCreationTaskView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeCreationTaskView.h b/src/Learning/DTForest/DTDecisionTreeCreationTaskView.h index 1bbb501a7..6f3c8211a 100644 --- a/src/Learning/DTForest/DTDecisionTreeCreationTaskView.h +++ b/src/Learning/DTForest/DTDecisionTreeCreationTaskView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeDatabaseObject.cpp b/src/Learning/DTForest/DTDecisionTreeDatabaseObject.cpp index b5b5932fe..3e44c8c29 100644 --- a/src/Learning/DTForest/DTDecisionTreeDatabaseObject.cpp +++ b/src/Learning/DTForest/DTDecisionTreeDatabaseObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeDatabaseObject.h b/src/Learning/DTForest/DTDecisionTreeDatabaseObject.h index 883d5dcdc..bbd190cb3 100644 --- a/src/Learning/DTForest/DTDecisionTreeDatabaseObject.h +++ b/src/Learning/DTForest/DTDecisionTreeDatabaseObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeGlobalCost.cpp b/src/Learning/DTForest/DTDecisionTreeGlobalCost.cpp index 7e3c023dd..d083eec86 100644 --- a/src/Learning/DTForest/DTDecisionTreeGlobalCost.cpp +++ b/src/Learning/DTForest/DTDecisionTreeGlobalCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeGlobalCost.h b/src/Learning/DTForest/DTDecisionTreeGlobalCost.h index 60b39d0a1..504c2be68 100644 --- a/src/Learning/DTForest/DTDecisionTreeGlobalCost.h +++ b/src/Learning/DTForest/DTDecisionTreeGlobalCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeNode.cpp b/src/Learning/DTForest/DTDecisionTreeNode.cpp index d9cba7daa..e4f547344 100644 --- a/src/Learning/DTForest/DTDecisionTreeNode.cpp +++ b/src/Learning/DTForest/DTDecisionTreeNode.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeNode.h b/src/Learning/DTForest/DTDecisionTreeNode.h index bc9e6f7ef..3aebe30da 100644 --- a/src/Learning/DTForest/DTDecisionTreeNode.h +++ b/src/Learning/DTForest/DTDecisionTreeNode.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeParameter.cpp b/src/Learning/DTForest/DTDecisionTreeParameter.cpp index 1fbab7511..e0a4ca3f9 100644 --- a/src/Learning/DTForest/DTDecisionTreeParameter.cpp +++ b/src/Learning/DTForest/DTDecisionTreeParameter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeParameter.h b/src/Learning/DTForest/DTDecisionTreeParameter.h index 758dc675b..6419aa289 100644 --- a/src/Learning/DTForest/DTDecisionTreeParameter.h +++ b/src/Learning/DTForest/DTDecisionTreeParameter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeParameterView.cpp b/src/Learning/DTForest/DTDecisionTreeParameterView.cpp index 57cbd3791..d31e524c0 100644 --- a/src/Learning/DTForest/DTDecisionTreeParameterView.cpp +++ b/src/Learning/DTForest/DTDecisionTreeParameterView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeParameterView.h b/src/Learning/DTForest/DTDecisionTreeParameterView.h index 3de304cb5..3f8c3de30 100644 --- a/src/Learning/DTForest/DTDecisionTreeParameterView.h +++ b/src/Learning/DTForest/DTDecisionTreeParameterView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeRecursiveCost.cpp b/src/Learning/DTForest/DTDecisionTreeRecursiveCost.cpp index 25cf6c0aa..e25e0d793 100644 --- a/src/Learning/DTForest/DTDecisionTreeRecursiveCost.cpp +++ b/src/Learning/DTForest/DTDecisionTreeRecursiveCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeRecursiveCost.h b/src/Learning/DTForest/DTDecisionTreeRecursiveCost.h index 1c63a0b03..f7174f9ef 100644 --- a/src/Learning/DTForest/DTDecisionTreeRecursiveCost.h +++ b/src/Learning/DTForest/DTDecisionTreeRecursiveCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeSpec.cpp b/src/Learning/DTForest/DTDecisionTreeSpec.cpp index b6f207b60..9d20f900f 100644 --- a/src/Learning/DTForest/DTDecisionTreeSpec.cpp +++ b/src/Learning/DTForest/DTDecisionTreeSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDecisionTreeSpec.h b/src/Learning/DTForest/DTDecisionTreeSpec.h index 5ee5073c4..71c7b819f 100644 --- a/src/Learning/DTForest/DTDecisionTreeSpec.h +++ b/src/Learning/DTForest/DTDecisionTreeSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDiscretizerMODL.cpp b/src/Learning/DTForest/DTDiscretizerMODL.cpp index e970c3398..53ef284c5 100644 --- a/src/Learning/DTForest/DTDiscretizerMODL.cpp +++ b/src/Learning/DTForest/DTDiscretizerMODL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTDiscretizerMODL.h b/src/Learning/DTForest/DTDiscretizerMODL.h index 0d718a41a..2b9bb7c08 100644 --- a/src/Learning/DTForest/DTDiscretizerMODL.h +++ b/src/Learning/DTForest/DTDiscretizerMODL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTForestAttributeSelection.cpp b/src/Learning/DTForest/DTForestAttributeSelection.cpp index 964b975c6..0dfd98279 100644 --- a/src/Learning/DTForest/DTForestAttributeSelection.cpp +++ b/src/Learning/DTForest/DTForestAttributeSelection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTForestAttributeSelection.h b/src/Learning/DTForest/DTForestAttributeSelection.h index e5ff7e220..8928119e0 100644 --- a/src/Learning/DTForest/DTForestAttributeSelection.h +++ b/src/Learning/DTForest/DTForestAttributeSelection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTForestParameter.cpp b/src/Learning/DTForest/DTForestParameter.cpp index cd422ed90..490409323 100644 --- a/src/Learning/DTForest/DTForestParameter.cpp +++ b/src/Learning/DTForest/DTForestParameter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTForestParameter.h b/src/Learning/DTForest/DTForestParameter.h index 861ced5bf..b0b3db971 100644 --- a/src/Learning/DTForest/DTForestParameter.h +++ b/src/Learning/DTForest/DTForestParameter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTForestParameterView.cpp b/src/Learning/DTForest/DTForestParameterView.cpp index 4b25f84d5..007c425f2 100644 --- a/src/Learning/DTForest/DTForestParameterView.cpp +++ b/src/Learning/DTForest/DTForestParameterView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTForestParameterView.h b/src/Learning/DTForest/DTForestParameterView.h index e3ca2e2eb..a7040d3be 100644 --- a/src/Learning/DTForest/DTForestParameterView.h +++ b/src/Learning/DTForest/DTForestParameterView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGlobalTag.cpp b/src/Learning/DTForest/DTGlobalTag.cpp index e5792d54d..905785e34 100644 --- a/src/Learning/DTForest/DTGlobalTag.cpp +++ b/src/Learning/DTForest/DTGlobalTag.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGlobalTag.h b/src/Learning/DTForest/DTGlobalTag.h index 82d659fbd..3f08ac136 100644 --- a/src/Learning/DTForest/DTGlobalTag.h +++ b/src/Learning/DTForest/DTGlobalTag.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGrouperMODL.cpp b/src/Learning/DTForest/DTGrouperMODL.cpp index 487244b33..654c2b974 100644 --- a/src/Learning/DTForest/DTGrouperMODL.cpp +++ b/src/Learning/DTForest/DTGrouperMODL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGrouperMODL.h b/src/Learning/DTForest/DTGrouperMODL.h index 5993f159d..ab8e61cde 100644 --- a/src/Learning/DTForest/DTGrouperMODL.h +++ b/src/Learning/DTForest/DTGrouperMODL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGrouperMODLBasic.cpp b/src/Learning/DTForest/DTGrouperMODLBasic.cpp index 6bf35996d..892dabc23 100644 --- a/src/Learning/DTForest/DTGrouperMODLBasic.cpp +++ b/src/Learning/DTForest/DTGrouperMODLBasic.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGrouperMODLInternal.cpp b/src/Learning/DTForest/DTGrouperMODLInternal.cpp index 2e264e306..01feecfb9 100644 --- a/src/Learning/DTForest/DTGrouperMODLInternal.cpp +++ b/src/Learning/DTForest/DTGrouperMODLInternal.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGrouperMODLInternal.h b/src/Learning/DTForest/DTGrouperMODLInternal.h index bd10b51c9..cc9905c01 100644 --- a/src/Learning/DTForest/DTGrouperMODLInternal.h +++ b/src/Learning/DTForest/DTGrouperMODLInternal.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTGrouperMODLOptimization.cpp b/src/Learning/DTForest/DTGrouperMODLOptimization.cpp index 6d5eb0aef..202f30401 100644 --- a/src/Learning/DTForest/DTGrouperMODLOptimization.cpp +++ b/src/Learning/DTForest/DTGrouperMODLOptimization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTStat.cpp b/src/Learning/DTForest/DTStat.cpp index a0b3a2003..00ce279af 100644 --- a/src/Learning/DTForest/DTStat.cpp +++ b/src/Learning/DTForest/DTStat.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTStat.h b/src/Learning/DTForest/DTStat.h index b2923f22c..3a1906e28 100644 --- a/src/Learning/DTForest/DTStat.h +++ b/src/Learning/DTForest/DTStat.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTUnivariatePartitionCost.cpp b/src/Learning/DTForest/DTUnivariatePartitionCost.cpp index ff6aac240..e3c324f2b 100644 --- a/src/Learning/DTForest/DTUnivariatePartitionCost.cpp +++ b/src/Learning/DTForest/DTUnivariatePartitionCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/DTForest/DTUnivariatePartitionCost.h b/src/Learning/DTForest/DTUnivariatePartitionCost.h index 8c29a8225..2871f3e8c 100644 --- a/src/Learning/DTForest/DTUnivariatePartitionCost.h +++ b/src/Learning/DTForest/DTUnivariatePartitionCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDClassBuilder.cpp b/src/Learning/KDDomainKnowledge/KDClassBuilder.cpp index a4be60b89..76a0c0ce1 100644 --- a/src/Learning/KDDomainKnowledge/KDClassBuilder.cpp +++ b/src/Learning/KDDomainKnowledge/KDClassBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDClassBuilder.h b/src/Learning/KDDomainKnowledge/KDClassBuilder.h index 2972f2525..6cb53e5fb 100644 --- a/src/Learning/KDDomainKnowledge/KDClassBuilder.h +++ b/src/Learning/KDDomainKnowledge/KDClassBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDClassCompliantRules.cpp b/src/Learning/KDDomainKnowledge/KDClassCompliantRules.cpp index 6830d7941..92a64a1de 100644 --- a/src/Learning/KDDomainKnowledge/KDClassCompliantRules.cpp +++ b/src/Learning/KDDomainKnowledge/KDClassCompliantRules.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDClassCompliantRules.h b/src/Learning/KDDomainKnowledge/KDClassCompliantRules.h index 434589230..58a9363c3 100644 --- a/src/Learning/KDDomainKnowledge/KDClassCompliantRules.h +++ b/src/Learning/KDDomainKnowledge/KDClassCompliantRules.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDConstructedRule.cpp b/src/Learning/KDDomainKnowledge/KDConstructedRule.cpp index e4e27298e..d68e08f98 100644 --- a/src/Learning/KDDomainKnowledge/KDConstructedRule.cpp +++ b/src/Learning/KDDomainKnowledge/KDConstructedRule.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDConstructedRule.h b/src/Learning/KDDomainKnowledge/KDConstructedRule.h index 147d94022..a39a104c7 100644 --- a/src/Learning/KDDomainKnowledge/KDConstructedRule.h +++ b/src/Learning/KDDomainKnowledge/KDConstructedRule.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDConstructionDomain.cpp b/src/Learning/KDDomainKnowledge/KDConstructionDomain.cpp index 4faa1e535..5e687f392 100644 --- a/src/Learning/KDDomainKnowledge/KDConstructionDomain.cpp +++ b/src/Learning/KDDomainKnowledge/KDConstructionDomain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDConstructionDomain.h b/src/Learning/KDDomainKnowledge/KDConstructionDomain.h index 61522f035..dcc7cadac 100644 --- a/src/Learning/KDDomainKnowledge/KDConstructionDomain.h +++ b/src/Learning/KDDomainKnowledge/KDConstructionDomain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDConstructionRule.cpp b/src/Learning/KDDomainKnowledge/KDConstructionRule.cpp index 905d310ea..e9d661a18 100644 --- a/src/Learning/KDDomainKnowledge/KDConstructionRule.cpp +++ b/src/Learning/KDDomainKnowledge/KDConstructionRule.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDConstructionRule.h b/src/Learning/KDDomainKnowledge/KDConstructionRule.h index 7362127b1..7d42c37f6 100644 --- a/src/Learning/KDDomainKnowledge/KDConstructionRule.h +++ b/src/Learning/KDDomainKnowledge/KDConstructionRule.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDDomainConstraint.cpp b/src/Learning/KDDomainKnowledge/KDDomainConstraint.cpp index f90548201..3e6f7ac16 100644 --- a/src/Learning/KDDomainKnowledge/KDDomainConstraint.cpp +++ b/src/Learning/KDDomainKnowledge/KDDomainConstraint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDDomainConstraint.h b/src/Learning/KDDomainKnowledge/KDDomainConstraint.h index a2cba7c0f..0001e8b0e 100644 --- a/src/Learning/KDDomainKnowledge/KDDomainConstraint.h +++ b/src/Learning/KDDomainKnowledge/KDDomainConstraint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDEntity.cpp b/src/Learning/KDDomainKnowledge/KDEntity.cpp index 89b4a9af8..13e959a62 100644 --- a/src/Learning/KDDomainKnowledge/KDEntity.cpp +++ b/src/Learning/KDDomainKnowledge/KDEntity.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDEntity.h b/src/Learning/KDDomainKnowledge/KDEntity.h index 37af55f4b..57feb3c67 100644 --- a/src/Learning/KDDomainKnowledge/KDEntity.h +++ b/src/Learning/KDDomainKnowledge/KDEntity.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDFeatureConstruction.cpp b/src/Learning/KDDomainKnowledge/KDFeatureConstruction.cpp index 4978f7669..ca4270f0b 100644 --- a/src/Learning/KDDomainKnowledge/KDFeatureConstruction.cpp +++ b/src/Learning/KDDomainKnowledge/KDFeatureConstruction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDFeatureConstruction.h b/src/Learning/KDDomainKnowledge/KDFeatureConstruction.h index e6195fa48..2b7cd72b9 100644 --- a/src/Learning/KDDomainKnowledge/KDFeatureConstruction.h +++ b/src/Learning/KDDomainKnowledge/KDFeatureConstruction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.cpp b/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.cpp index 9fcebf9ef..a712de67e 100644 --- a/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.cpp +++ b/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.h b/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.h index 4a206a5e7..701c8f6e5 100644 --- a/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.h +++ b/src/Learning/KDDomainKnowledge/KDMultiTableFeatureConstruction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.cpp b/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.cpp index 984956594..658ea0a96 100644 --- a/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.cpp +++ b/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.h b/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.h index cb76c2181..29de28dec 100644 --- a/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.h +++ b/src/Learning/KDDomainKnowledge/KDMultinomialSampleGenerator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.cpp b/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.cpp index 17dcc05cc..d54e064c3 100644 --- a/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.cpp +++ b/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.h b/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.h index f717b8f86..e3c1cc2d1 100644 --- a/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.h +++ b/src/Learning/KDDomainKnowledge/KDSelectionOperandAnalyser.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.cpp b/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.cpp index d3d3aba32..3f14059cc 100644 --- a/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.cpp +++ b/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.h b/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.h index 3b68dd9c6..1fa93f994 100644 --- a/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.h +++ b/src/Learning/KDDomainKnowledge/KDSelectionOperandDataSampler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.cpp b/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.cpp index 292364444..44158a157 100644 --- a/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.cpp +++ b/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.h b/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.h index fef565cae..4968ad838 100644 --- a/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.h +++ b/src/Learning/KDDomainKnowledge/KDSelectionOperandSamplingTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.cpp b/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.cpp index 50470f50f..895ae3981 100644 --- a/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.cpp +++ b/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.h b/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.h index f4c715100..c8cc14a09 100644 --- a/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.h +++ b/src/Learning/KDDomainKnowledge/KDTextFeatureConstruction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.cpp b/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.cpp index 688fc6150..26ed3936d 100644 --- a/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.cpp +++ b/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.h b/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.h index a258cb273..5a2c84b24 100644 --- a/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.h +++ b/src/Learning/KDDomainKnowledge/KDTextFeatureSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.cpp b/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.cpp index df761b465..201409dd3 100644 --- a/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.cpp +++ b/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.h b/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.h index 33321ad70..e96c5cc8b 100644 --- a/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.h +++ b/src/Learning/KDDomainKnowledge/KDTextTokenSampleCollectionTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTokenFrequency.cpp b/src/Learning/KDDomainKnowledge/KDTokenFrequency.cpp index 27da7c3ed..82d347315 100644 --- a/src/Learning/KDDomainKnowledge/KDTokenFrequency.cpp +++ b/src/Learning/KDDomainKnowledge/KDTokenFrequency.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KDDomainKnowledge/KDTokenFrequency.h b/src/Learning/KDDomainKnowledge/KDTokenFrequency.h index 38dba6ba3..20139475d 100644 --- a/src/Learning/KDDomainKnowledge/KDTokenFrequency.h +++ b/src/Learning/KDDomainKnowledge/KDTokenFrequency.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIDRPredictor.cpp b/src/Learning/KIInterpretation/KIDRPredictor.cpp index 5b3bbc12a..e2c53a694 100644 --- a/src/Learning/KIInterpretation/KIDRPredictor.cpp +++ b/src/Learning/KIInterpretation/KIDRPredictor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIDRPredictor.h b/src/Learning/KIInterpretation/KIDRPredictor.h index 5fff4ad0d..bd1b5f5db 100644 --- a/src/Learning/KIInterpretation/KIDRPredictor.h +++ b/src/Learning/KIInterpretation/KIDRPredictor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIDRRegisterAllRules.cpp b/src/Learning/KIInterpretation/KIDRRegisterAllRules.cpp index 887c108d6..5e182b9b9 100644 --- a/src/Learning/KIInterpretation/KIDRRegisterAllRules.cpp +++ b/src/Learning/KIInterpretation/KIDRRegisterAllRules.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIDRRegisterAllRules.h b/src/Learning/KIInterpretation/KIDRRegisterAllRules.h index 5577a84e7..94387f5d1 100644 --- a/src/Learning/KIInterpretation/KIDRRegisterAllRules.h +++ b/src/Learning/KIInterpretation/KIDRRegisterAllRules.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIHowParameterView.cpp b/src/Learning/KIInterpretation/KIHowParameterView.cpp index 6ba59c917..e7622c4ca 100644 --- a/src/Learning/KIInterpretation/KIHowParameterView.cpp +++ b/src/Learning/KIInterpretation/KIHowParameterView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIHowParameterView.h b/src/Learning/KIInterpretation/KIHowParameterView.h index 5ad661155..9965a0d1f 100644 --- a/src/Learning/KIInterpretation/KIHowParameterView.h +++ b/src/Learning/KIInterpretation/KIHowParameterView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIInterpretationDictionary.cpp b/src/Learning/KIInterpretation/KIInterpretationDictionary.cpp index 1190b92da..d0f50792c 100644 --- a/src/Learning/KIInterpretation/KIInterpretationDictionary.cpp +++ b/src/Learning/KIInterpretation/KIInterpretationDictionary.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIInterpretationDictionary.h b/src/Learning/KIInterpretation/KIInterpretationDictionary.h index 9066de0e1..a2d77b22b 100644 --- a/src/Learning/KIInterpretation/KIInterpretationDictionary.h +++ b/src/Learning/KIInterpretation/KIInterpretationDictionary.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIInterpretationSpec.cpp b/src/Learning/KIInterpretation/KIInterpretationSpec.cpp index fbaff7fcb..df7329f81 100644 --- a/src/Learning/KIInterpretation/KIInterpretationSpec.cpp +++ b/src/Learning/KIInterpretation/KIInterpretationSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIInterpretationSpec.h b/src/Learning/KIInterpretation/KIInterpretationSpec.h index 533f05a72..25e906456 100644 --- a/src/Learning/KIInterpretation/KIInterpretationSpec.h +++ b/src/Learning/KIInterpretation/KIInterpretationSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIInterpretationSpecView.cpp b/src/Learning/KIInterpretation/KIInterpretationSpecView.cpp index d89b5f426..f461aab0b 100644 --- a/src/Learning/KIInterpretation/KIInterpretationSpecView.cpp +++ b/src/Learning/KIInterpretation/KIInterpretationSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIInterpretationSpecView.h b/src/Learning/KIInterpretation/KIInterpretationSpecView.h index 292f1a322..97797cf9d 100644 --- a/src/Learning/KIInterpretation/KIInterpretationSpecView.h +++ b/src/Learning/KIInterpretation/KIInterpretationSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KILeverVariablesSpecView.cpp b/src/Learning/KIInterpretation/KILeverVariablesSpecView.cpp index 01884b5a1..f04270de0 100644 --- a/src/Learning/KIInterpretation/KILeverVariablesSpecView.cpp +++ b/src/Learning/KIInterpretation/KILeverVariablesSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KILeverVariablesSpecView.h b/src/Learning/KIInterpretation/KILeverVariablesSpecView.h index 4c61d6846..dea94de31 100644 --- a/src/Learning/KIInterpretation/KILeverVariablesSpecView.h +++ b/src/Learning/KIInterpretation/KILeverVariablesSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIPredictorInterpretationView.cpp b/src/Learning/KIInterpretation/KIPredictorInterpretationView.cpp index 3367c2ae8..237333597 100644 --- a/src/Learning/KIInterpretation/KIPredictorInterpretationView.cpp +++ b/src/Learning/KIInterpretation/KIPredictorInterpretationView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIPredictorInterpretationView.h b/src/Learning/KIInterpretation/KIPredictorInterpretationView.h index fe8e8ffc5..6997e3db4 100644 --- a/src/Learning/KIInterpretation/KIPredictorInterpretationView.h +++ b/src/Learning/KIInterpretation/KIPredictorInterpretationView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIWhyParameterView.cpp b/src/Learning/KIInterpretation/KIWhyParameterView.cpp index 4d6d62cac..31ee8fc24 100644 --- a/src/Learning/KIInterpretation/KIWhyParameterView.cpp +++ b/src/Learning/KIInterpretation/KIWhyParameterView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KIInterpretation/KIWhyParameterView.h b/src/Learning/KIInterpretation/KIWhyParameterView.h index 9be1fdf3f..44d68bc10 100644 --- a/src/Learning/KIInterpretation/KIWhyParameterView.h +++ b/src/Learning/KIInterpretation/KIWhyParameterView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KMDRRuleLibrary/KMDRClassifier.cpp b/src/Learning/KMDRRuleLibrary/KMDRClassifier.cpp index 3a8f4f5e0..2ab6923fc 100644 --- a/src/Learning/KMDRRuleLibrary/KMDRClassifier.cpp +++ b/src/Learning/KMDRRuleLibrary/KMDRClassifier.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KMDRRuleLibrary/KMDRClassifier.h b/src/Learning/KMDRRuleLibrary/KMDRClassifier.h index 50b3370f3..aa15b75c4 100644 --- a/src/Learning/KMDRRuleLibrary/KMDRClassifier.h +++ b/src/Learning/KMDRRuleLibrary/KMDRClassifier.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.cpp b/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.cpp index 6fc6a4bf6..46b937ec2 100644 --- a/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.cpp +++ b/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.h b/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.h index b5bdbb518..f9519e94e 100644 --- a/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.h +++ b/src/Learning/KMDRRuleLibrary/KMDRLocalModelChooser.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.cpp b/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.cpp index 1c534741b..e9631a9fc 100644 --- a/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.cpp +++ b/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.h b/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.h index 17e06f413..dff4f7c35 100644 --- a/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.h +++ b/src/Learning/KMDRRuleLibrary/KMDRRegisterAllRules.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNIDatabaseTransferView.cpp b/src/Learning/KNITransfer/KNIDatabaseTransferView.cpp index ce8aff755..fd8da62b8 100644 --- a/src/Learning/KNITransfer/KNIDatabaseTransferView.cpp +++ b/src/Learning/KNITransfer/KNIDatabaseTransferView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNIDatabaseTransferView.h b/src/Learning/KNITransfer/KNIDatabaseTransferView.h index 95ef6ef3f..709c8e7a3 100644 --- a/src/Learning/KNITransfer/KNIDatabaseTransferView.h +++ b/src/Learning/KNITransfer/KNIDatabaseTransferView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNIRecodeFile.cpp b/src/Learning/KNITransfer/KNIRecodeFile.cpp index c59c6e787..27bb4a16b 100644 --- a/src/Learning/KNITransfer/KNIRecodeFile.cpp +++ b/src/Learning/KNITransfer/KNIRecodeFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNIRecodeFile.h b/src/Learning/KNITransfer/KNIRecodeFile.h index c9f40e347..94a6b7166 100644 --- a/src/Learning/KNITransfer/KNIRecodeFile.h +++ b/src/Learning/KNITransfer/KNIRecodeFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNIRecodeMTFiles.cpp b/src/Learning/KNITransfer/KNIRecodeMTFiles.cpp index bf0a24f86..08ab5937c 100644 --- a/src/Learning/KNITransfer/KNIRecodeMTFiles.cpp +++ b/src/Learning/KNITransfer/KNIRecodeMTFiles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNIRecodeMTFiles.h b/src/Learning/KNITransfer/KNIRecodeMTFiles.h index df350bb1d..e7f6ea1ad 100644 --- a/src/Learning/KNITransfer/KNIRecodeMTFiles.h +++ b/src/Learning/KNITransfer/KNIRecodeMTFiles.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransfer.cpp b/src/Learning/KNITransfer/KNITransfer.cpp index f97c52cb2..0c643f462 100644 --- a/src/Learning/KNITransfer/KNITransfer.cpp +++ b/src/Learning/KNITransfer/KNITransfer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransfer.h b/src/Learning/KNITransfer/KNITransfer.h index b4123eac3..66287272e 100644 --- a/src/Learning/KNITransfer/KNITransfer.h +++ b/src/Learning/KNITransfer/KNITransfer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransferProblem.cpp b/src/Learning/KNITransfer/KNITransferProblem.cpp index e5456f3b3..f01b6f3c4 100644 --- a/src/Learning/KNITransfer/KNITransferProblem.cpp +++ b/src/Learning/KNITransfer/KNITransferProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransferProblem.h b/src/Learning/KNITransfer/KNITransferProblem.h index e8f30dcc4..141a2b4e9 100644 --- a/src/Learning/KNITransfer/KNITransferProblem.h +++ b/src/Learning/KNITransfer/KNITransferProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransferProblemView.cpp b/src/Learning/KNITransfer/KNITransferProblemView.cpp index df872a4d0..e2a5330ce 100644 --- a/src/Learning/KNITransfer/KNITransferProblemView.cpp +++ b/src/Learning/KNITransfer/KNITransferProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransferProblemView.h b/src/Learning/KNITransfer/KNITransferProblemView.h index 4f9468782..a861910db 100644 --- a/src/Learning/KNITransfer/KNITransferProblemView.h +++ b/src/Learning/KNITransfer/KNITransferProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransferProject.cpp b/src/Learning/KNITransfer/KNITransferProject.cpp index 19633f345..64ace2d83 100644 --- a/src/Learning/KNITransfer/KNITransferProject.cpp +++ b/src/Learning/KNITransfer/KNITransferProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KNITransfer/KNITransferProject.h b/src/Learning/KNITransfer/KNITransferProject.h index 3ff283f40..4fa45f7d5 100644 --- a/src/Learning/KNITransfer/KNITransferProject.h +++ b/src/Learning/KNITransfer/KNITransferProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRAll.cpp b/src/Learning/KWDRRuleLibrary/KWDRAll.cpp index 500198b1d..5980ce115 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRAll.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRAll.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRAll.h b/src/Learning/KWDRRuleLibrary/KWDRAll.h index b5c0cb2bd..4468be7ba 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRAll.h +++ b/src/Learning/KWDRRuleLibrary/KWDRAll.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRCompare.cpp b/src/Learning/KWDRRuleLibrary/KWDRCompare.cpp index 79d5f207a..220b3a445 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRCompare.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRCompare.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRCompare.h b/src/Learning/KWDRRuleLibrary/KWDRCompare.h index afcf5cecf..028b22721 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRCompare.h +++ b/src/Learning/KWDRRuleLibrary/KWDRCompare.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRDateTime.cpp b/src/Learning/KWDRRuleLibrary/KWDRDateTime.cpp index 2f53cb2f4..a54659757 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRDateTime.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRDateTime.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRDateTime.h b/src/Learning/KWDRRuleLibrary/KWDRDateTime.h index 9d6005138..7f1240aaa 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRDateTime.h +++ b/src/Learning/KWDRRuleLibrary/KWDRDateTime.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRHashMap.cpp b/src/Learning/KWDRRuleLibrary/KWDRHashMap.cpp index 2c9599629..bd3c66a8f 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRHashMap.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRHashMap.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRHashMap.h b/src/Learning/KWDRRuleLibrary/KWDRHashMap.h index b554e1d9d..036d09445 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRHashMap.h +++ b/src/Learning/KWDRRuleLibrary/KWDRHashMap.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRLogical.cpp b/src/Learning/KWDRRuleLibrary/KWDRLogical.cpp index 0869159c0..d2bb8d7d4 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRLogical.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRLogical.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRLogical.h b/src/Learning/KWDRRuleLibrary/KWDRLogical.h index 45f9f7f74..d8ba77795 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRLogical.h +++ b/src/Learning/KWDRRuleLibrary/KWDRLogical.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRMath.cpp b/src/Learning/KWDRRuleLibrary/KWDRMath.cpp index 823a54dda..cbdfc607f 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRMath.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRMath.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRMath.h b/src/Learning/KWDRRuleLibrary/KWDRMath.h index 7c11dc255..a4d0119b7 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRMath.h +++ b/src/Learning/KWDRRuleLibrary/KWDRMath.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRMultiTable.cpp b/src/Learning/KWDRRuleLibrary/KWDRMultiTable.cpp index db4768dfd..5452e2323 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRMultiTable.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRMultiTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRMultiTable.h b/src/Learning/KWDRRuleLibrary/KWDRMultiTable.h index b51d04186..37954e77a 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRMultiTable.h +++ b/src/Learning/KWDRRuleLibrary/KWDRMultiTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRString.cpp b/src/Learning/KWDRRuleLibrary/KWDRString.cpp index eff638eee..c0da7101b 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRString.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRString.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRString.h b/src/Learning/KWDRRuleLibrary/KWDRString.h index 0d4977011..32efffe17 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRString.h +++ b/src/Learning/KWDRRuleLibrary/KWDRString.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRStringEncrypt.cpp b/src/Learning/KWDRRuleLibrary/KWDRStringEncrypt.cpp index 13d38bb00..e382a257f 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRStringEncrypt.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRStringEncrypt.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRText.cpp b/src/Learning/KWDRRuleLibrary/KWDRText.cpp index 81a159f0b..2c0df4b15 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRText.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRText.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRText.h b/src/Learning/KWDRRuleLibrary/KWDRText.h index 973ffdbc5..bb9520f6c 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRText.h +++ b/src/Learning/KWDRRuleLibrary/KWDRText.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRTextList.cpp b/src/Learning/KWDRRuleLibrary/KWDRTextList.cpp index 399e2c18c..8df6fa2c6 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRTextList.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRTextList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRTextList.h b/src/Learning/KWDRRuleLibrary/KWDRTextList.h index df2645df2..cc46f9ef9 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRTextList.h +++ b/src/Learning/KWDRRuleLibrary/KWDRTextList.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.cpp b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.cpp index 5f924c362..f4e1dee07 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.h b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.h index 3072127c4..0b412f1f0 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.h +++ b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysis.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.cpp b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.cpp index a7bf38107..a0f6f790e 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.h b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.h index 64a05f5b9..4f1daf508 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.h +++ b/src/Learning/KWDRRuleLibrary/KWDRTextualAnalysisPROTO.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRVector.cpp b/src/Learning/KWDRRuleLibrary/KWDRVector.cpp index fca6a14e1..a6e286eef 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRVector.cpp +++ b/src/Learning/KWDRRuleLibrary/KWDRVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDRRuleLibrary/KWDRVector.h b/src/Learning/KWDRRuleLibrary/KWDRVector.h index acf078240..dcf552ed3 100644 --- a/src/Learning/KWDRRuleLibrary/KWDRVector.h +++ b/src/Learning/KWDRRuleLibrary/KWDRVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/JSONFile.cpp b/src/Learning/KWData/JSONFile.cpp index e186ff3a4..b550cd552 100644 --- a/src/Learning/KWData/JSONFile.cpp +++ b/src/Learning/KWData/JSONFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/JSONFile.h b/src/Learning/KWData/JSONFile.h index a1c4dcf12..0b3650207 100644 --- a/src/Learning/KWData/JSONFile.h +++ b/src/Learning/KWData/JSONFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/JSONTokenizer.cpp b/src/Learning/KWData/JSONTokenizer.cpp index 168d7e643..67a77270e 100644 --- a/src/Learning/KWData/JSONTokenizer.cpp +++ b/src/Learning/KWData/JSONTokenizer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/JSONTokenizer.h b/src/Learning/KWData/JSONTokenizer.h index 121fb2815..fa6c069af 100644 --- a/src/Learning/KWData/JSONTokenizer.h +++ b/src/Learning/KWData/JSONTokenizer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttribute.cpp b/src/Learning/KWData/KWAttribute.cpp index 77b4a6000..d1aec8f7a 100644 --- a/src/Learning/KWData/KWAttribute.cpp +++ b/src/Learning/KWData/KWAttribute.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttribute.h b/src/Learning/KWData/KWAttribute.h index a4fc118c8..12437913b 100644 --- a/src/Learning/KWData/KWAttribute.h +++ b/src/Learning/KWData/KWAttribute.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttributeBlock.cpp b/src/Learning/KWData/KWAttributeBlock.cpp index e4d98165c..12b412036 100644 --- a/src/Learning/KWData/KWAttributeBlock.cpp +++ b/src/Learning/KWData/KWAttributeBlock.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttributeBlock.h b/src/Learning/KWData/KWAttributeBlock.h index 214cf43bb..d10de5622 100644 --- a/src/Learning/KWData/KWAttributeBlock.h +++ b/src/Learning/KWData/KWAttributeBlock.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttributeName.cpp b/src/Learning/KWData/KWAttributeName.cpp index 86051043d..0411f40b1 100644 --- a/src/Learning/KWData/KWAttributeName.cpp +++ b/src/Learning/KWData/KWAttributeName.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttributeName.h b/src/Learning/KWData/KWAttributeName.h index 14220a801..2fdebf857 100644 --- a/src/Learning/KWData/KWAttributeName.h +++ b/src/Learning/KWData/KWAttributeName.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttributePairName.cpp b/src/Learning/KWData/KWAttributePairName.cpp index e9785a4c7..ea94bc347 100644 --- a/src/Learning/KWData/KWAttributePairName.cpp +++ b/src/Learning/KWData/KWAttributePairName.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWAttributePairName.h b/src/Learning/KWData/KWAttributePairName.h index 5b4ca83ac..02ee77658 100644 --- a/src/Learning/KWData/KWAttributePairName.h +++ b/src/Learning/KWData/KWAttributePairName.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWCDUniqueString.cpp b/src/Learning/KWData/KWCDUniqueString.cpp index cb526658b..19ef05e18 100644 --- a/src/Learning/KWData/KWCDUniqueString.cpp +++ b/src/Learning/KWData/KWCDUniqueString.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWCDUniqueString.h b/src/Learning/KWData/KWCDUniqueString.h index 8ae33f3f7..8fdd73db5 100644 --- a/src/Learning/KWData/KWCDUniqueString.h +++ b/src/Learning/KWData/KWCDUniqueString.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWCYac.cpp b/src/Learning/KWData/KWCYac.cpp index 2d26b2966..78a9b6324 100644 --- a/src/Learning/KWData/KWCYac.cpp +++ b/src/Learning/KWData/KWCYac.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWCharFrequencyVector.cpp b/src/Learning/KWData/KWCharFrequencyVector.cpp index 305ca8b31..648505a3c 100644 --- a/src/Learning/KWData/KWCharFrequencyVector.cpp +++ b/src/Learning/KWData/KWCharFrequencyVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWCharFrequencyVector.h b/src/Learning/KWData/KWCharFrequencyVector.h index 128c796cb..1f96aaf9f 100644 --- a/src/Learning/KWData/KWCharFrequencyVector.h +++ b/src/Learning/KWData/KWCharFrequencyVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWClass.cpp b/src/Learning/KWData/KWClass.cpp index 893e7970d..47ba2e755 100644 --- a/src/Learning/KWData/KWClass.cpp +++ b/src/Learning/KWData/KWClass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWClass.h b/src/Learning/KWData/KWClass.h index 7ee0c0903..ac8b853d5 100644 --- a/src/Learning/KWData/KWClass.h +++ b/src/Learning/KWData/KWClass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWClassDomain.cpp b/src/Learning/KWData/KWClassDomain.cpp index 3338edbae..addebf882 100644 --- a/src/Learning/KWData/KWClassDomain.cpp +++ b/src/Learning/KWData/KWClassDomain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWClassDomain.h b/src/Learning/KWData/KWClassDomain.h index d1c3899b6..7c9e494b0 100644 --- a/src/Learning/KWData/KWClassDomain.h +++ b/src/Learning/KWData/KWClassDomain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWContinuous.cpp b/src/Learning/KWData/KWContinuous.cpp index c62b82bee..ce3a22e29 100644 --- a/src/Learning/KWData/KWContinuous.cpp +++ b/src/Learning/KWData/KWContinuous.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWContinuous.h b/src/Learning/KWData/KWContinuous.h index 0f11d08b4..e8b9e84b5 100644 --- a/src/Learning/KWData/KWContinuous.h +++ b/src/Learning/KWData/KWContinuous.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDRRandom.cpp b/src/Learning/KWData/KWDRRandom.cpp index a4a601ba7..aad5f635b 100644 --- a/src/Learning/KWData/KWDRRandom.cpp +++ b/src/Learning/KWData/KWDRRandom.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDRRandom.h b/src/Learning/KWData/KWDRRandom.h index 179f79d35..b208b679b 100644 --- a/src/Learning/KWData/KWDRRandom.h +++ b/src/Learning/KWData/KWDRRandom.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDRReference.cpp b/src/Learning/KWData/KWDRReference.cpp index f1efb2b94..cd20fd6a7 100644 --- a/src/Learning/KWData/KWDRReference.cpp +++ b/src/Learning/KWData/KWDRReference.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDRReference.h b/src/Learning/KWData/KWDRReference.h index 01cbbf926..6a8462ceb 100644 --- a/src/Learning/KWData/KWDRReference.h +++ b/src/Learning/KWData/KWDRReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDRStandard.cpp b/src/Learning/KWData/KWDRStandard.cpp index 040544acf..cecea8183 100644 --- a/src/Learning/KWData/KWDRStandard.cpp +++ b/src/Learning/KWData/KWDRStandard.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDRStandard.h b/src/Learning/KWData/KWDRStandard.h index 1e2cbaa86..80c4b0145 100644 --- a/src/Learning/KWData/KWDRStandard.h +++ b/src/Learning/KWData/KWDRStandard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDataItem.cpp b/src/Learning/KWData/KWDataItem.cpp index cf894f3ca..bae9954e4 100644 --- a/src/Learning/KWData/KWDataItem.cpp +++ b/src/Learning/KWData/KWDataItem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDataItem.h b/src/Learning/KWData/KWDataItem.h index 204c084ae..17bbac9e5 100644 --- a/src/Learning/KWData/KWDataItem.h +++ b/src/Learning/KWData/KWDataItem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDataTableDriver.cpp b/src/Learning/KWData/KWDataTableDriver.cpp index f93faec90..fbc2b67f3 100644 --- a/src/Learning/KWData/KWDataTableDriver.cpp +++ b/src/Learning/KWData/KWDataTableDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDataTableDriver.h b/src/Learning/KWData/KWDataTableDriver.h index 914f7fc46..5e194b98d 100644 --- a/src/Learning/KWData/KWDataTableDriver.h +++ b/src/Learning/KWData/KWDataTableDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDataTableDriverTextFile.cpp b/src/Learning/KWData/KWDataTableDriverTextFile.cpp index 245a86e4f..86c80a373 100644 --- a/src/Learning/KWData/KWDataTableDriverTextFile.cpp +++ b/src/Learning/KWData/KWDataTableDriverTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDataTableDriverTextFile.h b/src/Learning/KWData/KWDataTableDriverTextFile.h index c73dfae64..10b33d35f 100644 --- a/src/Learning/KWData/KWDataTableDriverTextFile.h +++ b/src/Learning/KWData/KWDataTableDriverTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDatabase.cpp b/src/Learning/KWData/KWDatabase.cpp index 61280157b..0e2e18cf8 100644 --- a/src/Learning/KWData/KWDatabase.cpp +++ b/src/Learning/KWData/KWDatabase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDatabase.h b/src/Learning/KWData/KWDatabase.h index a9815006c..f98966aac 100644 --- a/src/Learning/KWData/KWDatabase.h +++ b/src/Learning/KWData/KWDatabase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDatabaseFormatDetector.cpp b/src/Learning/KWData/KWDatabaseFormatDetector.cpp index bec06e75c..ec593d7a6 100644 --- a/src/Learning/KWData/KWDatabaseFormatDetector.cpp +++ b/src/Learning/KWData/KWDatabaseFormatDetector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDatabaseFormatDetector.h b/src/Learning/KWData/KWDatabaseFormatDetector.h index da9f70c27..3778e6b35 100644 --- a/src/Learning/KWData/KWDatabaseFormatDetector.h +++ b/src/Learning/KWData/KWDatabaseFormatDetector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDatabaseMemoryGuard.cpp b/src/Learning/KWData/KWDatabaseMemoryGuard.cpp index 52ac52694..81af2482a 100644 --- a/src/Learning/KWData/KWDatabaseMemoryGuard.cpp +++ b/src/Learning/KWData/KWDatabaseMemoryGuard.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDatabaseMemoryGuard.h b/src/Learning/KWData/KWDatabaseMemoryGuard.h index 857da26da..55d38d8cf 100644 --- a/src/Learning/KWData/KWDatabaseMemoryGuard.h +++ b/src/Learning/KWData/KWDatabaseMemoryGuard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDate.cpp b/src/Learning/KWData/KWDate.cpp index 110331d95..0693017e9 100644 --- a/src/Learning/KWData/KWDate.cpp +++ b/src/Learning/KWData/KWDate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDate.h b/src/Learning/KWData/KWDate.h index 630159a1f..9ac1b21a5 100644 --- a/src/Learning/KWData/KWDate.h +++ b/src/Learning/KWData/KWDate.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDerivationRule.cpp b/src/Learning/KWData/KWDerivationRule.cpp index c527edc00..4d8b44a20 100644 --- a/src/Learning/KWData/KWDerivationRule.cpp +++ b/src/Learning/KWData/KWDerivationRule.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDerivationRule.h b/src/Learning/KWData/KWDerivationRule.h index 82096cea2..ea82589ba 100644 --- a/src/Learning/KWData/KWDerivationRule.h +++ b/src/Learning/KWData/KWDerivationRule.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWDerivationRuleOperand.cpp b/src/Learning/KWData/KWDerivationRuleOperand.cpp index 5bcc79927..4af8ff828 100644 --- a/src/Learning/KWData/KWDerivationRuleOperand.cpp +++ b/src/Learning/KWData/KWDerivationRuleOperand.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWIndexedKeyBlock.cpp b/src/Learning/KWData/KWIndexedKeyBlock.cpp index ebda86e24..92d7fe756 100644 --- a/src/Learning/KWData/KWIndexedKeyBlock.cpp +++ b/src/Learning/KWData/KWIndexedKeyBlock.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWIndexedKeyBlock.h b/src/Learning/KWData/KWIndexedKeyBlock.h index 79d16053d..9c0e80d7d 100644 --- a/src/Learning/KWData/KWIndexedKeyBlock.h +++ b/src/Learning/KWData/KWIndexedKeyBlock.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWLoadIndex.cpp b/src/Learning/KWData/KWLoadIndex.cpp index 2cd586295..3a712fff2 100644 --- a/src/Learning/KWData/KWLoadIndex.cpp +++ b/src/Learning/KWData/KWLoadIndex.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWLoadIndex.h b/src/Learning/KWData/KWLoadIndex.h index 2750c5370..e6178340b 100644 --- a/src/Learning/KWData/KWLoadIndex.h +++ b/src/Learning/KWData/KWLoadIndex.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMTDatabase.cpp b/src/Learning/KWData/KWMTDatabase.cpp index 933cb9a22..b3cebd653 100644 --- a/src/Learning/KWData/KWMTDatabase.cpp +++ b/src/Learning/KWData/KWMTDatabase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMTDatabase.h b/src/Learning/KWData/KWMTDatabase.h index bbc323e0b..3b1e3c3f1 100644 --- a/src/Learning/KWData/KWMTDatabase.h +++ b/src/Learning/KWData/KWMTDatabase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMTDatabaseMapping.cpp b/src/Learning/KWData/KWMTDatabaseMapping.cpp index c811c6c39..0d73e5e01 100644 --- a/src/Learning/KWData/KWMTDatabaseMapping.cpp +++ b/src/Learning/KWData/KWMTDatabaseMapping.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMTDatabaseMapping.h b/src/Learning/KWData/KWMTDatabaseMapping.h index 47bccd389..eb42abfd1 100644 --- a/src/Learning/KWData/KWMTDatabaseMapping.h +++ b/src/Learning/KWData/KWMTDatabaseMapping.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMTDatabaseTextFile.cpp b/src/Learning/KWData/KWMTDatabaseTextFile.cpp index cc086b7f6..4ca0932ef 100644 --- a/src/Learning/KWData/KWMTDatabaseTextFile.cpp +++ b/src/Learning/KWData/KWMTDatabaseTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMTDatabaseTextFile.h b/src/Learning/KWData/KWMTDatabaseTextFile.h index 67f65def2..29b39e337 100644 --- a/src/Learning/KWData/KWMTDatabaseTextFile.h +++ b/src/Learning/KWData/KWMTDatabaseTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMetaData.cpp b/src/Learning/KWData/KWMetaData.cpp index d6841fc1d..c2c739385 100644 --- a/src/Learning/KWData/KWMetaData.cpp +++ b/src/Learning/KWData/KWMetaData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWMetaData.h b/src/Learning/KWData/KWMetaData.h index 19dec1d16..057373af4 100644 --- a/src/Learning/KWData/KWMetaData.h +++ b/src/Learning/KWData/KWMetaData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWObject.cpp b/src/Learning/KWData/KWObject.cpp index 9091b47e1..12198b403 100644 --- a/src/Learning/KWData/KWObject.cpp +++ b/src/Learning/KWData/KWObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWObject.h b/src/Learning/KWData/KWObject.h index bf90e58ef..05ac0a907 100644 --- a/src/Learning/KWData/KWObject.h +++ b/src/Learning/KWData/KWObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWObjectKey.cpp b/src/Learning/KWData/KWObjectKey.cpp index d2024c051..c7583e8af 100644 --- a/src/Learning/KWData/KWObjectKey.cpp +++ b/src/Learning/KWData/KWObjectKey.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWObjectKey.h b/src/Learning/KWData/KWObjectKey.h index 27eca5038..915e590f4 100644 --- a/src/Learning/KWData/KWObjectKey.h +++ b/src/Learning/KWData/KWObjectKey.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSTDatabase.cpp b/src/Learning/KWData/KWSTDatabase.cpp index f6bdbddd7..fe3f5db2d 100644 --- a/src/Learning/KWData/KWSTDatabase.cpp +++ b/src/Learning/KWData/KWSTDatabase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSTDatabase.h b/src/Learning/KWData/KWSTDatabase.h index 303561494..1cf54a325 100644 --- a/src/Learning/KWData/KWSTDatabase.h +++ b/src/Learning/KWData/KWSTDatabase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSTDatabaseTextFile.cpp b/src/Learning/KWData/KWSTDatabaseTextFile.cpp index e4e6ae67f..06cdc7b1e 100644 --- a/src/Learning/KWData/KWSTDatabaseTextFile.cpp +++ b/src/Learning/KWData/KWSTDatabaseTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSTDatabaseTextFile.h b/src/Learning/KWData/KWSTDatabaseTextFile.h index 71c029e92..d07a9d06f 100644 --- a/src/Learning/KWData/KWSTDatabaseTextFile.h +++ b/src/Learning/KWData/KWSTDatabaseTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSortableIndex.cpp b/src/Learning/KWData/KWSortableIndex.cpp index adcb47bbe..928bf2331 100644 --- a/src/Learning/KWData/KWSortableIndex.cpp +++ b/src/Learning/KWData/KWSortableIndex.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSortableIndex.h b/src/Learning/KWData/KWSortableIndex.h index 22a8e178b..a489bc708 100644 --- a/src/Learning/KWData/KWSortableIndex.h +++ b/src/Learning/KWData/KWSortableIndex.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWStructureRule.cpp b/src/Learning/KWData/KWStructureRule.cpp index cc554e3db..67626a947 100644 --- a/src/Learning/KWData/KWStructureRule.cpp +++ b/src/Learning/KWData/KWStructureRule.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWStructureRule.h b/src/Learning/KWData/KWStructureRule.h index aab6c4bab..d669b32c1 100644 --- a/src/Learning/KWData/KWStructureRule.h +++ b/src/Learning/KWData/KWStructureRule.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSymbol.cpp b/src/Learning/KWData/KWSymbol.cpp index 6ee52c8dc..06e93a299 100644 --- a/src/Learning/KWData/KWSymbol.cpp +++ b/src/Learning/KWData/KWSymbol.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWSymbol.h b/src/Learning/KWData/KWSymbol.h index f19ce52c3..350c0e6fb 100644 --- a/src/Learning/KWData/KWSymbol.h +++ b/src/Learning/KWData/KWSymbol.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTime.cpp b/src/Learning/KWData/KWTime.cpp index e6490bbce..3c16fc62c 100644 --- a/src/Learning/KWData/KWTime.cpp +++ b/src/Learning/KWData/KWTime.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTime.h b/src/Learning/KWData/KWTime.h index a23d6f7a3..a784ce3de 100644 --- a/src/Learning/KWData/KWTime.h +++ b/src/Learning/KWData/KWTime.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTimestamp.cpp b/src/Learning/KWData/KWTimestamp.cpp index 27df33bd8..1ac3a5586 100644 --- a/src/Learning/KWData/KWTimestamp.cpp +++ b/src/Learning/KWData/KWTimestamp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTimestamp.h b/src/Learning/KWData/KWTimestamp.h index 5f7e34cb7..2b4ad4bc8 100644 --- a/src/Learning/KWData/KWTimestamp.h +++ b/src/Learning/KWData/KWTimestamp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTimestampTZ.cpp b/src/Learning/KWData/KWTimestampTZ.cpp index 7d2f82022..e81bd9f7c 100644 --- a/src/Learning/KWData/KWTimestampTZ.cpp +++ b/src/Learning/KWData/KWTimestampTZ.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTimestampTZ.h b/src/Learning/KWData/KWTimestampTZ.h index a8bf8efb3..76ffa1cc3 100644 --- a/src/Learning/KWData/KWTimestampTZ.h +++ b/src/Learning/KWData/KWTimestampTZ.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWType.cpp b/src/Learning/KWData/KWType.cpp index 3f2a45107..7f5ce13dc 100644 --- a/src/Learning/KWData/KWType.cpp +++ b/src/Learning/KWData/KWType.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWType.h b/src/Learning/KWData/KWType.h index 87b0b9c14..f8569a398 100644 --- a/src/Learning/KWData/KWType.h +++ b/src/Learning/KWData/KWType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTypeAutomaticRecognition.cpp b/src/Learning/KWData/KWTypeAutomaticRecognition.cpp index 25f83f3b9..4366e3de0 100644 --- a/src/Learning/KWData/KWTypeAutomaticRecognition.cpp +++ b/src/Learning/KWData/KWTypeAutomaticRecognition.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWTypeAutomaticRecognition.h b/src/Learning/KWData/KWTypeAutomaticRecognition.h index 959c59673..f305cfe53 100644 --- a/src/Learning/KWData/KWTypeAutomaticRecognition.h +++ b/src/Learning/KWData/KWTypeAutomaticRecognition.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWValueBlock.cpp b/src/Learning/KWData/KWValueBlock.cpp index a3e034503..f6b8ebb26 100644 --- a/src/Learning/KWData/KWValueBlock.cpp +++ b/src/Learning/KWData/KWValueBlock.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWValueBlock.h b/src/Learning/KWData/KWValueBlock.h index b41bdf2f1..cd1faca84 100644 --- a/src/Learning/KWData/KWValueBlock.h +++ b/src/Learning/KWData/KWValueBlock.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWValueDictionary.cpp b/src/Learning/KWData/KWValueDictionary.cpp index 6524b4e26..b60ab8974 100644 --- a/src/Learning/KWData/KWValueDictionary.cpp +++ b/src/Learning/KWData/KWValueDictionary.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWValueDictionary.h b/src/Learning/KWData/KWValueDictionary.h index a598065d8..e2bcb8b10 100644 --- a/src/Learning/KWData/KWValueDictionary.h +++ b/src/Learning/KWData/KWValueDictionary.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWValueSparseVector.cpp b/src/Learning/KWData/KWValueSparseVector.cpp index be84caffa..b63da911a 100644 --- a/src/Learning/KWData/KWValueSparseVector.cpp +++ b/src/Learning/KWData/KWValueSparseVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWData/KWValueSparseVector.h b/src/Learning/KWData/KWValueSparseVector.h index 497d4bc58..4aa49188c 100644 --- a/src/Learning/KWData/KWValueSparseVector.h +++ b/src/Learning/KWData/KWValueSparseVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.cpp b/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.cpp index 2368e8a16..ca7f4b5d0 100644 --- a/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.cpp +++ b/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.h b/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.h index d85964a7b..a791f84c6 100644 --- a/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.h +++ b/src/Learning/KWDataPreparation/KDDataPreparationAttributeCreationTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWAttributePairsSpec.cpp b/src/Learning/KWDataPreparation/KWAttributePairsSpec.cpp index 2bca4db70..7c5a16fc9 100644 --- a/src/Learning/KWDataPreparation/KWAttributePairsSpec.cpp +++ b/src/Learning/KWDataPreparation/KWAttributePairsSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWAttributePairsSpec.h b/src/Learning/KWDataPreparation/KWAttributePairsSpec.h index 139652918..ada96a5ea 100644 --- a/src/Learning/KWDataPreparation/KWAttributePairsSpec.h +++ b/src/Learning/KWDataPreparation/KWAttributePairsSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWAttributeStats.cpp b/src/Learning/KWDataPreparation/KWAttributeStats.cpp index de66374c5..667044a27 100644 --- a/src/Learning/KWDataPreparation/KWAttributeStats.cpp +++ b/src/Learning/KWDataPreparation/KWAttributeStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWAttributeStats.h b/src/Learning/KWDataPreparation/KWAttributeStats.h index 131e6e495..5af49f61d 100644 --- a/src/Learning/KWDataPreparation/KWAttributeStats.h +++ b/src/Learning/KWDataPreparation/KWAttributeStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWAttributeSubsetStats.cpp b/src/Learning/KWDataPreparation/KWAttributeSubsetStats.cpp index 1db72a892..90242111c 100644 --- a/src/Learning/KWDataPreparation/KWAttributeSubsetStats.cpp +++ b/src/Learning/KWDataPreparation/KWAttributeSubsetStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWAttributeSubsetStats.h b/src/Learning/KWDataPreparation/KWAttributeSubsetStats.h index 25440ba3c..6771b688b 100644 --- a/src/Learning/KWDataPreparation/KWAttributeSubsetStats.h +++ b/src/Learning/KWDataPreparation/KWAttributeSubsetStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWClassStats.cpp b/src/Learning/KWDataPreparation/KWClassStats.cpp index 8c36f778f..d13663d38 100644 --- a/src/Learning/KWDataPreparation/KWClassStats.cpp +++ b/src/Learning/KWDataPreparation/KWClassStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWClassStats.h b/src/Learning/KWDataPreparation/KWClassStats.h index 357002172..1dfca5548 100644 --- a/src/Learning/KWDataPreparation/KWClassStats.h +++ b/src/Learning/KWDataPreparation/KWClassStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDGMPartMergeAction.cpp b/src/Learning/KWDataPreparation/KWDGMPartMergeAction.cpp index c38bae27f..8eb15bf4d 100644 --- a/src/Learning/KWDataPreparation/KWDGMPartMergeAction.cpp +++ b/src/Learning/KWDataPreparation/KWDGMPartMergeAction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDGMPartMergeAction.h b/src/Learning/KWDataPreparation/KWDGMPartMergeAction.h index 607ddaa7f..a53f9fca2 100644 --- a/src/Learning/KWDataPreparation/KWDGMPartMergeAction.h +++ b/src/Learning/KWDataPreparation/KWDGMPartMergeAction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRDataGrid.cpp b/src/Learning/KWDataPreparation/KWDRDataGrid.cpp index bd57d9469..31cb5ed3c 100644 --- a/src/Learning/KWDataPreparation/KWDRDataGrid.cpp +++ b/src/Learning/KWDataPreparation/KWDRDataGrid.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRDataGrid.h b/src/Learning/KWDataPreparation/KWDRDataGrid.h index d8137121e..2ab22e8d8 100644 --- a/src/Learning/KWDataPreparation/KWDRDataGrid.h +++ b/src/Learning/KWDataPreparation/KWDRDataGrid.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRDataGridBlock.cpp b/src/Learning/KWDataPreparation/KWDRDataGridBlock.cpp index ed125f322..91def66f4 100644 --- a/src/Learning/KWDataPreparation/KWDRDataGridBlock.cpp +++ b/src/Learning/KWDataPreparation/KWDRDataGridBlock.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRDataGridBlock.h b/src/Learning/KWDataPreparation/KWDRDataGridBlock.h index 40348ae40..2e8429e02 100644 --- a/src/Learning/KWDataPreparation/KWDRDataGridBlock.h +++ b/src/Learning/KWDataPreparation/KWDRDataGridBlock.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRDataGridDeployment.cpp b/src/Learning/KWDataPreparation/KWDRDataGridDeployment.cpp index fbeb4803e..604af009d 100644 --- a/src/Learning/KWDataPreparation/KWDRDataGridDeployment.cpp +++ b/src/Learning/KWDataPreparation/KWDRDataGridDeployment.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRDataGridDeployment.h b/src/Learning/KWDataPreparation/KWDRDataGridDeployment.h index c6095fdc0..cdf01dec8 100644 --- a/src/Learning/KWDataPreparation/KWDRDataGridDeployment.h +++ b/src/Learning/KWDataPreparation/KWDRDataGridDeployment.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRPreprocessing.cpp b/src/Learning/KWDataPreparation/KWDRPreprocessing.cpp index 799271ec5..548a71851 100644 --- a/src/Learning/KWDataPreparation/KWDRPreprocessing.cpp +++ b/src/Learning/KWDataPreparation/KWDRPreprocessing.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRPreprocessing.h b/src/Learning/KWDataPreparation/KWDRPreprocessing.h index 5b10d821d..e782661a2 100644 --- a/src/Learning/KWDataPreparation/KWDRPreprocessing.h +++ b/src/Learning/KWDataPreparation/KWDRPreprocessing.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRTableBlock.cpp b/src/Learning/KWDataPreparation/KWDRTableBlock.cpp index e430511ab..8d72142fa 100644 --- a/src/Learning/KWDataPreparation/KWDRTableBlock.cpp +++ b/src/Learning/KWDataPreparation/KWDRTableBlock.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRTableBlock.h b/src/Learning/KWDataPreparation/KWDRTableBlock.h index d596efdc3..7871c3dcb 100644 --- a/src/Learning/KWDataPreparation/KWDRTableBlock.h +++ b/src/Learning/KWDataPreparation/KWDRTableBlock.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRTablePartition.cpp b/src/Learning/KWDataPreparation/KWDRTablePartition.cpp index 734b3a203..186dda1e3 100644 --- a/src/Learning/KWDataPreparation/KWDRTablePartition.cpp +++ b/src/Learning/KWDataPreparation/KWDRTablePartition.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDRTablePartition.h b/src/Learning/KWDataPreparation/KWDRTablePartition.h index 4a6616038..ea7f251ce 100644 --- a/src/Learning/KWDataPreparation/KWDRTablePartition.h +++ b/src/Learning/KWDataPreparation/KWDRTablePartition.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGrid.cpp b/src/Learning/KWDataPreparation/KWDataGrid.cpp index 2e6fd89e7..652379ca1 100644 --- a/src/Learning/KWDataPreparation/KWDataGrid.cpp +++ b/src/Learning/KWDataPreparation/KWDataGrid.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGrid.h b/src/Learning/KWDataPreparation/KWDataGrid.h index 95624d64f..56713bce0 100644 --- a/src/Learning/KWDataPreparation/KWDataGrid.h +++ b/src/Learning/KWDataPreparation/KWDataGrid.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridCosts.cpp b/src/Learning/KWDataPreparation/KWDataGridCosts.cpp index a2ff78b9c..84e253c99 100644 --- a/src/Learning/KWDataPreparation/KWDataGridCosts.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridCosts.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridCosts.h b/src/Learning/KWDataPreparation/KWDataGridCosts.h index 08ee36de2..75d2ea0e3 100644 --- a/src/Learning/KWDataPreparation/KWDataGridCosts.h +++ b/src/Learning/KWDataPreparation/KWDataGridCosts.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridDeployment.cpp b/src/Learning/KWDataPreparation/KWDataGridDeployment.cpp index ead8fa5a3..8113665e8 100644 --- a/src/Learning/KWDataPreparation/KWDataGridDeployment.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridDeployment.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridDeployment.h b/src/Learning/KWDataPreparation/KWDataGridDeployment.h index 96eb8ac99..b93bcb3f6 100644 --- a/src/Learning/KWDataPreparation/KWDataGridDeployment.h +++ b/src/Learning/KWDataPreparation/KWDataGridDeployment.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridManager.cpp b/src/Learning/KWDataPreparation/KWDataGridManager.cpp index 2813836c6..707532f9f 100644 --- a/src/Learning/KWDataPreparation/KWDataGridManager.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridManager.h b/src/Learning/KWDataPreparation/KWDataGridManager.h index fca418b57..758a1e38a 100644 --- a/src/Learning/KWDataPreparation/KWDataGridManager.h +++ b/src/Learning/KWDataPreparation/KWDataGridManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridMerger.cpp b/src/Learning/KWDataPreparation/KWDataGridMerger.cpp index 0ebea710b..c930e2ca7 100644 --- a/src/Learning/KWDataPreparation/KWDataGridMerger.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridMerger.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridMerger.h b/src/Learning/KWDataPreparation/KWDataGridMerger.h index ee8168968..eb4da5f9e 100644 --- a/src/Learning/KWDataPreparation/KWDataGridMerger.h +++ b/src/Learning/KWDataPreparation/KWDataGridMerger.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridOptimizer.cpp b/src/Learning/KWDataPreparation/KWDataGridOptimizer.cpp index f86a12888..1379fb7b4 100644 --- a/src/Learning/KWDataPreparation/KWDataGridOptimizer.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridOptimizer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridOptimizer.h b/src/Learning/KWDataPreparation/KWDataGridOptimizer.h index d3f83e27c..4c711b442 100644 --- a/src/Learning/KWDataPreparation/KWDataGridOptimizer.h +++ b/src/Learning/KWDataPreparation/KWDataGridOptimizer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.cpp b/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.cpp index 5df8d41d0..8212a148a 100644 --- a/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.h b/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.h index 82af95749..132b56a5d 100644 --- a/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.h +++ b/src/Learning/KWDataPreparation/KWDataGridOptimizerParameters.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.cpp b/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.cpp index a0aa94a77..1bd9c48cf 100644 --- a/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.h b/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.h index 02f08119c..dbb971c41 100644 --- a/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.h +++ b/src/Learning/KWDataPreparation/KWDataGridPostOptimizer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridStats.cpp b/src/Learning/KWDataPreparation/KWDataGridStats.cpp index 8f78a1d52..5f93b5e89 100644 --- a/src/Learning/KWDataPreparation/KWDataGridStats.cpp +++ b/src/Learning/KWDataPreparation/KWDataGridStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataGridStats.h b/src/Learning/KWDataPreparation/KWDataGridStats.h index 675b1da7c..45dd426a5 100644 --- a/src/Learning/KWDataPreparation/KWDataGridStats.h +++ b/src/Learning/KWDataPreparation/KWDataGridStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.cpp b/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.cpp index 9ce253e04..50881de98 100644 --- a/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.cpp +++ b/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.h b/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.h index ae331d49d..f58ddefa3 100644 --- a/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.h +++ b/src/Learning/KWDataPreparation/KWDataPreparationBivariateTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataPreparationTask.cpp b/src/Learning/KWDataPreparation/KWDataPreparationTask.cpp index c77eca999..7f3339707 100644 --- a/src/Learning/KWDataPreparation/KWDataPreparationTask.cpp +++ b/src/Learning/KWDataPreparation/KWDataPreparationTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataPreparationTask.h b/src/Learning/KWDataPreparation/KWDataPreparationTask.h index 3c73a983a..9527140c6 100644 --- a/src/Learning/KWDataPreparation/KWDataPreparationTask.h +++ b/src/Learning/KWDataPreparation/KWDataPreparationTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.cpp b/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.cpp index 4c27dbfe7..299a1a2de 100644 --- a/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.cpp +++ b/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.h b/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.h index bc3e809ac..7fad9b2bb 100644 --- a/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.h +++ b/src/Learning/KWDataPreparation/KWDataPreparationUnivariateTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDescriptiveStats.cpp b/src/Learning/KWDataPreparation/KWDescriptiveStats.cpp index 68457498c..0ed1094ce 100644 --- a/src/Learning/KWDataPreparation/KWDescriptiveStats.cpp +++ b/src/Learning/KWDataPreparation/KWDescriptiveStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDescriptiveStats.h b/src/Learning/KWDataPreparation/KWDescriptiveStats.h index 52cb6725d..a5d5188f5 100644 --- a/src/Learning/KWDataPreparation/KWDescriptiveStats.h +++ b/src/Learning/KWDataPreparation/KWDescriptiveStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizer.cpp b/src/Learning/KWDataPreparation/KWDiscretizer.cpp index b442ee576..7c3fbd553 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizer.cpp +++ b/src/Learning/KWDataPreparation/KWDiscretizer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizer.h b/src/Learning/KWDataPreparation/KWDiscretizer.h index 648b4768f..118dacc61 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizer.h +++ b/src/Learning/KWDataPreparation/KWDiscretizer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerMODL.cpp b/src/Learning/KWDataPreparation/KWDiscretizerMODL.cpp index 0297bcc2b..b0361c3c2 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerMODL.cpp +++ b/src/Learning/KWDataPreparation/KWDiscretizerMODL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerMODL.h b/src/Learning/KWDataPreparation/KWDiscretizerMODL.h index 4bc678727..fb486d973 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerMODL.h +++ b/src/Learning/KWDataPreparation/KWDiscretizerMODL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.cpp b/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.cpp index 887f52c30..8961bacaf 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.cpp +++ b/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.h b/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.h index fd9a27c7e..f6a08d033 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.h +++ b/src/Learning/KWDataPreparation/KWDiscretizerMODLLine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerMODLOptimization.cpp b/src/Learning/KWDataPreparation/KWDiscretizerMODLOptimization.cpp index d6ae18549..6fb6e0448 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerMODLOptimization.cpp +++ b/src/Learning/KWDataPreparation/KWDiscretizerMODLOptimization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerSpec.cpp b/src/Learning/KWDataPreparation/KWDiscretizerSpec.cpp index 6c5989e63..a6d815eb7 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerSpec.cpp +++ b/src/Learning/KWDataPreparation/KWDiscretizerSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerSpec.h b/src/Learning/KWDataPreparation/KWDiscretizerSpec.h index 7c54917f8..f3b6e4734 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerSpec.h +++ b/src/Learning/KWDataPreparation/KWDiscretizerSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.cpp b/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.cpp index 4d94a00d6..ba61e5371 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.cpp +++ b/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.h b/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.h index 18347393b..0574fc2bc 100644 --- a/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.h +++ b/src/Learning/KWDataPreparation/KWDiscretizerUnsupervised.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWFrequencyVector.cpp b/src/Learning/KWDataPreparation/KWFrequencyVector.cpp index cab61d3da..08785e040 100644 --- a/src/Learning/KWDataPreparation/KWFrequencyVector.cpp +++ b/src/Learning/KWDataPreparation/KWFrequencyVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWFrequencyVector.h b/src/Learning/KWDataPreparation/KWFrequencyVector.h index 4b38e4f4f..33aed3535 100644 --- a/src/Learning/KWDataPreparation/KWFrequencyVector.h +++ b/src/Learning/KWDataPreparation/KWFrequencyVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouper.cpp b/src/Learning/KWDataPreparation/KWGrouper.cpp index 9576baafc..cc608dcfd 100644 --- a/src/Learning/KWDataPreparation/KWGrouper.cpp +++ b/src/Learning/KWDataPreparation/KWGrouper.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouper.h b/src/Learning/KWDataPreparation/KWGrouper.h index 64d54307f..5600bec60 100644 --- a/src/Learning/KWDataPreparation/KWGrouper.h +++ b/src/Learning/KWDataPreparation/KWGrouper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperMODL.cpp b/src/Learning/KWDataPreparation/KWGrouperMODL.cpp index c2ea9bcf2..7a11413f6 100644 --- a/src/Learning/KWDataPreparation/KWGrouperMODL.cpp +++ b/src/Learning/KWDataPreparation/KWGrouperMODL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperMODL.h b/src/Learning/KWDataPreparation/KWGrouperMODL.h index 7c9299a4b..d1a0291f6 100644 --- a/src/Learning/KWDataPreparation/KWGrouperMODL.h +++ b/src/Learning/KWDataPreparation/KWGrouperMODL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperMODLBasic.cpp b/src/Learning/KWDataPreparation/KWGrouperMODLBasic.cpp index 6635436a4..6307320fc 100644 --- a/src/Learning/KWDataPreparation/KWGrouperMODLBasic.cpp +++ b/src/Learning/KWDataPreparation/KWGrouperMODLBasic.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperMODLInternal.cpp b/src/Learning/KWDataPreparation/KWGrouperMODLInternal.cpp index 1825e5379..bf09ae868 100644 --- a/src/Learning/KWDataPreparation/KWGrouperMODLInternal.cpp +++ b/src/Learning/KWDataPreparation/KWGrouperMODLInternal.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperMODLInternal.h b/src/Learning/KWDataPreparation/KWGrouperMODLInternal.h index 03f7279f6..194e4d38d 100644 --- a/src/Learning/KWDataPreparation/KWGrouperMODLInternal.h +++ b/src/Learning/KWDataPreparation/KWGrouperMODLInternal.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperMODLOptimization.cpp b/src/Learning/KWDataPreparation/KWGrouperMODLOptimization.cpp index b03391bd6..194d7c293 100644 --- a/src/Learning/KWDataPreparation/KWGrouperMODLOptimization.cpp +++ b/src/Learning/KWDataPreparation/KWGrouperMODLOptimization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperSpec.cpp b/src/Learning/KWDataPreparation/KWGrouperSpec.cpp index 71c9ce980..cf06e327c 100644 --- a/src/Learning/KWDataPreparation/KWGrouperSpec.cpp +++ b/src/Learning/KWDataPreparation/KWGrouperSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWGrouperSpec.h b/src/Learning/KWDataPreparation/KWGrouperSpec.h index e4bfdd96d..932659231 100644 --- a/src/Learning/KWDataPreparation/KWGrouperSpec.h +++ b/src/Learning/KWDataPreparation/KWGrouperSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWLearningErrorManager.cpp b/src/Learning/KWDataPreparation/KWLearningErrorManager.cpp index 6043dc67c..4d25396ac 100644 --- a/src/Learning/KWDataPreparation/KWLearningErrorManager.cpp +++ b/src/Learning/KWDataPreparation/KWLearningErrorManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWLearningErrorManager.h b/src/Learning/KWDataPreparation/KWLearningErrorManager.h index 6a788aef9..6ee2c4e53 100644 --- a/src/Learning/KWDataPreparation/KWLearningErrorManager.h +++ b/src/Learning/KWDataPreparation/KWLearningErrorManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWLearningReport.cpp b/src/Learning/KWDataPreparation/KWLearningReport.cpp index b18e5fc44..e85af5682 100644 --- a/src/Learning/KWDataPreparation/KWLearningReport.cpp +++ b/src/Learning/KWDataPreparation/KWLearningReport.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWLearningReport.h b/src/Learning/KWDataPreparation/KWLearningReport.h index 2c063a481..ab3b29b80 100644 --- a/src/Learning/KWDataPreparation/KWLearningReport.h +++ b/src/Learning/KWDataPreparation/KWLearningReport.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWLearningSpec.cpp b/src/Learning/KWDataPreparation/KWLearningSpec.cpp index 589b67cb5..ef3461179 100644 --- a/src/Learning/KWDataPreparation/KWLearningSpec.cpp +++ b/src/Learning/KWDataPreparation/KWLearningSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWLearningSpec.h b/src/Learning/KWDataPreparation/KWLearningSpec.h index 3bca16560..104ab6b5d 100644 --- a/src/Learning/KWDataPreparation/KWLearningSpec.h +++ b/src/Learning/KWDataPreparation/KWLearningSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWPreprocessingSpec.cpp b/src/Learning/KWDataPreparation/KWPreprocessingSpec.cpp index 396a678f9..4b61bf13a 100644 --- a/src/Learning/KWDataPreparation/KWPreprocessingSpec.cpp +++ b/src/Learning/KWDataPreparation/KWPreprocessingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWPreprocessingSpec.h b/src/Learning/KWDataPreparation/KWPreprocessingSpec.h index 4906b60cd..fb6a2ad64 100644 --- a/src/Learning/KWDataPreparation/KWPreprocessingSpec.h +++ b/src/Learning/KWDataPreparation/KWPreprocessingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWProbabilityTable.cpp b/src/Learning/KWDataPreparation/KWProbabilityTable.cpp index 5fdbc8992..4a36a9313 100644 --- a/src/Learning/KWDataPreparation/KWProbabilityTable.cpp +++ b/src/Learning/KWDataPreparation/KWProbabilityTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWProbabilityTable.h b/src/Learning/KWDataPreparation/KWProbabilityTable.h index 3d2519e99..fdeec3471 100644 --- a/src/Learning/KWDataPreparation/KWProbabilityTable.h +++ b/src/Learning/KWDataPreparation/KWProbabilityTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWQuantileBuilder.cpp b/src/Learning/KWDataPreparation/KWQuantileBuilder.cpp index 771c1de29..c19554f24 100644 --- a/src/Learning/KWDataPreparation/KWQuantileBuilder.cpp +++ b/src/Learning/KWDataPreparation/KWQuantileBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWQuantileBuilder.h b/src/Learning/KWDataPreparation/KWQuantileBuilder.h index 1dfb97b59..2d25b442e 100644 --- a/src/Learning/KWDataPreparation/KWQuantileBuilder.h +++ b/src/Learning/KWDataPreparation/KWQuantileBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWStat.cpp b/src/Learning/KWDataPreparation/KWStat.cpp index 501e27def..c01dad9d4 100644 --- a/src/Learning/KWDataPreparation/KWStat.cpp +++ b/src/Learning/KWDataPreparation/KWStat.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWStat.h b/src/Learning/KWDataPreparation/KWStat.h index a34f658b0..9561cb152 100644 --- a/src/Learning/KWDataPreparation/KWStat.h +++ b/src/Learning/KWDataPreparation/KWStat.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWStatisticalEvaluation.cpp b/src/Learning/KWDataPreparation/KWStatisticalEvaluation.cpp index 3cb5bd406..f28379599 100644 --- a/src/Learning/KWDataPreparation/KWStatisticalEvaluation.cpp +++ b/src/Learning/KWDataPreparation/KWStatisticalEvaluation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWStatisticalEvaluation.h b/src/Learning/KWDataPreparation/KWStatisticalEvaluation.h index 8d39ec8ff..9350be4cb 100644 --- a/src/Learning/KWDataPreparation/KWStatisticalEvaluation.h +++ b/src/Learning/KWDataPreparation/KWStatisticalEvaluation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWTupleTable.cpp b/src/Learning/KWDataPreparation/KWTupleTable.cpp index 4732c7938..ccd55079f 100644 --- a/src/Learning/KWDataPreparation/KWTupleTable.cpp +++ b/src/Learning/KWDataPreparation/KWTupleTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWTupleTable.h b/src/Learning/KWDataPreparation/KWTupleTable.h index 95a6c63b7..bac9f7cca 100644 --- a/src/Learning/KWDataPreparation/KWTupleTable.h +++ b/src/Learning/KWDataPreparation/KWTupleTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWTupleTableCompareFunctions.cpp b/src/Learning/KWDataPreparation/KWTupleTableCompareFunctions.cpp index c3c4bf425..b07e8413b 100644 --- a/src/Learning/KWDataPreparation/KWTupleTableCompareFunctions.cpp +++ b/src/Learning/KWDataPreparation/KWTupleTableCompareFunctions.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWTupleTableLoader.cpp b/src/Learning/KWDataPreparation/KWTupleTableLoader.cpp index d1b51742a..5a80b2246 100644 --- a/src/Learning/KWDataPreparation/KWTupleTableLoader.cpp +++ b/src/Learning/KWDataPreparation/KWTupleTableLoader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWTupleTableLoader.h b/src/Learning/KWDataPreparation/KWTupleTableLoader.h index 632dbb9ed..573085c4a 100644 --- a/src/Learning/KWDataPreparation/KWTupleTableLoader.h +++ b/src/Learning/KWDataPreparation/KWTupleTableLoader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.cpp b/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.cpp index f61b08cf8..d0450af7b 100644 --- a/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.cpp +++ b/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.h b/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.h index 612511b0d..c0fa1bfb6 100644 --- a/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.h +++ b/src/Learning/KWDataPreparation/KWUnivariatePartitionCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWArtificialDataset.cpp b/src/Learning/KWDataUtils/KWArtificialDataset.cpp index ff99bfb2a..a35b20e5f 100644 --- a/src/Learning/KWDataUtils/KWArtificialDataset.cpp +++ b/src/Learning/KWDataUtils/KWArtificialDataset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWArtificialDataset.h b/src/Learning/KWDataUtils/KWArtificialDataset.h index 6e8d98fca..fdb3a31a5 100644 --- a/src/Learning/KWDataUtils/KWArtificialDataset.h +++ b/src/Learning/KWDataUtils/KWArtificialDataset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWChunkSorterTask.cpp b/src/Learning/KWDataUtils/KWChunkSorterTask.cpp index 92d4ab82d..a95f2847b 100644 --- a/src/Learning/KWDataUtils/KWChunkSorterTask.cpp +++ b/src/Learning/KWDataUtils/KWChunkSorterTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWChunkSorterTask.h b/src/Learning/KWDataUtils/KWChunkSorterTask.h index c3f1fb703..7bbb0d7fd 100644 --- a/src/Learning/KWDataUtils/KWChunkSorterTask.h +++ b/src/Learning/KWDataUtils/KWChunkSorterTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDataTableSliceSet.cpp b/src/Learning/KWDataUtils/KWDataTableSliceSet.cpp index a58e743a3..7a4a503b7 100644 --- a/src/Learning/KWDataUtils/KWDataTableSliceSet.cpp +++ b/src/Learning/KWDataUtils/KWDataTableSliceSet.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDataTableSliceSet.h b/src/Learning/KWDataUtils/KWDataTableSliceSet.h index 1701a14ec..b8f64e56a 100644 --- a/src/Learning/KWDataUtils/KWDataTableSliceSet.h +++ b/src/Learning/KWDataUtils/KWDataTableSliceSet.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.cpp b/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.cpp index 798267f2e..43955c620 100644 --- a/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.h b/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.h index 418b86a1e..bfd5761b4 100644 --- a/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.h +++ b/src/Learning/KWDataUtils/KWDatabaseBasicStatsTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseCheckTask.cpp b/src/Learning/KWDataUtils/KWDatabaseCheckTask.cpp index da6e1bfdf..2e7df7fd2 100644 --- a/src/Learning/KWDataUtils/KWDatabaseCheckTask.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseCheckTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseCheckTask.h b/src/Learning/KWDataUtils/KWDatabaseCheckTask.h index aa9cda95e..a066abe90 100644 --- a/src/Learning/KWDataUtils/KWDatabaseCheckTask.h +++ b/src/Learning/KWDataUtils/KWDatabaseCheckTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.cpp b/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.cpp index f29c04b4c..060cc8691 100644 --- a/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.h b/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.h index 2340add88..a02af20fe 100644 --- a/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.h +++ b/src/Learning/KWDataUtils/KWDatabaseChunkBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseIndexer.cpp b/src/Learning/KWDataUtils/KWDatabaseIndexer.cpp index 2cd486e39..139c4816a 100644 --- a/src/Learning/KWDataUtils/KWDatabaseIndexer.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseIndexer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseIndexer.h b/src/Learning/KWDataUtils/KWDatabaseIndexer.h index 7fc136fe6..4a3e9f9ab 100644 --- a/src/Learning/KWDataUtils/KWDatabaseIndexer.h +++ b/src/Learning/KWDataUtils/KWDatabaseIndexer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseSlicerTask.cpp b/src/Learning/KWDataUtils/KWDatabaseSlicerTask.cpp index f891a51a8..3b2fce127 100644 --- a/src/Learning/KWDataUtils/KWDatabaseSlicerTask.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseSlicerTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseSlicerTask.h b/src/Learning/KWDataUtils/KWDatabaseSlicerTask.h index 5ffe91b25..f472a297c 100644 --- a/src/Learning/KWDataUtils/KWDatabaseSlicerTask.h +++ b/src/Learning/KWDataUtils/KWDatabaseSlicerTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseTask.cpp b/src/Learning/KWDataUtils/KWDatabaseTask.cpp index ef6a8a369..995f8df61 100644 --- a/src/Learning/KWDataUtils/KWDatabaseTask.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseTask.h b/src/Learning/KWDataUtils/KWDatabaseTask.h index c6c59c29d..6418110b9 100644 --- a/src/Learning/KWDataUtils/KWDatabaseTask.h +++ b/src/Learning/KWDataUtils/KWDatabaseTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseTransferTask.cpp b/src/Learning/KWDataUtils/KWDatabaseTransferTask.cpp index 015a86a7f..760b1e585 100644 --- a/src/Learning/KWDataUtils/KWDatabaseTransferTask.cpp +++ b/src/Learning/KWDataUtils/KWDatabaseTransferTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWDatabaseTransferTask.h b/src/Learning/KWDataUtils/KWDatabaseTransferTask.h index 04459ed43..e12b547ad 100644 --- a/src/Learning/KWDataUtils/KWDatabaseTransferTask.h +++ b/src/Learning/KWDataUtils/KWDatabaseTransferTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWFileIndexerTask.cpp b/src/Learning/KWDataUtils/KWFileIndexerTask.cpp index 0c8e3b217..612a13729 100644 --- a/src/Learning/KWDataUtils/KWFileIndexerTask.cpp +++ b/src/Learning/KWDataUtils/KWFileIndexerTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWFileIndexerTask.h b/src/Learning/KWDataUtils/KWFileIndexerTask.h index 9e4e3dc57..cfdc64b37 100644 --- a/src/Learning/KWDataUtils/KWFileIndexerTask.h +++ b/src/Learning/KWDataUtils/KWFileIndexerTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWFileKeyExtractorTask.cpp b/src/Learning/KWDataUtils/KWFileKeyExtractorTask.cpp index 2b576a800..1bd49f0ed 100644 --- a/src/Learning/KWDataUtils/KWFileKeyExtractorTask.cpp +++ b/src/Learning/KWDataUtils/KWFileKeyExtractorTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWFileKeyExtractorTask.h b/src/Learning/KWDataUtils/KWFileKeyExtractorTask.h index 25728d830..94730fced 100644 --- a/src/Learning/KWDataUtils/KWFileKeyExtractorTask.h +++ b/src/Learning/KWDataUtils/KWFileKeyExtractorTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWFileSorter.cpp b/src/Learning/KWDataUtils/KWFileSorter.cpp index 2fc82566b..bec223c13 100644 --- a/src/Learning/KWDataUtils/KWFileSorter.cpp +++ b/src/Learning/KWDataUtils/KWFileSorter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWFileSorter.h b/src/Learning/KWDataUtils/KWFileSorter.h index 8c881e121..b931e2271 100644 --- a/src/Learning/KWDataUtils/KWFileSorter.h +++ b/src/Learning/KWDataUtils/KWFileSorter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKey.cpp b/src/Learning/KWDataUtils/KWKey.cpp index b1b7076d8..61fa01e44 100644 --- a/src/Learning/KWDataUtils/KWKey.cpp +++ b/src/Learning/KWDataUtils/KWKey.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKey.h b/src/Learning/KWDataUtils/KWKey.h index f50f3cda2..df067c694 100644 --- a/src/Learning/KWDataUtils/KWKey.h +++ b/src/Learning/KWDataUtils/KWKey.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeyExtractor.cpp b/src/Learning/KWDataUtils/KWKeyExtractor.cpp index e7c05f4e1..4c8fcf4b9 100644 --- a/src/Learning/KWDataUtils/KWKeyExtractor.cpp +++ b/src/Learning/KWDataUtils/KWKeyExtractor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeyExtractor.h b/src/Learning/KWDataUtils/KWKeyExtractor.h index e0d277c18..995464957 100644 --- a/src/Learning/KWDataUtils/KWKeyExtractor.h +++ b/src/Learning/KWDataUtils/KWKeyExtractor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeyPositionFinderTask.cpp b/src/Learning/KWDataUtils/KWKeyPositionFinderTask.cpp index 8a19a321b..59c9afe1b 100644 --- a/src/Learning/KWDataUtils/KWKeyPositionFinderTask.cpp +++ b/src/Learning/KWDataUtils/KWKeyPositionFinderTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeyPositionFinderTask.h b/src/Learning/KWDataUtils/KWKeyPositionFinderTask.h index 241e3b63f..7fc4e6b45 100644 --- a/src/Learning/KWDataUtils/KWKeyPositionFinderTask.h +++ b/src/Learning/KWDataUtils/KWKeyPositionFinderTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.cpp b/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.cpp index ae30a4fb3..05403417a 100644 --- a/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.cpp +++ b/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.h b/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.h index d3ca07151..a61a1283b 100644 --- a/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.h +++ b/src/Learning/KWDataUtils/KWKeyPositionSampleExtractorTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeySampleExtractorTask.cpp b/src/Learning/KWDataUtils/KWKeySampleExtractorTask.cpp index 87136804d..32265ac76 100644 --- a/src/Learning/KWDataUtils/KWKeySampleExtractorTask.cpp +++ b/src/Learning/KWDataUtils/KWKeySampleExtractorTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeySampleExtractorTask.h b/src/Learning/KWDataUtils/KWKeySampleExtractorTask.h index 0c9682da8..2370f1813 100644 --- a/src/Learning/KWDataUtils/KWKeySampleExtractorTask.h +++ b/src/Learning/KWDataUtils/KWKeySampleExtractorTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.cpp b/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.cpp index 14925b2fd..73371e511 100644 --- a/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.cpp +++ b/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.h b/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.h index 8adaf0a37..dc0a33d5e 100644 --- a/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.h +++ b/src/Learning/KWDataUtils/KWKeySizeEvaluatorTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWSortBuckets.cpp b/src/Learning/KWDataUtils/KWSortBuckets.cpp index 1cac7407a..8cd28231d 100644 --- a/src/Learning/KWDataUtils/KWSortBuckets.cpp +++ b/src/Learning/KWDataUtils/KWSortBuckets.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWSortBuckets.h b/src/Learning/KWDataUtils/KWSortBuckets.h index 24147d8a3..6640b5499 100644 --- a/src/Learning/KWDataUtils/KWSortBuckets.h +++ b/src/Learning/KWDataUtils/KWSortBuckets.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.cpp b/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.cpp index 4a2ee0f7b..0b58e62a0 100644 --- a/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.cpp +++ b/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.h b/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.h index 1fe97717e..1050896ae 100644 --- a/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.h +++ b/src/Learning/KWDataUtils/KWSortedChunkBuilderTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWTestDatabaseTransfer.cpp b/src/Learning/KWDataUtils/KWTestDatabaseTransfer.cpp index 71774c5ff..2999be595 100644 --- a/src/Learning/KWDataUtils/KWTestDatabaseTransfer.cpp +++ b/src/Learning/KWDataUtils/KWTestDatabaseTransfer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/KWTestDatabaseTransfer.h b/src/Learning/KWDataUtils/KWTestDatabaseTransfer.h index 86fd7d611..0785ccd45 100644 --- a/src/Learning/KWDataUtils/KWTestDatabaseTransfer.h +++ b/src/Learning/KWDataUtils/KWTestDatabaseTransfer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLDataTableDriverTextFile.cpp b/src/Learning/KWDataUtils/PLDataTableDriverTextFile.cpp index c4a0dbfa3..557f6a9c6 100644 --- a/src/Learning/KWDataUtils/PLDataTableDriverTextFile.cpp +++ b/src/Learning/KWDataUtils/PLDataTableDriverTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLDataTableDriverTextFile.h b/src/Learning/KWDataUtils/PLDataTableDriverTextFile.h index f977eda4c..947e2a7bd 100644 --- a/src/Learning/KWDataUtils/PLDataTableDriverTextFile.h +++ b/src/Learning/KWDataUtils/PLDataTableDriverTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLDatabaseTextFile.cpp b/src/Learning/KWDataUtils/PLDatabaseTextFile.cpp index e5ea13bfb..5b9bda5cd 100644 --- a/src/Learning/KWDataUtils/PLDatabaseTextFile.cpp +++ b/src/Learning/KWDataUtils/PLDatabaseTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLDatabaseTextFile.h b/src/Learning/KWDataUtils/PLDatabaseTextFile.h index 6005f7b35..2e75ba79a 100644 --- a/src/Learning/KWDataUtils/PLDatabaseTextFile.h +++ b/src/Learning/KWDataUtils/PLDatabaseTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLMTDatabaseTextFile.cpp b/src/Learning/KWDataUtils/PLMTDatabaseTextFile.cpp index 50f192227..edbf894f4 100644 --- a/src/Learning/KWDataUtils/PLMTDatabaseTextFile.cpp +++ b/src/Learning/KWDataUtils/PLMTDatabaseTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLMTDatabaseTextFile.h b/src/Learning/KWDataUtils/PLMTDatabaseTextFile.h index e46e663fb..fa72cea1d 100644 --- a/src/Learning/KWDataUtils/PLMTDatabaseTextFile.h +++ b/src/Learning/KWDataUtils/PLMTDatabaseTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLSTDatabaseTextFile.cpp b/src/Learning/KWDataUtils/PLSTDatabaseTextFile.cpp index 1686895cd..5116f95d1 100644 --- a/src/Learning/KWDataUtils/PLSTDatabaseTextFile.cpp +++ b/src/Learning/KWDataUtils/PLSTDatabaseTextFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLSTDatabaseTextFile.h b/src/Learning/KWDataUtils/PLSTDatabaseTextFile.h index 93296b585..5835c9110 100644 --- a/src/Learning/KWDataUtils/PLSTDatabaseTextFile.h +++ b/src/Learning/KWDataUtils/PLSTDatabaseTextFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWDataUtils/PLUseMPI.h b/src/Learning/KWDataUtils/PLUseMPI.h index f1975c680..576efe4f6 100644 --- a/src/Learning/KWDataUtils/PLUseMPI.h +++ b/src/Learning/KWDataUtils/PLUseMPI.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisResults.cpp b/src/Learning/KWLearningProblem/KWAnalysisResults.cpp index b9b83b76a..b2b630cc4 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisResults.cpp +++ b/src/Learning/KWLearningProblem/KWAnalysisResults.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisResults.h b/src/Learning/KWLearningProblem/KWAnalysisResults.h index 9c1a0a2a0..805149d74 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisResults.h +++ b/src/Learning/KWLearningProblem/KWAnalysisResults.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisResultsView.cpp b/src/Learning/KWLearningProblem/KWAnalysisResultsView.cpp index 4234d553c..df00ceab8 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisResultsView.cpp +++ b/src/Learning/KWLearningProblem/KWAnalysisResultsView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisResultsView.h b/src/Learning/KWLearningProblem/KWAnalysisResultsView.h index 2c273c75a..ad924e653 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisResultsView.h +++ b/src/Learning/KWLearningProblem/KWAnalysisResultsView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisSpec.cpp b/src/Learning/KWLearningProblem/KWAnalysisSpec.cpp index 7675b87a3..9af90b761 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisSpec.cpp +++ b/src/Learning/KWLearningProblem/KWAnalysisSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisSpec.h b/src/Learning/KWLearningProblem/KWAnalysisSpec.h index 9546efa6f..9ae82e6d0 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisSpec.h +++ b/src/Learning/KWLearningProblem/KWAnalysisSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisSpecView.cpp b/src/Learning/KWLearningProblem/KWAnalysisSpecView.cpp index 13f07602d..3be7a83ba 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisSpecView.cpp +++ b/src/Learning/KWLearningProblem/KWAnalysisSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWAnalysisSpecView.h b/src/Learning/KWLearningProblem/KWAnalysisSpecView.h index 7bed4e21f..ca3f423a0 100644 --- a/src/Learning/KWLearningProblem/KWAnalysisSpecView.h +++ b/src/Learning/KWLearningProblem/KWAnalysisSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWCrashTestParametersView.cpp b/src/Learning/KWLearningProblem/KWCrashTestParametersView.cpp index 8e70dc3b5..301c07865 100644 --- a/src/Learning/KWLearningProblem/KWCrashTestParametersView.cpp +++ b/src/Learning/KWLearningProblem/KWCrashTestParametersView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWCrashTestParametersView.h b/src/Learning/KWLearningProblem/KWCrashTestParametersView.h index 593bf23e2..9a413a08f 100644 --- a/src/Learning/KWLearningProblem/KWCrashTestParametersView.h +++ b/src/Learning/KWLearningProblem/KWCrashTestParametersView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblem.cpp b/src/Learning/KWLearningProblem/KWLearningProblem.cpp index 1bc431e6d..546c69a11 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblem.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblem.h b/src/Learning/KWLearningProblem/KWLearningProblem.h index ccbd695d5..fcc8d5ddc 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblem.h +++ b/src/Learning/KWLearningProblem/KWLearningProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemActionView.cpp b/src/Learning/KWLearningProblem/KWLearningProblemActionView.cpp index f58b38da8..ad671a4dd 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemActionView.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProblemActionView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemActionView.h b/src/Learning/KWLearningProblem/KWLearningProblemActionView.h index 4545df3e9..5cebad0c8 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemActionView.h +++ b/src/Learning/KWLearningProblem/KWLearningProblemActionView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemComputeStats.cpp b/src/Learning/KWLearningProblem/KWLearningProblemComputeStats.cpp index f7e1c8046..98051f07c 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemComputeStats.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProblemComputeStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.cpp b/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.cpp index 0529f7c03..66e4d19fa 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.h b/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.h index 228ff7cb7..bc4989909 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.h +++ b/src/Learning/KWLearningProblem/KWLearningProblemHelpCard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemTrain.cpp b/src/Learning/KWLearningProblem/KWLearningProblemTrain.cpp index b3bab71a6..aa7440c66 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemTrain.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProblemTrain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemView.cpp b/src/Learning/KWLearningProblem/KWLearningProblemView.cpp index a17e2f9e4..010ec8f81 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemView.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProblemView.h b/src/Learning/KWLearningProblem/KWLearningProblemView.h index f7d712042..5645bf564 100644 --- a/src/Learning/KWLearningProblem/KWLearningProblemView.h +++ b/src/Learning/KWLearningProblem/KWLearningProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProject.cpp b/src/Learning/KWLearningProblem/KWLearningProject.cpp index 2806aaed0..32cd0e119 100644 --- a/src/Learning/KWLearningProblem/KWLearningProject.cpp +++ b/src/Learning/KWLearningProblem/KWLearningProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWLearningProject.h b/src/Learning/KWLearningProblem/KWLearningProject.h index 5455ec962..f85af23e6 100644 --- a/src/Learning/KWLearningProblem/KWLearningProject.h +++ b/src/Learning/KWLearningProblem/KWLearningProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.cpp b/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.cpp index 6363a2fcb..157550796 100644 --- a/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.cpp +++ b/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.h b/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.h index 07a0acb56..c8dbec2f2 100644 --- a/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.h +++ b/src/Learning/KWLearningProblem/KWModelingAdvancedSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWModelingSpec.cpp b/src/Learning/KWLearningProblem/KWModelingSpec.cpp index 2dd00f761..92fb90363 100644 --- a/src/Learning/KWLearningProblem/KWModelingSpec.cpp +++ b/src/Learning/KWLearningProblem/KWModelingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWModelingSpec.h b/src/Learning/KWLearningProblem/KWModelingSpec.h index bf6bc11bb..c76919434 100644 --- a/src/Learning/KWLearningProblem/KWModelingSpec.h +++ b/src/Learning/KWLearningProblem/KWModelingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWModelingSpecView.cpp b/src/Learning/KWLearningProblem/KWModelingSpecView.cpp index 338a50537..ef683949b 100644 --- a/src/Learning/KWLearningProblem/KWModelingSpecView.cpp +++ b/src/Learning/KWLearningProblem/KWModelingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWModelingSpecView.h b/src/Learning/KWLearningProblem/KWModelingSpecView.h index 3e38996fc..6d9e1ef6c 100644 --- a/src/Learning/KWLearningProblem/KWModelingSpecView.h +++ b/src/Learning/KWLearningProblem/KWModelingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWRecoderSpec.cpp b/src/Learning/KWLearningProblem/KWRecoderSpec.cpp index 895fe0ee1..7719542ce 100644 --- a/src/Learning/KWLearningProblem/KWRecoderSpec.cpp +++ b/src/Learning/KWLearningProblem/KWRecoderSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWRecoderSpec.h b/src/Learning/KWLearningProblem/KWRecoderSpec.h index 0728530b5..0ac33eb0e 100644 --- a/src/Learning/KWLearningProblem/KWRecoderSpec.h +++ b/src/Learning/KWLearningProblem/KWRecoderSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWRecoderSpecView.cpp b/src/Learning/KWLearningProblem/KWRecoderSpecView.cpp index e6078789b..1b2f401b2 100644 --- a/src/Learning/KWLearningProblem/KWRecoderSpecView.cpp +++ b/src/Learning/KWLearningProblem/KWRecoderSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWRecoderSpecView.h b/src/Learning/KWLearningProblem/KWRecoderSpecView.h index 16925188b..ef61434a6 100644 --- a/src/Learning/KWLearningProblem/KWRecoderSpecView.h +++ b/src/Learning/KWLearningProblem/KWRecoderSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWSystemParametersView.cpp b/src/Learning/KWLearningProblem/KWSystemParametersView.cpp index 18b982819..0b2429fdd 100644 --- a/src/Learning/KWLearningProblem/KWSystemParametersView.cpp +++ b/src/Learning/KWLearningProblem/KWSystemParametersView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWLearningProblem/KWSystemParametersView.h b/src/Learning/KWLearningProblem/KWSystemParametersView.h index 3f6bb1632..8a60e3ef4 100644 --- a/src/Learning/KWLearningProblem/KWSystemParametersView.h +++ b/src/Learning/KWLearningProblem/KWSystemParametersView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWAttributeConstructionReport.cpp b/src/Learning/KWModeling/KWAttributeConstructionReport.cpp index 3db4abca5..15aa9bde8 100644 --- a/src/Learning/KWModeling/KWAttributeConstructionReport.cpp +++ b/src/Learning/KWModeling/KWAttributeConstructionReport.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWAttributeConstructionReport.h b/src/Learning/KWModeling/KWAttributeConstructionReport.h index a7440e21c..c7144ed00 100644 --- a/src/Learning/KWModeling/KWAttributeConstructionReport.h +++ b/src/Learning/KWModeling/KWAttributeConstructionReport.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWAttributeConstructionSpec.cpp b/src/Learning/KWModeling/KWAttributeConstructionSpec.cpp index a8a739733..2289f6ca9 100644 --- a/src/Learning/KWModeling/KWAttributeConstructionSpec.cpp +++ b/src/Learning/KWModeling/KWAttributeConstructionSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWAttributeConstructionSpec.h b/src/Learning/KWModeling/KWAttributeConstructionSpec.h index 3e7559347..c1e2c6ac1 100644 --- a/src/Learning/KWModeling/KWAttributeConstructionSpec.h +++ b/src/Learning/KWModeling/KWAttributeConstructionSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWBenchmarkClassSpec.cpp b/src/Learning/KWModeling/KWBenchmarkClassSpec.cpp index 481711026..0586b2c5d 100644 --- a/src/Learning/KWModeling/KWBenchmarkClassSpec.cpp +++ b/src/Learning/KWModeling/KWBenchmarkClassSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWBenchmarkClassSpec.h b/src/Learning/KWModeling/KWBenchmarkClassSpec.h index 59ea7cce5..c8262fc8d 100644 --- a/src/Learning/KWModeling/KWBenchmarkClassSpec.h +++ b/src/Learning/KWModeling/KWBenchmarkClassSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWBenchmarkSpec.cpp b/src/Learning/KWModeling/KWBenchmarkSpec.cpp index c12add4f1..31a980266 100644 --- a/src/Learning/KWModeling/KWBenchmarkSpec.cpp +++ b/src/Learning/KWModeling/KWBenchmarkSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWBenchmarkSpec.h b/src/Learning/KWModeling/KWBenchmarkSpec.h index 3110c8e9c..6df49150d 100644 --- a/src/Learning/KWModeling/KWBenchmarkSpec.h +++ b/src/Learning/KWModeling/KWBenchmarkSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWClassifierPostOptimizer.cpp b/src/Learning/KWModeling/KWClassifierPostOptimizer.cpp index e1bc88d12..c1b45fc1d 100644 --- a/src/Learning/KWModeling/KWClassifierPostOptimizer.cpp +++ b/src/Learning/KWModeling/KWClassifierPostOptimizer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWClassifierPostOptimizer.h b/src/Learning/KWModeling/KWClassifierPostOptimizer.h index c916638bb..a5b1b04d7 100644 --- a/src/Learning/KWModeling/KWClassifierPostOptimizer.h +++ b/src/Learning/KWModeling/KWClassifierPostOptimizer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDRNBPredictor.cpp b/src/Learning/KWModeling/KWDRNBPredictor.cpp index 40b6eda8e..a8d4f2014 100644 --- a/src/Learning/KWModeling/KWDRNBPredictor.cpp +++ b/src/Learning/KWModeling/KWDRNBPredictor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDRNBPredictor.h b/src/Learning/KWModeling/KWDRNBPredictor.h index e58e016f5..89bb15fa6 100644 --- a/src/Learning/KWModeling/KWDRNBPredictor.h +++ b/src/Learning/KWModeling/KWDRNBPredictor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDRPredictor.cpp b/src/Learning/KWModeling/KWDRPredictor.cpp index 123bb38f0..4bdc870fd 100644 --- a/src/Learning/KWModeling/KWDRPredictor.cpp +++ b/src/Learning/KWModeling/KWDRPredictor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDRPredictor.h b/src/Learning/KWModeling/KWDRPredictor.h index f28d32c23..ac853ce0f 100644 --- a/src/Learning/KWModeling/KWDRPredictor.h +++ b/src/Learning/KWModeling/KWDRPredictor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDataPreparationBase.cpp b/src/Learning/KWModeling/KWDataPreparationBase.cpp index 96ff2779a..101aa9941 100644 --- a/src/Learning/KWModeling/KWDataPreparationBase.cpp +++ b/src/Learning/KWModeling/KWDataPreparationBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDataPreparationBase.h b/src/Learning/KWModeling/KWDataPreparationBase.h index caf42bfc3..bf9fe190e 100644 --- a/src/Learning/KWModeling/KWDataPreparationBase.h +++ b/src/Learning/KWModeling/KWDataPreparationBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDataPreparationClass.cpp b/src/Learning/KWModeling/KWDataPreparationClass.cpp index 7b13d9731..1f90c7af7 100644 --- a/src/Learning/KWModeling/KWDataPreparationClass.cpp +++ b/src/Learning/KWModeling/KWDataPreparationClass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWDataPreparationClass.h b/src/Learning/KWModeling/KWDataPreparationClass.h index 9e2c703a6..903eeb0ed 100644 --- a/src/Learning/KWModeling/KWDataPreparationClass.h +++ b/src/Learning/KWModeling/KWDataPreparationClass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWLearningBenchmark.cpp b/src/Learning/KWModeling/KWLearningBenchmark.cpp index eef519e4d..f6c9632dc 100644 --- a/src/Learning/KWModeling/KWLearningBenchmark.cpp +++ b/src/Learning/KWModeling/KWLearningBenchmark.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWLearningBenchmark.h b/src/Learning/KWModeling/KWLearningBenchmark.h index 64b290aa4..1c36ed0c6 100644 --- a/src/Learning/KWModeling/KWLearningBenchmark.h +++ b/src/Learning/KWModeling/KWLearningBenchmark.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWLearningBenchmarkBivariate.cpp b/src/Learning/KWModeling/KWLearningBenchmarkBivariate.cpp index cfb733af3..ea9f21483 100644 --- a/src/Learning/KWModeling/KWLearningBenchmarkBivariate.cpp +++ b/src/Learning/KWModeling/KWLearningBenchmarkBivariate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWLearningBenchmarkBivariate.h b/src/Learning/KWModeling/KWLearningBenchmarkBivariate.h index 5a15f3ad5..5c2bf8145 100644 --- a/src/Learning/KWModeling/KWLearningBenchmarkBivariate.h +++ b/src/Learning/KWModeling/KWLearningBenchmarkBivariate.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.cpp b/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.cpp index d5da13a69..fab2ba8f0 100644 --- a/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.cpp +++ b/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.h b/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.h index eed7f2d1b..4e1d83f35 100644 --- a/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.h +++ b/src/Learning/KWModeling/KWLearningBenchmarkUnivariate.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictor.cpp b/src/Learning/KWModeling/KWPredictor.cpp index 60c1d542e..e45b26e96 100644 --- a/src/Learning/KWModeling/KWPredictor.cpp +++ b/src/Learning/KWModeling/KWPredictor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictor.h b/src/Learning/KWModeling/KWPredictor.h index 20ad7e3fa..9c495cde4 100644 --- a/src/Learning/KWModeling/KWPredictor.h +++ b/src/Learning/KWModeling/KWPredictor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorBaseline.cpp b/src/Learning/KWModeling/KWPredictorBaseline.cpp index f36b7084d..3bf75a3f8 100644 --- a/src/Learning/KWModeling/KWPredictorBaseline.cpp +++ b/src/Learning/KWModeling/KWPredictorBaseline.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorBaseline.h b/src/Learning/KWModeling/KWPredictorBaseline.h index bdbd7918d..c742d9926 100644 --- a/src/Learning/KWModeling/KWPredictorBaseline.h +++ b/src/Learning/KWModeling/KWPredictorBaseline.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorBivariate.cpp b/src/Learning/KWModeling/KWPredictorBivariate.cpp index 5957f2e95..322d65357 100644 --- a/src/Learning/KWModeling/KWPredictorBivariate.cpp +++ b/src/Learning/KWModeling/KWPredictorBivariate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorBivariate.h b/src/Learning/KWModeling/KWPredictorBivariate.h index da885c226..62cace67b 100644 --- a/src/Learning/KWModeling/KWPredictorBivariate.h +++ b/src/Learning/KWModeling/KWPredictorBivariate.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorDataGrid.cpp b/src/Learning/KWModeling/KWPredictorDataGrid.cpp index 5d8cbaa99..3ffc1e8e5 100644 --- a/src/Learning/KWModeling/KWPredictorDataGrid.cpp +++ b/src/Learning/KWModeling/KWPredictorDataGrid.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorDataGrid.h b/src/Learning/KWModeling/KWPredictorDataGrid.h index 3bd080083..8e909436c 100644 --- a/src/Learning/KWModeling/KWPredictorDataGrid.h +++ b/src/Learning/KWModeling/KWPredictorDataGrid.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorEvaluation.cpp b/src/Learning/KWModeling/KWPredictorEvaluation.cpp index 5d9e58e51..7c71179b6 100644 --- a/src/Learning/KWModeling/KWPredictorEvaluation.cpp +++ b/src/Learning/KWModeling/KWPredictorEvaluation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorEvaluation.h b/src/Learning/KWModeling/KWPredictorEvaluation.h index 74c46cf3a..db999571d 100644 --- a/src/Learning/KWModeling/KWPredictorEvaluation.h +++ b/src/Learning/KWModeling/KWPredictorEvaluation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorEvaluationTask.cpp b/src/Learning/KWModeling/KWPredictorEvaluationTask.cpp index 613c3d564..0bc894a56 100644 --- a/src/Learning/KWModeling/KWPredictorEvaluationTask.cpp +++ b/src/Learning/KWModeling/KWPredictorEvaluationTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorEvaluationTask.h b/src/Learning/KWModeling/KWPredictorEvaluationTask.h index 0e27f0abc..71cb4720b 100644 --- a/src/Learning/KWModeling/KWPredictorEvaluationTask.h +++ b/src/Learning/KWModeling/KWPredictorEvaluationTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorNaiveBayes.cpp b/src/Learning/KWModeling/KWPredictorNaiveBayes.cpp index 071eb778c..95ad8189d 100644 --- a/src/Learning/KWModeling/KWPredictorNaiveBayes.cpp +++ b/src/Learning/KWModeling/KWPredictorNaiveBayes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorNaiveBayes.h b/src/Learning/KWModeling/KWPredictorNaiveBayes.h index 47f002f49..de45da582 100644 --- a/src/Learning/KWModeling/KWPredictorNaiveBayes.h +++ b/src/Learning/KWModeling/KWPredictorNaiveBayes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorReport.cpp b/src/Learning/KWModeling/KWPredictorReport.cpp index 801e4e7a5..03d719494 100644 --- a/src/Learning/KWModeling/KWPredictorReport.cpp +++ b/src/Learning/KWModeling/KWPredictorReport.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorReport.h b/src/Learning/KWModeling/KWPredictorReport.h index 3568992b0..70bfb4324 100644 --- a/src/Learning/KWModeling/KWPredictorReport.h +++ b/src/Learning/KWModeling/KWPredictorReport.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSelectionScore.cpp b/src/Learning/KWModeling/KWPredictorSelectionScore.cpp index f4c70bff6..86028ce8c 100644 --- a/src/Learning/KWModeling/KWPredictorSelectionScore.cpp +++ b/src/Learning/KWModeling/KWPredictorSelectionScore.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSelectionScore.h b/src/Learning/KWModeling/KWPredictorSelectionScore.h index dddef748a..3fd2f3e05 100644 --- a/src/Learning/KWModeling/KWPredictorSelectionScore.h +++ b/src/Learning/KWModeling/KWPredictorSelectionScore.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.cpp b/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.cpp index 0495a9b81..de01638e1 100644 --- a/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.cpp +++ b/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.h b/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.h index b66823126..755f59b62 100644 --- a/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.h +++ b/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayesOptimization.cpp b/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayesOptimization.cpp index aad0e7752..dd563c529 100644 --- a/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayesOptimization.cpp +++ b/src/Learning/KWModeling/KWPredictorSelectiveNaiveBayesOptimization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSpec.cpp b/src/Learning/KWModeling/KWPredictorSpec.cpp index af11c7fe5..22a580d69 100644 --- a/src/Learning/KWModeling/KWPredictorSpec.cpp +++ b/src/Learning/KWModeling/KWPredictorSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorSpec.h b/src/Learning/KWModeling/KWPredictorSpec.h index 35ca68074..298213689 100644 --- a/src/Learning/KWModeling/KWPredictorSpec.h +++ b/src/Learning/KWModeling/KWPredictorSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorUnivariate.cpp b/src/Learning/KWModeling/KWPredictorUnivariate.cpp index bd02d7e5c..3ad164ff4 100644 --- a/src/Learning/KWModeling/KWPredictorUnivariate.cpp +++ b/src/Learning/KWModeling/KWPredictorUnivariate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWPredictorUnivariate.h b/src/Learning/KWModeling/KWPredictorUnivariate.h index 50d62b173..cd3753282 100644 --- a/src/Learning/KWModeling/KWPredictorUnivariate.h +++ b/src/Learning/KWModeling/KWPredictorUnivariate.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWRecodingSpec.cpp b/src/Learning/KWModeling/KWRecodingSpec.cpp index dff291cd1..a461b3427 100644 --- a/src/Learning/KWModeling/KWRecodingSpec.cpp +++ b/src/Learning/KWModeling/KWRecodingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWRecodingSpec.h b/src/Learning/KWModeling/KWRecodingSpec.h index 82302dfba..1db2fd792 100644 --- a/src/Learning/KWModeling/KWRecodingSpec.h +++ b/src/Learning/KWModeling/KWRecodingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWSelectionParameters.cpp b/src/Learning/KWModeling/KWSelectionParameters.cpp index f18f5b657..9ed87e772 100644 --- a/src/Learning/KWModeling/KWSelectionParameters.cpp +++ b/src/Learning/KWModeling/KWSelectionParameters.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWSelectionParameters.h b/src/Learning/KWModeling/KWSelectionParameters.h index 6d69c209f..3b3cada2e 100644 --- a/src/Learning/KWModeling/KWSelectionParameters.h +++ b/src/Learning/KWModeling/KWSelectionParameters.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWTrainParameters.cpp b/src/Learning/KWModeling/KWTrainParameters.cpp index 739884751..086dd2c53 100644 --- a/src/Learning/KWModeling/KWTrainParameters.cpp +++ b/src/Learning/KWModeling/KWTrainParameters.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWTrainParameters.h b/src/Learning/KWModeling/KWTrainParameters.h index 6a0d0d5ce..dcb10eb8e 100644 --- a/src/Learning/KWModeling/KWTrainParameters.h +++ b/src/Learning/KWModeling/KWTrainParameters.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWTrainedPredictor.cpp b/src/Learning/KWModeling/KWTrainedPredictor.cpp index 98d80075f..0a5d7a2d6 100644 --- a/src/Learning/KWModeling/KWTrainedPredictor.cpp +++ b/src/Learning/KWModeling/KWTrainedPredictor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWModeling/KWTrainedPredictor.h b/src/Learning/KWModeling/KWTrainedPredictor.h index 63b1fdd9c..21712b8bb 100644 --- a/src/Learning/KWModeling/KWTrainedPredictor.h +++ b/src/Learning/KWModeling/KWTrainedPredictor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/CreateLargeFiles.cpp b/src/Learning/KWTest/CreateLargeFiles.cpp index 559e496e2..0f203d1ac 100644 --- a/src/Learning/KWTest/CreateLargeFiles.cpp +++ b/src/Learning/KWTest/CreateLargeFiles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/CreateLargeFiles.h b/src/Learning/KWTest/CreateLargeFiles.h index 1080e03bd..9d1b7dd53 100644 --- a/src/Learning/KWTest/CreateLargeFiles.h +++ b/src/Learning/KWTest/CreateLargeFiles.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/Divers.cpp b/src/Learning/KWTest/Divers.cpp index 4503643f3..167f2219b 100644 --- a/src/Learning/KWTest/Divers.cpp +++ b/src/Learning/KWTest/Divers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/Divers.h b/src/Learning/KWTest/Divers.h index faaaefa59..2cafd7b34 100644 --- a/src/Learning/KWTest/Divers.h +++ b/src/Learning/KWTest/Divers.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/HanoiTower.cpp b/src/Learning/KWTest/HanoiTower.cpp index ce9b3a455..fd254b89e 100644 --- a/src/Learning/KWTest/HanoiTower.cpp +++ b/src/Learning/KWTest/HanoiTower.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/HanoiTower.h b/src/Learning/KWTest/HanoiTower.h index 011688058..5cfa13d75 100644 --- a/src/Learning/KWTest/HanoiTower.h +++ b/src/Learning/KWTest/HanoiTower.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KDMultinomialSamplingStudy.cpp b/src/Learning/KWTest/KDMultinomialSamplingStudy.cpp index e03663727..fe03003a4 100644 --- a/src/Learning/KWTest/KDMultinomialSamplingStudy.cpp +++ b/src/Learning/KWTest/KDMultinomialSamplingStudy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KDMultinomialSamplingStudy.h b/src/Learning/KWTest/KDMultinomialSamplingStudy.h index 9d1e35464..2bd2e51a0 100644 --- a/src/Learning/KWTest/KDMultinomialSamplingStudy.h +++ b/src/Learning/KWTest/KDMultinomialSamplingStudy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWDataGridTest.cpp b/src/Learning/KWTest/KWDataGridTest.cpp index 1664c2978..a681456b9 100644 --- a/src/Learning/KWTest/KWDataGridTest.cpp +++ b/src/Learning/KWTest/KWDataGridTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWDataGridTest.h b/src/Learning/KWTest/KWDataGridTest.h index 26bf47aed..e30eb22df 100644 --- a/src/Learning/KWTest/KWDataGridTest.h +++ b/src/Learning/KWTest/KWDataGridTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWDensityEstimationTest.cpp b/src/Learning/KWTest/KWDensityEstimationTest.cpp index 50ff97610..e125da8aa 100644 --- a/src/Learning/KWTest/KWDensityEstimationTest.cpp +++ b/src/Learning/KWTest/KWDensityEstimationTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWDensityEstimationTest.h b/src/Learning/KWTest/KWDensityEstimationTest.h index 99cc5b770..6061decfc 100644 --- a/src/Learning/KWTest/KWDensityEstimationTest.h +++ b/src/Learning/KWTest/KWDensityEstimationTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWDiscretizerTest.cpp b/src/Learning/KWTest/KWDiscretizerTest.cpp index c81846e27..450324bbf 100644 --- a/src/Learning/KWTest/KWDiscretizerTest.cpp +++ b/src/Learning/KWTest/KWDiscretizerTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWDiscretizerTest.h b/src/Learning/KWTest/KWDiscretizerTest.h index 8f2bb198b..5a4718ae5 100644 --- a/src/Learning/KWTest/KWDiscretizerTest.h +++ b/src/Learning/KWTest/KWDiscretizerTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWGrouperTest.cpp b/src/Learning/KWTest/KWGrouperTest.cpp index 00d03efa6..a5524e65a 100644 --- a/src/Learning/KWTest/KWGrouperTest.cpp +++ b/src/Learning/KWTest/KWGrouperTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWGrouperTest.h b/src/Learning/KWTest/KWGrouperTest.h index 0075da309..a8861c25d 100644 --- a/src/Learning/KWTest/KWGrouperTest.h +++ b/src/Learning/KWTest/KWGrouperTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWHierarchicalMultinomialStudy.cpp b/src/Learning/KWTest/KWHierarchicalMultinomialStudy.cpp index 80cf31ee7..15c61fcde 100644 --- a/src/Learning/KWTest/KWHierarchicalMultinomialStudy.cpp +++ b/src/Learning/KWTest/KWHierarchicalMultinomialStudy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWHierarchicalMultinomialStudy.h b/src/Learning/KWTest/KWHierarchicalMultinomialStudy.h index 303d14718..763bc1dda 100644 --- a/src/Learning/KWTest/KWHierarchicalMultinomialStudy.h +++ b/src/Learning/KWTest/KWHierarchicalMultinomialStudy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWNewType.cpp b/src/Learning/KWTest/KWNewType.cpp index 25edcbfe1..ce7418459 100644 --- a/src/Learning/KWTest/KWNewType.cpp +++ b/src/Learning/KWTest/KWNewType.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWNewType.h b/src/Learning/KWTest/KWNewType.h index ba495c2ec..99062f017 100644 --- a/src/Learning/KWTest/KWNewType.h +++ b/src/Learning/KWTest/KWNewType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWSNBStudy.cpp b/src/Learning/KWTest/KWSNBStudy.cpp index 92bb9c24e..640a6332e 100644 --- a/src/Learning/KWTest/KWSNBStudy.cpp +++ b/src/Learning/KWTest/KWSNBStudy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWSNBStudy.h b/src/Learning/KWTest/KWSNBStudy.h index 3d819fdea..ab1f3c1a1 100644 --- a/src/Learning/KWTest/KWSNBStudy.h +++ b/src/Learning/KWTest/KWSNBStudy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWTextParser.cpp b/src/Learning/KWTest/KWTextParser.cpp index 731f86b0f..8932c880d 100644 --- a/src/Learning/KWTest/KWTextParser.cpp +++ b/src/Learning/KWTest/KWTextParser.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/KWTextParser.h b/src/Learning/KWTest/KWTextParser.h index 01c773ed4..a8622ac69 100644 --- a/src/Learning/KWTest/KWTextParser.h +++ b/src/Learning/KWTest/KWTextParser.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/SizeofStudy.cpp b/src/Learning/KWTest/SizeofStudy.cpp index a7785b5c0..799a7246b 100644 --- a/src/Learning/KWTest/SizeofStudy.cpp +++ b/src/Learning/KWTest/SizeofStudy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/SizeofStudy.h b/src/Learning/KWTest/SizeofStudy.h index c597a82d4..4ce67275e 100644 --- a/src/Learning/KWTest/SizeofStudy.h +++ b/src/Learning/KWTest/SizeofStudy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/SparseStudy.cpp b/src/Learning/KWTest/SparseStudy.cpp index ca460a80f..2f949ca0a 100644 --- a/src/Learning/KWTest/SparseStudy.cpp +++ b/src/Learning/KWTest/SparseStudy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/SparseStudy.h b/src/Learning/KWTest/SparseStudy.h index f3f7e526b..aa2b2432c 100644 --- a/src/Learning/KWTest/SparseStudy.h +++ b/src/Learning/KWTest/SparseStudy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/StreamTest.cpp b/src/Learning/KWTest/StreamTest.cpp index 17ec1caf5..34092315f 100644 --- a/src/Learning/KWTest/StreamTest.cpp +++ b/src/Learning/KWTest/StreamTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/StreamTest.h b/src/Learning/KWTest/StreamTest.h index a94a3d618..0e7903042 100644 --- a/src/Learning/KWTest/StreamTest.h +++ b/src/Learning/KWTest/StreamTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/SystemDivers.cpp b/src/Learning/KWTest/SystemDivers.cpp index 533090b43..9a46d709e 100644 --- a/src/Learning/KWTest/SystemDivers.cpp +++ b/src/Learning/KWTest/SystemDivers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/SystemDivers.h b/src/Learning/KWTest/SystemDivers.h index efc82ec47..e6240e944 100644 --- a/src/Learning/KWTest/SystemDivers.h +++ b/src/Learning/KWTest/SystemDivers.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/Test.cpp b/src/Learning/KWTest/Test.cpp index 1b059c25e..0c382d178 100644 --- a/src/Learning/KWTest/Test.cpp +++ b/src/Learning/KWTest/Test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWTest/Test.h b/src/Learning/KWTest/Test.h index 06fe822e0..029efc4c6 100644 --- a/src/Learning/KWTest/Test.h +++ b/src/Learning/KWTest/Test.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDConstructionDomainView.cpp b/src/Learning/KWUserInterface/KDConstructionDomainView.cpp index 697094a63..befcfb55f 100644 --- a/src/Learning/KWUserInterface/KDConstructionDomainView.cpp +++ b/src/Learning/KWUserInterface/KDConstructionDomainView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDConstructionDomainView.h b/src/Learning/KWUserInterface/KDConstructionDomainView.h index d833dbd90..6b064ee98 100644 --- a/src/Learning/KWUserInterface/KDConstructionDomainView.h +++ b/src/Learning/KWUserInterface/KDConstructionDomainView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDConstructionRuleArrayView.cpp b/src/Learning/KWUserInterface/KDConstructionRuleArrayView.cpp index ef5ea807c..c95844ecd 100644 --- a/src/Learning/KWUserInterface/KDConstructionRuleArrayView.cpp +++ b/src/Learning/KWUserInterface/KDConstructionRuleArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDConstructionRuleArrayView.h b/src/Learning/KWUserInterface/KDConstructionRuleArrayView.h index 7b88c08de..c0683d185 100644 --- a/src/Learning/KWUserInterface/KDConstructionRuleArrayView.h +++ b/src/Learning/KWUserInterface/KDConstructionRuleArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDConstructionRuleView.cpp b/src/Learning/KWUserInterface/KDConstructionRuleView.cpp index f75f48c10..83ecbf906 100644 --- a/src/Learning/KWUserInterface/KDConstructionRuleView.cpp +++ b/src/Learning/KWUserInterface/KDConstructionRuleView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDConstructionRuleView.h b/src/Learning/KWUserInterface/KDConstructionRuleView.h index d1a49abb0..bd05c4f6a 100644 --- a/src/Learning/KWUserInterface/KDConstructionRuleView.h +++ b/src/Learning/KWUserInterface/KDConstructionRuleView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.cpp b/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.cpp index f57c3b157..820e7f83b 100644 --- a/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.cpp +++ b/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.h b/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.h index f62d81f72..485c46ac9 100644 --- a/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.h +++ b/src/Learning/KWUserInterface/KDDataPreparationAttributeCreationTaskView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDTextFeatureSpecView.cpp b/src/Learning/KWUserInterface/KDTextFeatureSpecView.cpp index daa4b4bdf..4646f0a5f 100644 --- a/src/Learning/KWUserInterface/KDTextFeatureSpecView.cpp +++ b/src/Learning/KWUserInterface/KDTextFeatureSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KDTextFeatureSpecView.h b/src/Learning/KWUserInterface/KDTextFeatureSpecView.h index 0b62a9897..50ebbce02 100644 --- a/src/Learning/KWUserInterface/KDTextFeatureSpecView.h +++ b/src/Learning/KWUserInterface/KDTextFeatureSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.cpp b/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.cpp index 1d9e53269..7cba079bf 100644 --- a/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.cpp +++ b/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.h b/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.h index 8417689af..5f85ce532 100644 --- a/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.h +++ b/src/Learning/KWUserInterface/KWAttributeConstructionSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeNameArrayView.cpp b/src/Learning/KWUserInterface/KWAttributeNameArrayView.cpp index 993da637b..599708040 100644 --- a/src/Learning/KWUserInterface/KWAttributeNameArrayView.cpp +++ b/src/Learning/KWUserInterface/KWAttributeNameArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeNameArrayView.h b/src/Learning/KWUserInterface/KWAttributeNameArrayView.h index 3ae8f1762..f443650b4 100644 --- a/src/Learning/KWUserInterface/KWAttributeNameArrayView.h +++ b/src/Learning/KWUserInterface/KWAttributeNameArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeNameView.cpp b/src/Learning/KWUserInterface/KWAttributeNameView.cpp index 66fc08e87..3e182e79f 100644 --- a/src/Learning/KWUserInterface/KWAttributeNameView.cpp +++ b/src/Learning/KWUserInterface/KWAttributeNameView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeNameView.h b/src/Learning/KWUserInterface/KWAttributeNameView.h index 6d3270b76..752db2d01 100644 --- a/src/Learning/KWUserInterface/KWAttributeNameView.h +++ b/src/Learning/KWUserInterface/KWAttributeNameView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairNameArrayView.cpp b/src/Learning/KWUserInterface/KWAttributePairNameArrayView.cpp index 62ebe7f70..91350252e 100644 --- a/src/Learning/KWUserInterface/KWAttributePairNameArrayView.cpp +++ b/src/Learning/KWUserInterface/KWAttributePairNameArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairNameArrayView.h b/src/Learning/KWUserInterface/KWAttributePairNameArrayView.h index 0250d8e37..d8e3a0576 100644 --- a/src/Learning/KWUserInterface/KWAttributePairNameArrayView.h +++ b/src/Learning/KWUserInterface/KWAttributePairNameArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairNameView.cpp b/src/Learning/KWUserInterface/KWAttributePairNameView.cpp index 164f17505..d80193b6e 100644 --- a/src/Learning/KWUserInterface/KWAttributePairNameView.cpp +++ b/src/Learning/KWUserInterface/KWAttributePairNameView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairNameView.h b/src/Learning/KWUserInterface/KWAttributePairNameView.h index 85156fc28..a3ae0f5ac 100644 --- a/src/Learning/KWUserInterface/KWAttributePairNameView.h +++ b/src/Learning/KWUserInterface/KWAttributePairNameView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.cpp b/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.cpp index 45cfcd056..c6fa2a28d 100644 --- a/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.cpp +++ b/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.h b/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.h index 95b6a6dd1..1516a2481 100644 --- a/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.h +++ b/src/Learning/KWUserInterface/KWAttributePairsSpecFileView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairsSpecView.cpp b/src/Learning/KWUserInterface/KWAttributePairsSpecView.cpp index 62f642d54..9658308d2 100644 --- a/src/Learning/KWUserInterface/KWAttributePairsSpecView.cpp +++ b/src/Learning/KWUserInterface/KWAttributePairsSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributePairsSpecView.h b/src/Learning/KWUserInterface/KWAttributePairsSpecView.h index 0c916c968..59688ed80 100644 --- a/src/Learning/KWUserInterface/KWAttributePairsSpecView.h +++ b/src/Learning/KWUserInterface/KWAttributePairsSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeSpec.cpp b/src/Learning/KWUserInterface/KWAttributeSpec.cpp index 0547acd1c..2fc9d650c 100644 --- a/src/Learning/KWUserInterface/KWAttributeSpec.cpp +++ b/src/Learning/KWUserInterface/KWAttributeSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeSpec.h b/src/Learning/KWUserInterface/KWAttributeSpec.h index a0aa791f1..ab5866d54 100644 --- a/src/Learning/KWUserInterface/KWAttributeSpec.h +++ b/src/Learning/KWUserInterface/KWAttributeSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeSpecArrayView.cpp b/src/Learning/KWUserInterface/KWAttributeSpecArrayView.cpp index cc3b297b4..032879370 100644 --- a/src/Learning/KWUserInterface/KWAttributeSpecArrayView.cpp +++ b/src/Learning/KWUserInterface/KWAttributeSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeSpecArrayView.h b/src/Learning/KWUserInterface/KWAttributeSpecArrayView.h index 14b3d7808..eb1d72612 100644 --- a/src/Learning/KWUserInterface/KWAttributeSpecArrayView.h +++ b/src/Learning/KWUserInterface/KWAttributeSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeSpecView.cpp b/src/Learning/KWUserInterface/KWAttributeSpecView.cpp index e1441b094..5158aee6a 100644 --- a/src/Learning/KWUserInterface/KWAttributeSpecView.cpp +++ b/src/Learning/KWUserInterface/KWAttributeSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWAttributeSpecView.h b/src/Learning/KWUserInterface/KWAttributeSpecView.h index 79eb6263f..d9fa701e1 100644 --- a/src/Learning/KWUserInterface/KWAttributeSpecView.h +++ b/src/Learning/KWUserInterface/KWAttributeSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.cpp b/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.cpp index 8e8fc8122..077950a89 100644 --- a/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.cpp +++ b/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.h b/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.h index 5c87cb07e..526f06031 100644 --- a/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.h +++ b/src/Learning/KWUserInterface/KWBenchmarkClassSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.cpp b/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.cpp index c38f68518..f9f0d2576 100644 --- a/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.cpp +++ b/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.h b/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.h index 3dde64ee5..4fbf6c4cc 100644 --- a/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.h +++ b/src/Learning/KWUserInterface/KWBenchmarkSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWBenchmarkSpecView.cpp b/src/Learning/KWUserInterface/KWBenchmarkSpecView.cpp index c53c7e32f..0547107e1 100644 --- a/src/Learning/KWUserInterface/KWBenchmarkSpecView.cpp +++ b/src/Learning/KWUserInterface/KWBenchmarkSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWBenchmarkSpecView.h b/src/Learning/KWUserInterface/KWBenchmarkSpecView.h index e235f40e9..4871a62cd 100644 --- a/src/Learning/KWUserInterface/KWBenchmarkSpecView.h +++ b/src/Learning/KWUserInterface/KWBenchmarkSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassAttributeHelpList.cpp b/src/Learning/KWUserInterface/KWClassAttributeHelpList.cpp index 055983a71..491916810 100644 --- a/src/Learning/KWUserInterface/KWClassAttributeHelpList.cpp +++ b/src/Learning/KWUserInterface/KWClassAttributeHelpList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassAttributeHelpList.h b/src/Learning/KWUserInterface/KWClassAttributeHelpList.h index a29075030..f7621e3a3 100644 --- a/src/Learning/KWUserInterface/KWClassAttributeHelpList.h +++ b/src/Learning/KWUserInterface/KWClassAttributeHelpList.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassBuilderView.cpp b/src/Learning/KWUserInterface/KWClassBuilderView.cpp index 5c30b3f44..403576291 100644 --- a/src/Learning/KWUserInterface/KWClassBuilderView.cpp +++ b/src/Learning/KWUserInterface/KWClassBuilderView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassBuilderView.h b/src/Learning/KWUserInterface/KWClassBuilderView.h index 295160262..2549373ce 100644 --- a/src/Learning/KWUserInterface/KWClassBuilderView.h +++ b/src/Learning/KWUserInterface/KWClassBuilderView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassManagement.cpp b/src/Learning/KWUserInterface/KWClassManagement.cpp index 6afd3757f..ff374098c 100644 --- a/src/Learning/KWUserInterface/KWClassManagement.cpp +++ b/src/Learning/KWUserInterface/KWClassManagement.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassManagement.h b/src/Learning/KWUserInterface/KWClassManagement.h index a382f1269..6dfdbb018 100644 --- a/src/Learning/KWUserInterface/KWClassManagement.h +++ b/src/Learning/KWUserInterface/KWClassManagement.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassManagementView.cpp b/src/Learning/KWUserInterface/KWClassManagementView.cpp index 160b03f18..c16db158a 100644 --- a/src/Learning/KWUserInterface/KWClassManagementView.cpp +++ b/src/Learning/KWUserInterface/KWClassManagementView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassManagementView.h b/src/Learning/KWUserInterface/KWClassManagementView.h index e9e24b301..9460f213c 100644 --- a/src/Learning/KWUserInterface/KWClassManagementView.h +++ b/src/Learning/KWUserInterface/KWClassManagementView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassSpec.cpp b/src/Learning/KWUserInterface/KWClassSpec.cpp index c19f9d9db..a3ef24dd1 100644 --- a/src/Learning/KWUserInterface/KWClassSpec.cpp +++ b/src/Learning/KWUserInterface/KWClassSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassSpec.h b/src/Learning/KWUserInterface/KWClassSpec.h index 78ba35095..2a8d37bf2 100644 --- a/src/Learning/KWUserInterface/KWClassSpec.h +++ b/src/Learning/KWUserInterface/KWClassSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassSpecArrayView.cpp b/src/Learning/KWUserInterface/KWClassSpecArrayView.cpp index 71d696dde..811682f4f 100644 --- a/src/Learning/KWUserInterface/KWClassSpecArrayView.cpp +++ b/src/Learning/KWUserInterface/KWClassSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassSpecArrayView.h b/src/Learning/KWUserInterface/KWClassSpecArrayView.h index f98a89a90..96aa97de2 100644 --- a/src/Learning/KWUserInterface/KWClassSpecArrayView.h +++ b/src/Learning/KWUserInterface/KWClassSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassSpecView.cpp b/src/Learning/KWUserInterface/KWClassSpecView.cpp index 5e3787be9..29e74727f 100644 --- a/src/Learning/KWUserInterface/KWClassSpecView.cpp +++ b/src/Learning/KWUserInterface/KWClassSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWClassSpecView.h b/src/Learning/KWUserInterface/KWClassSpecView.h index a3acc23cd..de1f43b2b 100644 --- a/src/Learning/KWUserInterface/KWClassSpecView.h +++ b/src/Learning/KWUserInterface/KWClassSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.cpp b/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.cpp index fc5a964f6..7b06db071 100644 --- a/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.cpp +++ b/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.h b/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.h index 3a325ca28..f1891f9a9 100644 --- a/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.h +++ b/src/Learning/KWUserInterface/KWDataGridOptimizerParametersView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.cpp b/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.cpp index 96c36ab0c..9aa3e0535 100644 --- a/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.cpp +++ b/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.h b/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.h index 8ca4b0d75..728dcda06 100644 --- a/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.h +++ b/src/Learning/KWUserInterface/KWDataTableKeyExtractorView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDataTableSorterView.cpp b/src/Learning/KWUserInterface/KWDataTableSorterView.cpp index 13b9e8707..59b58fecd 100644 --- a/src/Learning/KWUserInterface/KWDataTableSorterView.cpp +++ b/src/Learning/KWUserInterface/KWDataTableSorterView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDataTableSorterView.h b/src/Learning/KWUserInterface/KWDataTableSorterView.h index bcdf897f7..cccc0fb03 100644 --- a/src/Learning/KWUserInterface/KWDataTableSorterView.h +++ b/src/Learning/KWUserInterface/KWDataTableSorterView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.cpp b/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.cpp index b5e331873..ec603e84a 100644 --- a/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.cpp +++ b/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.h b/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.h index 734968c50..1c26cbaf4 100644 --- a/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.h +++ b/src/Learning/KWUserInterface/KWDatabaseAttributeValuesHelpList.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.cpp b/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.cpp index 9c3df47a9..246823eb4 100644 --- a/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.cpp +++ b/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.h b/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.h index f56733aa2..9c79f8ed6 100644 --- a/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.h +++ b/src/Learning/KWUserInterface/KWDatabaseFormatDetectorView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseTransferView.cpp b/src/Learning/KWUserInterface/KWDatabaseTransferView.cpp index 8c031772a..74a8d5f28 100644 --- a/src/Learning/KWUserInterface/KWDatabaseTransferView.cpp +++ b/src/Learning/KWUserInterface/KWDatabaseTransferView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseTransferView.h b/src/Learning/KWUserInterface/KWDatabaseTransferView.h index 3789203cd..c66ea06c7 100644 --- a/src/Learning/KWUserInterface/KWDatabaseTransferView.h +++ b/src/Learning/KWUserInterface/KWDatabaseTransferView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseView.cpp b/src/Learning/KWUserInterface/KWDatabaseView.cpp index 2a4e2ebf6..6a93dd42d 100644 --- a/src/Learning/KWUserInterface/KWDatabaseView.cpp +++ b/src/Learning/KWUserInterface/KWDatabaseView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDatabaseView.h b/src/Learning/KWUserInterface/KWDatabaseView.h index 5f67481c3..9a496666f 100644 --- a/src/Learning/KWUserInterface/KWDatabaseView.h +++ b/src/Learning/KWUserInterface/KWDatabaseView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDiscretizerSpecView.cpp b/src/Learning/KWUserInterface/KWDiscretizerSpecView.cpp index a5dcbc171..483af3c8e 100644 --- a/src/Learning/KWUserInterface/KWDiscretizerSpecView.cpp +++ b/src/Learning/KWUserInterface/KWDiscretizerSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWDiscretizerSpecView.h b/src/Learning/KWUserInterface/KWDiscretizerSpecView.h index 4efe9d353..a52549f76 100644 --- a/src/Learning/KWUserInterface/KWDiscretizerSpecView.h +++ b/src/Learning/KWUserInterface/KWDiscretizerSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.cpp b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.cpp index 9fb7c976a..e9250db7c 100644 --- a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.cpp +++ b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.h b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.h index 810f9c134..9579954d6 100644 --- a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.h +++ b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.cpp b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.cpp index f8e25fe58..3f69b605b 100644 --- a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.cpp +++ b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.h b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.h index d6bd72de3..900066a55 100644 --- a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.h +++ b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.cpp b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.cpp index 49135e91f..953fbb7b5 100644 --- a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.cpp +++ b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.h b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.h index 71ba8ed04..03b4f10a4 100644 --- a/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.h +++ b/src/Learning/KWUserInterface/KWEvaluatedPredictorSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWGrouperSpecView.cpp b/src/Learning/KWUserInterface/KWGrouperSpecView.cpp index e3042542c..290f1de43 100644 --- a/src/Learning/KWUserInterface/KWGrouperSpecView.cpp +++ b/src/Learning/KWUserInterface/KWGrouperSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWGrouperSpecView.h b/src/Learning/KWUserInterface/KWGrouperSpecView.h index ce57b0786..bbaeab0a9 100644 --- a/src/Learning/KWUserInterface/KWGrouperSpecView.h +++ b/src/Learning/KWUserInterface/KWGrouperSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWLearningBenchmarkView.cpp b/src/Learning/KWUserInterface/KWLearningBenchmarkView.cpp index 23d450f0f..4f988c0ce 100644 --- a/src/Learning/KWUserInterface/KWLearningBenchmarkView.cpp +++ b/src/Learning/KWUserInterface/KWLearningBenchmarkView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWLearningBenchmarkView.h b/src/Learning/KWUserInterface/KWLearningBenchmarkView.h index c45051abd..c0daf6bdd 100644 --- a/src/Learning/KWUserInterface/KWLearningBenchmarkView.h +++ b/src/Learning/KWUserInterface/KWLearningBenchmarkView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTClassBuilderView.cpp b/src/Learning/KWUserInterface/KWMTClassBuilderView.cpp index e53190ace..510cc275c 100644 --- a/src/Learning/KWUserInterface/KWMTClassBuilderView.cpp +++ b/src/Learning/KWUserInterface/KWMTClassBuilderView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTClassBuilderView.h b/src/Learning/KWUserInterface/KWMTClassBuilderView.h index 42cb35da8..1f7f175ad 100644 --- a/src/Learning/KWUserInterface/KWMTClassBuilderView.h +++ b/src/Learning/KWUserInterface/KWMTClassBuilderView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.cpp b/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.cpp index 6a8342ae4..ed497c188 100644 --- a/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.cpp +++ b/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.h b/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.h index e68ca8e01..d0931c879 100644 --- a/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.h +++ b/src/Learning/KWUserInterface/KWMTDatabaseMappingArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTDatabaseMappingView.cpp b/src/Learning/KWUserInterface/KWMTDatabaseMappingView.cpp index 7c2448a1c..3d5b7a6e8 100644 --- a/src/Learning/KWUserInterface/KWMTDatabaseMappingView.cpp +++ b/src/Learning/KWUserInterface/KWMTDatabaseMappingView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTDatabaseMappingView.h b/src/Learning/KWUserInterface/KWMTDatabaseMappingView.h index 42ae8d868..913ebc841 100644 --- a/src/Learning/KWUserInterface/KWMTDatabaseMappingView.h +++ b/src/Learning/KWUserInterface/KWMTDatabaseMappingView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.cpp b/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.cpp index 17c22aa24..6921a6a9b 100644 --- a/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.cpp +++ b/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.h b/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.h index c2a508d6e..522180a8c 100644 --- a/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.h +++ b/src/Learning/KWUserInterface/KWMTDatabaseTextFileView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorDataGridView.cpp b/src/Learning/KWUserInterface/KWPredictorDataGridView.cpp index 12a9cb975..719766e70 100644 --- a/src/Learning/KWUserInterface/KWPredictorDataGridView.cpp +++ b/src/Learning/KWUserInterface/KWPredictorDataGridView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorDataGridView.h b/src/Learning/KWUserInterface/KWPredictorDataGridView.h index a4a93af95..b3b99f947 100644 --- a/src/Learning/KWUserInterface/KWPredictorDataGridView.h +++ b/src/Learning/KWUserInterface/KWPredictorDataGridView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorEvaluator.cpp b/src/Learning/KWUserInterface/KWPredictorEvaluator.cpp index d43680a24..f8a53b324 100644 --- a/src/Learning/KWUserInterface/KWPredictorEvaluator.cpp +++ b/src/Learning/KWUserInterface/KWPredictorEvaluator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorEvaluator.h b/src/Learning/KWUserInterface/KWPredictorEvaluator.h index 692f2c961..743032c29 100644 --- a/src/Learning/KWUserInterface/KWPredictorEvaluator.h +++ b/src/Learning/KWUserInterface/KWPredictorEvaluator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorEvaluatorView.cpp b/src/Learning/KWUserInterface/KWPredictorEvaluatorView.cpp index 04438b202..ac646a525 100644 --- a/src/Learning/KWUserInterface/KWPredictorEvaluatorView.cpp +++ b/src/Learning/KWUserInterface/KWPredictorEvaluatorView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorEvaluatorView.h b/src/Learning/KWUserInterface/KWPredictorEvaluatorView.h index 119736683..58b1ec057 100644 --- a/src/Learning/KWUserInterface/KWPredictorEvaluatorView.h +++ b/src/Learning/KWUserInterface/KWPredictorEvaluatorView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.cpp b/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.cpp index 7e1b52e2b..a43974def 100644 --- a/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.cpp +++ b/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.h b/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.h index 04c74a14f..36c129268 100644 --- a/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.h +++ b/src/Learning/KWUserInterface/KWPredictorSelectiveNaiveBayesView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorSpecArrayView.cpp b/src/Learning/KWUserInterface/KWPredictorSpecArrayView.cpp index af910b3f7..79304a596 100644 --- a/src/Learning/KWUserInterface/KWPredictorSpecArrayView.cpp +++ b/src/Learning/KWUserInterface/KWPredictorSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorSpecArrayView.h b/src/Learning/KWUserInterface/KWPredictorSpecArrayView.h index 293bfe171..94181796b 100644 --- a/src/Learning/KWUserInterface/KWPredictorSpecArrayView.h +++ b/src/Learning/KWUserInterface/KWPredictorSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorSpecView.cpp b/src/Learning/KWUserInterface/KWPredictorSpecView.cpp index de47c6c1e..b026ec754 100644 --- a/src/Learning/KWUserInterface/KWPredictorSpecView.cpp +++ b/src/Learning/KWUserInterface/KWPredictorSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorSpecView.h b/src/Learning/KWUserInterface/KWPredictorSpecView.h index 54c4aa403..5f922a44c 100644 --- a/src/Learning/KWUserInterface/KWPredictorSpecView.h +++ b/src/Learning/KWUserInterface/KWPredictorSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorView.cpp b/src/Learning/KWUserInterface/KWPredictorView.cpp index ad8a4b7d8..21e188e6f 100644 --- a/src/Learning/KWUserInterface/KWPredictorView.cpp +++ b/src/Learning/KWUserInterface/KWPredictorView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPredictorView.h b/src/Learning/KWUserInterface/KWPredictorView.h index d3f8da5bc..77910cb98 100644 --- a/src/Learning/KWUserInterface/KWPredictorView.h +++ b/src/Learning/KWUserInterface/KWPredictorView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.cpp b/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.cpp index c51f15e1f..9825db257 100644 --- a/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.cpp +++ b/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.h b/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.h index 50b336698..9720e21e7 100644 --- a/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.h +++ b/src/Learning/KWUserInterface/KWPreprocessingSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPreprocessingSpecView.cpp b/src/Learning/KWUserInterface/KWPreprocessingSpecView.cpp index 79346a6a9..87a33a176 100644 --- a/src/Learning/KWUserInterface/KWPreprocessingSpecView.cpp +++ b/src/Learning/KWUserInterface/KWPreprocessingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWPreprocessingSpecView.h b/src/Learning/KWUserInterface/KWPreprocessingSpecView.h index 9b6a18d18..d69813036 100644 --- a/src/Learning/KWUserInterface/KWPreprocessingSpecView.h +++ b/src/Learning/KWUserInterface/KWPreprocessingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWRecodingSpecView.cpp b/src/Learning/KWUserInterface/KWRecodingSpecView.cpp index 45f1fc670..22ea47bc9 100644 --- a/src/Learning/KWUserInterface/KWRecodingSpecView.cpp +++ b/src/Learning/KWUserInterface/KWRecodingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWRecodingSpecView.h b/src/Learning/KWUserInterface/KWRecodingSpecView.h index c8f1b1b4a..618f988ba 100644 --- a/src/Learning/KWUserInterface/KWRecodingSpecView.h +++ b/src/Learning/KWUserInterface/KWRecodingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.cpp b/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.cpp index 9b7397cf8..6c9fcfb5c 100644 --- a/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.cpp +++ b/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.h b/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.h index 76fff9f1a..09ee8ff2c 100644 --- a/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.h +++ b/src/Learning/KWUserInterface/KWSTDatabaseTextFileView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWSelectionParametersView.cpp b/src/Learning/KWUserInterface/KWSelectionParametersView.cpp index 2bffbe9e5..8d6c2df09 100644 --- a/src/Learning/KWUserInterface/KWSelectionParametersView.cpp +++ b/src/Learning/KWUserInterface/KWSelectionParametersView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWSelectionParametersView.h b/src/Learning/KWUserInterface/KWSelectionParametersView.h index 4a0efd0bd..69ddf7609 100644 --- a/src/Learning/KWUserInterface/KWSelectionParametersView.h +++ b/src/Learning/KWUserInterface/KWSelectionParametersView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.cpp b/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.cpp index d9b151163..db97caa65 100644 --- a/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.cpp +++ b/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.h b/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.h index 689f7a9fd..b2eb20e52 100644 --- a/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.h +++ b/src/Learning/KWUserInterface/KWSortAttributeNameArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWTrainParametersView.cpp b/src/Learning/KWUserInterface/KWTrainParametersView.cpp index 46525561f..4d2639070 100644 --- a/src/Learning/KWUserInterface/KWTrainParametersView.cpp +++ b/src/Learning/KWUserInterface/KWTrainParametersView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUserInterface/KWTrainParametersView.h b/src/Learning/KWUserInterface/KWTrainParametersView.h index 2bcbcbe5d..0e2c1f6e3 100644 --- a/src/Learning/KWUserInterface/KWTrainParametersView.h +++ b/src/Learning/KWUserInterface/KWTrainParametersView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/KWKhiopsVersion.h b/src/Learning/KWUtils/KWKhiopsVersion.h index 6aeba98c3..7b1018c4e 100644 --- a/src/Learning/KWUtils/KWKhiopsVersion.h +++ b/src/Learning/KWUtils/KWKhiopsVersion.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. @@ -13,4 +13,4 @@ #define KHIOPS_VERSION str(10.1.5) // Copyright -#define KHIOPS_COPYRIGHT_LABEL str((c)2023 Orange - All rights reserved.) +#define KHIOPS_COPYRIGHT_LABEL str((c)2024 Orange - All rights reserved.) diff --git a/src/Learning/KWUtils/KWVersion.cpp b/src/Learning/KWUtils/KWVersion.cpp index 76bb523b5..b01b34d95 100644 --- a/src/Learning/KWUtils/KWVersion.cpp +++ b/src/Learning/KWUtils/KWVersion.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/KWVersion.h b/src/Learning/KWUtils/KWVersion.h index da043680e..685c52870 100644 --- a/src/Learning/KWUtils/KWVersion.h +++ b/src/Learning/KWUtils/KWVersion.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/LMLicenseManager.cpp b/src/Learning/KWUtils/LMLicenseManager.cpp index fea84bac0..e6f716d82 100644 --- a/src/Learning/KWUtils/LMLicenseManager.cpp +++ b/src/Learning/KWUtils/LMLicenseManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/LMLicenseManager.h b/src/Learning/KWUtils/LMLicenseManager.h index 2dd5caa06..168c3660f 100644 --- a/src/Learning/KWUtils/LMLicenseManager.h +++ b/src/Learning/KWUtils/LMLicenseManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/LMLicenseService.cpp b/src/Learning/KWUtils/LMLicenseService.cpp index f57aa9c8f..7db6d1485 100644 --- a/src/Learning/KWUtils/LMLicenseService.cpp +++ b/src/Learning/KWUtils/LMLicenseService.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/LMLicenseService.h b/src/Learning/KWUtils/LMLicenseService.h index ed6f4be92..22069f846 100644 --- a/src/Learning/KWUtils/LMLicenseService.h +++ b/src/Learning/KWUtils/LMLicenseService.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/ProfileStats.cpp b/src/Learning/KWUtils/ProfileStats.cpp index 17c2647bf..8ae8e37c9 100644 --- a/src/Learning/KWUtils/ProfileStats.cpp +++ b/src/Learning/KWUtils/ProfileStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KWUtils/ProfileStats.h b/src/Learning/KWUtils/ProfileStats.h index 4abf301da..13aaab3f6 100644 --- a/src/Learning/KWUtils/ProfileStats.h +++ b/src/Learning/KWUtils/ProfileStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KNIStream.cpp b/src/Learning/KhiopsNativeInterface/KNIStream.cpp index f91a70793..f7e68076d 100644 --- a/src/Learning/KhiopsNativeInterface/KNIStream.cpp +++ b/src/Learning/KhiopsNativeInterface/KNIStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KNIStream.h b/src/Learning/KhiopsNativeInterface/KNIStream.h index 7a41ce464..1f3dc1e24 100644 --- a/src/Learning/KhiopsNativeInterface/KNIStream.h +++ b/src/Learning/KhiopsNativeInterface/KNIStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.cpp b/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.cpp index f8ae3ea04..c0802c2b0 100644 --- a/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.cpp +++ b/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.h b/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.h index 26eab6cce..0cf342c56 100644 --- a/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.h +++ b/src/Learning/KhiopsNativeInterface/KWDataTableDriverStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.cpp b/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.cpp index a358a1d58..eb2b8aaac 100644 --- a/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.cpp +++ b/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.h b/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.h index f756adb62..79a1fc9f9 100644 --- a/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.h +++ b/src/Learning/KhiopsNativeInterface/KWMTDatabaseStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.cpp b/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.cpp index 7cc332e8f..c4ccf02cd 100644 --- a/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.cpp +++ b/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.h b/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.h index 0703f6eaf..98fb8ba3a 100644 --- a/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.h +++ b/src/Learning/KhiopsNativeInterface/KWSTDatabaseStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.cpp b/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.cpp index 8ea6c5b5e..2ee16239e 100644 --- a/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.cpp +++ b/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.h b/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.h index 6a53d99bf..565cf0da1 100644 --- a/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.h +++ b/src/Learning/KhiopsNativeInterface/KhiopsNativeInterface.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/KhiopsNativeInterface/resource.h b/src/Learning/KhiopsNativeInterface/resource.h index 77f9ab77a..5abd6e0c0 100644 --- a/src/Learning/KhiopsNativeInterface/resource.h +++ b/src/Learning/KhiopsNativeInterface/resource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHBin.cpp b/src/Learning/MHHistograms/MHBin.cpp index 37f258486..a6caa9a23 100644 --- a/src/Learning/MHHistograms/MHBin.cpp +++ b/src/Learning/MHHistograms/MHBin.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHBin.h b/src/Learning/MHHistograms/MHBin.h index 172cc2331..65e94ff20 100644 --- a/src/Learning/MHHistograms/MHBin.h +++ b/src/Learning/MHHistograms/MHBin.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHContinuousLimits.cpp b/src/Learning/MHHistograms/MHContinuousLimits.cpp index 3786a91bc..23cf5d433 100644 --- a/src/Learning/MHHistograms/MHContinuousLimits.cpp +++ b/src/Learning/MHHistograms/MHContinuousLimits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHContinuousLimits.h b/src/Learning/MHHistograms/MHContinuousLimits.h index 97857ea8e..7e5f24008 100644 --- a/src/Learning/MHHistograms/MHContinuousLimits.h +++ b/src/Learning/MHHistograms/MHContinuousLimits.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHDataSubset.cpp b/src/Learning/MHHistograms/MHDataSubset.cpp index 3e78641ae..a0d1de21d 100644 --- a/src/Learning/MHHistograms/MHDataSubset.cpp +++ b/src/Learning/MHHistograms/MHDataSubset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHDataSubset.h b/src/Learning/MHHistograms/MHDataSubset.h index 5ce483e96..67d56a528 100644 --- a/src/Learning/MHHistograms/MHDataSubset.h +++ b/src/Learning/MHHistograms/MHDataSubset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.cpp b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.cpp index 3e90d1968..51403cbf2 100644 --- a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.cpp +++ b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.h b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.h index e7d0fbef4..88c319648 100644 --- a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.h +++ b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.cpp b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.cpp index 74fab3723..6a36ebac6 100644 --- a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.cpp +++ b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.h b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.h index 0d2919a2a..c90863ef0 100644 --- a/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.h +++ b/src/Learning/MHHistograms/MHDiscretizerHistogramMODL_fp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHEnumHistogramCost.cpp b/src/Learning/MHHistograms/MHEnumHistogramCost.cpp index f7a42c2a8..2b0ced055 100644 --- a/src/Learning/MHHistograms/MHEnumHistogramCost.cpp +++ b/src/Learning/MHHistograms/MHEnumHistogramCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHEnumHistogramCost.h b/src/Learning/MHHistograms/MHEnumHistogramCost.h index 458d6f0a1..6b27d967f 100644 --- a/src/Learning/MHHistograms/MHEnumHistogramCost.h +++ b/src/Learning/MHHistograms/MHEnumHistogramCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.cpp b/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.cpp index 9e0b29c32..02b9ad97e 100644 --- a/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.cpp +++ b/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.h b/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.h index 61d8532a8..ff43ac38c 100644 --- a/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.h +++ b/src/Learning/MHHistograms/MHFloatingPointFrequencyTableBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogram.cpp b/src/Learning/MHHistograms/MHHistogram.cpp index c029c6533..ae6c95fad 100644 --- a/src/Learning/MHHistograms/MHHistogram.cpp +++ b/src/Learning/MHHistograms/MHHistogram.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogram.h b/src/Learning/MHHistograms/MHHistogram.h index c69771ac6..9c977c2c3 100644 --- a/src/Learning/MHHistograms/MHHistogram.h +++ b/src/Learning/MHHistograms/MHHistogram.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramSpec.cpp b/src/Learning/MHHistograms/MHHistogramSpec.cpp index 1bb799ed7..b7575029e 100644 --- a/src/Learning/MHHistograms/MHHistogramSpec.cpp +++ b/src/Learning/MHHistograms/MHHistogramSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramSpec.h b/src/Learning/MHHistograms/MHHistogramSpec.h index 5054bf967..03d370170 100644 --- a/src/Learning/MHHistograms/MHHistogramSpec.h +++ b/src/Learning/MHHistograms/MHHistogramSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramSpecView.cpp b/src/Learning/MHHistograms/MHHistogramSpecView.cpp index 2929c2470..3b1dd10f5 100644 --- a/src/Learning/MHHistograms/MHHistogramSpecView.cpp +++ b/src/Learning/MHHistograms/MHHistogramSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramSpecView.h b/src/Learning/MHHistograms/MHHistogramSpecView.h index e4be7b864..a62c75cdc 100644 --- a/src/Learning/MHHistograms/MHHistogramSpecView.h +++ b/src/Learning/MHHistograms/MHHistogramSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramVector.cpp b/src/Learning/MHHistograms/MHHistogramVector.cpp index 14e07a217..e70424bb9 100644 --- a/src/Learning/MHHistograms/MHHistogramVector.cpp +++ b/src/Learning/MHHistograms/MHHistogramVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramVector.h b/src/Learning/MHHistograms/MHHistogramVector.h index 36dd17ed1..b2814d4a9 100644 --- a/src/Learning/MHHistograms/MHHistogramVector.h +++ b/src/Learning/MHHistograms/MHHistogramVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramVector_fp.cpp b/src/Learning/MHHistograms/MHHistogramVector_fp.cpp index 8c131ba3b..06652ebe9 100644 --- a/src/Learning/MHHistograms/MHHistogramVector_fp.cpp +++ b/src/Learning/MHHistograms/MHHistogramVector_fp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHHistogramVector_fp.h b/src/Learning/MHHistograms/MHHistogramVector_fp.h index 9f069b49c..a0c35f589 100644 --- a/src/Learning/MHHistograms/MHHistogramVector_fp.h +++ b/src/Learning/MHHistograms/MHHistogramVector_fp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHKMHistogramCost.cpp b/src/Learning/MHHistograms/MHKMHistogramCost.cpp index 8994ead09..3989b8ad8 100644 --- a/src/Learning/MHHistograms/MHKMHistogramCost.cpp +++ b/src/Learning/MHHistograms/MHKMHistogramCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHKMHistogramCost.h b/src/Learning/MHHistograms/MHKMHistogramCost.h index 6289abb7c..bf9488193 100644 --- a/src/Learning/MHHistograms/MHKMHistogramCost.h +++ b/src/Learning/MHHistograms/MHKMHistogramCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHMODLHistogramCost.cpp b/src/Learning/MHHistograms/MHMODLHistogramCost.cpp index 780df95bb..09c6b81ef 100644 --- a/src/Learning/MHHistograms/MHMODLHistogramCost.cpp +++ b/src/Learning/MHHistograms/MHMODLHistogramCost.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHMODLHistogramCost.h b/src/Learning/MHHistograms/MHMODLHistogramCost.h index a0c13cfca..d65aad7a9 100644 --- a/src/Learning/MHHistograms/MHMODLHistogramCost.h +++ b/src/Learning/MHHistograms/MHMODLHistogramCost.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHMODLHistogramCost_fp.cpp b/src/Learning/MHHistograms/MHMODLHistogramCost_fp.cpp index c04f22f5f..32c4933a4 100644 --- a/src/Learning/MHHistograms/MHMODLHistogramCost_fp.cpp +++ b/src/Learning/MHHistograms/MHMODLHistogramCost_fp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHMODLHistogramCost_fp.h b/src/Learning/MHHistograms/MHMODLHistogramCost_fp.h index 202f7174e..176d5552c 100644 --- a/src/Learning/MHHistograms/MHMODLHistogramCost_fp.h +++ b/src/Learning/MHHistograms/MHMODLHistogramCost_fp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHNMLStat.cpp b/src/Learning/MHHistograms/MHNMLStat.cpp index 5feb6d366..3ee6a7896 100644 --- a/src/Learning/MHHistograms/MHNMLStat.cpp +++ b/src/Learning/MHHistograms/MHNMLStat.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHNMLStat.h b/src/Learning/MHHistograms/MHNMLStat.h index bc77bef0b..13521fc88 100644 --- a/src/Learning/MHHistograms/MHNMLStat.h +++ b/src/Learning/MHHistograms/MHNMLStat.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.cpp b/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.cpp index 154ef99a6..bfa2c9287 100644 --- a/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.cpp +++ b/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.h b/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.h index 1a6506730..863f4ff55 100644 --- a/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.h +++ b/src/Learning/MHHistograms/MHTruncationDiscretizerHistogramMODL_fp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.cpp b/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.cpp index a95b21fc6..3d05fb55a 100644 --- a/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.cpp +++ b/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.h b/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.h index 8495fc55a..849c831ee 100644 --- a/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.h +++ b/src/Learning/MHHistograms/MHTruncationFloatingPointFrequencyTableBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsLearningProblem.cpp b/src/Learning/MODL/MDKhiopsLearningProblem.cpp index d37c4e428..769089858 100644 --- a/src/Learning/MODL/MDKhiopsLearningProblem.cpp +++ b/src/Learning/MODL/MDKhiopsLearningProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsLearningProblem.h b/src/Learning/MODL/MDKhiopsLearningProblem.h index 2e9890027..215d0122a 100644 --- a/src/Learning/MODL/MDKhiopsLearningProblem.h +++ b/src/Learning/MODL/MDKhiopsLearningProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsLearningProblemView.cpp b/src/Learning/MODL/MDKhiopsLearningProblemView.cpp index f08b43b14..9b8525f82 100644 --- a/src/Learning/MODL/MDKhiopsLearningProblemView.cpp +++ b/src/Learning/MODL/MDKhiopsLearningProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsLearningProblemView.h b/src/Learning/MODL/MDKhiopsLearningProblemView.h index 0fede0b4d..998e67b4c 100644 --- a/src/Learning/MODL/MDKhiopsLearningProblemView.h +++ b/src/Learning/MODL/MDKhiopsLearningProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsLearningProject.cpp b/src/Learning/MODL/MDKhiopsLearningProject.cpp index 83c2df817..de2b9caeb 100644 --- a/src/Learning/MODL/MDKhiopsLearningProject.cpp +++ b/src/Learning/MODL/MDKhiopsLearningProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsLearningProject.h b/src/Learning/MODL/MDKhiopsLearningProject.h index c16da69df..4af9f4feb 100644 --- a/src/Learning/MODL/MDKhiopsLearningProject.h +++ b/src/Learning/MODL/MDKhiopsLearningProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsModelingSpec.cpp b/src/Learning/MODL/MDKhiopsModelingSpec.cpp index 9ae8b36bf..e9b71cb35 100644 --- a/src/Learning/MODL/MDKhiopsModelingSpec.cpp +++ b/src/Learning/MODL/MDKhiopsModelingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsModelingSpec.h b/src/Learning/MODL/MDKhiopsModelingSpec.h index c3a5cf986..9fe5ff338 100644 --- a/src/Learning/MODL/MDKhiopsModelingSpec.h +++ b/src/Learning/MODL/MDKhiopsModelingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsModelingSpecView.cpp b/src/Learning/MODL/MDKhiopsModelingSpecView.cpp index e71fa4e8d..dbff260dc 100644 --- a/src/Learning/MODL/MDKhiopsModelingSpecView.cpp +++ b/src/Learning/MODL/MDKhiopsModelingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MDKhiopsModelingSpecView.h b/src/Learning/MODL/MDKhiopsModelingSpecView.h index 91392f866..ea90b0378 100644 --- a/src/Learning/MODL/MDKhiopsModelingSpecView.h +++ b/src/Learning/MODL/MDKhiopsModelingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MODL.cpp b/src/Learning/MODL/MODL.cpp index 697209b7b..a27aeb39f 100644 --- a/src/Learning/MODL/MODL.cpp +++ b/src/Learning/MODL/MODL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MODL.h b/src/Learning/MODL/MODL.h index 7d8d7d418..fb26ef16c 100644 --- a/src/Learning/MODL/MODL.h +++ b/src/Learning/MODL/MODL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/MODL_dll.cpp b/src/Learning/MODL/MODL_dll.cpp index 313fb73e8..f95d0d065 100644 --- a/src/Learning/MODL/MODL_dll.cpp +++ b/src/Learning/MODL/MODL_dll.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. @@ -53,7 +53,7 @@ KHIOPS_API int StartKhiops(const char* sInputScenario, const char* sLogFileName, int nDaysBeforeExpiration; // Mise en place d'une date de peremption - expirationDate.Init(2023, 6, 30); + expirationDate.Init(2024, 6, 30); currentDate.SetCurrentDate(); nDaysBeforeExpiration = expirationDate.Diff(currentDate); if (nDaysBeforeExpiration < 0) diff --git a/src/Learning/MODL/MODL_dll.h b/src/Learning/MODL/MODL_dll.h index 81f4afb3e..244e3cae9 100644 --- a/src/Learning/MODL/MODL_dll.h +++ b/src/Learning/MODL/MODL_dll.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL/resource.h b/src/Learning/MODL/resource.h index 79aa8e211..326dad8e7 100644 --- a/src/Learning/MODL/resource.h +++ b/src/Learning/MODL/resource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisResults.cpp b/src/Learning/MODL_Coclustering/CCAnalysisResults.cpp index 502324538..591574914 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisResults.cpp +++ b/src/Learning/MODL_Coclustering/CCAnalysisResults.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisResults.h b/src/Learning/MODL_Coclustering/CCAnalysisResults.h index bff519481..d630c9612 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisResults.h +++ b/src/Learning/MODL_Coclustering/CCAnalysisResults.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisResultsView.cpp b/src/Learning/MODL_Coclustering/CCAnalysisResultsView.cpp index 170cb387a..f56b35773 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisResultsView.cpp +++ b/src/Learning/MODL_Coclustering/CCAnalysisResultsView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisResultsView.h b/src/Learning/MODL_Coclustering/CCAnalysisResultsView.h index e553894b0..6b0d11989 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisResultsView.h +++ b/src/Learning/MODL_Coclustering/CCAnalysisResultsView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisSpec.cpp b/src/Learning/MODL_Coclustering/CCAnalysisSpec.cpp index 952f00097..cabd031b9 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisSpec.cpp +++ b/src/Learning/MODL_Coclustering/CCAnalysisSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisSpec.h b/src/Learning/MODL_Coclustering/CCAnalysisSpec.h index 522f49450..41a4a115f 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisSpec.h +++ b/src/Learning/MODL_Coclustering/CCAnalysisSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisSpecView.cpp b/src/Learning/MODL_Coclustering/CCAnalysisSpecView.cpp index 9eea22442..641e5c84a 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisSpecView.cpp +++ b/src/Learning/MODL_Coclustering/CCAnalysisSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCAnalysisSpecView.h b/src/Learning/MODL_Coclustering/CCAnalysisSpecView.h index 24b3d8d26..fd995bb43 100644 --- a/src/Learning/MODL_Coclustering/CCAnalysisSpecView.h +++ b/src/Learning/MODL_Coclustering/CCAnalysisSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.cpp b/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.cpp index c5d109f44..6ab861151 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.cpp +++ b/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.h b/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.h index a3d7bedfa..5f5597301 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.h +++ b/src/Learning/MODL_Coclustering/CCCoclusteringBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringReport.cpp b/src/Learning/MODL_Coclustering/CCCoclusteringReport.cpp index f55468036..2aacdb997 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringReport.cpp +++ b/src/Learning/MODL_Coclustering/CCCoclusteringReport.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringReport.h b/src/Learning/MODL_Coclustering/CCCoclusteringReport.h index 2c616c843..6d7558475 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringReport.h +++ b/src/Learning/MODL_Coclustering/CCCoclusteringReport.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringSpec.cpp b/src/Learning/MODL_Coclustering/CCCoclusteringSpec.cpp index df8ce79e2..41b313e3d 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringSpec.cpp +++ b/src/Learning/MODL_Coclustering/CCCoclusteringSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringSpec.h b/src/Learning/MODL_Coclustering/CCCoclusteringSpec.h index b07fca0b3..616c3daf3 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringSpec.h +++ b/src/Learning/MODL_Coclustering/CCCoclusteringSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.cpp b/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.cpp index 40d6095d2..a9dee30e3 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.cpp +++ b/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.h b/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.h index bb3eb8e65..ea6292920 100644 --- a/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.h +++ b/src/Learning/MODL_Coclustering/CCCoclusteringSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCDeploymentSpec.cpp b/src/Learning/MODL_Coclustering/CCDeploymentSpec.cpp index afb199bf7..7f7d6b8cf 100644 --- a/src/Learning/MODL_Coclustering/CCDeploymentSpec.cpp +++ b/src/Learning/MODL_Coclustering/CCDeploymentSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCDeploymentSpec.h b/src/Learning/MODL_Coclustering/CCDeploymentSpec.h index f0b0de31f..e2ce48f61 100644 --- a/src/Learning/MODL_Coclustering/CCDeploymentSpec.h +++ b/src/Learning/MODL_Coclustering/CCDeploymentSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCDeploymentSpecView.cpp b/src/Learning/MODL_Coclustering/CCDeploymentSpecView.cpp index 1b832caf8..07bb75cea 100644 --- a/src/Learning/MODL_Coclustering/CCDeploymentSpecView.cpp +++ b/src/Learning/MODL_Coclustering/CCDeploymentSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCDeploymentSpecView.h b/src/Learning/MODL_Coclustering/CCDeploymentSpecView.h index 9d76c3298..8b39b4fec 100644 --- a/src/Learning/MODL_Coclustering/CCDeploymentSpecView.h +++ b/src/Learning/MODL_Coclustering/CCDeploymentSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.cpp b/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.cpp index 283fe8c05..805bc530d 100644 --- a/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.cpp +++ b/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.h b/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.h index bde4be8c8..93515d9d2 100644 --- a/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.h +++ b/src/Learning/MODL_Coclustering/CCHierarchicalDataGrid.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblem.cpp b/src/Learning/MODL_Coclustering/CCLearningProblem.cpp index 32973fc6e..176f0b96f 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblem.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblem.h b/src/Learning/MODL_Coclustering/CCLearningProblem.h index 913a660d7..264c285d7 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblem.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemActionView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemActionView.cpp index 8d506419f..637b93e1e 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemActionView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemActionView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemActionView.h b/src/Learning/MODL_Coclustering/CCLearningProblemActionView.h index 5a5e751cc..57a16dffa 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemActionView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemActionView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.cpp index 867d11692..6b9bdbabe 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.h b/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.h index 66cfa7b19..ccddef973 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemClusterExtractionView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.cpp index 0744612f6..07a433cdd 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.h b/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.h index e849cfa3b..e8b1d0dd9 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemDeploymentPreparationView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.cpp index 0a2bb7d60..0478dda6c 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.h b/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.h index 49aa917f9..21707fe40 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemPostOptimizationView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.cpp index 9048ec7f9..576f4b760 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.h b/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.h index c3e6cf06b..3599547ba 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemPostProcessingView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemToolView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemToolView.cpp index e8d7abfab..877c1e0e2 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemToolView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemToolView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemToolView.h b/src/Learning/MODL_Coclustering/CCLearningProblemToolView.h index 7afd29223..83617d094 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemToolView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemToolView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemView.cpp b/src/Learning/MODL_Coclustering/CCLearningProblemView.cpp index 6d9d0a583..f41d1b27f 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemView.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProblemView.h b/src/Learning/MODL_Coclustering/CCLearningProblemView.h index 8c0a73c38..b8481963e 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProblemView.h +++ b/src/Learning/MODL_Coclustering/CCLearningProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProject.cpp b/src/Learning/MODL_Coclustering/CCLearningProject.cpp index 232469e99..068872a55 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProject.cpp +++ b/src/Learning/MODL_Coclustering/CCLearningProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCLearningProject.h b/src/Learning/MODL_Coclustering/CCLearningProject.h index 91792b99c..b8552a5f2 100644 --- a/src/Learning/MODL_Coclustering/CCLearningProject.h +++ b/src/Learning/MODL_Coclustering/CCLearningProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.cpp b/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.cpp index cb2b0d931..388b80bd9 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.cpp +++ b/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.h b/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.h index f10dcfec7..5c06308b1 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.h +++ b/src/Learning/MODL_Coclustering/CCPostProcessedAttribute.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.cpp b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.cpp index c9ddce9d0..b18966e23 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.cpp +++ b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.h b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.h index df2a16780..cf3ba391d 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.h +++ b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.cpp b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.cpp index ea53936a5..c9bf571b2 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.cpp +++ b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.h b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.h index b0c79866b..bef56c2a7 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.h +++ b/src/Learning/MODL_Coclustering/CCPostProcessedAttributeView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessingSpec.cpp b/src/Learning/MODL_Coclustering/CCPostProcessingSpec.cpp index a3fbb2001..376621077 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessingSpec.cpp +++ b/src/Learning/MODL_Coclustering/CCPostProcessingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessingSpec.h b/src/Learning/MODL_Coclustering/CCPostProcessingSpec.h index f917d682f..0e8654c4b 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessingSpec.h +++ b/src/Learning/MODL_Coclustering/CCPostProcessingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.cpp b/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.cpp index 088694e00..7dad6ee8f 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.cpp +++ b/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.h b/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.h index a3b14f590..c05e1dfcd 100644 --- a/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.h +++ b/src/Learning/MODL_Coclustering/CCPostProcessingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/MODL_Coclustering.cpp b/src/Learning/MODL_Coclustering/MODL_Coclustering.cpp index 4fbe3f94f..f73ac8db7 100644 --- a/src/Learning/MODL_Coclustering/MODL_Coclustering.cpp +++ b/src/Learning/MODL_Coclustering/MODL_Coclustering.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/MODL_Coclustering.h b/src/Learning/MODL_Coclustering/MODL_Coclustering.h index 39c398d0b..c73695bd6 100644 --- a/src/Learning/MODL_Coclustering/MODL_Coclustering.h +++ b/src/Learning/MODL_Coclustering/MODL_Coclustering.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.cpp b/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.cpp index 50303509d..4007dd329 100644 --- a/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.cpp +++ b/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.h b/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.h index b5d8861ba..d0221ad99 100644 --- a/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.h +++ b/src/Learning/MODL_Coclustering/MODL_Coclustering_dll.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/MODL_Coclustering/resource.h b/src/Learning/MODL_Coclustering/resource.h index 45d86302b..06ee395f4 100644 --- a/src/Learning/MODL_Coclustering/resource.h +++ b/src/Learning/MODL_Coclustering/resource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.cpp b/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.cpp index 4d4c495f3..ed2150246 100644 --- a/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.cpp +++ b/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.h b/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.h index 7cd546d2f..674d95eca 100644 --- a/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.h +++ b/src/Learning/SNBPredictor/SNBAttributeSelectionScorer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.cpp b/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.cpp index d2d6ae28a..fc5b0850a 100644 --- a/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.cpp +++ b/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.h b/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.h index dec68772b..2ba11e4aa 100644 --- a/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.h +++ b/src/Learning/SNBPredictor/SNBAttributeSelectionWeightCalculator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.cpp b/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.cpp index a067d744a..ffe39c18b 100644 --- a/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.cpp +++ b/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.h b/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.h index 38d164b2b..59884c399 100644 --- a/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.h +++ b/src/Learning/SNBPredictor/SNBDataTableBinarySliceSet.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBIndexVector.cpp b/src/Learning/SNBPredictor/SNBIndexVector.cpp index f8a0e3f7b..8a102c7bd 100644 --- a/src/Learning/SNBPredictor/SNBIndexVector.cpp +++ b/src/Learning/SNBPredictor/SNBIndexVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBIndexVector.h b/src/Learning/SNBPredictor/SNBIndexVector.h index 88473da14..266cc5ec5 100644 --- a/src/Learning/SNBPredictor/SNBIndexVector.h +++ b/src/Learning/SNBPredictor/SNBIndexVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.cpp b/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.cpp index 2019f4fd2..07aa9070d 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.cpp +++ b/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.h b/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.h index 43b48ba14..07a5f3a79 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.h +++ b/src/Learning/SNBPredictor/SNBPredictorSelectionDataCostCalculator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.cpp b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.cpp index e1a1e2740..43d8239c6 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.cpp +++ b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.h b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.h index 00868bda1..c1bbebf91 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.h +++ b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.cpp b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.cpp index be253c9a0..5b7dbe80c 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.cpp +++ b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.h b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.h index 3b2e4cb81..2b3953bc0 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.h +++ b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesTrainingTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.cpp b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.cpp index 4debfd35c..3d0a5944d 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.cpp +++ b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.h b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.h index dc5c1dd00..687b18547 100644 --- a/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.h +++ b/src/Learning/SNBPredictor/SNBPredictorSelectiveNaiveBayesView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genum/GenumCommandLine.cpp b/src/Learning/genum/GenumCommandLine.cpp index 01f6cbdf9..b437a60d9 100644 --- a/src/Learning/genum/GenumCommandLine.cpp +++ b/src/Learning/genum/GenumCommandLine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genum/GenumCommandLine.h b/src/Learning/genum/GenumCommandLine.h index a09ed8952..00267fb32 100644 --- a/src/Learning/genum/GenumCommandLine.h +++ b/src/Learning/genum/GenumCommandLine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genum/Version.h b/src/Learning/genum/Version.h index e2ba10087..870e4e5a5 100644 --- a/src/Learning/genum/Version.h +++ b/src/Learning/genum/Version.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. @@ -13,4 +13,4 @@ #define GENUM_VERSION str(1.0) // Copyright -#define GENUM_COPYRIGHT_LABEL str((c)2023 Orange.) +#define GENUM_COPYRIGHT_LABEL str((c)2024 Orange.) diff --git a/src/Learning/genum/genum.cpp b/src/Learning/genum/genum.cpp index 14a1cd671..752a687d7 100644 --- a/src/Learning/genum/genum.cpp +++ b/src/Learning/genum/genum.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genum/genum.h b/src/Learning/genum/genum.h index 671438ba0..1a308f6af 100644 --- a/src/Learning/genum/genum.h +++ b/src/Learning/genum/genum.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genum/resource.h b/src/Learning/genum/resource.h index 9e84b5c41..9cf367cc0 100644 --- a/src/Learning/genum/resource.h +++ b/src/Learning/genum/resource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genumfp/MHCommandLine.cpp b/src/Learning/genumfp/MHCommandLine.cpp index 6788b4bf1..342706dfd 100644 --- a/src/Learning/genumfp/MHCommandLine.cpp +++ b/src/Learning/genumfp/MHCommandLine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genumfp/MHCommandLine.h b/src/Learning/genumfp/MHCommandLine.h index 6c743eadd..b79f2f349 100644 --- a/src/Learning/genumfp/MHCommandLine.h +++ b/src/Learning/genumfp/MHCommandLine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genumfp/Version.h b/src/Learning/genumfp/Version.h index db4fc29a8..93ded556f 100644 --- a/src/Learning/genumfp/Version.h +++ b/src/Learning/genumfp/Version.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. @@ -13,4 +13,4 @@ #define GENUMFP_VERSION str(1.0) // Copyright -#define GENUMFP_COPYRIGHT_LABEL str((c)2023 Orange.) +#define GENUMFP_COPYRIGHT_LABEL str((c)2024 Orange.) diff --git a/src/Learning/genumfp/genumfp.cpp b/src/Learning/genumfp/genumfp.cpp index e39905e1c..0aa6da334 100644 --- a/src/Learning/genumfp/genumfp.cpp +++ b/src/Learning/genumfp/genumfp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genumfp/genumfp.h b/src/Learning/genumfp/genumfp.h index 51dc2f01f..4825a9bdf 100644 --- a/src/Learning/genumfp/genumfp.h +++ b/src/Learning/genumfp/genumfp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/genumfp/resource.h b/src/Learning/genumfp/resource.h index 9e84b5c41..9cf367cc0 100644 --- a/src/Learning/genumfp/resource.h +++ b/src/Learning/genumfp/resource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/SampleOneLearningProblem.cpp b/src/Learning/samples/sample1/SampleOneLearningProblem.cpp index 0db23a705..5b7a7616b 100644 --- a/src/Learning/samples/sample1/SampleOneLearningProblem.cpp +++ b/src/Learning/samples/sample1/SampleOneLearningProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/SampleOneLearningProblem.h b/src/Learning/samples/sample1/SampleOneLearningProblem.h index 150fe0a5f..f67a7af58 100644 --- a/src/Learning/samples/sample1/SampleOneLearningProblem.h +++ b/src/Learning/samples/sample1/SampleOneLearningProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/SampleOneLearningProblemView.cpp b/src/Learning/samples/sample1/SampleOneLearningProblemView.cpp index bcc315f1b..5ad502fe3 100644 --- a/src/Learning/samples/sample1/SampleOneLearningProblemView.cpp +++ b/src/Learning/samples/sample1/SampleOneLearningProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/SampleOneLearningProblemView.h b/src/Learning/samples/sample1/SampleOneLearningProblemView.h index 7d9584968..cbcade1ae 100644 --- a/src/Learning/samples/sample1/SampleOneLearningProblemView.h +++ b/src/Learning/samples/sample1/SampleOneLearningProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/SampleOneLearningProject.cpp b/src/Learning/samples/sample1/SampleOneLearningProject.cpp index 24b780a03..ba832fb66 100644 --- a/src/Learning/samples/sample1/SampleOneLearningProject.cpp +++ b/src/Learning/samples/sample1/SampleOneLearningProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/SampleOneLearningProject.h b/src/Learning/samples/sample1/SampleOneLearningProject.h index 06f47243f..bddf28e64 100644 --- a/src/Learning/samples/sample1/SampleOneLearningProject.h +++ b/src/Learning/samples/sample1/SampleOneLearningProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/test.cpp b/src/Learning/samples/sample1/test.cpp index f5b1bac92..a5428fd41 100644 --- a/src/Learning/samples/sample1/test.cpp +++ b/src/Learning/samples/sample1/test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample1/test.h b/src/Learning/samples/sample1/test.h index 11eb89ec3..645c893f5 100644 --- a/src/Learning/samples/sample1/test.h +++ b/src/Learning/samples/sample1/test.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMDRMajority.cpp b/src/Learning/samples/sample2/CMDRMajority.cpp index c75421a27..57d49c84f 100644 --- a/src/Learning/samples/sample2/CMDRMajority.cpp +++ b/src/Learning/samples/sample2/CMDRMajority.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMDRMajority.h b/src/Learning/samples/sample2/CMDRMajority.h index 3c311ebff..5d9873c2e 100644 --- a/src/Learning/samples/sample2/CMDRMajority.h +++ b/src/Learning/samples/sample2/CMDRMajority.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMLearningProblem.cpp b/src/Learning/samples/sample2/CMLearningProblem.cpp index fc59b12dd..db61d813a 100644 --- a/src/Learning/samples/sample2/CMLearningProblem.cpp +++ b/src/Learning/samples/sample2/CMLearningProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMLearningProblem.h b/src/Learning/samples/sample2/CMLearningProblem.h index 4c9450aaf..750820a43 100644 --- a/src/Learning/samples/sample2/CMLearningProblem.h +++ b/src/Learning/samples/sample2/CMLearningProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMLearningProblemView.cpp b/src/Learning/samples/sample2/CMLearningProblemView.cpp index ffa37f08b..7ca6eabae 100644 --- a/src/Learning/samples/sample2/CMLearningProblemView.cpp +++ b/src/Learning/samples/sample2/CMLearningProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMLearningProblemView.h b/src/Learning/samples/sample2/CMLearningProblemView.h index 83dbe1fe3..8d9c3255f 100644 --- a/src/Learning/samples/sample2/CMLearningProblemView.h +++ b/src/Learning/samples/sample2/CMLearningProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMLearningProject.cpp b/src/Learning/samples/sample2/CMLearningProject.cpp index 788a6cf21..cbac01c93 100644 --- a/src/Learning/samples/sample2/CMLearningProject.cpp +++ b/src/Learning/samples/sample2/CMLearningProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMLearningProject.h b/src/Learning/samples/sample2/CMLearningProject.h index 57fef5397..d2febc525 100644 --- a/src/Learning/samples/sample2/CMLearningProject.h +++ b/src/Learning/samples/sample2/CMLearningProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMMajorityClassifier.cpp b/src/Learning/samples/sample2/CMMajorityClassifier.cpp index ea454a1a6..a35c54c82 100644 --- a/src/Learning/samples/sample2/CMMajorityClassifier.cpp +++ b/src/Learning/samples/sample2/CMMajorityClassifier.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMMajorityClassifier.h b/src/Learning/samples/sample2/CMMajorityClassifier.h index 12d37a3b3..b4c8369a9 100644 --- a/src/Learning/samples/sample2/CMMajorityClassifier.h +++ b/src/Learning/samples/sample2/CMMajorityClassifier.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMModelingSpec.cpp b/src/Learning/samples/sample2/CMModelingSpec.cpp index a201738b9..ebffe6e83 100644 --- a/src/Learning/samples/sample2/CMModelingSpec.cpp +++ b/src/Learning/samples/sample2/CMModelingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMModelingSpec.h b/src/Learning/samples/sample2/CMModelingSpec.h index 0b4afa963..d87a58312 100644 --- a/src/Learning/samples/sample2/CMModelingSpec.h +++ b/src/Learning/samples/sample2/CMModelingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMModelingSpecView.cpp b/src/Learning/samples/sample2/CMModelingSpecView.cpp index ee2cbd342..62fe05255 100644 --- a/src/Learning/samples/sample2/CMModelingSpecView.cpp +++ b/src/Learning/samples/sample2/CMModelingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/CMModelingSpecView.h b/src/Learning/samples/sample2/CMModelingSpecView.h index 8fed33456..691da9d87 100644 --- a/src/Learning/samples/sample2/CMModelingSpecView.h +++ b/src/Learning/samples/sample2/CMModelingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/ClassifieurMajoritaire.cpp b/src/Learning/samples/sample2/ClassifieurMajoritaire.cpp index 1d6175121..e83684df5 100644 --- a/src/Learning/samples/sample2/ClassifieurMajoritaire.cpp +++ b/src/Learning/samples/sample2/ClassifieurMajoritaire.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample2/ClassifieurMajoritaire.h b/src/Learning/samples/sample2/ClassifieurMajoritaire.h index 7fed91a10..7722ecd99 100644 --- a/src/Learning/samples/sample2/ClassifieurMajoritaire.h +++ b/src/Learning/samples/sample2/ClassifieurMajoritaire.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYAnalysisResults.cpp b/src/Learning/samples/sample3/MYAnalysisResults.cpp index 772d27e5a..ddd0580db 100644 --- a/src/Learning/samples/sample3/MYAnalysisResults.cpp +++ b/src/Learning/samples/sample3/MYAnalysisResults.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYAnalysisResults.h b/src/Learning/samples/sample3/MYAnalysisResults.h index 9eece8a62..36f50893d 100644 --- a/src/Learning/samples/sample3/MYAnalysisResults.h +++ b/src/Learning/samples/sample3/MYAnalysisResults.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYAnalysisResultsView.cpp b/src/Learning/samples/sample3/MYAnalysisResultsView.cpp index 6d07d7460..776a71009 100644 --- a/src/Learning/samples/sample3/MYAnalysisResultsView.cpp +++ b/src/Learning/samples/sample3/MYAnalysisResultsView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYAnalysisResultsView.h b/src/Learning/samples/sample3/MYAnalysisResultsView.h index deee5ce2f..e137cfdfd 100644 --- a/src/Learning/samples/sample3/MYAnalysisResultsView.h +++ b/src/Learning/samples/sample3/MYAnalysisResultsView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYLearningProblem.cpp b/src/Learning/samples/sample3/MYLearningProblem.cpp index 6dd7f0dae..70fe8bfee 100644 --- a/src/Learning/samples/sample3/MYLearningProblem.cpp +++ b/src/Learning/samples/sample3/MYLearningProblem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYLearningProblem.h b/src/Learning/samples/sample3/MYLearningProblem.h index d70ad87d4..8d4b8bb83 100644 --- a/src/Learning/samples/sample3/MYLearningProblem.h +++ b/src/Learning/samples/sample3/MYLearningProblem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYLearningProblemView.cpp b/src/Learning/samples/sample3/MYLearningProblemView.cpp index 019bb2b41..ea2a0ae7f 100644 --- a/src/Learning/samples/sample3/MYLearningProblemView.cpp +++ b/src/Learning/samples/sample3/MYLearningProblemView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYLearningProblemView.h b/src/Learning/samples/sample3/MYLearningProblemView.h index 5b973969d..0236f9b88 100644 --- a/src/Learning/samples/sample3/MYLearningProblemView.h +++ b/src/Learning/samples/sample3/MYLearningProblemView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYLearningProject.cpp b/src/Learning/samples/sample3/MYLearningProject.cpp index a5f6258f7..9a23cd62f 100644 --- a/src/Learning/samples/sample3/MYLearningProject.cpp +++ b/src/Learning/samples/sample3/MYLearningProject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYLearningProject.h b/src/Learning/samples/sample3/MYLearningProject.h index a9a158bca..fda5443a5 100644 --- a/src/Learning/samples/sample3/MYLearningProject.h +++ b/src/Learning/samples/sample3/MYLearningProject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYMain.cpp b/src/Learning/samples/sample3/MYMain.cpp index 4e248fee7..db15d2c6b 100644 --- a/src/Learning/samples/sample3/MYMain.cpp +++ b/src/Learning/samples/sample3/MYMain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYMain.h b/src/Learning/samples/sample3/MYMain.h index dc1357ea5..eed831d41 100644 --- a/src/Learning/samples/sample3/MYMain.h +++ b/src/Learning/samples/sample3/MYMain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYModelingSpec.cpp b/src/Learning/samples/sample3/MYModelingSpec.cpp index c9eb3b0a6..6a6616114 100644 --- a/src/Learning/samples/sample3/MYModelingSpec.cpp +++ b/src/Learning/samples/sample3/MYModelingSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYModelingSpec.h b/src/Learning/samples/sample3/MYModelingSpec.h index ca9a184a9..7070b81a9 100644 --- a/src/Learning/samples/sample3/MYModelingSpec.h +++ b/src/Learning/samples/sample3/MYModelingSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYModelingSpecView.cpp b/src/Learning/samples/sample3/MYModelingSpecView.cpp index f272e9ded..901b0a95b 100644 --- a/src/Learning/samples/sample3/MYModelingSpecView.cpp +++ b/src/Learning/samples/sample3/MYModelingSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Learning/samples/sample3/MYModelingSpecView.h b/src/Learning/samples/sample3/MYModelingSpecView.h index 0b3cbb0ae..b7ff65a0b 100644 --- a/src/Learning/samples/sample3/MYModelingSpecView.h +++ b/src/Learning/samples/sample3/MYModelingSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIAction.java b/src/Norm/NormGUI/src/normGUI/engine/GUIAction.java index c5eb52388..3cf156a09 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIAction.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIAction.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIBooleanElement.java b/src/Norm/NormGUI/src/normGUI/engine/GUIBooleanElement.java index 3a1cc057c..e33abb46b 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIBooleanElement.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIBooleanElement.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUICard.java b/src/Norm/NormGUI/src/normGUI/engine/GUICard.java index a40a1dd4b..436bd9186 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUICard.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUICard.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUICharElement.java b/src/Norm/NormGUI/src/normGUI/engine/GUICharElement.java index 17bbf545d..411ba9cf9 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUICharElement.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUICharElement.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxAutoComplete.java b/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxAutoComplete.java index 309a6a88f..3eb5188aa 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxAutoComplete.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxAutoComplete.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxImageRenderer.java b/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxImageRenderer.java index 2088bf956..6ca13e8cb 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxImageRenderer.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIComboBoxImageRenderer.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIData.java b/src/Norm/NormGUI/src/normGUI/engine/GUIData.java index 2e7f0701b..a2208a02a 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIData.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIData.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIDialog.java b/src/Norm/NormGUI/src/normGUI/engine/GUIDialog.java index a60b143bc..819fb8767 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIDialog.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIDialog.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIDoubleElement.java b/src/Norm/NormGUI/src/normGUI/engine/GUIDoubleElement.java index 879f0ee07..478a293c0 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIDoubleElement.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIDoubleElement.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIElement.java b/src/Norm/NormGUI/src/normGUI/engine/GUIElement.java index c25028531..12d2c7276 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIElement.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIElement.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIFileDirectoryChooser.java b/src/Norm/NormGUI/src/normGUI/engine/GUIFileDirectoryChooser.java index 881c55820..1ad4e31d5 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIFileDirectoryChooser.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIFileDirectoryChooser.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIIntElement.java b/src/Norm/NormGUI/src/normGUI/engine/GUIIntElement.java index c4d89b6c3..309526278 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIIntElement.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIIntElement.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIList.java b/src/Norm/NormGUI/src/normGUI/engine/GUIList.java index 38c330cc7..3d4aee00f 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIList.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIList.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIManager.java b/src/Norm/NormGUI/src/normGUI/engine/GUIManager.java index 2b16a501b..0878c3551 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIManager.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIManager.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIMessage.java b/src/Norm/NormGUI/src/normGUI/engine/GUIMessage.java index fa679360a..1bf3224c5 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIMessage.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIMessage.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIObject.java b/src/Norm/NormGUI/src/normGUI/engine/GUIObject.java index c778294fc..5b543a3f6 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIObject.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIObject.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIStringElement.java b/src/Norm/NormGUI/src/normGUI/engine/GUIStringElement.java index d8648c891..633b91b9b 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIStringElement.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIStringElement.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUITable.java b/src/Norm/NormGUI/src/normGUI/engine/GUITable.java index d6f6165c1..692dfd0b6 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUITable.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUITable.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUITableModel.java b/src/Norm/NormGUI/src/normGUI/engine/GUITableModel.java index 06cea18f2..d42d20c07 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUITableModel.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUITableModel.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUITaskProgression.java b/src/Norm/NormGUI/src/normGUI/engine/GUITaskProgression.java index 35cb57283..7f6304950 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUITaskProgression.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUITaskProgression.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/engine/GUIUnit.java b/src/Norm/NormGUI/src/normGUI/engine/GUIUnit.java index 594f1ea5c..8a41d237c 100644 --- a/src/Norm/NormGUI/src/normGUI/engine/GUIUnit.java +++ b/src/Norm/NormGUI/src/normGUI/engine/GUIUnit.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/extensions/GUICardTabbedPanes.java b/src/Norm/NormGUI/src/normGUI/extensions/GUICardTabbedPanes.java index afc2b75c7..c8a362c2b 100644 --- a/src/Norm/NormGUI/src/normGUI/extensions/GUICardTabbedPanes.java +++ b/src/Norm/NormGUI/src/normGUI/extensions/GUICardTabbedPanes.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementCheckBox.java b/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementCheckBox.java index 83f1fdf35..5a869fd67 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementCheckBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementCheckBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementComboBox.java index f740aeccf..9db543f8d 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementRadioButton.java b/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementRadioButton.java index 3c4ecb87f..1cc5f8e7d 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementRadioButton.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/booleanWidgets/GUIBooleanElementRadioButton.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementComboBox.java index 734d98635..301403bbd 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementEditableComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementEditableComboBox.java index fead59d30..0878d6036 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementEditableComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementEditableComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementRadioButton.java b/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementRadioButton.java index 14d2d630d..cf7c2e73e 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementRadioButton.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/charWidgets/GUICharElementRadioButton.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementComboBox.java index b45074a02..0e2ab1398 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementEditableComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementEditableComboBox.java index 537414c3f..fbcd10492 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementEditableComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementEditableComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementRadioButton.java b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementRadioButton.java index bd962acd9..2f1a38d59 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementRadioButton.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementRadioButton.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementSpinner.java b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementSpinner.java index f2a31514c..8ab90d4c5 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementSpinner.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/doubleWidgets/GUIDoubleElementSpinner.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementComboBox.java index 56f38665f..d7dcb3b46 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementEditableComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementEditableComboBox.java index c5ab9560e..dc74a1423 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementEditableComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementEditableComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementRadioButton.java b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementRadioButton.java index 037ee1017..96f1088a4 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementRadioButton.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementRadioButton.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSlider.java b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSlider.java index a7f752820..0b1898623 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSlider.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSlider.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSpinner.java b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSpinner.java index c0a83022e..d4ce6d29b 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSpinner.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/intWidgets/GUIIntElementSpinner.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementComboBox.java index 7ea1a7fbb..10591ceaf 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementDirectoryChooser.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementDirectoryChooser.java index 1a30ca974..95a077cfd 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementDirectoryChooser.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementDirectoryChooser.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementEditableComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementEditableComboBox.java index ab06a5581..e26dbdf31 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementEditableComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementEditableComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileChooser.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileChooser.java index a0daaa3f1..ab5f47fe2 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileChooser.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileChooser.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileDirectoryChooser.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileDirectoryChooser.java index 58ff39398..e653406f7 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileDirectoryChooser.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFileDirectoryChooser.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFormattedLabel.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFormattedLabel.java index 177ef0a51..1efe50f19 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFormattedLabel.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementFormattedLabel.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementHelpedComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementHelpedComboBox.java index a970c9234..6b6e8b9b1 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementHelpedComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementHelpedComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementImageComboBox.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementImageComboBox.java index b51c7cd35..5abffce12 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementImageComboBox.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementImageComboBox.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementPassword.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementPassword.java index dfc5d91cf..cca1f0489 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementPassword.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementPassword.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementRadioButton.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementRadioButton.java index 393892a85..e77d8221b 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementRadioButton.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementRadioButton.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementSelectableLabel.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementSelectableLabel.java index 7527e1770..0800de261 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementSelectableLabel.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementSelectableLabel.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementTextArea.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementTextArea.java index 664cb6301..2e9fcd9b7 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementTextArea.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementTextArea.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementUriLabel.java b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementUriLabel.java index a8cac9eea..15d69b5ce 100644 --- a/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementUriLabel.java +++ b/src/Norm/NormGUI/src/normGUI/widgets/stringWidgets/GUIStringElementUriLabel.java @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/ALString.cpp b/src/Norm/base/ALString.cpp index d8fb1074b..07ee57932 100644 --- a/src/Norm/base/ALString.cpp +++ b/src/Norm/base/ALString.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/ALString.h b/src/Norm/base/ALString.h index caad7d273..d2729f130 100644 --- a/src/Norm/base/ALString.h +++ b/src/Norm/base/ALString.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/BufferedFile.cpp b/src/Norm/base/BufferedFile.cpp index d49268d19..08e1a8b6b 100644 --- a/src/Norm/base/BufferedFile.cpp +++ b/src/Norm/base/BufferedFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/BufferedFile.h b/src/Norm/base/BufferedFile.h index 8d8e61207..793788bc1 100644 --- a/src/Norm/base/BufferedFile.h +++ b/src/Norm/base/BufferedFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/CharVector.cpp b/src/Norm/base/CharVector.cpp index 64ebcbca8..527962c6d 100644 --- a/src/Norm/base/CharVector.cpp +++ b/src/Norm/base/CharVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/CharVector.h b/src/Norm/base/CharVector.h index fc98da784..865e07a77 100644 --- a/src/Norm/base/CharVector.h +++ b/src/Norm/base/CharVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/CommandLine.cpp b/src/Norm/base/CommandLine.cpp index e6a1b0934..4f77ac616 100644 --- a/src/Norm/base/CommandLine.cpp +++ b/src/Norm/base/CommandLine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/CommandLine.h b/src/Norm/base/CommandLine.h index fc11a3366..286ac9eee 100644 --- a/src/Norm/base/CommandLine.h +++ b/src/Norm/base/CommandLine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Ermgt.cpp b/src/Norm/base/Ermgt.cpp index c9c5b96a0..ab0583c9a 100644 --- a/src/Norm/base/Ermgt.cpp +++ b/src/Norm/base/Ermgt.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Ermgt.h b/src/Norm/base/Ermgt.h index 24eae6eaf..a0d2177a6 100644 --- a/src/Norm/base/Ermgt.h +++ b/src/Norm/base/Ermgt.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/FileCache.cpp b/src/Norm/base/FileCache.cpp index c81bfb590..48b4d2203 100644 --- a/src/Norm/base/FileCache.cpp +++ b/src/Norm/base/FileCache.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/FileCache.h b/src/Norm/base/FileCache.h index a4bd7a42d..3fbc11f9f 100644 --- a/src/Norm/base/FileCache.h +++ b/src/Norm/base/FileCache.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/FileService.cpp b/src/Norm/base/FileService.cpp index b0a6386a8..595b67d9b 100644 --- a/src/Norm/base/FileService.cpp +++ b/src/Norm/base/FileService.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/FileService.h b/src/Norm/base/FileService.h index f888dfd1e..342086907 100644 --- a/src/Norm/base/FileService.h +++ b/src/Norm/base/FileService.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/HugeBuffer.cpp b/src/Norm/base/HugeBuffer.cpp index 1837ac9bc..430fb9667 100644 --- a/src/Norm/base/HugeBuffer.cpp +++ b/src/Norm/base/HugeBuffer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/HugeBuffer.h b/src/Norm/base/HugeBuffer.h index 38605ba53..ed5d9910a 100644 --- a/src/Norm/base/HugeBuffer.h +++ b/src/Norm/base/HugeBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/InputBufferedFile.cpp b/src/Norm/base/InputBufferedFile.cpp index 11e98bae1..dca918e66 100644 --- a/src/Norm/base/InputBufferedFile.cpp +++ b/src/Norm/base/InputBufferedFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/InputBufferedFile.h b/src/Norm/base/InputBufferedFile.h index 749fe479a..dd06cf829 100644 --- a/src/Norm/base/InputBufferedFile.h +++ b/src/Norm/base/InputBufferedFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Longint.cpp b/src/Norm/base/Longint.cpp index 17580db36..11b9e93e1 100644 --- a/src/Norm/base/Longint.cpp +++ b/src/Norm/base/Longint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Longint.h b/src/Norm/base/Longint.h index fea5d8ae5..551d9a9dd 100644 --- a/src/Norm/base/Longint.h +++ b/src/Norm/base/Longint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemVector.cpp b/src/Norm/base/MemVector.cpp index 65ef2b949..2401a258c 100644 --- a/src/Norm/base/MemVector.cpp +++ b/src/Norm/base/MemVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemVector.h b/src/Norm/base/MemVector.h index 3dbda243d..a291bba1e 100644 --- a/src/Norm/base/MemVector.h +++ b/src/Norm/base/MemVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemoryBufferedFile.cpp b/src/Norm/base/MemoryBufferedFile.cpp index 8f747f6b1..0d9a8d4e7 100644 --- a/src/Norm/base/MemoryBufferedFile.cpp +++ b/src/Norm/base/MemoryBufferedFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemoryBufferedFile.h b/src/Norm/base/MemoryBufferedFile.h index da77080d1..bc2c9a015 100644 --- a/src/Norm/base/MemoryBufferedFile.h +++ b/src/Norm/base/MemoryBufferedFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemoryManager.cpp b/src/Norm/base/MemoryManager.cpp index 8a85724d1..b503adca8 100644 --- a/src/Norm/base/MemoryManager.cpp +++ b/src/Norm/base/MemoryManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemoryManager.h b/src/Norm/base/MemoryManager.h index 743257d28..4b682379d 100644 --- a/src/Norm/base/MemoryManager.h +++ b/src/Norm/base/MemoryManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemoryStatsManager.cpp b/src/Norm/base/MemoryStatsManager.cpp index 056a50887..1884e696b 100644 --- a/src/Norm/base/MemoryStatsManager.cpp +++ b/src/Norm/base/MemoryStatsManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/MemoryStatsManager.h b/src/Norm/base/MemoryStatsManager.h index 56902d253..85121d9ac 100644 --- a/src/Norm/base/MemoryStatsManager.h +++ b/src/Norm/base/MemoryStatsManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Obarray.cpp b/src/Norm/base/Obarray.cpp index 2607905f2..4e46cf9cd 100644 --- a/src/Norm/base/Obarray.cpp +++ b/src/Norm/base/Obarray.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Obdic.cpp b/src/Norm/base/Obdic.cpp index 714fee7f7..998e78122 100644 --- a/src/Norm/base/Obdic.cpp +++ b/src/Norm/base/Obdic.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Object.h b/src/Norm/base/Object.h index fe15ac087..3aba02bc6 100644 --- a/src/Norm/base/Object.h +++ b/src/Norm/base/Object.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Oblist.cpp b/src/Norm/base/Oblist.cpp index a72e24b25..3b2eb89ac 100644 --- a/src/Norm/base/Oblist.cpp +++ b/src/Norm/base/Oblist.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/OutputBufferedFile.cpp b/src/Norm/base/OutputBufferedFile.cpp index 271c62941..fcb516faa 100644 --- a/src/Norm/base/OutputBufferedFile.cpp +++ b/src/Norm/base/OutputBufferedFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/OutputBufferedFile.h b/src/Norm/base/OutputBufferedFile.h index 2b745b343..4f8f9474f 100644 --- a/src/Norm/base/OutputBufferedFile.h +++ b/src/Norm/base/OutputBufferedFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/PLRemoteFileService.cpp b/src/Norm/base/PLRemoteFileService.cpp index 4018c3433..c66bac70e 100644 --- a/src/Norm/base/PLRemoteFileService.cpp +++ b/src/Norm/base/PLRemoteFileService.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/PLRemoteFileService.h b/src/Norm/base/PLRemoteFileService.h index 75a2a15e4..727387040 100644 --- a/src/Norm/base/PLRemoteFileService.h +++ b/src/Norm/base/PLRemoteFileService.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Portability.cpp b/src/Norm/base/Portability.cpp index da70a613f..9a82f081b 100644 --- a/src/Norm/base/Portability.cpp +++ b/src/Norm/base/Portability.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Portability.h b/src/Norm/base/Portability.h index db2d184e9..01705253f 100644 --- a/src/Norm/base/Portability.h +++ b/src/Norm/base/Portability.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Regexp.cpp b/src/Norm/base/Regexp.cpp index a0024ca93..60f21f7b1 100644 --- a/src/Norm/base/Regexp.cpp +++ b/src/Norm/base/Regexp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Regexp.h b/src/Norm/base/Regexp.h index 972dda349..c425f93d9 100644 --- a/src/Norm/base/Regexp.h +++ b/src/Norm/base/Regexp.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SortedList.cpp b/src/Norm/base/SortedList.cpp index 545fca2fe..814d1885a 100644 --- a/src/Norm/base/SortedList.cpp +++ b/src/Norm/base/SortedList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SortedList.h b/src/Norm/base/SortedList.h index 1c67ae5cd..80f5e2fdd 100644 --- a/src/Norm/base/SortedList.h +++ b/src/Norm/base/SortedList.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Standard.cpp b/src/Norm/base/Standard.cpp index 8cb13653d..c9acdcaea 100644 --- a/src/Norm/base/Standard.cpp +++ b/src/Norm/base/Standard.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Standard.h b/src/Norm/base/Standard.h index 7a048ad61..139ac9872 100644 --- a/src/Norm/base/Standard.h +++ b/src/Norm/base/Standard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFile.cpp b/src/Norm/base/SystemFile.cpp index 18105ad51..78ff5b364 100644 --- a/src/Norm/base/SystemFile.cpp +++ b/src/Norm/base/SystemFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFile.h b/src/Norm/base/SystemFile.h index 128ac2d6e..0d7b391e0 100644 --- a/src/Norm/base/SystemFile.h +++ b/src/Norm/base/SystemFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriver.cpp b/src/Norm/base/SystemFileDriver.cpp index 89545c113..29bf1418b 100644 --- a/src/Norm/base/SystemFileDriver.cpp +++ b/src/Norm/base/SystemFileDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriver.h b/src/Norm/base/SystemFileDriver.h index 284ba0ab2..fb9dc7322 100644 --- a/src/Norm/base/SystemFileDriver.h +++ b/src/Norm/base/SystemFileDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriverANSI.cpp b/src/Norm/base/SystemFileDriverANSI.cpp index acfb0cae7..4b1f589da 100644 --- a/src/Norm/base/SystemFileDriverANSI.cpp +++ b/src/Norm/base/SystemFileDriverANSI.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriverANSI.h b/src/Norm/base/SystemFileDriverANSI.h index 40136ff0c..f80155fd4 100644 --- a/src/Norm/base/SystemFileDriverANSI.h +++ b/src/Norm/base/SystemFileDriverANSI.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriverCreator.cpp b/src/Norm/base/SystemFileDriverCreator.cpp index d5fe5e020..ee14276c2 100644 --- a/src/Norm/base/SystemFileDriverCreator.cpp +++ b/src/Norm/base/SystemFileDriverCreator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriverCreator.h b/src/Norm/base/SystemFileDriverCreator.h index 3d86c766e..c65a693f5 100644 --- a/src/Norm/base/SystemFileDriverCreator.h +++ b/src/Norm/base/SystemFileDriverCreator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriverLibrary.cpp b/src/Norm/base/SystemFileDriverLibrary.cpp index 20c36b173..d37ab8c4d 100644 --- a/src/Norm/base/SystemFileDriverLibrary.cpp +++ b/src/Norm/base/SystemFileDriverLibrary.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemFileDriverLibrary.h b/src/Norm/base/SystemFileDriverLibrary.h index 2da98d09c..e9be72e89 100644 --- a/src/Norm/base/SystemFileDriverLibrary.h +++ b/src/Norm/base/SystemFileDriverLibrary.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemResource.cpp b/src/Norm/base/SystemResource.cpp index 1955d81cd..03e1524c1 100644 --- a/src/Norm/base/SystemResource.cpp +++ b/src/Norm/base/SystemResource.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/SystemResource.h b/src/Norm/base/SystemResource.h index fa114ef49..5ffd0e130 100644 --- a/src/Norm/base/SystemResource.h +++ b/src/Norm/base/SystemResource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/TaskProgression.cpp b/src/Norm/base/TaskProgression.cpp index 41ecf9cf3..9d474c5f4 100644 --- a/src/Norm/base/TaskProgression.cpp +++ b/src/Norm/base/TaskProgression.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/TaskProgression.h b/src/Norm/base/TaskProgression.h index 897afb441..40f7a270e 100644 --- a/src/Norm/base/TaskProgression.h +++ b/src/Norm/base/TaskProgression.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/TaskProgressionManager.cpp b/src/Norm/base/TaskProgressionManager.cpp index 9c206a5aa..27f5c4be6 100644 --- a/src/Norm/base/TaskProgressionManager.cpp +++ b/src/Norm/base/TaskProgressionManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/TaskProgressionManager.h b/src/Norm/base/TaskProgressionManager.h index a676297fe..63b249c2b 100644 --- a/src/Norm/base/TaskProgressionManager.h +++ b/src/Norm/base/TaskProgressionManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Timer.cpp b/src/Norm/base/Timer.cpp index 651553ca3..8aa8c8964 100644 --- a/src/Norm/base/Timer.cpp +++ b/src/Norm/base/Timer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Timer.h b/src/Norm/base/Timer.h index d411285eb..c9382c443 100644 --- a/src/Norm/base/Timer.h +++ b/src/Norm/base/Timer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UICard.cpp b/src/Norm/base/UICard.cpp index da708226c..fa3949eda 100644 --- a/src/Norm/base/UICard.cpp +++ b/src/Norm/base/UICard.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIData.cpp b/src/Norm/base/UIData.cpp index d44ac1807..7f396561c 100644 --- a/src/Norm/base/UIData.cpp +++ b/src/Norm/base/UIData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIElements.cpp b/src/Norm/base/UIElements.cpp index 1a586a18f..157f9d573 100644 --- a/src/Norm/base/UIElements.cpp +++ b/src/Norm/base/UIElements.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIList.cpp b/src/Norm/base/UIList.cpp index c38500f20..3e1e46b0a 100644 --- a/src/Norm/base/UIList.cpp +++ b/src/Norm/base/UIList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIObject.cpp b/src/Norm/base/UIObject.cpp index 4adf14dbe..005588c3b 100644 --- a/src/Norm/base/UIObject.cpp +++ b/src/Norm/base/UIObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIObjectArrayView.cpp b/src/Norm/base/UIObjectArrayView.cpp index 1cbb106cd..2ebb117b4 100644 --- a/src/Norm/base/UIObjectArrayView.cpp +++ b/src/Norm/base/UIObjectArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIObjectView.cpp b/src/Norm/base/UIObjectView.cpp index b1126a679..6cc56c59a 100644 --- a/src/Norm/base/UIObjectView.cpp +++ b/src/Norm/base/UIObjectView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UITaskProgression.cpp b/src/Norm/base/UITaskProgression.cpp index 0e97e4536..3ed707e7d 100644 --- a/src/Norm/base/UITaskProgression.cpp +++ b/src/Norm/base/UITaskProgression.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UIUnit.cpp b/src/Norm/base/UIUnit.cpp index ce6596254..951963682 100644 --- a/src/Norm/base/UIUnit.cpp +++ b/src/Norm/base/UIUnit.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/UserInterface.h b/src/Norm/base/UserInterface.h index 74270de8d..6611e72eb 100644 --- a/src/Norm/base/UserInterface.h +++ b/src/Norm/base/UserInterface.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Vector.cpp b/src/Norm/base/Vector.cpp index c28b420f8..061cf1bfd 100644 --- a/src/Norm/base/Vector.cpp +++ b/src/Norm/base/Vector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/Vector.h b/src/Norm/base/Vector.h index 0ec59245c..1f23868a6 100644 --- a/src/Norm/base/Vector.h +++ b/src/Norm/base/Vector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/jni_md_linux.h b/src/Norm/base/jni_md_linux.h index ed5ebcf2f..3cfc982d4 100644 --- a/src/Norm/base/jni_md_linux.h +++ b/src/Norm/base/jni_md_linux.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/jni_md_windows.h b/src/Norm/base/jni_md_windows.h index 7c2aff9bf..e02e3a756 100644 --- a/src/Norm/base/jni_md_windows.h +++ b/src/Norm/base/jni_md_windows.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/base/jni_wrapper.h b/src/Norm/base/jni_wrapper.h index 1b87c5f13..69bb22b1b 100644 --- a/src/Norm/base/jni_wrapper.h +++ b/src/Norm/base/jni_wrapper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/BaseTest.cpp b/src/Norm/basetest/BaseTest.cpp index 1ede19218..a6e1afb31 100644 --- a/src/Norm/basetest/BaseTest.cpp +++ b/src/Norm/basetest/BaseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/BaseTest.h b/src/Norm/basetest/BaseTest.h index d521ed7bb..014906782 100644 --- a/src/Norm/basetest/BaseTest.h +++ b/src/Norm/basetest/BaseTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/DiversTests.cpp b/src/Norm/basetest/DiversTests.cpp index 964c03f54..58d32aa75 100644 --- a/src/Norm/basetest/DiversTests.cpp +++ b/src/Norm/basetest/DiversTests.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/DiversTests.h b/src/Norm/basetest/DiversTests.h index 8b94a85cd..1d1c4ccbf 100644 --- a/src/Norm/basetest/DiversTests.h +++ b/src/Norm/basetest/DiversTests.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITest.cpp b/src/Norm/basetest/UITest.cpp index 6c32ae709..a8c9ddd69 100644 --- a/src/Norm/basetest/UITest.cpp +++ b/src/Norm/basetest/UITest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITest.h b/src/Norm/basetest/UITest.h index 74b4cf655..b0b2fce80 100644 --- a/src/Norm/basetest/UITest.h +++ b/src/Norm/basetest/UITest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestActionSubObject.cpp b/src/Norm/basetest/UITestActionSubObject.cpp index 670e3077d..132dc9d6f 100644 --- a/src/Norm/basetest/UITestActionSubObject.cpp +++ b/src/Norm/basetest/UITestActionSubObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestActionSubObject.h b/src/Norm/basetest/UITestActionSubObject.h index 8723e9f4f..1c073a7cf 100644 --- a/src/Norm/basetest/UITestActionSubObject.h +++ b/src/Norm/basetest/UITestActionSubObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestActionSubObjectView.cpp b/src/Norm/basetest/UITestActionSubObjectView.cpp index ab05cf308..7664d44ca 100644 --- a/src/Norm/basetest/UITestActionSubObjectView.cpp +++ b/src/Norm/basetest/UITestActionSubObjectView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestActionSubObjectView.h b/src/Norm/basetest/UITestActionSubObjectView.h index 48d30576e..101a9d4af 100644 --- a/src/Norm/basetest/UITestActionSubObjectView.h +++ b/src/Norm/basetest/UITestActionSubObjectView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestClassSpec.cpp b/src/Norm/basetest/UITestClassSpec.cpp index d3ba57eef..8af83506b 100644 --- a/src/Norm/basetest/UITestClassSpec.cpp +++ b/src/Norm/basetest/UITestClassSpec.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestClassSpec.h b/src/Norm/basetest/UITestClassSpec.h index 9b1379d11..adb19f8a9 100644 --- a/src/Norm/basetest/UITestClassSpec.h +++ b/src/Norm/basetest/UITestClassSpec.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestClassSpecArrayView.cpp b/src/Norm/basetest/UITestClassSpecArrayView.cpp index 76afc6b34..1f76f3792 100644 --- a/src/Norm/basetest/UITestClassSpecArrayView.cpp +++ b/src/Norm/basetest/UITestClassSpecArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestClassSpecArrayView.h b/src/Norm/basetest/UITestClassSpecArrayView.h index 222a868be..ebbe9406a 100644 --- a/src/Norm/basetest/UITestClassSpecArrayView.h +++ b/src/Norm/basetest/UITestClassSpecArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestClassSpecView.cpp b/src/Norm/basetest/UITestClassSpecView.cpp index 5b854b2d0..534d68a33 100644 --- a/src/Norm/basetest/UITestClassSpecView.cpp +++ b/src/Norm/basetest/UITestClassSpecView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestClassSpecView.h b/src/Norm/basetest/UITestClassSpecView.h index 20d5d5a01..2f54d7ec7 100644 --- a/src/Norm/basetest/UITestClassSpecView.h +++ b/src/Norm/basetest/UITestClassSpecView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestObject.cpp b/src/Norm/basetest/UITestObject.cpp index 8a12f29ce..d10e2a759 100644 --- a/src/Norm/basetest/UITestObject.cpp +++ b/src/Norm/basetest/UITestObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestObject.h b/src/Norm/basetest/UITestObject.h index f3966cd08..fb7431222 100644 --- a/src/Norm/basetest/UITestObject.h +++ b/src/Norm/basetest/UITestObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestObjectView.cpp b/src/Norm/basetest/UITestObjectView.cpp index 2df1c34ab..ca2008adc 100644 --- a/src/Norm/basetest/UITestObjectView.cpp +++ b/src/Norm/basetest/UITestObjectView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestObjectView.h b/src/Norm/basetest/UITestObjectView.h index 82a68e80a..226b62512 100644 --- a/src/Norm/basetest/UITestObjectView.h +++ b/src/Norm/basetest/UITestObjectView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestSubObject.cpp b/src/Norm/basetest/UITestSubObject.cpp index deac1ad95..c31975c7c 100644 --- a/src/Norm/basetest/UITestSubObject.cpp +++ b/src/Norm/basetest/UITestSubObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestSubObject.h b/src/Norm/basetest/UITestSubObject.h index e29d2f3b3..f3bdf31c5 100644 --- a/src/Norm/basetest/UITestSubObject.h +++ b/src/Norm/basetest/UITestSubObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestSubObjectView.cpp b/src/Norm/basetest/UITestSubObjectView.cpp index 0dc7d119d..a91602042 100644 --- a/src/Norm/basetest/UITestSubObjectView.cpp +++ b/src/Norm/basetest/UITestSubObjectView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/UITestSubObjectView.h b/src/Norm/basetest/UITestSubObjectView.h index eb723f4a2..6d34ed98b 100644 --- a/src/Norm/basetest/UITestSubObjectView.h +++ b/src/Norm/basetest/UITestSubObjectView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/main.cpp b/src/Norm/basetest/main.cpp index 102b0658b..0fccb6543 100644 --- a/src/Norm/basetest/main.cpp +++ b/src/Norm/basetest/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/basetest/main.h b/src/Norm/basetest/main.h index 33631946d..8fa4830a0 100644 --- a/src/Norm/basetest/main.h +++ b/src/Norm/basetest/main.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/Attribute.cpp b/src/Norm/genere/Attribute.cpp index 8ce8def02..5c4bbddf1 100644 --- a/src/Norm/genere/Attribute.cpp +++ b/src/Norm/genere/Attribute.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/Attribute.h b/src/Norm/genere/Attribute.h index c3efa5a0a..93d5e9124 100644 --- a/src/Norm/genere/Attribute.h +++ b/src/Norm/genere/Attribute.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/AttributeTable.cpp b/src/Norm/genere/AttributeTable.cpp index 995336b37..293e0c333 100644 --- a/src/Norm/genere/AttributeTable.cpp +++ b/src/Norm/genere/AttributeTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/AttributeTable.h b/src/Norm/genere/AttributeTable.h index 1a8c799ba..43485acb4 100644 --- a/src/Norm/genere/AttributeTable.h +++ b/src/Norm/genere/AttributeTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/Genere.h b/src/Norm/genere/Genere.h index 9fb1d868e..ecfd26591 100644 --- a/src/Norm/genere/Genere.h +++ b/src/Norm/genere/Genere.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/GenereAttArrayViewC.cpp b/src/Norm/genere/GenereAttArrayViewC.cpp index 2e6e59b3f..39a2080fc 100644 --- a/src/Norm/genere/GenereAttArrayViewC.cpp +++ b/src/Norm/genere/GenereAttArrayViewC.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/GenereAttC.cpp b/src/Norm/genere/GenereAttC.cpp index 248e3e028..c948a1222 100644 --- a/src/Norm/genere/GenereAttC.cpp +++ b/src/Norm/genere/GenereAttC.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/GenereAttH.cpp b/src/Norm/genere/GenereAttH.cpp index 45c8742da..f5c6ee422 100644 --- a/src/Norm/genere/GenereAttH.cpp +++ b/src/Norm/genere/GenereAttH.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/GenereAttViewC.cpp b/src/Norm/genere/GenereAttViewC.cpp index 8db95886b..a5b25b0bc 100644 --- a/src/Norm/genere/GenereAttViewC.cpp +++ b/src/Norm/genere/GenereAttViewC.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/GenereAttViewH.cpp b/src/Norm/genere/GenereAttViewH.cpp index 7bc2eae8b..e004e8d5b 100644 --- a/src/Norm/genere/GenereAttViewH.cpp +++ b/src/Norm/genere/GenereAttViewH.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/ManagedObject.cpp b/src/Norm/genere/ManagedObject.cpp index 5b1dc1be1..6d2b04ae4 100644 --- a/src/Norm/genere/ManagedObject.cpp +++ b/src/Norm/genere/ManagedObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/ManagedObject.h b/src/Norm/genere/ManagedObject.h index a6bc0d27f..5061ff9c1 100644 --- a/src/Norm/genere/ManagedObject.h +++ b/src/Norm/genere/ManagedObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/ManagedObjectTable.cpp b/src/Norm/genere/ManagedObjectTable.cpp index c5d5c1054..b0215cc04 100644 --- a/src/Norm/genere/ManagedObjectTable.cpp +++ b/src/Norm/genere/ManagedObjectTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/ManagedObjectTable.h b/src/Norm/genere/ManagedObjectTable.h index 9fc6b3736..920a40db2 100644 --- a/src/Norm/genere/ManagedObjectTable.h +++ b/src/Norm/genere/ManagedObjectTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/QueryServices.cpp b/src/Norm/genere/QueryServices.cpp index e16f3e1f9..ecce2cd8f 100644 --- a/src/Norm/genere/QueryServices.cpp +++ b/src/Norm/genere/QueryServices.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/QueryServices.h b/src/Norm/genere/QueryServices.h index f805e7cb4..44f5688c5 100644 --- a/src/Norm/genere/QueryServices.h +++ b/src/Norm/genere/QueryServices.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/QueryServicesView.cpp b/src/Norm/genere/QueryServicesView.cpp index bcbfade4e..16b9f1d0d 100644 --- a/src/Norm/genere/QueryServicesView.cpp +++ b/src/Norm/genere/QueryServicesView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/QueryServicesView.h b/src/Norm/genere/QueryServicesView.h index 5945b23a4..1944d891f 100644 --- a/src/Norm/genere/QueryServicesView.h +++ b/src/Norm/genere/QueryServicesView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/Section.cpp b/src/Norm/genere/Section.cpp index a2f76a2b7..93c7fd0f1 100644 --- a/src/Norm/genere/Section.cpp +++ b/src/Norm/genere/Section.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/Section.h b/src/Norm/genere/Section.h index b58c3151e..7615fdbea 100644 --- a/src/Norm/genere/Section.h +++ b/src/Norm/genere/Section.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/SectionTable.cpp b/src/Norm/genere/SectionTable.cpp index c569284b1..b327c7535 100644 --- a/src/Norm/genere/SectionTable.cpp +++ b/src/Norm/genere/SectionTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/SectionTable.h b/src/Norm/genere/SectionTable.h index 5b24fe11d..a54e63329 100644 --- a/src/Norm/genere/SectionTable.h +++ b/src/Norm/genere/SectionTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/TableGenerator.cpp b/src/Norm/genere/TableGenerator.cpp index e406cc37a..9e4ff0e51 100644 --- a/src/Norm/genere/TableGenerator.cpp +++ b/src/Norm/genere/TableGenerator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/TableGenerator.h b/src/Norm/genere/TableGenerator.h index 650543a8e..e9ed7f8c3 100644 --- a/src/Norm/genere/TableGenerator.h +++ b/src/Norm/genere/TableGenerator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/TableServices.cpp b/src/Norm/genere/TableServices.cpp index d996319aa..f608a6b14 100644 --- a/src/Norm/genere/TableServices.cpp +++ b/src/Norm/genere/TableServices.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/TableServices.h b/src/Norm/genere/TableServices.h index 7c3c0c2ce..638f3663b 100644 --- a/src/Norm/genere/TableServices.h +++ b/src/Norm/genere/TableServices.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/genere.cpp b/src/Norm/genere/genere.cpp index 127db8fbf..81aea5d54 100644 --- a/src/Norm/genere/genere.cpp +++ b/src/Norm/genere/genere.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/genere/genereattarrayviewH.cpp b/src/Norm/genere/genereattarrayviewH.cpp index 1cd0b1a5e..1f69b76fd 100644 --- a/src/Norm/genere/genereattarrayviewH.cpp +++ b/src/Norm/genere/genereattarrayviewH.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/Sample.cpp b/src/Norm/generetest/Sample.cpp index 73c6e05dc..50369e243 100644 --- a/src/Norm/generetest/Sample.cpp +++ b/src/Norm/generetest/Sample.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/Sample.h b/src/Norm/generetest/Sample.h index 6e6051b4f..b1ec737c0 100644 --- a/src/Norm/generetest/Sample.h +++ b/src/Norm/generetest/Sample.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/SampleArrayView.cpp b/src/Norm/generetest/SampleArrayView.cpp index c591a581c..ec7c861c0 100644 --- a/src/Norm/generetest/SampleArrayView.cpp +++ b/src/Norm/generetest/SampleArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/SampleArrayView.h b/src/Norm/generetest/SampleArrayView.h index e8cfcc463..67dbf3f6e 100644 --- a/src/Norm/generetest/SampleArrayView.h +++ b/src/Norm/generetest/SampleArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/SampleView.cpp b/src/Norm/generetest/SampleView.cpp index dde20b129..f5dcdd462 100644 --- a/src/Norm/generetest/SampleView.cpp +++ b/src/Norm/generetest/SampleView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/SampleView.h b/src/Norm/generetest/SampleView.h index 7ee9e5d87..26e993cab 100644 --- a/src/Norm/generetest/SampleView.h +++ b/src/Norm/generetest/SampleView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/generetest/generetest.cpp b/src/Norm/generetest/generetest.cpp index 47462adf9..5c254508a 100644 --- a/src/Norm/generetest/generetest.cpp +++ b/src/Norm/generetest/generetest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.cpp b/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.cpp index b4699eed2..12167a5d8 100644 --- a/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.cpp +++ b/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.h b/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.h index 394dc8838..91a5defb7 100644 --- a/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.h +++ b/src/Norm/khiopsdriver_file_null/khiopsdriver_file_null.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample1/main.cpp b/src/Norm/samples/sample1/main.cpp index 2210d4660..964e6ebdd 100644 --- a/src/Norm/samples/sample1/main.cpp +++ b/src/Norm/samples/sample1/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample1/main.h b/src/Norm/samples/sample1/main.h index 78234984c..919a228cf 100644 --- a/src/Norm/samples/sample1/main.h +++ b/src/Norm/samples/sample1/main.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample2/PRWorker.cpp b/src/Norm/samples/sample2/PRWorker.cpp index fd4d2c824..584b9f54a 100644 --- a/src/Norm/samples/sample2/PRWorker.cpp +++ b/src/Norm/samples/sample2/PRWorker.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample2/PRWorker.h b/src/Norm/samples/sample2/PRWorker.h index d7faedc33..266e19f8e 100644 --- a/src/Norm/samples/sample2/PRWorker.h +++ b/src/Norm/samples/sample2/PRWorker.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample2/PRWorkerView.cpp b/src/Norm/samples/sample2/PRWorkerView.cpp index 9b338326b..d50d35c5f 100644 --- a/src/Norm/samples/sample2/PRWorkerView.cpp +++ b/src/Norm/samples/sample2/PRWorkerView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample2/PRWorkerView.h b/src/Norm/samples/sample2/PRWorkerView.h index dddce9fe9..725a1c258 100644 --- a/src/Norm/samples/sample2/PRWorkerView.h +++ b/src/Norm/samples/sample2/PRWorkerView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample2/main.cpp b/src/Norm/samples/sample2/main.cpp index bed84ff6f..20c955f23 100644 --- a/src/Norm/samples/sample2/main.cpp +++ b/src/Norm/samples/sample2/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample2/main.h b/src/Norm/samples/sample2/main.h index c34f2b728..db6cb7aa1 100644 --- a/src/Norm/samples/sample2/main.h +++ b/src/Norm/samples/sample2/main.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRAddress.cpp b/src/Norm/samples/sample3/PRAddress.cpp index 709318ab5..20ef6e91a 100644 --- a/src/Norm/samples/sample3/PRAddress.cpp +++ b/src/Norm/samples/sample3/PRAddress.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRAddress.h b/src/Norm/samples/sample3/PRAddress.h index 5887f3283..cc8e0b742 100644 --- a/src/Norm/samples/sample3/PRAddress.h +++ b/src/Norm/samples/sample3/PRAddress.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRAddressView.cpp b/src/Norm/samples/sample3/PRAddressView.cpp index 8450131c2..a9cfbca05 100644 --- a/src/Norm/samples/sample3/PRAddressView.cpp +++ b/src/Norm/samples/sample3/PRAddressView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRAddressView.h b/src/Norm/samples/sample3/PRAddressView.h index c698df48e..acd14561c 100644 --- a/src/Norm/samples/sample3/PRAddressView.h +++ b/src/Norm/samples/sample3/PRAddressView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRChild.cpp b/src/Norm/samples/sample3/PRChild.cpp index 4622c9e5e..6dba2dd6a 100644 --- a/src/Norm/samples/sample3/PRChild.cpp +++ b/src/Norm/samples/sample3/PRChild.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRChild.h b/src/Norm/samples/sample3/PRChild.h index ba4d53a65..73ac4c19f 100644 --- a/src/Norm/samples/sample3/PRChild.h +++ b/src/Norm/samples/sample3/PRChild.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRChildArrayView.cpp b/src/Norm/samples/sample3/PRChildArrayView.cpp index 641a3140b..cbf3c4374 100644 --- a/src/Norm/samples/sample3/PRChildArrayView.cpp +++ b/src/Norm/samples/sample3/PRChildArrayView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRChildArrayView.h b/src/Norm/samples/sample3/PRChildArrayView.h index 2d97b2d71..97020e436 100644 --- a/src/Norm/samples/sample3/PRChildArrayView.h +++ b/src/Norm/samples/sample3/PRChildArrayView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRChildView.cpp b/src/Norm/samples/sample3/PRChildView.cpp index e85f2162b..5c274ff87 100644 --- a/src/Norm/samples/sample3/PRChildView.cpp +++ b/src/Norm/samples/sample3/PRChildView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRChildView.h b/src/Norm/samples/sample3/PRChildView.h index fcc2ea125..a2c74f73a 100644 --- a/src/Norm/samples/sample3/PRChildView.h +++ b/src/Norm/samples/sample3/PRChildView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRWorker.cpp b/src/Norm/samples/sample3/PRWorker.cpp index ff1adca9b..c9dd0541d 100644 --- a/src/Norm/samples/sample3/PRWorker.cpp +++ b/src/Norm/samples/sample3/PRWorker.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRWorker.h b/src/Norm/samples/sample3/PRWorker.h index 573e3c586..760b7bdde 100644 --- a/src/Norm/samples/sample3/PRWorker.h +++ b/src/Norm/samples/sample3/PRWorker.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRWorkerView.cpp b/src/Norm/samples/sample3/PRWorkerView.cpp index 49698239b..af69da9af 100644 --- a/src/Norm/samples/sample3/PRWorkerView.cpp +++ b/src/Norm/samples/sample3/PRWorkerView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/PRWorkerView.h b/src/Norm/samples/sample3/PRWorkerView.h index 72cfd1405..c23c40410 100644 --- a/src/Norm/samples/sample3/PRWorkerView.h +++ b/src/Norm/samples/sample3/PRWorkerView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/main.cpp b/src/Norm/samples/sample3/main.cpp index bed84ff6f..20c955f23 100644 --- a/src/Norm/samples/sample3/main.cpp +++ b/src/Norm/samples/sample3/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Norm/samples/sample3/main.h b/src/Norm/samples/sample3/main.h index c34f2b728..db6cb7aa1 100644 --- a/src/Norm/samples/sample3/main.h +++ b/src/Norm/samples/sample3/main.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIFileServerSlave.cpp b/src/Parallel/PLMPI/PLMPIFileServerSlave.cpp index 79a03c7f2..0bbd7ea40 100644 --- a/src/Parallel/PLMPI/PLMPIFileServerSlave.cpp +++ b/src/Parallel/PLMPI/PLMPIFileServerSlave.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIFileServerSlave.h b/src/Parallel/PLMPI/PLMPIFileServerSlave.h index 5f9e23a1a..a57a7037e 100644 --- a/src/Parallel/PLMPI/PLMPIFileServerSlave.h +++ b/src/Parallel/PLMPI/PLMPIFileServerSlave.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMaster.cpp b/src/Parallel/PLMPI/PLMPIMaster.cpp index 7846a1a39..ae078fd02 100644 --- a/src/Parallel/PLMPI/PLMPIMaster.cpp +++ b/src/Parallel/PLMPI/PLMPIMaster.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMaster.h b/src/Parallel/PLMPI/PLMPIMaster.h index cdf349b4a..00447fd99 100644 --- a/src/Parallel/PLMPI/PLMPIMaster.h +++ b/src/Parallel/PLMPI/PLMPIMaster.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMasterSlaveTags.h b/src/Parallel/PLMPI/PLMPIMasterSlaveTags.h index 1952eefb3..180acc88a 100644 --- a/src/Parallel/PLMPI/PLMPIMasterSlaveTags.h +++ b/src/Parallel/PLMPI/PLMPIMasterSlaveTags.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMessageManager.cpp b/src/Parallel/PLMPI/PLMPIMessageManager.cpp index 2cd134b0d..3d0461035 100644 --- a/src/Parallel/PLMPI/PLMPIMessageManager.cpp +++ b/src/Parallel/PLMPI/PLMPIMessageManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMessageManager.h b/src/Parallel/PLMPI/PLMPIMessageManager.h index 0c02eb9b7..569716bfb 100644 --- a/src/Parallel/PLMPI/PLMPIMessageManager.h +++ b/src/Parallel/PLMPI/PLMPIMessageManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMsgContext.cpp b/src/Parallel/PLMPI/PLMPIMsgContext.cpp index ae1236653..828cdebc4 100644 --- a/src/Parallel/PLMPI/PLMPIMsgContext.cpp +++ b/src/Parallel/PLMPI/PLMPIMsgContext.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPIMsgContext.h b/src/Parallel/PLMPI/PLMPIMsgContext.h index 2118b7464..8c721e0e5 100644 --- a/src/Parallel/PLMPI/PLMPIMsgContext.h +++ b/src/Parallel/PLMPI/PLMPIMsgContext.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISlave.cpp b/src/Parallel/PLMPI/PLMPISlave.cpp index 73154d267..980459c34 100644 --- a/src/Parallel/PLMPI/PLMPISlave.cpp +++ b/src/Parallel/PLMPI/PLMPISlave.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISlave.h b/src/Parallel/PLMPI/PLMPISlave.h index 560115067..5abf87be0 100644 --- a/src/Parallel/PLMPI/PLMPISlave.h +++ b/src/Parallel/PLMPI/PLMPISlave.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISlaveLauncher.cpp b/src/Parallel/PLMPI/PLMPISlaveLauncher.cpp index 3f60d4076..1c5dbf37a 100644 --- a/src/Parallel/PLMPI/PLMPISlaveLauncher.cpp +++ b/src/Parallel/PLMPI/PLMPISlaveLauncher.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISlaveLauncher.h b/src/Parallel/PLMPI/PLMPISlaveLauncher.h index 189dfa654..45cfb384f 100644 --- a/src/Parallel/PLMPI/PLMPISlaveLauncher.h +++ b/src/Parallel/PLMPI/PLMPISlaveLauncher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISlaveProgressionManager.cpp b/src/Parallel/PLMPI/PLMPISlaveProgressionManager.cpp index 9490beca3..d88a78042 100644 --- a/src/Parallel/PLMPI/PLMPISlaveProgressionManager.cpp +++ b/src/Parallel/PLMPI/PLMPISlaveProgressionManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISlaveProgressionManager.h b/src/Parallel/PLMPI/PLMPISlaveProgressionManager.h index eb8cd7742..30fc68950 100644 --- a/src/Parallel/PLMPI/PLMPISlaveProgressionManager.h +++ b/src/Parallel/PLMPI/PLMPISlaveProgressionManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.cpp b/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.cpp index eb9cf371a..8f432536b 100644 --- a/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.cpp +++ b/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.h b/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.h index 55d6b3d62..7c10f03f8 100644 --- a/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.h +++ b/src/Parallel/PLMPI/PLMPISystemFileDriverRemote.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPITaskDriver.cpp b/src/Parallel/PLMPI/PLMPITaskDriver.cpp index 6f14841c3..ff726c1eb 100644 --- a/src/Parallel/PLMPI/PLMPITaskDriver.cpp +++ b/src/Parallel/PLMPI/PLMPITaskDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPITaskDriver.h b/src/Parallel/PLMPI/PLMPITaskDriver.h index ca37de212..32602de16 100644 --- a/src/Parallel/PLMPI/PLMPITaskDriver.h +++ b/src/Parallel/PLMPI/PLMPITaskDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPITracer.cpp b/src/Parallel/PLMPI/PLMPITracer.cpp index d6c37bf9b..3da3dd8d2 100644 --- a/src/Parallel/PLMPI/PLMPITracer.cpp +++ b/src/Parallel/PLMPI/PLMPITracer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPITracer.h b/src/Parallel/PLMPI/PLMPITracer.h index eaefbe19e..924cbbbfd 100644 --- a/src/Parallel/PLMPI/PLMPITracer.h +++ b/src/Parallel/PLMPI/PLMPITracer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLMPI/PLMPImpi_wrapper.h b/src/Parallel/PLMPI/PLMPImpi_wrapper.h index b1b7ab561..8305054ab 100644 --- a/src/Parallel/PLMPI/PLMPImpi_wrapper.h +++ b/src/Parallel/PLMPI/PLMPImpi_wrapper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLErrorWithIndex.cpp b/src/Parallel/PLParallelTask/PLErrorWithIndex.cpp index 6ed7239e5..5b4e5c4eb 100644 --- a/src/Parallel/PLParallelTask/PLErrorWithIndex.cpp +++ b/src/Parallel/PLParallelTask/PLErrorWithIndex.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLErrorWithIndex.h b/src/Parallel/PLParallelTask/PLErrorWithIndex.h index 19efaef57..09b6d4206 100644 --- a/src/Parallel/PLParallelTask/PLErrorWithIndex.h +++ b/src/Parallel/PLParallelTask/PLErrorWithIndex.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLFileConcatenater.cpp b/src/Parallel/PLParallelTask/PLFileConcatenater.cpp index 8c90ec5d3..7f9ecb647 100644 --- a/src/Parallel/PLParallelTask/PLFileConcatenater.cpp +++ b/src/Parallel/PLParallelTask/PLFileConcatenater.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLFileConcatenater.h b/src/Parallel/PLParallelTask/PLFileConcatenater.h index fc24033e0..1659aba27 100644 --- a/src/Parallel/PLParallelTask/PLFileConcatenater.h +++ b/src/Parallel/PLParallelTask/PLFileConcatenater.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLIncrementalStats.cpp b/src/Parallel/PLParallelTask/PLIncrementalStats.cpp index 5353e6008..29dcda99a 100644 --- a/src/Parallel/PLParallelTask/PLIncrementalStats.cpp +++ b/src/Parallel/PLParallelTask/PLIncrementalStats.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLIncrementalStats.h b/src/Parallel/PLParallelTask/PLIncrementalStats.h index 95926c88c..732a17412 100644 --- a/src/Parallel/PLParallelTask/PLIncrementalStats.h +++ b/src/Parallel/PLParallelTask/PLIncrementalStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLParallelTask.cpp b/src/Parallel/PLParallelTask/PLParallelTask.cpp index 2e61b4ff3..af32d9a2a 100644 --- a/src/Parallel/PLParallelTask/PLParallelTask.cpp +++ b/src/Parallel/PLParallelTask/PLParallelTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLParallelTask.h b/src/Parallel/PLParallelTask/PLParallelTask.h index a83a601a2..aea385cef 100644 --- a/src/Parallel/PLParallelTask/PLParallelTask.h +++ b/src/Parallel/PLParallelTask/PLParallelTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSerializer.cpp b/src/Parallel/PLParallelTask/PLSerializer.cpp index b86877dfc..377771e4c 100644 --- a/src/Parallel/PLParallelTask/PLSerializer.cpp +++ b/src/Parallel/PLParallelTask/PLSerializer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSerializer.h b/src/Parallel/PLParallelTask/PLSerializer.h index e36c7f878..79d0696b6 100644 --- a/src/Parallel/PLParallelTask/PLSerializer.h +++ b/src/Parallel/PLParallelTask/PLSerializer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSharedObject.cpp b/src/Parallel/PLParallelTask/PLSharedObject.cpp index a0cdf4b8e..079034922 100644 --- a/src/Parallel/PLParallelTask/PLSharedObject.cpp +++ b/src/Parallel/PLParallelTask/PLSharedObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSharedObject.h b/src/Parallel/PLParallelTask/PLSharedObject.h index 37304b3c8..04679968e 100644 --- a/src/Parallel/PLParallelTask/PLSharedObject.h +++ b/src/Parallel/PLParallelTask/PLSharedObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSharedVariable.cpp b/src/Parallel/PLParallelTask/PLSharedVariable.cpp index a024c16fd..8244f219d 100644 --- a/src/Parallel/PLParallelTask/PLSharedVariable.cpp +++ b/src/Parallel/PLParallelTask/PLSharedVariable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSharedVariable.h b/src/Parallel/PLParallelTask/PLSharedVariable.h index 3cfca2e89..a0a23a2f3 100644 --- a/src/Parallel/PLParallelTask/PLSharedVariable.h +++ b/src/Parallel/PLParallelTask/PLSharedVariable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSharedVector.cpp b/src/Parallel/PLParallelTask/PLSharedVector.cpp index b7dffd93e..9d3eafc2d 100644 --- a/src/Parallel/PLParallelTask/PLSharedVector.cpp +++ b/src/Parallel/PLParallelTask/PLSharedVector.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSharedVector.h b/src/Parallel/PLParallelTask/PLSharedVector.h index 5811615dc..88335ad61 100644 --- a/src/Parallel/PLParallelTask/PLSharedVector.h +++ b/src/Parallel/PLParallelTask/PLSharedVector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_HostResource.cpp b/src/Parallel/PLParallelTask/PLShared_HostResource.cpp index 312b81806..f1374fd2e 100644 --- a/src/Parallel/PLParallelTask/PLShared_HostResource.cpp +++ b/src/Parallel/PLParallelTask/PLShared_HostResource.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_HostResource.h b/src/Parallel/PLParallelTask/PLShared_HostResource.h index b37b4859d..ed810d5dc 100644 --- a/src/Parallel/PLParallelTask/PLShared_HostResource.h +++ b/src/Parallel/PLParallelTask/PLShared_HostResource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_ObjectArray.cpp b/src/Parallel/PLParallelTask/PLShared_ObjectArray.cpp index ac2355b45..4b142e149 100644 --- a/src/Parallel/PLParallelTask/PLShared_ObjectArray.cpp +++ b/src/Parallel/PLParallelTask/PLShared_ObjectArray.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_ObjectDictionary.cpp b/src/Parallel/PLParallelTask/PLShared_ObjectDictionary.cpp index e31b11cbd..792c94b95 100644 --- a/src/Parallel/PLParallelTask/PLShared_ObjectDictionary.cpp +++ b/src/Parallel/PLParallelTask/PLShared_ObjectDictionary.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_ObjectList.cpp b/src/Parallel/PLParallelTask/PLShared_ObjectList.cpp index eb7203ee6..7f9e21915 100644 --- a/src/Parallel/PLParallelTask/PLShared_ObjectList.cpp +++ b/src/Parallel/PLParallelTask/PLShared_ObjectList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.cpp b/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.cpp index f83a9f31a..b955dce40 100644 --- a/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.cpp +++ b/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.h b/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.h index 20bbf9cc6..016dbd930 100644 --- a/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.h +++ b/src/Parallel/PLParallelTask/PLShared_ResourceRequirement.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_SampleObject.cpp b/src/Parallel/PLParallelTask/PLShared_SampleObject.cpp index cc2014a40..a458886eb 100644 --- a/src/Parallel/PLParallelTask/PLShared_SampleObject.cpp +++ b/src/Parallel/PLParallelTask/PLShared_SampleObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_SampleObject.h b/src/Parallel/PLParallelTask/PLShared_SampleObject.h index 5e1fb9c63..254dba514 100644 --- a/src/Parallel/PLParallelTask/PLShared_SampleObject.h +++ b/src/Parallel/PLParallelTask/PLShared_SampleObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.cpp b/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.cpp index 275c88cc4..44d22b367 100644 --- a/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.cpp +++ b/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.h b/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.h index 8ec805615..848d11d6e 100644 --- a/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.h +++ b/src/Parallel/PLParallelTask/PLShared_TaskResourceGrant.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSlaveState.cpp b/src/Parallel/PLParallelTask/PLSlaveState.cpp index e92c8fd45..d287bdbaf 100644 --- a/src/Parallel/PLParallelTask/PLSlaveState.cpp +++ b/src/Parallel/PLParallelTask/PLSlaveState.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLSlaveState.h b/src/Parallel/PLParallelTask/PLSlaveState.h index 39a94095c..391df3e90 100644 --- a/src/Parallel/PLParallelTask/PLSlaveState.h +++ b/src/Parallel/PLParallelTask/PLSlaveState.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLTaskDriver.cpp b/src/Parallel/PLParallelTask/PLTaskDriver.cpp index cd9c08b3a..9db6ec0a1 100644 --- a/src/Parallel/PLParallelTask/PLTaskDriver.cpp +++ b/src/Parallel/PLParallelTask/PLTaskDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLTaskDriver.h b/src/Parallel/PLParallelTask/PLTaskDriver.h index 6f0117cdd..37b52f326 100644 --- a/src/Parallel/PLParallelTask/PLTaskDriver.h +++ b/src/Parallel/PLParallelTask/PLTaskDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLTracer.cpp b/src/Parallel/PLParallelTask/PLTracer.cpp index e87c2eb19..6a2974434 100644 --- a/src/Parallel/PLParallelTask/PLTracer.cpp +++ b/src/Parallel/PLParallelTask/PLTracer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/PLTracer.h b/src/Parallel/PLParallelTask/PLTracer.h index 0a8975973..6396ec8e3 100644 --- a/src/Parallel/PLParallelTask/PLTracer.h +++ b/src/Parallel/PLParallelTask/PLTracer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMParallelResourceDriver.cpp b/src/Parallel/PLParallelTask/RMParallelResourceDriver.cpp index 27d8fbea3..e12c05e31 100644 --- a/src/Parallel/PLParallelTask/RMParallelResourceDriver.cpp +++ b/src/Parallel/PLParallelTask/RMParallelResourceDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMParallelResourceDriver.h b/src/Parallel/PLParallelTask/RMParallelResourceDriver.h index ad955a0f9..5f963015a 100644 --- a/src/Parallel/PLParallelTask/RMParallelResourceDriver.h +++ b/src/Parallel/PLParallelTask/RMParallelResourceDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMParallelResourceManager.cpp b/src/Parallel/PLParallelTask/RMParallelResourceManager.cpp index 460a59215..ce65e3915 100644 --- a/src/Parallel/PLParallelTask/RMParallelResourceManager.cpp +++ b/src/Parallel/PLParallelTask/RMParallelResourceManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMParallelResourceManager.h b/src/Parallel/PLParallelTask/RMParallelResourceManager.h index b95ec75aa..b19f6e28a 100644 --- a/src/Parallel/PLParallelTask/RMParallelResourceManager.h +++ b/src/Parallel/PLParallelTask/RMParallelResourceManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMTaskResourceGrant.cpp b/src/Parallel/PLParallelTask/RMTaskResourceGrant.cpp index 19846940b..053d24abd 100644 --- a/src/Parallel/PLParallelTask/RMTaskResourceGrant.cpp +++ b/src/Parallel/PLParallelTask/RMTaskResourceGrant.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMTaskResourceGrant.h b/src/Parallel/PLParallelTask/RMTaskResourceGrant.h index 08c1ddbe1..5327a49f9 100644 --- a/src/Parallel/PLParallelTask/RMTaskResourceGrant.h +++ b/src/Parallel/PLParallelTask/RMTaskResourceGrant.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMTaskResourceRequirement.cpp b/src/Parallel/PLParallelTask/RMTaskResourceRequirement.cpp index 3dc06ac48..a2d3adf69 100644 --- a/src/Parallel/PLParallelTask/RMTaskResourceRequirement.cpp +++ b/src/Parallel/PLParallelTask/RMTaskResourceRequirement.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLParallelTask/RMTaskResourceRequirement.h b/src/Parallel/PLParallelTask/RMTaskResourceRequirement.h index 10a2de1f4..283e9b39d 100644 --- a/src/Parallel/PLParallelTask/RMTaskResourceRequirement.h +++ b/src/Parallel/PLParallelTask/RMTaskResourceRequirement.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEFileSearchTask.cpp b/src/Parallel/PLSamples/PEFileSearchTask.cpp index 168eef538..b6b2e26b2 100644 --- a/src/Parallel/PLSamples/PEFileSearchTask.cpp +++ b/src/Parallel/PLSamples/PEFileSearchTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEFileSearchTask.h b/src/Parallel/PLSamples/PEFileSearchTask.h index 6fa936a4a..da2fef58d 100644 --- a/src/Parallel/PLSamples/PEFileSearchTask.h +++ b/src/Parallel/PLSamples/PEFileSearchTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEHelloWorldTask.cpp b/src/Parallel/PLSamples/PEHelloWorldTask.cpp index 7fc6906f2..2f008dc5b 100644 --- a/src/Parallel/PLSamples/PEHelloWorldTask.cpp +++ b/src/Parallel/PLSamples/PEHelloWorldTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEHelloWorldTask.h b/src/Parallel/PLSamples/PEHelloWorldTask.h index 131bfba83..94261793e 100644 --- a/src/Parallel/PLSamples/PEHelloWorldTask.h +++ b/src/Parallel/PLSamples/PEHelloWorldTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEIOParallelTestTask.cpp b/src/Parallel/PLSamples/PEIOParallelTestTask.cpp index 6205a251f..1fb748c46 100644 --- a/src/Parallel/PLSamples/PEIOParallelTestTask.cpp +++ b/src/Parallel/PLSamples/PEIOParallelTestTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEIOParallelTestTask.h b/src/Parallel/PLSamples/PEIOParallelTestTask.h index d379a7186..7959461cc 100644 --- a/src/Parallel/PLSamples/PEIOParallelTestTask.h +++ b/src/Parallel/PLSamples/PEIOParallelTestTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PELullaby.cpp b/src/Parallel/PLSamples/PELullaby.cpp index 31418d1fa..ea803ff8c 100644 --- a/src/Parallel/PLSamples/PELullaby.cpp +++ b/src/Parallel/PLSamples/PELullaby.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PELullabyTask.h b/src/Parallel/PLSamples/PELullabyTask.h index 27c0bb9e9..1c6dc2e16 100644 --- a/src/Parallel/PLSamples/PELullabyTask.h +++ b/src/Parallel/PLSamples/PELullabyTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEPi.cpp b/src/Parallel/PLSamples/PEPi.cpp index 7b4d475d5..0ab0e3f11 100644 --- a/src/Parallel/PLSamples/PEPi.cpp +++ b/src/Parallel/PLSamples/PEPi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEPi.h b/src/Parallel/PLSamples/PEPi.h index 71fdd7da8..98ba59a62 100644 --- a/src/Parallel/PLSamples/PEPi.h +++ b/src/Parallel/PLSamples/PEPi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEPiTask.cpp b/src/Parallel/PLSamples/PEPiTask.cpp index 6d33d084d..a2ccd866a 100644 --- a/src/Parallel/PLSamples/PEPiTask.cpp +++ b/src/Parallel/PLSamples/PEPiTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEPiTask.h b/src/Parallel/PLSamples/PEPiTask.h index ada61c0fc..ac29b303a 100644 --- a/src/Parallel/PLSamples/PEPiTask.h +++ b/src/Parallel/PLSamples/PEPiTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEPiView.cpp b/src/Parallel/PLSamples/PEPiView.cpp index 8bb889e1c..255b60242 100644 --- a/src/Parallel/PLSamples/PEPiView.cpp +++ b/src/Parallel/PLSamples/PEPiView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEPiView.h b/src/Parallel/PLSamples/PEPiView.h index 30896bf9f..cbac71f79 100644 --- a/src/Parallel/PLSamples/PEPiView.h +++ b/src/Parallel/PLSamples/PEPiView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEProgressionTask.cpp b/src/Parallel/PLSamples/PEProgressionTask.cpp index fd37efb8a..58254f515 100644 --- a/src/Parallel/PLSamples/PEProgressionTask.cpp +++ b/src/Parallel/PLSamples/PEProgressionTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEProgressionTask.h b/src/Parallel/PLSamples/PEProgressionTask.h index 7ca325cdd..bc9b4ccb9 100644 --- a/src/Parallel/PLSamples/PEProgressionTask.h +++ b/src/Parallel/PLSamples/PEProgressionTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEProtocolTestTask.cpp b/src/Parallel/PLSamples/PEProtocolTestTask.cpp index f2591582c..9f72513ce 100644 --- a/src/Parallel/PLSamples/PEProtocolTestTask.cpp +++ b/src/Parallel/PLSamples/PEProtocolTestTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEProtocolTestTask.h b/src/Parallel/PLSamples/PEProtocolTestTask.h index 8521330be..9487dcaeb 100644 --- a/src/Parallel/PLSamples/PEProtocolTestTask.h +++ b/src/Parallel/PLSamples/PEProtocolTestTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PESerializerLongTestTask.cpp b/src/Parallel/PLSamples/PESerializerLongTestTask.cpp index e60a5f8f4..664e923be 100644 --- a/src/Parallel/PLSamples/PESerializerLongTestTask.cpp +++ b/src/Parallel/PLSamples/PESerializerLongTestTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PESerializerLongTestTask.h b/src/Parallel/PLSamples/PESerializerLongTestTask.h index 5a8f1a35d..5695d47d1 100644 --- a/src/Parallel/PLSamples/PESerializerLongTestTask.h +++ b/src/Parallel/PLSamples/PESerializerLongTestTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PESerializerTestTask.cpp b/src/Parallel/PLSamples/PESerializerTestTask.cpp index ebd7ce2b0..9747161ce 100644 --- a/src/Parallel/PLSamples/PESerializerTestTask.cpp +++ b/src/Parallel/PLSamples/PESerializerTestTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PESerializerTestTask.h b/src/Parallel/PLSamples/PESerializerTestTask.h index 9c369a91e..f926ef6ae 100644 --- a/src/Parallel/PLSamples/PESerializerTestTask.h +++ b/src/Parallel/PLSamples/PESerializerTestTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEShared_SampleObject.cpp b/src/Parallel/PLSamples/PEShared_SampleObject.cpp index 2dff753e4..b3e246985 100644 --- a/src/Parallel/PLSamples/PEShared_SampleObject.cpp +++ b/src/Parallel/PLSamples/PEShared_SampleObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLSamples/PEShared_SampleObject.h b/src/Parallel/PLSamples/PEShared_SampleObject.h index af29fb11b..82c246c16 100644 --- a/src/Parallel/PLSamples/PEShared_SampleObject.h +++ b/src/Parallel/PLSamples/PEShared_SampleObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLTest/PLTest.cpp b/src/Parallel/PLTest/PLTest.cpp index 98d1a047a..a3cc5920b 100644 --- a/src/Parallel/PLTest/PLTest.cpp +++ b/src/Parallel/PLTest/PLTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/PLTest/PLTest.h b/src/Parallel/PLTest/PLTest.h index 86f342bdb..b885b8dbb 100644 --- a/src/Parallel/PLTest/PLTest.h +++ b/src/Parallel/PLTest/PLTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMResourceConstraints.cpp b/src/Parallel/RMResourceManager/RMResourceConstraints.cpp index 556fd29af..9aaccb08f 100644 --- a/src/Parallel/RMResourceManager/RMResourceConstraints.cpp +++ b/src/Parallel/RMResourceManager/RMResourceConstraints.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMResourceConstraints.h b/src/Parallel/RMResourceManager/RMResourceConstraints.h index e2190b351..a052b4cec 100644 --- a/src/Parallel/RMResourceManager/RMResourceConstraints.h +++ b/src/Parallel/RMResourceManager/RMResourceConstraints.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMResourceManager.cpp b/src/Parallel/RMResourceManager/RMResourceManager.cpp index f2d6897f1..fc433d4ac 100644 --- a/src/Parallel/RMResourceManager/RMResourceManager.cpp +++ b/src/Parallel/RMResourceManager/RMResourceManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMResourceManager.h b/src/Parallel/RMResourceManager/RMResourceManager.h index bd32f6d88..b1528ffbb 100644 --- a/src/Parallel/RMResourceManager/RMResourceManager.h +++ b/src/Parallel/RMResourceManager/RMResourceManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMResourceSystem.cpp b/src/Parallel/RMResourceManager/RMResourceSystem.cpp index f3d1dd086..31e4f8f10 100644 --- a/src/Parallel/RMResourceManager/RMResourceSystem.cpp +++ b/src/Parallel/RMResourceManager/RMResourceSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMResourceSystem.h b/src/Parallel/RMResourceManager/RMResourceSystem.h index e1253d3cf..621c27549 100644 --- a/src/Parallel/RMResourceManager/RMResourceSystem.h +++ b/src/Parallel/RMResourceManager/RMResourceSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMStandardResourceDriver.cpp b/src/Parallel/RMResourceManager/RMStandardResourceDriver.cpp index 1c63c5621..1aa109d67 100644 --- a/src/Parallel/RMResourceManager/RMStandardResourceDriver.cpp +++ b/src/Parallel/RMResourceManager/RMStandardResourceDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/src/Parallel/RMResourceManager/RMStandardResourceDriver.h b/src/Parallel/RMResourceManager/RMStandardResourceDriver.h index c1a3c64d2..3ca237283 100644 --- a/src/Parallel/RMResourceManager/RMStandardResourceDriver.h +++ b/src/Parallel/RMResourceManager/RMStandardResourceDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/KNITest/KNITest.cpp b/test/KNITest/KNITest.cpp index d5aaea44e..81dea0892 100644 --- a/test/KNITest/KNITest.cpp +++ b/test/KNITest/KNITest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/KNITest/KNITest.h b/test/KNITest/KNITest.h index d6e16bba7..2ea0542be 100644 --- a/test/KNITest/KNITest.h +++ b/test/KNITest/KNITest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Learning/KWClass_test.cpp b/test/Learning/KWClass_test.cpp index 36e6d0d19..fe5105062 100644 --- a/test/Learning/KWClass_test.cpp +++ b/test/Learning/KWClass_test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Norm/InputBufferedFile_test.cpp b/test/Norm/InputBufferedFile_test.cpp index 6350ab32e..97c86f635 100644 --- a/test/Norm/InputBufferedFile_test.cpp +++ b/test/Norm/InputBufferedFile_test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Parallel-mpi/PEProtocolTest.cpp b/test/Parallel-mpi/PEProtocolTest.cpp index 9268eb93f..dd655b8d5 100644 --- a/test/Parallel-mpi/PEProtocolTest.cpp +++ b/test/Parallel-mpi/PEProtocolTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Parallel-mpi/main.cpp b/test/Parallel-mpi/main.cpp index 2b5ce67d3..6353573ac 100644 --- a/test/Parallel-mpi/main.cpp +++ b/test/Parallel-mpi/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Parallel/PLSerializer_test.cpp b/test/Parallel/PLSerializer_test.cpp index 1e26cef92..0007cf46a 100644 --- a/test/Parallel/PLSerializer_test.cpp +++ b/test/Parallel/PLSerializer_test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Utils/MpiEnvironment.h b/test/Utils/MpiEnvironment.h index 562894e0c..07a9c5c35 100644 --- a/test/Utils/MpiEnvironment.h +++ b/test/Utils/MpiEnvironment.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Utils/ParallelTest.h b/test/Utils/ParallelTest.h index 185e233d5..d2990014a 100644 --- a/test/Utils/ParallelTest.h +++ b/test/Utils/ParallelTest.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Utils/TestServices.cpp b/test/Utils/TestServices.cpp index dcdbbd32b..be254107f 100644 --- a/test/Utils/TestServices.cpp +++ b/test/Utils/TestServices.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. diff --git a/test/Utils/TestServices.h b/test/Utils/TestServices.h index 023c5e3d5..eef84847b 100644 --- a/test/Utils/TestServices.h +++ b/test/Utils/TestServices.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Orange. All rights reserved. +// Copyright (c) 2024 Orange. All rights reserved. // This software is distributed under the BSD 3-Clause-clear License, the text of which is available // at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details. From 5f221021af404c61fb639e8250a51c9bdbed84b2 Mon Sep 17 00:00:00 2001 From: Felipe Olmos <92923444+folmos-at-orange@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:18:59 +0100 Subject: [PATCH 4/7] Update standard test trigger rule --- .github/workflows/run-standard-tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-standard-tests.yml b/.github/workflows/run-standard-tests.yml index cb6e54ccb..472e6f165 100644 --- a/.github/workflows/run-standard-tests.yml +++ b/.github/workflows/run-standard-tests.yml @@ -9,7 +9,16 @@ name: Run Standard Tests on: workflow_dispatch: pull_request: - paths: [src/**] + paths: + - '**CMakeLists.txt' + - src/**.h + - src/**.cpp + - src/**.java + - src/**.dd + - src/**.inc + - src/**.lex + - src/**.yac + - test/LearningTest/** env: KhiopsBatchMode: true jobs: From 4e26815888fd188944e6af4e8eef2a6c223ea895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Boull=C3=A9?= Date: Mon, 8 Jan 2024 16:53:15 +0100 Subject: [PATCH 5/7] Update LearningTest scripts New scripts now capture fatal errors and are more resilient to warning from json and kdic files. --- test/LearningTest/cmd/python/apply_command.py | 4 +- .../cmd/python/apply_command_all.py | 1 - test/LearningTest/cmd/python/check_results.py | 657 ++++++++---------- test/LearningTest/cmd/python/help_options.py | 2 +- .../cmd/python/learning_test.config | 20 + .../cmd/python/learning_test_env.py | 5 +- test/LearningTest/cmd/python/test_khiops.py | 96 ++- .../cmd/python/test_khiops_all.py | 84 +-- test/LearningTest/cmd/python/utils.py | 2 +- 9 files changed, 456 insertions(+), 415 deletions(-) create mode 100644 test/LearningTest/cmd/python/learning_test.config diff --git a/test/LearningTest/cmd/python/apply_command.py b/test/LearningTest/cmd/python/apply_command.py index 77d67fe99..15714be0e 100644 --- a/test/LearningTest/cmd/python/apply_command.py +++ b/test/LearningTest/cmd/python/apply_command.py @@ -363,7 +363,7 @@ def apply_command_performance(work_dir): dir_name = os.path.basename(work_dir) root_name = os.path.basename(os.path.dirname(work_dir)) results_dir = os.path.join(work_dir, "results") - if os.path.isdir((results_dir)): + if os.path.isdir(results_dir): test_pattern = "TestEvaluationReport.xls" for file_name in os.listdir(results_dir): if test_pattern in file_name: @@ -389,7 +389,7 @@ def apply_command_performance_ref(work_dir): dir_name = os.path.basename(work_dir) root_name = os.path.basename(os.path.dirname(work_dir)) results_dir = os.path.join(work_dir, "results.ref") - if os.path.isdir((results_dir)): + if os.path.isdir(results_dir): test_pattern = "TestEvaluationReport.xls" for file_name in os.listdir(results_dir): if test_pattern in file_name: diff --git a/test/LearningTest/cmd/python/apply_command_all.py b/test/LearningTest/cmd/python/apply_command_all.py index 6447899ba..9f938d758 100644 --- a/test/LearningTest/cmd/python/apply_command_all.py +++ b/test/LearningTest/cmd/python/apply_command_all.py @@ -4,7 +4,6 @@ import apply_command import test_khiops - if __name__ == "__main__": all_commands, standard_command_number = apply_command.register_all_commands() diff --git a/test/LearningTest/cmd/python/check_results.py b/test/LearningTest/cmd/python/check_results.py index e8cfdcc8d..67a3c6e98 100644 --- a/test/LearningTest/cmd/python/check_results.py +++ b/test/LearningTest/cmd/python/check_results.py @@ -1,27 +1,57 @@ import os.path -import sys -import shutil -import csv -import string -import subprocess +import re -def print_error(log_file, error_message): - print(error_message) +def print_message(log_file, message): + print(message) + write_message(log_file, message) + + +def write_message(log_file, message): # on encode en utf-8 en ignorant les erreurs pour eviter un erreur lors de l'encodage automatique - log_file.write(error_message.encode("utf-8", "ignore").decode("utf-8") + "\n") + log_file.write(message.encode("utf-8", "ignore").decode("utf-8") + "\n") -def print_detailed_error(log_file, error_message, number_print): +def print_detailed_message(log_file, message, number_print): number_print_max = 10 if number_print < number_print_max: - print(error_message) - log_file.write(error_message + "\n") + print(message) + log_file.write(message + "\n") if number_print == number_print_max: print("...\n") log_file.write("...\n") +# Parsers en variables globales, compiles une seule fois +token_parser = None +time_parser = None +numeric_parser = None + + +def initialize_parsers(): + """Initialisation des parsers globaux""" + global token_parser + global time_parser + global numeric_parser + if token_parser is not None: + return + # Delimiters pour els fichiers json et kdic + delimiters = ["\,", "\{", "\}", "\[", "\]", "\:", "\(", "\)", "\<", "\>", "\="] + numeric_pattern = "-?[0-9]+\.?[0-9]*(?:[Ee]-?[0-9]+)?" + string_pattern = ( + '"[^"]*"' # Sans les double-quotes dans les strings (dur a parser...) + ) + time_pattern = "\d{1,2}:\d{2}:\d{2}\.?\d*" + other_tokens = "[\w]+" + tokens = time_pattern + "|" + numeric_pattern + "|" + string_pattern + for delimiter in delimiters: + tokens += "|" + delimiter + tokens += "|" + other_tokens + token_parser = re.compile(tokens) + numeric_parser = re.compile(numeric_pattern) + time_parser = re.compile(time_pattern) + + def check_results(test): # compare les fichiers 2 a 2 et ecrit les resultat dans le fichier comparisonResults.log print("--Comparing results...") @@ -33,11 +63,14 @@ def check_results(test): if not os.path.isdir(test_dir): print("test directory (" + test_dir + ") not available") return 0 + number_fatal_errors = 0 number_errors = 0 number_warnings = 0 number_files = 0 log_file = open(os.path.join(os.getcwd(), test, "comparisonResults.log"), "w") - log_file.write(test.upper() + " comparison\n\n") + write_message(log_file, test.upper() + " comparison\n") + # Initialisation des parsers + initialize_parsers() # test des fichiers 2 a 2 for file_name in os.listdir(ref_dir): [errors, warnings] = check_file( @@ -48,14 +81,23 @@ def check_results(test): number_files = number_files + 1 number_errors = number_errors + errors number_warnings = number_warnings + warnings + # recherche des erreurs fatales + fatal_error_files = [ + "stdout_error.log", + "stderr_error.log", + "return_code_error.log", + ] + for file_name in os.listdir(test_dir): + if file_name in fatal_error_files: + number_fatal_errors = number_fatal_errors + 1 # comparaison du nombre de fichiers if len(os.listdir(ref_dir)) == 0: - print_error(log_file, "no comparison: missing reference result files") + print_message(log_file, "no comparison: missing reference result files") number_errors = number_errors + 1 if len(os.listdir(ref_dir)) > 0 and len(os.listdir(ref_dir)) != len( os.listdir(test_dir) ): - print_error( + print_message( log_file, "number of results files (" + str(len(os.listdir(test_dir))) @@ -69,7 +111,7 @@ def check_results(test): err_file = open(err_file_name, "r", errors="ignore") for s in err_file: if s.find("error") >= 0: - print_detailed_error( + print_detailed_message( log_file, err_file_name + ": " + s, number_errors + number_warnings ) number_errors = number_errors + 1 @@ -78,18 +120,20 @@ def check_results(test): and not s.find("converted in 0") >= 0 and not s.find("...") >= 0 ): - print_detailed_error( + print_detailed_message( log_file, err_file_name + ": " + s, number_errors + number_warnings ) number_warnings = number_warnings + 1 if s.find("failure") >= 0: - print_detailed_error( + print_detailed_message( log_file, err_file_name + ": " + s, number_errors + number_warnings ) number_errors = number_errors + 1 err_file.close() - log_file.write("\n" + str(number_warnings) + " warning(s)\n") - log_file.write(str(number_errors) + " error(s)") + print_message(log_file, "\n" + str(number_warnings) + " warning(s)") + print_message(log_file, str(number_errors) + " error(s)") + if number_fatal_errors > 0: + print_message(log_file, "FATAL ERROR") log_file.close() print( @@ -100,6 +144,7 @@ def check_results(test): + " error(s), " + str(number_warnings) + " warning(s)" + + ("\nFATAL ERROR" if number_fatal_errors > 0 else "") ) print( "log writed in " @@ -199,46 +244,45 @@ def filter_khiops_temp_dir(value): # warning : 2 cellules contiennent des valeurs numeriques avec une difference relative toleree # error : les cellules sont differentes if not os.path.isfile(path_ref): - print_error(log_file, "file " + path_ref + " is missing") + print_message(log_file, "file " + path_ref + " is missing") return [1, 0] if not os.path.isfile(path_test): - print_error(log_file, "file " + path_test + " is missing") + print_message(log_file, "file " + path_test + " is missing") return [1, 0] - log_file.write( - "\nfile " + path_test.encode("utf-8", "ignore").decode("utf-8") + "\n" - ) + # En-tete de comparaison des fichiers + write_message(log_file, "\nfile " + path_test) + + # Recherche du fichier compare et de son extension + file_name = os.path.basename(path_ref) + assert file_name == os.path.basename(path_test) + _, file_extension = os.path.splitext(file_name) # test si fichier de temps - is_time_file = os.path.basename(path_ref) == "time.log" + is_time_file = file_name == "time.log" # test si fichier histogramme - is_histogram_file = "histogram" in os.path.basename( - path_ref - ) and ".log" in os.path.basename(path_ref) + is_histogram_file = "histogram" in file_name and file_extension == ".log" # test si fichier d'erreur - is_error_file = os.path.basename(path_ref) == "err.txt" + is_error_file = file_name == "err.txt" # test si fichier de benchmark - is_benchmark_file = os.path.basename(path_ref) == "benchmark.xls" + is_benchmark_file = file_name == "benchmark.xls" + + # test si fichier dictionnaire + is_kdic_file = file_extension == ".kdic" # Test si fichier json - is_json_file = ".json" in os.path.basename(path_ref) - is_json_file = is_json_file or ".khj" in os.path.basename(path_ref) - is_json_file = is_json_file or ".khvj" in os.path.basename(path_ref) - is_json_file = is_json_file or ".khcj" in os.path.basename(path_ref) - is_json_file = is_json_file or ".kdicj" in os.path.basename(path_ref) + is_json_file = file_extension in [".json", ".khj", ".khvj", ".khcj", ".kdicj"] # Cas particulier des fichier .bad qui sont en fait des fichier json (ex: LearningTest\TestKhiops\Advanced\AllResultsApiMode - if ".bad" in os.path.basename(path_ref): + if file_extension == ".bad": if ( os.path.isfile(path_ref.replace(".bad", ".khj")) or os.path.isfile(path_ref.replace(".bad", ".khj")) or os.path.isfile(path_ref.replace(".bad", ".kdicj")) ): is_json_file = True - json_errors = 0 - json_derivatrion_rules_errors = 0 # initialisation des nombres d'erreurs error = 0 @@ -248,347 +292,261 @@ def filter_khiops_temp_dir(value): if is_time_file: return [error, warning] - # nombre de lignes de chaque fichier - file_ref = open(path_ref, "r", errors="ignore") - file_test = open(path_test, "r", errors="ignore") - file_test_line_number = 0 + # lecture des lignes de chaque fichier try: - file_test_line_number = len(file_test.readlines()) + with open(path_ref, "r", errors="ignore") as file_ref: + file_ref_lines = file_ref.readlines() except BaseException as message: - print("Error: can't compute line number (" + str(message) + ")") - file_ref_line_number = 0 + error += 1 + print_message( + log_file, "Error: can't open file " + path_ref + " (" + str(message) + ")" + ) + return [error, warning] + assert file_ref_lines is not None try: - file_ref_line_number = len(file_ref.readlines()) + with open(path_test, "r", errors="ignore") as file_test: + file_test_lines = file_test.readlines() except BaseException as message: - print("Error: can't compute line number (" + str(message) + ")") + error += 1 + print_message( + log_file, "Error: can't open file " + path_test + " (" + str(message) + ")" + ) + return [error, warning] + assert file_test_lines is not None + + # Comparaison des nombres de lignes + file_ref_line_number = len(file_ref_lines) + file_test_line_number = len(file_test_lines) if file_test_line_number != file_ref_line_number: - log_file.write( + write_message( + log_file, "test file has " + str(file_test_line_number) + " lines and reference file has " + str(file_ref_line_number) - + " lines\n" + + " lines", ) error = error + 1 - file_ref.close() - file_test.close() - - # ouverture des fichiers consideres commes des tableaux de cellules separees par des tabulation - csv.field_size_limit(500000000) - file_ref = open(path_ref, "r", errors="ignore") - file_test = open(path_test, "r", errors="ignore") - # Cas particulier du fichier d'erreur, que l'on ouvre en ignorant les tabulations - if is_error_file: - file_ref_csv = csv.reader(file_ref, delimiter="\n") - file_test_csv = csv.reader(file_test, delimiter="\n") - else: - file_ref_csv = csv.reader(file_ref, delimiter="\t") - file_test_csv = csv.reader(file_test, delimiter="\t") # comparaison ligne a ligne max_threshold = 0 - number_print_max = 10 + max_print_error = 10 max_field_length = 100 - line = 0 - skip_benchmark_lines = 0 - try: - for row_t in file_test_csv: - line += 1 - if line > file_test_line_number or line > file_ref_line_number: - break - - # parcours des fichiers ligne par ligne - row_r = next(file_ref_csv) - length_r = len(row_r) - length_t = len(row_t) - i = 0 + skip_benchmark_lines = False + line_number = min(file_ref_line_number, file_test_line_number) + for index in range(line_number): + line = index + 1 + line_ref = file_ref_lines[index].rstrip() + line_test = file_test_lines[index].rstrip() + + # cas special des fichiers de benchmark: + # on saute les blocs de ligne dont le role est le reporting de temps de calcul + # ("Time" dans le premier champ d'entete) + if is_benchmark_file and line_ref.find("Time") != -1: + skip_benchmark_lines = True + continue + if is_benchmark_file and skip_benchmark_lines: + # fin de bloc si ligne vide + if line_ref.find("\t") == -1: + skip_benchmark_lines = False + if skip_benchmark_lines: + continue + + # Ok si lignes egales + if line_ref == line_test: + continue + + # cas special du fichier d'erreur: on tronque les lignes qui font du reporting de temps de calcul (" time:") + if ( + is_error_file + and line_ref.find(" time:") != -1 + and line_test.find(" time:") != -1 + ): + line_ref = filter_time(line_ref) + line_test = filter_time(line_test) - # comparaison des nombre de colonnes - if length_r != length_t: - log_file.write( - "test file (line " - + str(line) - + ") has " - + str(length_t) - + " columns and reference file has " - + str(length_r) - + " columns\n" - ) - error = error + 1 - break + # cas special du fichier d'erreur: + # on saute les lignes qui font du reporting de temps de calcul ("interrupted ") + if ( + is_error_file + and line_ref.lower().find(" interrupted ") != -1 + and line_test.lower().find(" interrupted ") != -1 + ): + continue - # cas special du fichier d'erreur: on tronque les lignes qui font du reporting de temps de calcul (" time:") - if ( - is_error_file - and length_r > 0 - and row_r[i].find(" time:") != -1 - and length_t > 0 - and row_t[i].find(" time:") != -1 - ): - row_r[i] = filter_time(row_r[i]) - row_t[i] = filter_time(row_t[i]) + # cas special du fichier d'erreur, pour le message "(Operation canceled)" qui n'est pas case sensitive + if is_error_file: + if line_ref.find("(Operation canceled)") != -1: + line_ref = line_ref.replace( + "(Operation canceled)", "(operation canceled)" + ) + if line_test.find("(Operation canceled)") != -1: + line_test = line_test.replace( + "(Operation canceled)", "(operation canceled)" + ) - # cas special du fichier d'erreur: - # on saute les lignes qui font du reporting de temps de calcul ("interrupted after") - if ( - is_error_file - and length_r > 0 - and row_r[i].find(" interrupted ") != -1 - and length_t > 0 - and row_t[i].find(" interrupted ") != -1 - ): - continue + # cas special du fichier d'erreur en coclustering: + # on saute les lignes d'ecritire de rapport intermediaire qui different par le temps + # ("Write intermediate coclustering report") + if ( + is_error_file + and line_ref.find("Write intermediate coclustering report") != -1 + and line_test.find("Write intermediate coclustering report") != -1 + ): + continue - # cas special du fichier d'erreur, pour le message "(Operation canceled)" qui n'est pas case sensistive - if is_error_file: - if length_r > 0 and row_r[i].find("(Operation canceled)") != -1: - row_r[i] = row_r[i].replace( - "(Operation canceled)", "(operation canceled)" - ) - if length_t > 0 and row_t[i].find("(Operation canceled)") != -1: - row_t[i] = row_t[i].replace( - "(Operation canceled)", "(operation canceled)" - ) + # cas special du fichier d'histogramme: + # on tronque les lignes qui font du reporting de temps de calcul (" time\t") + if ( + is_histogram_file + and line_ref.find("time") != -1 + and line_test.find("time") != -1 + ): + line_ref = line_ref[: line_ref.find("time")] + line_test = line_test[: line_test.find("time")] + # cas special du fichier d'histogramme: + # on ignore le champ tronque les lignes qui font du reporting de temps de calcul (" time\t") + if ( + is_histogram_file + and line_ref.find("Version") != -1 + and line_test.find("Version") != -1 + ): + line_ref = "" + line_test = "" - # cas special du fichier d'erreur en coclustering: - # on saute les lignes d'ecritire de rapport intermediaire qui different par le temps - # ("Write intermediate coclustering report") - if ( - is_error_file - and length_r > 0 - and row_r[i].find("Write intermediate coclustering report") != -1 - and length_t > 0 - and row_t[i].find("Write intermediate coclustering report") != -1 - ): - continue + # cas special du caractere # en tete de premiere ligne de fichier (identifiant de version d'application) + if line == 1 and line_ref.find("#") == 0 and line_test.find("#") == 0: + continue - # cas special du fichier d'histogramme: - # on tronque les lignes qui font du reporting de temps de calcul (" time\t") - if ( - is_histogram_file - and length_r > 2 - and row_r[1].find("time") != -1 - and length_t > 2 - and row_t[1].find("time") != -1 - ): - row_r[2] = "" - row_t[2] = "" - # cas special du fichier d'histogramme: - # on ignore le champ tronque les lignes qui font du reporting de temps de calcul (" time\t") - if ( - is_histogram_file - and length_r >= 2 - and row_r[0].find("Version") != -1 - and length_t >= 2 - and row_t[0].find("Version") != -1 - ): - row_r[1] = "" - row_t[1] = "" + # idem pour des informations de licences d'un fichier d'erreur + if ( + is_error_file + and line == 2 + and line_ref.find("Khiops ") == 0 + and line_test.find("Khiops ") == 0 + ): + continue - # cas special du caractere # en tete de premiere ligne de fichier (identifiant de version d'application) - if ( - line == 1 - and length_r > 0 - and row_r[0].find("#") == 0 - and length_t > 0 - and row_t[0].find("#") == 0 - ): - continue - # idem pour des informations de licences d'un fichier d'erreur + # cas special du champ version des fichiers json (identifiant de version d'application) + if ( + is_json_file + and line_ref.find('"version": ') >= 0 + and line_test.find('"version": ') >= 0 + ): + continue + + # Sinon, on analyse les champs + line_fields_ref = line_ref.split("\t") + line_fields_test = line_test.split("\t") + + # comparaison des nombres de champs + field_number_ref = len(line_fields_ref) + field_number_test = len(line_fields_test) + if field_number_ref != field_number_test: + if error < max_print_error: + write_message( + log_file, + "test file (line " + + str(line) + + ") has " + + str(field_number_test) + + " columns and reference file has " + + str(field_number_ref) + + " columns", + ) + elif error == max_print_error: + write_message(log_file, "...") + error = error + 1 + + # comparaison des champs + field_number_length = min(field_number_ref, field_number_test) + for i in range(field_number_length): + field_ref = line_fields_ref[i] + field_test = line_fields_test[i] + + # parcours des lignes cellule par cellule + # cas special du fichier d'erreur ou json: on tronque les chemins vers les repertoires temporaires de Khiops if ( - is_error_file - and line == 2 - and length_r > 0 - and row_r[0].find("Khiops ") == 0 - and length_t > 0 - and row_t[0].find("Khiops ") == 0 + (is_error_file or is_json_file) + and field_ref.find("~Khiops") != -1 + and field_test.find("~Khiops") != -1 ): - continue + field_ref = filter_khiops_temp_dir(field_ref) + field_test = filter_khiops_temp_dir(field_test) - # cas special du champ version des fichiers json (identifiant de version d'application) + # cas special du fichier d'erreur ou khj: on tronque le compte des lignes avec des warning sur le nombre de records secondaires if ( - is_json_file > 0 - and length_r == 2 - and row_r[1].find("version") == 0 - and length_t == 2 - and row_t[1].find("version") == 0 + (is_error_file or is_json_file) + and "warning" in field_ref + and " after reading " in field_ref + and " secondary records " in field_ref + and "warning" in field_test + and " after reading " in field_test + and " secondary records " in field_test ): - continue - - # cas special des fichiers de benchmark: - # on saute les blocs de ligne dont le role est le reporting de temps de calcul - # ("Time" dans le premier champ d'entete) - if is_benchmark_file and length_r > 0 and row_r[i].find("Time") != -1: - skip_benchmark_lines = 1 - continue - if is_benchmark_file and skip_benchmark_lines: - # fin de bloc si ligne vide - skip_benchmark_lines = 0 - j = 0 - while j < length_r: - if row_r[j] != "": - skip_benchmark_lines = 1 - j += 1 - if skip_benchmark_lines: - continue - - # comparaison des cellules - while i < length_r: - # parcours des lignes cellule par cellule - if i < length_t: - # cas special du fichier d'erreur ou json: on tronque les chemins vers les repertoires temporaires de Khiops - if ( - (is_error_file or is_json_file) - and length_r > i - and row_r[i].find("~Khiops") != -1 - and length_t > i - and row_t[i].find("~Khiops") != -1 - ): - row_r[i] = filter_khiops_temp_dir(row_r[i]) - row_t[i] = filter_khiops_temp_dir(row_t[i]) - - # cas special du fichier d'erreur ou khj: on tronque le compte des lignes avec des warning sur le nombre de records secondaires - if ( - (is_error_file or is_json_file) - and length_r > 0 - and "warning" in row_r[i] - and " after reading " in row_r[i] - and " secondary records " in row_r[i] - and length_t > 0 - and "warning" in row_t[i] - and " after reading " in row_t[i] - and " secondary records " in row_t[i] - ): - row_r[i] = filter_secondary_record(row_r[i]) - row_t[i] = filter_secondary_record(row_t[i]) - - # cas general de comparaison de cellules - [eval_res, threshold_res] = check_cell(row_r[i], row_t[i]) - # truncature des champs affiches dans les messages d'erreur - row_t_i = row_t[i] - if len(row_t_i) > max_field_length: - row_t_i = row_t_i[0:max_field_length] + "..." - row_r_i = row_r[i] - if len(row_r_i) > 5: - row_r_i = row_r_i[0:max_field_length] + "..." - # messages d'erreur - if eval_res == 0: - if error < number_print_max or threshold_res > max_threshold: - log_file.write( - "l" - + str(file_test_csv.line_num) - + " c" - + str(i + 1) - + " " - + row_t_i - + " -> " - + row_r_i - + "\n" - ) - elif error == number_print_max: - log_file.write("...\n") - error = error + 1 - # Cas particulier des erreurs dans le fichier json, si elles sont dues a la regle de derivation - if is_json_file: - json_errors += 1 - if row_t[i].find("derivationRule:") >= 0: - json_derivatrion_rules_errors += 1 - elif eval_res == 2: - warning = warning + 1 - if threshold_res > max_threshold: - max_threshold = threshold_res - else: - # apparemment il y a des cellules vides en plus dans le fichier de reference... - if len(row_r[i]) != 0: - if error < number_print_max: - log_file.write( - "l" - + str(file_test_csv.line_num) - + " c" - + str(i + 1) - + " " - + row_r[i] - + " disappeared\n" - ) - elif error == number_print_max: - log_file.write("...\n") - error = error + 1 - i = i + 1 - # end while - # end for - except BaseException as message: - print( - "Error: can't compare file csv cells in " - + os.path.basename(path_ref) - + " (" - + str(message) - + ")" - ) - file_ref.close() - file_test.close() - # print(str(error)+" error(s)") + field_ref = filter_secondary_record(field_ref) + field_test = filter_secondary_record(field_test) + + # cas general de comparaison de cellules + [eval_res, threshold_res] = check_cell(field_ref, field_test) + # truncature des champs affiches dans les messages d'erreur + if len(field_test) > max_field_length: + field_test = field_test[0:max_field_length] + "..." + if len(field_ref) > max_field_length: + field_ref = field_ref[0:max_field_length] + "..." + # messages d'erreur + if eval_res == 0: + if error < max_print_error or threshold_res > max_threshold: + write_message( + log_file, + "l" + + str(line) + + " c" + + str(i + 1) + + " " + + field_test + + " -> " + + field_ref, + ) + elif error == max_print_error: + write_message(log_file, "...") + error = error + 1 + elif eval_res == 2: + warning = warning + 1 + max_threshold = max(threshold_res, max_threshold) if warning > 0: - log_file.write(str(warning) + " warning(s) (epsilon difference)\n") + write_message(log_file, str(warning) + " warning(s) (epsilon difference)") if error == 0: - log_file.write("OK\n") + write_message(log_file, "OK") elif max_threshold > 0: - log_file.write("max relative difference: " + str(max_threshold) + "\n") + write_message(log_file, "max relative difference: " + str(max_threshold)) if error > 0: - log_file.write(str(error) + " error(s)") - if is_json_file and 0 < json_errors == json_derivatrion_rules_errors: - log_file.write(" (only in derivation rules)") - log_file.write("\n") + write_message(log_file, str(error) + " error(s)") return [error, warning] def split_cell(cell): - # decoupe une chaine de caractere en un tableau de sous-chaines, qui sont des portions numeriques, soit non numeriques - max_substrings = 10000 - length = len(cell) - i = 0 - substrings = [] - substring = "" - float_type = 1 - string_type = 2 - previous_type = 0 - while i < length: - c = cell[i] - if c in ".0123456789": - cell_type = float_type - else: - cell_type = string_type - if type == previous_type: - substring = substring + c - else: - if previous_type != 0: - substrings.append(substring) - substring = "" + c - previous_type = cell_type - i = i + 1 - if i == length: - substrings.append(substring) - if len(substrings) > max_substrings: - return substrings + # Pour gerer les double-quotes a l'interieur des strings, pour les format json et kdic + cell = cell.replace('\\"', "'") + cell = cell.replace('""', "'") + substrings = token_parser.findall(cell) return substrings # return true if time format - - def is_time(val): # si format time (?h:mm:ss), on ignore en renvoyant OK - time = val.strip() - for c in time: - if c not in ":0123456789": - return False - if 7 <= len(time) <= 8: - if time.find(":") >= 1 and time.find(":", 3) >= 4: - return True - return False + return time_parser.match(val.strip()) def check_value(val1, val2): - # check_cell, dans le cas de valeurs elementaires + # Comparaison de deux valeurs numeriques + # renvoie deux valeur: + # - result: + # - 1 si les cellules sont identiques + # - 2 si les la difference relative est toleree + # - 0 si les cellules sont differentes + # - threshold: differe,ce relative si result = 2 # Ok si valeurs egales if val1 == val2: return [1, 0] @@ -611,9 +569,12 @@ def check_value(val1, val2): def check_cell(cell1, cell2): # comparaison de deux cellules # pour les valeurs numeriques, une diffence relative de 0.00001 est toleree - # renvoi 1 si les cellules sont identiques - # 2 si les la difference relative est toleree - # 0 si les cellules sont differentes + # renvoie deux valeur: + # - result: + # - 1 si les cellules sont identiques + # - 2 si les la difference relative est toleree + # - 0 si les cellules sont differentes + # - threshold: differe,ce relative si result = 2 if cell1 == cell2: return [1, 0] @@ -635,7 +596,7 @@ def check_cell(cell1, cell2): if ( cell1.find("Unable to open file") != -1 - and cell2.find("nable to access file") != -1 + and cell2.find("Unable to access file") != -1 ): return [1, 0] @@ -675,17 +636,10 @@ def check_cell(cell1, cell2): # sinon c'est peut etre un pbm d'arrondi # on accepte les differences relatives faibles - threshold = float(0.00001) - try: - float1 = float(cell1) - float2 = float(cell2) - res = ( - 0.5 * abs(float1 - float2) / (abs(float1) / 2 + abs(float2) / 2 + threshold) - ) - if res <= threshold: - return [2, res] - return [0, res] - except ValueError: + if numeric_parser.match(cell1) and numeric_parser.match(cell2): + [eval_result, threshold_result] = check_value(cell1, cell2) + return [eval_result, threshold_result] + else: # on arrive pas a le convertir en float, ce n'est pas un nombre # on decoupe chaque cellule sous la forme d'un ensemble de sous-chaines qui sont soit # des libelles, soit des float @@ -709,7 +663,6 @@ def check_cell(cell1, cell2): return [0, 0] if eval_result == 2: full_eval = 2 - if threshold_result > full_threshold: - full_threshold = threshold_result + full_threshold = max(threshold_result, full_threshold) i = i + 1 return [full_eval, full_threshold] diff --git a/test/LearningTest/cmd/python/help_options.py b/test/LearningTest/cmd/python/help_options.py index 3940a4310..befcfadfe 100644 --- a/test/LearningTest/cmd/python/help_options.py +++ b/test/LearningTest/cmd/python/help_options.py @@ -3,7 +3,7 @@ print( "KhiopsBatchMode: " + str(os.getenv("KhiopsBatchMode")) - + "\n\t true, false (default: false)" + + "\n\t true, false (default: true)" ) print( diff --git a/test/LearningTest/cmd/python/learning_test.config b/test/LearningTest/cmd/python/learning_test.config new file mode 100644 index 000000000..55a616012 --- /dev/null +++ b/test/LearningTest/cmd/python/learning_test.config @@ -0,0 +1,20 @@ +# The config file learning_test.config must be in directory LearningTest\cmd\python +# It is optional, in which case all keys are set to empty +# It contains the following key=value pairs that allows a personnalisation of the environment: +# - path: additional path (eg: to access to java runtime) +# - classpath: additional classpath for java libraries +# - learningtest_root: alternative root dir to use where LearningTest is located +# - learning_release_dir: dir where the release developement binaries are located (to enable the 'r' alias') +# - learning_debug_dir: dir where the debug developement binaries are located (to enable the 'd' alias') + +# Uncomment the following keys by removing the leading '#' and assigning a path + +# path= + +# classpath= + +# learningtest_root= + +# learning_release_dir= + +# learning_debug_dir= diff --git a/test/LearningTest/cmd/python/learning_test_env.py b/test/LearningTest/cmd/python/learning_test_env.py index d1b832e12..70194cbc1 100644 --- a/test/LearningTest/cmd/python/learning_test_env.py +++ b/test/LearningTest/cmd/python/learning_test_env.py @@ -106,9 +106,8 @@ def load_learning_test_config(): # Fill missing keys with empty values, the as when the config file is missing if ok: if len(learning_test_config_keys) != len(config_dic): - missing_keys = "" for key in learning_test_config_keys: - if not key in config_dic: + if key not in config_dic: config_dic[key] = "" # Return if ok if ok: @@ -119,7 +118,7 @@ def load_learning_test_config(): print( "The config file " + learning_test_config_file_name - + " must be in directory LearningTest\cmd\python" + + " must be in directory LearningTest\\cmd\\python" ) print("It is optional, in which case all keys are set to empty") print( diff --git a/test/LearningTest/cmd/python/test_khiops.py b/test/LearningTest/cmd/python/test_khiops.py index f352c3ee7..18852150c 100644 --- a/test/LearningTest/cmd/python/test_khiops.py +++ b/test/LearningTest/cmd/python/test_khiops.py @@ -95,6 +95,23 @@ def test(modl_path, samples_path, sample_test): # verifie l'existence du repertoire et du fichier de sample_test # et lance la comparaison pour le sample 'sample_test' + def filter_lines(lines, filtered_pattern): + """retourne les lignes sans celles contenant le pattern en parametre""" + output_lines = [] + for line in lines: + if filtered_pattern not in line: + output_lines.append(line) + return output_lines + + def filter_empty_lines(lines): + """retourne les lignes sans les lignes vides""" + output_lines = [] + for line in lines: + line = line.strip() + if line != "": + output_lines.append(line) + return output_lines + # check MODL path if modl_path != "nul": if not os.path.isfile(modl_path): @@ -184,7 +201,7 @@ def test(modl_path, samples_path, sample_test): time_file_name = os.path.join( os.getcwd(), os.path.join(test_dir, "results.ref", "time.log") ) - print(time_file_name) ## + print(time_file_name) if os.path.isfile(time_file_name): file_time = open(time_file_name, "r") lines = file_time.readlines() @@ -252,12 +269,6 @@ def test(modl_path, samples_path, sample_test): # un plantagephysique de l'allocateur en cas de depassement des contraintes memoires des scenarios os.putenv("KhiopsHardMemoryLimitMode", "true") - # khiops en mode multitable via une variable d'environnement - os.putenv("KhiopsMultiTableMode", "true") - - # khiops en mode Text via une variable d'environnement - # os.putenv('KhiopsTextVariableMode', 'true') - # khiops en mode crash test via une variable d'environnement os.putenv("KhiopsCrashTestMode", "true") @@ -270,14 +281,12 @@ def test(modl_path, samples_path, sample_test): khiops_params.append("-n") khiops_params.append(khiops_mpi_process_number) khiops_params.append(modl_path) - if os.getenv("KhiopsBatchMode") == "true": + if os.getenv("KhiopsBatchMode") != "false": khiops_params.append("-b") khiops_params.append("-i") khiops_params.append(os.path.join(os.getcwd(), "test.prm")) khiops_params.append("-e") - khiops_params.append( - os.path.join(os.getcwd(), os.path.join(test_dir, "results", "err.txt")) - ) + khiops_params.append(os.path.join(os.getcwd(), test_dir, "results", "err.txt")) if os.getenv("KhiopsOutputScenarioMode") == "true": khiops_params.append("-o") khiops_params.append(os.path.join(os.getcwd(), "test.output.prm")) @@ -287,10 +296,67 @@ def test(modl_path, samples_path, sample_test): # Lancement de khiops time_start = time.time() - try: - subprocess.run(khiops_params) - except Exception as error: - print("Execution failed:" + str(error)) + with subprocess.Popen( + khiops_params, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + universal_newlines=True, + ) as khiops_process: + stdout, stderr = khiops_process.communicate() + + # En cas d'anomalie, memorisation du contenu de des sorties standard + if stdout != "": + is_kni = "KNI" in modl_path + is_coclustering = "Coclustering" in modl_path + lines = stdout.split("\n") + lines = filter_empty_lines(lines) + # Pour les test KNI, le stdout contient une ligne avec le nombre de records + if is_kni: + lines = filter_lines(lines, "Recoded record number:") + # Cas particulier du coclustering en mode debug + if is_coclustering: + lines = filter_lines( + lines, "BEWARE: Optimization level set to 0 in debug mode only!!!" + ) + # Exception egalement pour cas des lancement en mode parallele simule + lines = filter_lines(lines, "Warning : simulated parallel mode") + # Exception en mode debug, pour les stats memoire + if "Memory stats (number of pointers, and memory space)" in stdout: + ok = True + # Parcours des lignes pour voir si ce sont bien des messages de stats, y compris en parallel + # En parallele, on a l'id du process entre crochets en tete de chaque ligne + for line in lines: + ok = ( + (line[0] == "[" and line[-1] == "]") + or "Memory stats (number of pointers, and memory space)" in line + or "Alloc: " in line + or "Requested: " in line + ) + else: + ok = len(lines) == 0 + if not ok: + with open( + os.path.join(os.getcwd(), test_dir, "results", "stdout_error.log"), + "w", + ) as stdout_file: + stdout_file.write(stdout) + if stderr != "": + with open( + os.path.join(os.getcwd(), test_dir, "results", "stderr_error.log"), "w" + ) as stderr_file: + stderr_file.write(stderr) + if khiops_process.returncode != 0 and khiops_process.returncode != 2: + with open( + os.path.join(os.getcwd(), test_dir, "results", "return_code_error.log"), + "w", + ) as return_code_file: + return_code_file.write( + "Wrong return code: " + + str(khiops_process.returncode) + + " (should be 0 or 2)" + ) + time_stop = time.time() print(sample_test.upper() + " test done") diff --git a/test/LearningTest/cmd/python/test_khiops_all.py b/test/LearningTest/cmd/python/test_khiops_all.py index 6a530016d..9eaf7dd5e 100644 --- a/test/LearningTest/cmd/python/test_khiops_all.py +++ b/test/LearningTest/cmd/python/test_khiops_all.py @@ -6,40 +6,33 @@ import stat -# lance les tests de khiops sur tous les repertoires contenus dans la liste "tests" - - -def remove_old_tests_resuls(): - """Efface tous les resultats de TOUS les tests (meme ceux qui ne sont pas specifier dans la variable tests)""" - all_tools_test_root = os.path.join( - learning_test_env.learning_test_root, "LearningTest" - ) - for tool_test_dir in os.listdir(all_tools_test_root): - tools_test_root = os.path.join(all_tools_test_root, tool_test_dir) - if os.path.isdir(tools_test_root) and tool_test_dir.find("Test") == 0: - for test in os.listdir(tools_test_root): - test_path = os.path.join(tools_test_root, test) - if os.path.isdir(test_path): - for sub_test in os.listdir(test_path): - sub_test_path = os.path.join(test_path, sub_test) - if os.path.isfile( - os.path.join(sub_test_path, "comparisonResults.log") - ): - print(sub_test_path) - # os.remove(os.path.join(sub_test_path, 'comparisonResults.log')) - result_dir = os.path.join(sub_test_path, "results") - if os.path.isdir(result_dir) and False: - for file_name in os.listdir(result_dir): - file_path = os.path.join(result_dir, file_name) - os.chmod(file_path, stat.S_IWRITE) - os.remove(file_path) - - +# lance les tests de khiops sur tous les repertoires contenus dans la liste "tool_test_dirs" def test_khiops_tool(tool_name, tool_version, tool_test_dirs): """Run tool on test dirs""" # Build tool exe path name from version tool_exe_name, tool_test_sub_dir = test_khiops.retrieve_tool_info(tool_name) tool_exe_path = test_khiops.build_tool_exe_path(tool_exe_name, tool_version) + # Clean results + for test in tool_test_dirs: + tool_samples_path = os.path.join( + learning_test_env.learning_test_root, + "LearningTest", + tool_test_sub_dir, + test, + ) + if os.path.isdir(tool_samples_path): + for sub_test in os.listdir(tool_samples_path): + sub_test_path = os.path.join(tool_samples_path, sub_test) + file_path = os.path.join(sub_test_path, "comparisonResults.log") + if os.path.isfile(file_path): + os.chmod(file_path, stat.S_IWRITE) + os.remove(file_path) + result_dir = os.path.join(sub_test_path, "results") + if os.path.isdir(result_dir): + for file_name in os.listdir(result_dir): + file_path = os.path.join(result_dir, file_name) + os.chmod(file_path, stat.S_IWRITE) + os.remove(file_path) # Run tests for test in tool_test_dirs: print("\n\n--------------------------------------------------------") @@ -55,14 +48,19 @@ def test_khiops_tool(tool_name, tool_version, tool_test_dirs): if __name__ == "__main__": - if len(sys.argv) != 2: - print("testAll [version]") + if len(sys.argv) != 2 and len(sys.argv) != 3: + print("testAll [version] ") print(" run all tests for all Khiops tools") print("\tversion: version of the tool") print("\t d: debug version in developpement environnement") print("\t r: release version in developpement environnement") print("\t ver: ..exe in directory LearningTest\\cmd\\modl") print("\t nul: for comparison with the test results only") + print("\t full exe path, if parameter is used") + print("\ttool: all tools if not specified, one specified tool otherwise") + print("\t Khiops") + print("\t Coclustering") + print("\t KNI") exit(0) # Info on complete tests @@ -75,9 +73,6 @@ def test_khiops_tool(tool_name, tool_version, tool_test_dirs): sys.stdout = test_khiops.Unbuffered(sys.stdout) - # Remove old results (not activated) - # remove_old_tests_resuls() - # Passage en mode batch os.environ["KhiopsBatchMode"] = "true" @@ -85,6 +80,11 @@ def test_khiops_tool(tool_name, tool_version, tool_test_dirs): version = sys.argv[1] assert version is not None + # Retrieve tool + tool = "" + if len(sys.argv) == 3: + tool = sys.argv[2] + # Khiops tool khiops_tests = [ "Standard", @@ -97,9 +97,6 @@ def test_khiops_tool(tool_name, tool_version, tool_test_dirs): "MultipleTargets", "MultiTables", "DeployCoclustering", - "Histograms", - "HistogramsLimits", - "TextVariables", "SparseData", "SparseModeling", "ParallelTask", @@ -111,6 +108,10 @@ def test_khiops_tool(tool_name, tool_version, tool_test_dirs): "CrashTests", "SmallInstability", ] + # V11 "Histograms", + # V11 "HistogramsLimits", + # V11 "TextVariables", + # Following tests are very long, instable and not usefull: if os.getenv("KhiopsCompleteTests") == "true": khiops_tests.append("Classification") @@ -118,14 +119,17 @@ def test_khiops_tool(tool_name, tool_version, tool_test_dirs): khiops_tests.append("MTClassification") khiops_tests.append("Regression") khiops_tests.append("ChallengeAutoML") - test_khiops_tool("Khiops", version, khiops_tests) + if tool == "" or tool == "Khiops": + test_khiops_tool("Khiops", version, khiops_tests) # Coclustering tool coclustering_tests = ["Standard", "Bugs", "NewPriorV9", "SmallInstability"] - test_khiops_tool("Coclustering", version, coclustering_tests) + if tool == "" or tool == "Coclustering": + test_khiops_tool("Coclustering", version, coclustering_tests) # KNI tool KNI_tests = ["Standard", "MultiTables", "SmallInstability"] - test_khiops_tool("KNI", version, KNI_tests) + if tool == "" or tool == "KNI": + test_khiops_tool("KNI", version, KNI_tests) print("all tests are done") diff --git a/test/LearningTest/cmd/python/utils.py b/test/LearningTest/cmd/python/utils.py index bb8b5e35b..867400fe1 100644 --- a/test/LearningTest/cmd/python/utils.py +++ b/test/LearningTest/cmd/python/utils.py @@ -39,7 +39,7 @@ def copyFilesWithoutExtension(src, dest, tabExt): for fileName in os.listdir(src): if not os.path.isdir(os.path.join(src, fileName)): (root, extension) = os.path.splitext(fileName) - if not extension in tabExt: + if extension not in tabExt: copy(os.path.join(src, fileName), dest) From 365cd44a00436500b54d3ebbdfbc41311d3a77d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Boull=C3=A9?= Date: Tue, 9 Jan 2024 15:09:47 +0100 Subject: [PATCH 6/7] Fix bug in test_khiops script Micro-correction suite a deux jeux de donnees qui ne passaient plus tous les LearningTest Filtrage de quelques message "normaux" residuels sur stdout --- test/LearningTest/cmd/python/test_khiops.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/LearningTest/cmd/python/test_khiops.py b/test/LearningTest/cmd/python/test_khiops.py index 18852150c..9e2cf7f53 100644 --- a/test/LearningTest/cmd/python/test_khiops.py +++ b/test/LearningTest/cmd/python/test_khiops.py @@ -109,7 +109,12 @@ def filter_empty_lines(lines): for line in lines: line = line.strip() if line != "": - output_lines.append(line) + # En parallelle, une ligne vide contient le numero du process entre crochets + is_process_id = line[0] == "[" and line[-1] == "]" + if is_process_id: + is_process_id = line[1:-1].isdigit() + if not is_process_id: + output_lines.append(line) return output_lines # check MODL path @@ -314,6 +319,7 @@ def filter_empty_lines(lines): # Pour les test KNI, le stdout contient une ligne avec le nombre de records if is_kni: lines = filter_lines(lines, "Recoded record number:") + lines = filter_lines(lines, "Error : Finish opening stream error:") # Cas particulier du coclustering en mode debug if is_coclustering: lines = filter_lines( @@ -328,11 +334,12 @@ def filter_empty_lines(lines): # En parallele, on a l'id du process entre crochets en tete de chaque ligne for line in lines: ok = ( - (line[0] == "[" and line[-1] == "]") - or "Memory stats (number of pointers, and memory space)" in line + "Memory stats (number of pointers, and memory space)" in line or "Alloc: " in line or "Requested: " in line ) + if not ok: + break else: ok = len(lines) == 0 if not ok: From 27f4f1dc655fc8801240a4c0648508956fc73847 Mon Sep 17 00:00:00 2001 From: Felipe Olmos <92923444+folmos-at-orange@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:39:18 +0100 Subject: [PATCH 7/7] Bump source version to 10.2.0 --- src/Learning/KWUtils/KWKhiopsVersion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Learning/KWUtils/KWKhiopsVersion.h b/src/Learning/KWUtils/KWKhiopsVersion.h index 7b1018c4e..c5ac5766e 100644 --- a/src/Learning/KWUtils/KWKhiopsVersion.h +++ b/src/Learning/KWUtils/KWKhiopsVersion.h @@ -10,7 +10,7 @@ // dans le TaskManager de Windows (par exemple) // Version de Khiops -#define KHIOPS_VERSION str(10.1.5) +#define KHIOPS_VERSION str(10.2.0) // Copyright #define KHIOPS_COPYRIGHT_LABEL str((c)2024 Orange - All rights reserved.)