Rev | Line | |
---|
[3] | 1 | package ai2020.group6;
|
---|
| 2 |
|
---|
| 3 | import java.math.BigDecimal;
|
---|
| 4 | import java.util.Map;
|
---|
| 5 |
|
---|
| 6 | import geniusweb.actions.Action;
|
---|
| 7 | import geniusweb.actions.PartyId;
|
---|
| 8 | import geniusweb.profile.Profile;
|
---|
| 9 | import geniusweb.profile.utilityspace.UtilitySpace;
|
---|
| 10 |
|
---|
| 11 | /**
|
---|
| 12 | * MAState is used to define the access a strategy needs to the agent.
|
---|
| 13 | *
|
---|
| 14 | * @author Group 6
|
---|
| 15 | */
|
---|
| 16 | public interface MAState {
|
---|
| 17 |
|
---|
| 18 | public PartyId getId ( );
|
---|
| 19 | public Profile getProfile ( );
|
---|
| 20 | public Action getLastAction ( );
|
---|
| 21 | public Map<PartyId, Integer> getPowerMap ( );
|
---|
| 22 | public BigDecimal getProgressTime ( );
|
---|
| 23 | public UtilitySpace getUtilitySpace ( );
|
---|
| 24 |
|
---|
| 25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.