update the edoEDA to a simple EDA

This commit is contained in:
nojhan 2011-09-13 16:53:30 +02:00
commit c63e5f919f
3 changed files with 98 additions and 338 deletions

View file

@ -31,14 +31,19 @@ Authors:
#include <eoAlgo.h>
//! edoAlgo< D >
/** An EDO algorithm difffers from a canonical EO algorithm because it is
* templatized on a Distribution rather than just an EOT.
*
* Derivating from an eoAlgo, it should define an operator()( EOT sol )
*/
template < typename D >
class edoAlgo : public eoAlgo< typename D::EOType >
{
//! Alias for the type
typedef typename D::EOType EOT;
// virtual R operator()(A1) = 0; (defined in eoUF)
public:
virtual ~edoAlgo(){}
};