Last change
on this file since 91 was
44,
checked in by mszubert, 15 years ago
|
cecj, framsticks and games packages imported
|
File size:
357 bytes
|
Rev | Line | |
---|
[44] | 1 | package cecj.sampling; |
---|
| 2 | |
---|
| 3 | import java.util.List; |
---|
| 4 | |
---|
| 5 | import ec.EvolutionState; |
---|
| 6 | import ec.Individual; |
---|
| 7 | import ec.util.Parameter; |
---|
| 8 | |
---|
| 9 | public class AllSamplingMethod extends SamplingMethod { |
---|
| 10 | |
---|
| 11 | @Override |
---|
| 12 | public List<Individual> sample(EvolutionState state, List<Individual> source) { |
---|
| 13 | return source; |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | public void setup(EvolutionState state, Parameter base) { |
---|
| 17 | } |
---|
| 18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.