Last change
on this file since 1254 was
193,
checked in by Maciej Komosinski, 11 years ago
|
Set svn:eol-style native for all textual files
|
-
Property svn:eol-style set to
native
|
File size:
408 bytes
|
Rev | Line | |
---|
[44] | 1 | package cecj.sampling; |
---|
| 2 | |
---|
| 3 | import java.util.ArrayList; |
---|
| 4 | import java.util.List; |
---|
| 5 | |
---|
| 6 | import ec.EvolutionState; |
---|
| 7 | import ec.Individual; |
---|
| 8 | import ec.util.Parameter; |
---|
| 9 | |
---|
| 10 | public class NullSamplingMethod extends SamplingMethod { |
---|
| 11 | |
---|
| 12 | @Override |
---|
| 13 | public List<Individual> sample(EvolutionState state, List<Individual> source) { |
---|
| 14 | return new ArrayList<Individual>(); |
---|
| 15 | } |
---|
| 16 | |
---|
| 17 | public void setup(EvolutionState state, Parameter base) { |
---|
| 18 | } |
---|
| 19 | |
---|
| 20 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.