All files in gp directory modified to use relative include

This commit is contained in:
Ronaldd Pinho 2019-06-29 20:41:06 -03:00
commit b11c5fbb4c
5 changed files with 19 additions and 19 deletions

View file

@ -30,10 +30,10 @@
#include <iterator> #include <iterator>
#include <list> #include <list>
#include <EO.h> #include "../EO.h"
#include <eoInit.h> #include "../eoInit.h"
#include <eoOp.h> #include "../eoOp.h"
#include <gp/parse_tree.h> #include "parse_tree.h"
using namespace gp_parse_tree; using namespace gp_parse_tree;

View file

@ -28,11 +28,11 @@
#ifndef eoParseTreeDepthInit_h #ifndef eoParseTreeDepthInit_h
#define eoParseTreeDepthInit_h #define eoParseTreeDepthInit_h
#include <EO.h> #include "../EO.h"
#include <gp/eoParseTree.h> #include "eoParseTree.h"
#include <eoInit.h> #include "eoInit.h"
#include <eoOp.h> #include "eoOp.h"
#include <eoPop.h> #include "eoPop.h"
using namespace gp_parse_tree; using namespace gp_parse_tree;

View file

@ -29,10 +29,10 @@
#ifndef eoParseTreeOp_h #ifndef eoParseTreeOp_h
#define eoParseTreeOp_h #define eoParseTreeOp_h
#include <EO.h> #include "../EO.h"
#include <eoOp.h> #include "../eoOp.h"
#include <gp/eoParseTree.h> #include "eoParseTree.h"
/** eoSubtreeXOver --> subtree xover /** eoSubtreeXOver --> subtree xover
\class eoSubtreeXOver eoParseTreeOp.h gp/eoParseTreeOp.h \class eoSubtreeXOver eoParseTreeOp.h gp/eoParseTreeOp.h

View file

@ -27,10 +27,10 @@
#ifndef eoStParseTreeDepthInit_h #ifndef eoStParseTreeDepthInit_h
#define eoStParseTreeDepthInit_h #define eoStParseTreeDepthInit_h
#include <EO.h> #include "../EO.h"
#include <gp/eoParseTree.h> #include "eoParseTree.h"
#include <eoInit.h> #include "../eoInit.h"
#include <eoOp.h> #include "../eoOp.h"
#include <map> #include <map>

View file

@ -28,13 +28,13 @@
#ifndef eoStParseTreeOp_h #ifndef eoStParseTreeOp_h
#define eoStParseTreeOp_h #define eoStParseTreeOp_h
#include <EO.h> #include "../EO.h"
#include <eoOp.h> #include "../eoOp.h"
#include <map.h> #include <map.h>
#include <iostream> #include <iostream>
#include <set> #include <set>
#include <gp/eoParseTree.h> #include "eoParseTree.h"
// a help function // a help function
template <class EOT> template <class EOT>