Simplify configuration.

Remove support for (outdated) <strstream>, require <sstream>.
Require uint32_t for now, defined in stdint.h according to C99.
Some general cleanup and more documentation.
This commit is contained in:
kuepper 2005-09-28 21:49:26 +00:00
commit cf2a57dd88
46 changed files with 482 additions and 886 deletions

View file

@ -27,33 +27,29 @@
#ifndef eoParseTree_h
#define eoParseTree_h
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iterator>
#include <list>
#include <EO.h>
#include <eoInit.h>
#include <eoOp.h>
#include <gp/parse_tree.h>
#include <eoInit.h>
using namespace gp_parse_tree;
/**
\defgroup ParseTree
/** @defgroup ParseTree
Various functions for tree-based Genetic Programming
*/
/** eoParseTree : implementation of parse-tree for genetic programming
\class eoParseTree eoParseTree.h gp/eoParseTree.h
\ingroup ParseTree
Various functions for tree-based Genetic Programming
*/
/** Implementation of parse-tree for genetic programming
@class eoParseTree eoParseTree.h gp/eoParseTree.h
@ingroup ParseTree
*/
template <class FType, class Node>
class eoParseTree : public EO<FType>, public parse_tree<Node>
{