Last change
on this file since 84 was
44,
checked in by mszubert, 15 years ago
|
cecj, framsticks and games packages imported
|
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.