git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@152 331e1502-861f-0410-8da2-ba01fb791d7f
24 lines
676 B
C++
24 lines
676 B
C++
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// FlowShopFitness.h
|
|
// (c) OPAC Team (LIFL), Dolphin Project (INRIA), 2006
|
|
/*
|
|
This library...
|
|
|
|
Contact: paradiseo-help@lists.gforge.inria.fr, http://paradiseo.gforge.inria.fr
|
|
*/
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _FlowShopFitness_h
|
|
#define _FlowShopFitness_h
|
|
|
|
#include <eoParetoFitness.h>
|
|
|
|
|
|
/**
|
|
* definition of the fitness for multi-objective flow-shop problems
|
|
*/
|
|
typedef eoParetoFitness < eoVariableParetoTraits > FlowShopFitness;
|
|
|
|
#endif
|