Last change
on this file since 148 was 127, checked in by Wouter Pasman, 6 years ago |
#41 ROLL BACK of rev.126 . So this version is equal to rev. 125
|
File size:
786 bytes
|
Line | |
---|
1 | package uva.projectai.y2018.jasparon;
|
---|
2 |
|
---|
3 | import genius.core.events.MultipartyNegoActionEvent;
|
---|
4 | import genius.core.events.NegotiationEvent;
|
---|
5 | import genius.core.listener.Listener;
|
---|
6 |
|
---|
7 | public interface RLBOA extends Listener<NegotiationEvent> {
|
---|
8 | /**
|
---|
9 | * This method should pass the reward and newState trough to its component
|
---|
10 | * that uses an RL-strategy
|
---|
11 | *
|
---|
12 | * @param reward
|
---|
13 | * @param newState
|
---|
14 | */
|
---|
15 | public void observeEnvironment(double reward, State newState);
|
---|
16 |
|
---|
17 | /**
|
---|
18 | * This method should instantiate a new AbstractState object that represents
|
---|
19 | * a distinct state in the environment.
|
---|
20 | * @return
|
---|
21 | */
|
---|
22 | public AbstractState getStateRepresentation(MultipartyNegoActionEvent negoEvent);
|
---|
23 |
|
---|
24 | public double getReward(MultipartyNegoActionEvent negoEvent);
|
---|
25 |
|
---|
26 | public String instanceIdentifier();
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.