31 lines
910 B
C++
31 lines
910 B
C++
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// moeo.h
|
|
// (c) OPAC Team (LIFL), Dolphin Project (INRIA), 2006
|
|
/*
|
|
This library...
|
|
|
|
Contact: paradiseo-help@lists.gforge.inria.fr, http://paradiseo.gforge.inria.fr
|
|
*/
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef MOEO_H_
|
|
#define MOEO_H_
|
|
|
|
#include <eo>
|
|
|
|
#include <moeoArchiveFitnessSavingUpdater.h>
|
|
#include <moeoArchiveUpdater.h>
|
|
#include <moeoArchive.h>
|
|
#include <moeoCombinedMOLS.h>
|
|
#include <moeoHybridMOLS.h>
|
|
#include <moeoMOLS.h>
|
|
#include <moeoReplacement.h>
|
|
#include <moeoSelectOneFromPopAndArch.h>
|
|
#include <metric/moeoBinaryMetricSavingUpdater.h>
|
|
#include <metric/moeoContributionMetric.h>
|
|
#include <metric/moeoEntropyMetric.h>
|
|
#include <metric/moeoMetric.h>
|
|
|
|
#endif /*MOEO_H_ */
|