Last change
on this file since 36 was
28,
checked in by mszubert, 16 years ago
|
cecj - coEvolutionary Computation in Java with additional games package
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id Revision
|
File size:
408 bytes
|
Rev | Line | |
---|
[28] | 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.