/usr/include/root/TMVA/GeneticPopulation.h is in libroot-tmva-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | // @(#)root/tmva $Id$
// Author: Peter Speckmayer
/**********************************************************************************
* Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
* Package: TMVA *
* Class : GeneticPopulation *
* Web : http://tmva.sourceforge.net *
* *
* Description: *
* Population definition for genetic algorithm *
* *
* Authors (alphabetical): *
* Peter Speckmayer <speckmay@mail.cern.ch> - CERN, Switzerland *
* *
* Copyright (c) 2005: *
* CERN, Switzerland *
* MPI-K Heidelberg, Germany *
* *
* Redistribution and use in source and binary forms, with or without *
* modification, are permitted according to the terms listed in LICENSE *
* (http://tmva.sourceforge.net/LICENSE) *
**********************************************************************************/
#ifndef ROOT_TMVA_GeneticPopulation
#define ROOT_TMVA_GeneticPopulation
//////////////////////////////////////////////////////////////////////////
// //
// GeneticPopulation //
// //
// Population definition for genetic algorithm //
// //
//////////////////////////////////////////////////////////////////////////
#include <string>
#include <vector>
#ifndef ROOT_Riosfwd
#include "Riosfwd.h"
#endif
#ifndef ROOT_TMVA_GeneticGenes
#include "TMVA/GeneticGenes.h"
#endif
#ifndef ROOT_TMVA_Interval
#include "TMVA/Interval.h"
#endif
#ifndef ROOT_TMVA_GeneticRange
#include "TMVA/GeneticRange.h"
#endif
class TH1F;
namespace TMVA {
class MsgLogger;
class GeneticPopulation {
public:
GeneticPopulation(const std::vector<TMVA::Interval*>& ranges, Int_t size, UInt_t seed = 0);
virtual ~GeneticPopulation();
void SetRandomSeed( UInt_t seed = 0);
void MakeChildren();
void Mutate( Double_t probability = 20, Int_t startIndex = 0, Bool_t near = kFALSE,
Double_t spread = 0.1, Bool_t mirror = kFALSE );
GeneticGenes* GetGenes( Int_t index );
Int_t GetPopulationSize() const { return fGenePool.size(); }
Double_t GetFitness() const { return fGenePool.size()>0? fGenePool[0].GetFitness() : 0; }
const std::vector<TMVA::GeneticGenes>& GetGenePool() const { return fGenePool; }
const std::vector<TMVA::GeneticRange*>& GetRanges() const { return fRanges; }
std::vector<TMVA::GeneticGenes>& GetGenePool() { return fGenePool; }
std::vector<TMVA::GeneticRange*>& GetRanges() { return fRanges; }
void Print( Int_t untilIndex = -1 );
void Print( std::ostream & out, Int_t utilIndex = -1 );
TH1F* VariableDistribution( Int_t varNumber, Int_t bins, Int_t min, Int_t max );
std::vector< Double_t > VariableDistribution( Int_t varNumber );
// To keep compatibility: These methods might be reimplemented
// or just eliminated later on. They are used by the
// GeneticFitter class.
void MakeCopies( int number );
void NextGeneration() {}
void AddPopulation( GeneticPopulation *strangers );
void AddPopulation( GeneticPopulation &strangers );
void TrimPopulation();
void GiveHint( std::vector< Double_t >& hint, Double_t fitness = 0 );
void Sort();
private:
GeneticGenes MakeSex( GeneticGenes male, GeneticGenes female );
private:
std::vector<TMVA::GeneticGenes> fGenePool; // the "genePool" where the individuals of the current generation are stored
std::vector<TMVA::GeneticRange*> fRanges; // contains the ranges inbetween the values of the coefficients have to be
TRandom3*fRandomGenerator; // random Generator for this population
mutable MsgLogger* fLogger; // message logger
MsgLogger& Log() const { return *fLogger; }
Int_t fPopulationSizeLimit;
ClassDef(GeneticPopulation,0) //Population definition for genetic algorithm
};
} // namespace TMVA
#endif
|