|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface InterfaceTracksMatchStatistics
This interface is implemented by classes that track match statistics within CLARION.
Usage:
Any class that implements this interface will be able to update its match statistics at each time step based on feedback it received (if provided).
Known classes implementing this interface:
Method Summary | |
---|---|
double |
getNM()
Gets the negative match (NM) statistic. |
double |
getPM()
Gets the positive match (PM) statistic. |
void |
incrementNM()
Increments the negative match (NM) statistic. |
void |
incrementPM()
Increments the positive match (PM) statistic. |
void |
resetMatchStatistics()
Resets the match statistics. |
void |
setNM(double nm)
Sets the negative match (NM) statistic. |
void |
setPM(double pm)
Sets the positive match (PM) statistic. |
void |
updateMatchStatistics(AbstractMatchCalculator MatchCalculator)
Updates the match statistics using the specified match calculator. |
Method Detail |
---|
void updateMatchStatistics(AbstractMatchCalculator MatchCalculator)
MatchCalculator
- The match calculator to use for updating the match statistics.double getPM()
double getNM()
void setPM(double pm)
pm
- The value to set for the PM statistic.void setNM(double nm)
nm
- The value to set for the NM statistic.void incrementPM()
void incrementNM()
void resetMatchStatistics()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |