Last change
on this file since 339 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:
459 bytes
|
Line | |
---|
1 | package cecj.problems; |
---|
2 | |
---|
3 | import cecj.interaction.InteractionResult; |
---|
4 | import cecj.utils.Pair; |
---|
5 | import ec.EvolutionState; |
---|
6 | import ec.Individual; |
---|
7 | |
---|
8 | public class SymmetricTestBasedProblemCachingDecorator extends TestBasedProblemCachingDecorator |
---|
9 | implements SymmetricCompetitionProblem { |
---|
10 | |
---|
11 | public Pair<? extends InteractionResult> compete(EvolutionState state, Individual competitor1, |
---|
12 | Individual competitor2) { |
---|
13 | return test(state, competitor1, competitor2); |
---|
14 | } |
---|
15 | |
---|
16 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.