update param file Lesson1
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@486 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
ec22cf9d34
commit
1c334629f1
1 changed files with 36 additions and 36 deletions
|
|
@ -1,49 +1,49 @@
|
||||||
|
|
||||||
###### General ######
|
###### General ######
|
||||||
--help=0 # -h : Prints this message
|
--help=0 # -h : Prints this message
|
||||||
--stopOnUnknownParam=1 # Stop if unkown param entered
|
--stopOnUnknownParam=1 # Stop if unkown param entered
|
||||||
# --seed=1182849833 # -S : Random number seed
|
# --seed=1183379758 # -S : Random number seed
|
||||||
|
|
||||||
###### Evolution Engine ######
|
###### Evolution Engine ######
|
||||||
--popSize=20 # -P : Population Size
|
--popSize=20 # -P : Population Size
|
||||||
--updateArch=1 # Update the archive at each gen.
|
--updateArch=1 # Update the archive at each gen.
|
||||||
--fitness=FastNonDominatedSorting # -F : Fitness assignment scheme: Dummy, FastNonDominatedSorting or IndicatorBased
|
--fitness=FastNonDominatedSorting # -F : Fitness assignment scheme: Dummy, FastNonDominatedSorting or IndicatorBased
|
||||||
--indicator=Epsilon # -i : Binary indicator for IndicatorBased: Epsilon, Hypervolume
|
--indicator=Epsilon # -i : Binary indicator for IndicatorBased: Epsilon, Hypervolume
|
||||||
--rho=1.1 # -r : reference point for the hypervolume indicator
|
--rho=1.1 # -r : reference point for the hypervolume indicator
|
||||||
--kappa=0.05 # -k : Scaling factor kappa for IndicatorBased
|
--kappa=0.05 # -k : Scaling factor kappa for IndicatorBased
|
||||||
--diversity=Dummy # -D : Diversity assignment scheme: Dummy, Sharing(nicheSize) or Crowding
|
--diversity=Crowding # -D : Diversity assignment scheme: Dummy, Sharing(nicheSize) or Crowding
|
||||||
--comparator=FitnessThenDiversity # -C : Comparator scheme: FitnessThenDiversity, DiversityThenFitness or Aggregative
|
--comparator=FitnessThenDiversity # -C : Comparator scheme: FitnessThenDiversity, DiversityThenFitness or Aggregative
|
||||||
--selection=DetTour(2) # -S : Selection scheme: DetTour(T), StochTour(t) or Random
|
--selection=DetTour(2) # -S : Selection scheme: DetTour(T), StochTour(t) or Random
|
||||||
--replacement=Elitist # -R : Replacement scheme: Elitist, Environmental or Generational
|
--replacement=Elitist # -R : Replacement scheme: Elitist, Environmental or Generational
|
||||||
--nbOffspring=100% # -O : Number of offspring (percentage or absolute)
|
--nbOffspring=100% # -O : Number of offspring (percentage or absolute)
|
||||||
|
|
||||||
###### Output ######
|
###### Output ######
|
||||||
--resDir=Res # Directory to store DISK outputs
|
--resDir=Res # Directory to store DISK outputs
|
||||||
--eraseDir=1 # erase files in dirName if any
|
--eraseDir=1 # erase files in dirName if any
|
||||||
--printPop=0 # Print sorted pop. every gen.
|
--printPop=0 # Print sorted pop. every gen.
|
||||||
--storeArch=0 # Store the archive's objective vectors at each gen.
|
--storeArch=0 # Store the archive's objective vectors at each gen.
|
||||||
--contribution=0 # Store the contribution of the archive at each gen.
|
--contribution=0 # Store the contribution of the archive at each gen.
|
||||||
--entropy=0 # Store the entropy of the archive at each gen.
|
--entropy=0 # Store the entropy of the archive at each gen.
|
||||||
|
|
||||||
###### Persistence ######
|
###### Persistence ######
|
||||||
--Load= # -L : A save file to restart from
|
--Load= # -L : A save file to restart from
|
||||||
--recomputeFitness=0 # -r : Recompute the fitness after re-loading the pop.?
|
--recomputeFitness=0 # -r : Recompute the fitness after re-loading the pop.?
|
||||||
--saveFrequency=0 # Save every F generation (0 = only final state, absent = never)
|
--saveFrequency=0 # Save every F generation (0 = only final state, absent = never)
|
||||||
--saveTimeInterval=0 # Save every T seconds (0 or absent = never)
|
--saveTimeInterval=0 # Save every T seconds (0 or absent = never)
|
||||||
--status=../FlowShopEA.status # Status file
|
--status=./FlowShopEA.status # Status file
|
||||||
|
|
||||||
###### Representation ######
|
###### Representation ######
|
||||||
--BenchmarkFile=benchs/020_10_01.txt # -B : Benchmark file name (benchmarks are available at www.lifl.fr/~liefooga/benchmarks) REQUIRED
|
--BenchmarkFile=../benchs/020_10_01.txt # -B : Benchmark file name (benchmarks are available at www.lifl.fr/~liefooga/benchmarks) REQUIRED
|
||||||
|
|
||||||
###### Stopping criterion ######
|
###### Stopping criterion ######
|
||||||
--maxGen=100 # -G : Maximum number of generations (0 = none)
|
--maxGen=100 # -G : Maximum number of generations (0 = none)
|
||||||
--maxEval=0 # -E : Maximum number of evaluations (0 = none)
|
--maxEval=0 # -E : Maximum number of evaluations (0 = none)
|
||||||
--maxTime=0 # -T : Maximum running time in seconds (0 = none)
|
--maxTime=0 # -T : Maximum running time in seconds (0 = none)
|
||||||
--CtrlC=1 # -C : Terminate current generation upon Ctrl C
|
--CtrlC=1 # -C : Terminate current generation upon Ctrl C
|
||||||
|
|
||||||
###### Variation Operators ######
|
###### Variation Operators ######
|
||||||
--crossRate=1 # Relative rate for the only crossover
|
--crossRate=1 # Relative rate for the only crossover
|
||||||
--shiftMutRate=0.5 # Relative rate for shift mutation
|
--shiftMutRate=0.5 # Relative rate for shift mutation
|
||||||
--exchangeMutRate=0.5 # Relative rate for exchange mutation
|
--exchangeMutRate=0.5 # Relative rate for exchange mutation
|
||||||
--pCross=0.25 # -c : Probability of Crossover
|
--pCross=0.25 # -c : Probability of Crossover
|
||||||
--pMut=0.35 # -m : Probability of Mutation
|
--pMut=0.35 # -m : Probability of Mutation
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue