Configuration of GALE. This package contains the objects that contain the configuration information for GALE runs. The configuration information is provided in these release through a configuration file. An example of configuration file is:

#-------------------------
# GALE Configuration file
#-------------------------

###
### Relation: Iris
###

NumAttributes = 4
NumClasses = 3

###
### Information related to the knowledge representation used
###

AgentInitAttributes = 3
Prune = true
TestMode = Best
Distance = Euclidean
Agent = IB
AgentMaxInitWidth = 12
AgentMaxInitDepth = 1

###
### GALE execution parameter
###

# General values
WorldIterations = 150

# Board Mapping
MaxX = 32
MaxY = 32
MappingStrategy = Uniform

# Initializations
Seed = 69
SeedRuns = 69
InitialAggregates = 0.8

# Pameters
MergeP = 0.4
SomaticMutationP = 0.01
kThreshold = -0.25
MaxSplitP = 0.5

These parameters are related to three main issues. Please read GALE papers if you are not sure of what they mean.The first one is the domain given to GALE. The parameters are: The second one is related to the knowledge representation used. In this release only rules, instances, and orthogonal decision trees are available. Finally, the last set of parameters configure GALE environment.