Files
rdkit/External/GA/ga/Chromosome.cpp
Ric 58d135a874 Reformat C/C++ code ahead of 2023.03 release (#6295)
* format files

* format template files too
2023-04-28 04:42:35 +02:00

22 lines
481 B
C++

//
// Copyright (C) 2020 Gareth Jones, Glysade LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include "Chromosome.h"
namespace GapeGa {
int Chromosome::idCounter = 0;
Chromosome::Chromosome() : chromosomeId(idCounter++), fitness(0) {}
Chromosome::~Chromosome() {}
} // namespace GapeGa