* edoSampler: sampler method protected
This commit is contained in:
parent
81491c6fdb
commit
131b09ca18
1 changed files with 4 additions and 2 deletions
|
|
@ -51,8 +51,6 @@ public:
|
||||||
|
|
||||||
// virtual EOType operator()( D& ) = 0 (provided by eoUF< A1, R >)
|
// virtual EOType operator()( D& ) = 0 (provided by eoUF< A1, R >)
|
||||||
|
|
||||||
virtual EOType sample( D& ) = 0;
|
|
||||||
|
|
||||||
EOType operator()( D& distrib )
|
EOType operator()( D& distrib )
|
||||||
{
|
{
|
||||||
unsigned int size = distrib.size();
|
unsigned int size = distrib.size();
|
||||||
|
|
@ -84,6 +82,10 @@ public:
|
||||||
return solution;
|
return solution;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
virtual EOType sample( D& ) = 0;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
//edoBounderNo<EOType> _dummy_bounder;
|
//edoBounderNo<EOType> _dummy_bounder;
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue