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:
646 bytes
|
Rev | Line | |
---|
[44] | 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 | /** |
---|
| 9 | * Problem is symmetric if sets of possible behaviours of both competitors are identical. It does |
---|
| 10 | * not mean that the game is symmetric itself in game-theoretic meaning ( ) |
---|
| 11 | * |
---|
| 12 | * @author Marcin Szubert |
---|
| 13 | */ |
---|
| 14 | public interface SymmetricCompetitionProblem extends CoevolutionaryProblem { |
---|
| 15 | |
---|
| 16 | /** |
---|
| 17 | * |
---|
| 18 | * @param state |
---|
| 19 | * @param competitor1 |
---|
| 20 | * @param competitor2 |
---|
| 21 | * @return |
---|
| 22 | */ |
---|
| 23 | public Pair<? extends InteractionResult> compete(EvolutionState state, Individual competitor1, |
---|
| 24 | Individual competitor2); |
---|
| 25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.