Package | Description |
---|---|
actions | |
classifierLibrary | |
demoZLCS |
Constructor and Description |
---|
Lcs(ZLCS ourClassifier,
Situation testSituation) |
Modifier and Type | Class and Description |
---|---|
class |
StandardSituation
Library classifierLibrary, Klasse StandardSituationCopyright by
Klaus Hufschlag 2004, 2005, 2006This file is part of the Generic
Classifier Library.
|
class |
TestSituation |
Modifier and Type | Method and Description |
---|---|
Situation |
StandardSituation.cross(Situation sit,
int Position) |
Situation |
Situation.cross(Situation sit,
int Position)
Method for crossover at given position, returns new Situation after
crossover.
|
Situation |
Rule.getAction()
Returns a pointer to the action part of the rule.
|
Situation |
Rule.getCondition()
Returns a pointer to condition part of the rule.
|
Situation |
StandardSituation.mutation(double Probability) |
Situation |
Situation.mutation(double probability)
Method for mutation with given probability.
|
Modifier and Type | Method and Description |
---|---|
ClassifierSystem |
ClassifierSystem.allWithCondition(Situation condition)
Returns a subset of the CS with all rules having the same condition as given.
|
int |
StandardSituation.compare(Situation sit) |
int |
Situation.compare(Situation sit)
Compares the Situation with another one.
|
int |
StandardSituation.compareSubsumtive(Situation sit) |
int |
Situation.compareSubsumtive(Situation sit)
Compares the Situation with another one.
|
boolean |
StandardSituation.compatibility(Situation sit) |
boolean |
Situation.compatibility(Situation sit)
Method checks compatitbility with another situation, e.g. if Languages
match.
|
double |
Rule.conditionMatch(Situation sit)
Method returns relative fit of the condition part of the rule to a
situation to compare with, not taking wildcards / subordinate
relations of symbols into account.
|
double |
Rule.conditionMatchSubsumptive(Situation sit)
Method returns relative fit of the condition part of the rule to a
situation to compare with, taking wildcards / subordinate relations of
symbols into account.
|
double |
Classifier.conditionMatchSubsumptive(Situation sit)
Computes relative degree of a classifiers condition matching a given
situation.
|
Situation |
StandardSituation.cross(Situation sit,
int Position) |
Situation |
Situation.cross(Situation sit,
int Position)
Method for crossover at given position, returns new Situation after
crossover.
|
ClassifierSystem |
ClassifierSystem.filterbyaction(Situation action)
Returns a subset of the CS with all rules that match a given action with
their action part.
|
ClassifierSystem |
ClassifierSystem.filterbyaction(Situation action,
boolean subsumptive)
Returns a subset of the CS with all rules that match a given action with
their action part.
|
ClassifierSystem |
ClassifierSystem.filterByCondition(Situation condition)
Returns a subset of the CS with all rules that match a given condition
with their condition part.
|
ClassifierSystem |
ClassifierSystem.filterByCondition(Situation condition,
boolean subsumtive)
Returns a subset of the CS with all rules that match a given condition
with their action part.
|
boolean |
StandardSituation.isMatched(Situation sit) |
boolean |
Situation.isMatched(Situation sit)
Criterion for a situation to be matched by another situation, should be
used for specifying different types of Situations in subclasses.
|
boolean |
StandardSituation.isMatchedSubsumtive(Situation sit) |
boolean |
Situation.isMatchedSubsumtive(Situation sit)
Criterion for a situation to be matched by another situation, should be
used for specifying different types of Situations in subclasses.
|
void |
Rule.setAction(Situation Action)
Sets the action part of the rule to the given situation.
|
void |
Rule.setCondition(Situation Condition)
Sets the condition part of the rule to the given situation.
|
Constructor and Description |
---|
Rule(Situation Condition,
Situation Action)
Constructor with Condition and Action-Part of the rule as parameters.
|
Modifier and Type | Method and Description |
---|---|
Situation |
ZLCS.getActionChoice(Situation condition)
ZLCS-Choice of an action matching a given condition
|
Modifier and Type | Method and Description |
---|---|
StandardClassifier |
ZLCS.cover(Situation sit)
Covering: Generation of a new StandardClassifier matching a given
Situation.
|
Situation |
ZLCS.getActionChoice(Situation condition)
ZLCS-Choice of an action matching a given condition
|
ZLCS |
ZLCS.getActionSet(Situation action)
Returns the action-set matchin a given action as a new instance.
|
ZLCS |
ZLCS.getMatchSet(Situation situation)
Returns the match-set (before covering) to a given Situation as a new
instance.
|
ZLCS |
ZLCS.match_n_cover(Situation sit)
Returns the match-set (after covering) to a given Situation as a new
instance.
|