source: java/ecj/cecj/sampling/NullSamplingMethod.java @ 28

Last change on this file since 28 was 28, checked in by mszubert, 15 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
Line 
1package cecj.sampling;
2
3import java.util.ArrayList;
4import java.util.List;
5
6import ec.EvolutionState;
7import ec.Individual;
8import ec.util.Parameter;
9
10public 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.