Class RuleSet
- java.lang.Object
-
- ec.rule.RuleSet
-
public class RuleSet extends java.lang.Object implements Prototype
RuleSet is a set of Rules, implemented straightforwardly as an arbitrary-length array of Rules. A RuleIndividual is simply a list of RuleSets. Most typically, a RuleIndividual contains a single RuleSet, containing a variety of Rules. RuleSets contain many useful subsetting and modification functions which you can use in breeding operators which modify RuleSets and Rules.Besides the Rules themselves, the only thing else a RuleSet contains is a pointer to a corresponding RuleSetConstraints object, which holds all of its modification parameters. See RuleSetConstraints for a description of these parameters.
In addition to serialization for checkpointing, RuleSets may read and write themselves to streams in three ways.
- writeRuleSet(...,DataOutput)/readRuleSet(...,DataInput) This method transmits or receives a RuleSet in binary. It is the most efficient approach to sending RuleSets over networks, etc. The default versions of writeRuleSet/readRuleSet reads/writes out the number of rules, then calls read/writeRule(...) on each Rule. Override this if you need more functionality.
- printRuleSet(...,PrintWriter)/readRuleSet(...,LineNumberReader) This approach transmits or receives a RuleSet in text encoded such that the RuleSet is largely readable by humans but can be read back in 100% by ECJ as well. To do this, these methods will typically encode numbers using the ec.util.Code class. These methods are mostly used to write out populations to files for inspection, slight modification, then reading back in later on. readRuleSet reads in the number of rules, then calls readRule(...) on each new Rule. printRuleSet writes out the number of rules, then calls printrule(...) on each new Rule. Again, override this if you need more functionality.
- printRuleSetForHumans(...,PrintWriter) This approach prints a RuleSet in a fashion intended for human consumption only. printRuleSetForHumans prints out the number of rules, then calles printRuleForHumans on each Rule in turn. You may wish to override this to provide more information instead. You should handle one of these methods properly to ensure RuleSets can be printed by ECJ.
Parameters
base.constraints
string(name of the rule set constraints) Default Base
rule.ruleset- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description byteconstraintsAn index to a RuleSetConstraintsstatic java.lang.StringN_RULESThe message to appear when printing the rule setintnumRulesHow many rules are there used in the rules arraystatic java.lang.StringP_CONSTRAINTSThe constraint for the rule setstatic java.lang.StringP_RULESETRule[]rulesThe rules in the rule set
-
Constructor Summary
Constructors Constructor and Description RuleSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description voidaddRandomRule(EvolutionState state, int thread)Add a random rule to the rule setvoidaddRule(Rule rule)Add a rule directly to the rule set.java.lang.Objectclone()Creates a new individual cloned from a prototype, and suitable to begin use in its own evolutionary context.RuleSetConstraintsconstraints(RuleInitializer initializer)voidcopyNoClone(RuleSet other)Clears out existing rules, and loads the rules from the other ruleset without cloning them.ParameterdefaultBase()Returns the default base for this prototype.booleanequals(java.lang.Object _other)inthashCode()The hash code for the rule set.voidjoin(RuleSet other)Makes a copy of the rules in another RuleSet and adds the rule copies.voidmutate(EvolutionState state, int thread)Mutates rules in the RuleSet independently with the given probability.intnumRules()How many rules are there used in the rules arrayvoidpostprocessRules(EvolutionState state, int thread)Should be called by pipelines to "fix up" the rulesets after they have been mutated or crossed over.voidpreprocessRules(EvolutionState state, int thread)Should be called by pipelines to "fix up" the rulesets before they have been mutated or crossed over.voidprintRuleSet(EvolutionState state, int log)Prints the rule set such that the computer can read it latervoidprintRuleSet(EvolutionState state, int log, int verbosity)Deprecated.Verbosity no longer has an effectvoidprintRuleSet(EvolutionState state, java.io.PrintWriter writer)Prints the rule set such that the computer can read it latervoidprintRuleSetForHumans(EvolutionState state, int log)Prints out the rule set in a readable fashion.voidprintRuleSetForHumans(EvolutionState state, int log, int verbosity)Deprecated.Verbosity no longer has an effectvoidrandomizeRulesOrder(EvolutionState state, int thread)Randomizes the order of the rules in the rule set.voidreadRuleSet(EvolutionState state, java.io.DataInput dataInput)Reads RuleSets in from a binary streamvoidreadRuleSet(EvolutionState state, java.io.LineNumberReader reader)Reads the rule setRuleremoveRandomRule(EvolutionState state, int thread)Removes a randomly-chosen rule from the rule set and returns it.RuleremoveRule(int index)Removes a rule from the rule set and returns it.voidreset(EvolutionState state, int thread)A reset method for randomly reinitializing the RuleSetvoidsetup(EvolutionState state, Parameter base)Sets up the object by reading it from the parameters stored in state, built off of the parameter base base.RuleSet[]split(EvolutionState state, int thread, RuleSet[] sets)Splits the rule set into a number of disjoint rule sets, copying the rules and adding them to the sets as appropriate.RuleSet[]split(int[] points, RuleSet[] sets)Splits the rule set into n pieces, according to points, which *must* be sorted.RuleSet[]splitIntoTwo(EvolutionState state, int thread, RuleSet[] sets, double prob)Splits the rule set into a two disjoint rule sets, copying the rules and adding them to the sets as appropriate.voidwriteRuleSet(EvolutionState state, java.io.DataOutput dataOutput)Writes RuleSets out to a binary stream
-
-
-
Field Detail
-
N_RULES
public static final java.lang.String N_RULES
The message to appear when printing the rule set- See Also:
- Constant Field Values
-
P_RULESET
public static final java.lang.String P_RULESET
- See Also:
- Constant Field Values
-
P_CONSTRAINTS
public static final java.lang.String P_CONSTRAINTS
The constraint for the rule set- See Also:
- Constant Field Values
-
constraints
public byte constraints
An index to a RuleSetConstraints
-
rules
public Rule[] rules
The rules in the rule set
-
numRules
public int numRules
How many rules are there used in the rules array
-
-
Method Detail
-
constraints
public final RuleSetConstraints constraints(RuleInitializer initializer)
-
clone
public java.lang.Object clone()
Description copied from interface:PrototypeCreates a new individual cloned from a prototype, and suitable to begin use in its own evolutionary context.Typically this should be a full "deep" clone. However, you may share certain elements with other objects rather than clone hem, depending on the situation:
- If you hold objects which are shared with other instances, don't clone them.
- If you hold objects which must be unique, clone them.
- If you hold objects which were given to you as a gesture of kindness, and aren't owned by you, you probably shouldn't clone them.
- DON'T attempt to clone: Singletons, Cliques, or Groups.
- Arrays are not cloned automatically; you may need to clone an array if you're not sharing it with other instances. Arrays have the nice feature of being copyable by calling clone() on them.
Implementations.
- If no ancestor of yours implements clone(), and you have no need to do clone deeply, and you are abstract, then you should not declare clone().
- If no ancestor of yours implements clone(),
and you have no need to do clone deeply,
and you are not abstract, then you should implement
it as follows:
public Object clone() { try { return super.clone(); } catch ((CloneNotSupportedException e) { throw new InternalError(); } // never happens } - If no ancestor of yours implements clone(), but you
need to deep-clone some things, then you should implement it
as follows:
public Object clone() { try { MyObject myobj = (MyObject) (super.clone()); // put your deep-cloning code here... } catch ((CloneNotSupportedException e) { throw new InternalError(); } // never happens return myobj; } - If an ancestor has implemented clone(), and you also need
to deep clone some things, then you should implement it as follows:
public Object clone() { MyObject myobj = (MyObject) (super.clone()); // put your deep-cloning code here... return myobj; }
-
numRules
public int numRules()
How many rules are there used in the rules array
-
reset
public void reset(EvolutionState state, int thread)
A reset method for randomly reinitializing the RuleSet
-
mutate
public void mutate(EvolutionState state, int thread)
Mutates rules in the RuleSet independently with the given probability.
-
preprocessRules
public void preprocessRules(EvolutionState state, int thread)
Should be called by pipelines to "fix up" the rulesets before they have been mutated or crossed over. Override this method to do so.
-
postprocessRules
public void postprocessRules(EvolutionState state, int thread)
Should be called by pipelines to "fix up" the rulesets after they have been mutated or crossed over. Override this method to do so.
-
randomizeRulesOrder
public void randomizeRulesOrder(EvolutionState state, int thread)
Randomizes the order of the rules in the rule set. It is helpful when the order of rule is important for the conflict resolution.
-
addRandomRule
public void addRandomRule(EvolutionState state, int thread)
Add a random rule to the rule set
-
addRule
public void addRule(Rule rule)
Add a rule directly to the rule set. Does not copy the rule.
-
removeRule
public Rule removeRule(int index)
Removes a rule from the rule set and returns it. If index is out of bounds, then this method returns null. The rules are shifted down --- thus this is O(n).
-
removeRandomRule
public Rule removeRandomRule(EvolutionState state, int thread)
Removes a randomly-chosen rule from the rule set and returns it. If there are no rules to remove, this method returns null.
-
join
public void join(RuleSet other)
Makes a copy of the rules in another RuleSet and adds the rule copies.
-
copyNoClone
public void copyNoClone(RuleSet other)
Clears out existing rules, and loads the rules from the other ruleset without cloning them. Mostly for use if you create temporary rulesets (see for example RuleCrossoverPipeline)
-
split
public RuleSet[] split(int[] points, RuleSet[] sets)
Splits the rule set into n pieces, according to points, which *must* be sorted. The rules in each piece are cloned and added to the equivalent set. Sets must be already allocated. sets.length must be 1+ points.length. Comment: This function appends the split rulesets to the existing rulesets already in sets.
-
split
public RuleSet[] split(EvolutionState state, int thread, RuleSet[] sets)
Splits the rule set into a number of disjoint rule sets, copying the rules and adding them to the sets as appropriate. Each rule independently throws a die to determine which ruleset it will go into. Sets must be already allocated. Comment: This function appends the split rulesets to the existing rulesets already in sets.
-
splitIntoTwo
public RuleSet[] splitIntoTwo(EvolutionState state, int thread, RuleSet[] sets, double prob)
Splits the rule set into a two disjoint rule sets, copying the rules and adding them to the sets as appropriate. The value prob is the probability that an element will land in the first set. Sets must be already allocated. Comment: This function appends the split rulesets to the existing rulesets already in sets.
-
printRuleSetForHumans
public void printRuleSetForHumans(EvolutionState state, int log)
Prints out the rule set in a readable fashion.
-
printRuleSetForHumans
public void printRuleSetForHumans(EvolutionState state, int log, int verbosity)
Deprecated. Verbosity no longer has an effectPrints out the rule set in a readable fashion.
-
printRuleSet
public void printRuleSet(EvolutionState state, int log)
Prints the rule set such that the computer can read it later
-
printRuleSet
public void printRuleSet(EvolutionState state, int log, int verbosity)
Deprecated. Verbosity no longer has an effectPrints the rule set such that the computer can read it later
-
printRuleSet
public void printRuleSet(EvolutionState state, java.io.PrintWriter writer)
Prints the rule set such that the computer can read it later
-
readRuleSet
public void readRuleSet(EvolutionState state, java.io.LineNumberReader reader) throws java.io.IOException
Reads the rule set- Throws:
java.io.IOException
-
writeRuleSet
public void writeRuleSet(EvolutionState state, java.io.DataOutput dataOutput) throws java.io.IOException
Writes RuleSets out to a binary stream- Throws:
java.io.IOException
-
readRuleSet
public void readRuleSet(EvolutionState state, java.io.DataInput dataInput) throws java.io.IOException
Reads RuleSets in from a binary stream- Throws:
java.io.IOException
-
defaultBase
public Parameter defaultBase()
Description copied from interface:PrototypeReturns the default base for this prototype. This should generally be implemented by building off of the static base() method on the DefaultsForm object for the prototype's package. This should be callable during setup(...).- Specified by:
defaultBasein interfacePrototype
-
setup
public void setup(EvolutionState state, Parameter base)
Description copied from interface:PrototypeSets up the object by reading it from the parameters stored in state, built off of the parameter base base. If an ancestor implements this method, be sure to call super.setup(state,base); before you do anything else.For prototypes, setup(...) is typically called once for the prototype instance; cloned instances do not receive the setup(...) call. setup(...) may be called more than once; the only guarantee is that it will get called at least once on an instance or some "parent" object from which it was ultimately cloned.
-
hashCode
public int hashCode()
The hash code for the rule set. This isn't a very good hash code, but it has the benefit of not being O(n lg n) -- otherwise, we'd have to do something like sort the rules in the individual first and then do an ordered hash code of some sort, ick.- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object _other)
- Overrides:
equalsin classjava.lang.Object
-
-
DMelt 3.0 © DataMelt by jWork.ORG