Use relative includes in headers and absolute in code

- relative includes in headers
- absolute includes in exe code
- include sstream lib in eoExceptions.h
- fix ga/make_op_ga.cpp
- fix eoSGATransform.h
This commit is contained in:
Ronaldd Pinho 2019-06-29 18:44:27 -03:00 committed by nojhan
commit aa5dbe82c6
284 changed files with 996 additions and 989 deletions

View file

@ -24,24 +24,24 @@ Contact: http://eodev.sourceforge.net
#define EO_make_op_h
// the operators
#include <eoOp.h>
#include <eoGenOp.h>
#include <eoCloneOps.h>
#include <eoOpContainer.h>
#include "../eoOp.h"
#include "../eoGenOp.h"
#include "../eoCloneOps.h"
#include "../eoOpContainer.h"
// combinations of simple eoOps (eoMonOp and eoQuadOp)
#include <eoProportionalCombinedOp.h>
#include "../eoProportionalCombinedOp.h"
// the specialized Real stuff
#include <es/eoReal.h>
#include <es/eoRealAtomXover.h>
#include <es/eoEsChromInit.h>
#include <es/eoEsMutationInit.h>
#include <es/eoEsMutate.h>
#include <es/eoEsGlobalXover.h>
#include <es/eoEsStandardXover.h>
#include "eoReal.h"
#include "eoRealAtomXover.h"
#include "eoEsChromInit.h"
#include "eoEsMutationInit.h"
#include "eoEsMutate.h"
#include "eoEsGlobalXover.h"
#include "eoEsStandardXover.h"
// also need the parser and param includes
#include <utils/eoParser.h>
#include <utils/eoState.h>
#include "../utils/eoParser.h"
#include "../utils/eoState.h"
/** @addtogroup Builders