first example of automatic algorithm assembling
- add "Forges" tools, to wrap several operator with deferred instanciation. - add t-forge-algo to show how to enumerate several algorithms instances from a common grammar and several alternative operators. - add several missing className().
This commit is contained in:
parent
eba2e14950
commit
30c99f290f
14 changed files with 407 additions and 3 deletions
|
|
@ -80,6 +80,8 @@ class eoPlusReplacement : public eoMergeReduce<EOT>
|
|||
private :
|
||||
eoPlus<EOT> plus;
|
||||
eoTruncate<EOT> truncate;
|
||||
public:
|
||||
virtual std::string className() const {return "eoPlusReplacement";}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -103,6 +105,8 @@ class eoCommaReplacement : public eoMergeReduce<EOT>
|
|||
private :
|
||||
eoNoElitism<EOT> no_elite;
|
||||
eoTruncate<EOT> truncate;
|
||||
public:
|
||||
virtual std::string className() const {return "eoCommaReplacement";}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue