Interface TwoPhaseHASCOConfig
-
- All Superinterfaces:
org.aeonbits.owner.Config,HASCOConfig,HASCOWithRandomCompletionsConfig,ai.libs.jaicore.basic.algorithm.IAlgorithmConfig,ai.libs.jaicore.basic.IConfig,ai.libs.jaicore.basic.algorithm.IRandomAlgorithmConfig,org.aeonbits.owner.Mutable,java.io.Serializable
public interface TwoPhaseHASCOConfig extends HASCOWithRandomCompletionsConfig
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.aeonbits.owner.Config
org.aeonbits.owner.Config.ConverterClass, org.aeonbits.owner.Config.DecryptorClass, org.aeonbits.owner.Config.DefaultValue, org.aeonbits.owner.Config.DisableableFeature, org.aeonbits.owner.Config.DisableFeature, org.aeonbits.owner.Config.EncryptedValue, org.aeonbits.owner.Config.HotReload, org.aeonbits.owner.Config.HotReloadType, org.aeonbits.owner.Config.Key, org.aeonbits.owner.Config.LoadPolicy, org.aeonbits.owner.Config.LoadType, org.aeonbits.owner.Config.PreprocessorClasses, org.aeonbits.owner.Config.Separator, org.aeonbits.owner.Config.Sources, org.aeonbits.owner.Config.TokenizerClass
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringK_BLOWUP_POSTPROCESSstatic java.lang.StringK_BLOWUP_SELECTIONstatic java.lang.StringK_RANDOM_SEEDstatic java.lang.StringK_SELECTION_EVALUATION_TIMEOUT_TOLERANCEstatic java.lang.StringK_SELECTION_NUM_CONSIDERED_SOLUTIONS-
Fields inherited from interface ai.libs.hasco.core.HASCOConfig
K_VISUALIZE
-
Fields inherited from interface ai.libs.hasco.variants.forwarddecomposition.twophase.HASCOWithRandomCompletionsConfig
K_RANDOM_COMPLETIONS_NUM, K_RANDOM_COMPLETIONS_TIMEOUT_NODE, K_RANDOM_COMPLETIONS_TIMEOUT_PATH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleexpectedBlowupInPostprocessing()doubleexpectedBlowupInSelection()intrandomSeed()intselectionNumConsideredSolutions()doubleselectionPhaseTimeoutTolerance()-
Methods inherited from interface ai.libs.hasco.core.HASCOConfig
visualizationEnabled
-
Methods inherited from interface ai.libs.hasco.variants.forwarddecomposition.twophase.HASCOWithRandomCompletionsConfig
numberOfRandomCompletions, timeoutForCandidateEvaluation, timeoutForNodeEvaluation
-
Methods inherited from interface ai.libs.jaicore.basic.algorithm.IAlgorithmConfig
cpus, memory, threads, timeout
-
-
-
-
Field Detail
-
K_RANDOM_SEED
static final java.lang.String K_RANDOM_SEED
- See Also:
- Constant Field Values
-
K_BLOWUP_SELECTION
static final java.lang.String K_BLOWUP_SELECTION
- See Also:
- Constant Field Values
-
K_BLOWUP_POSTPROCESS
static final java.lang.String K_BLOWUP_POSTPROCESS
- See Also:
- Constant Field Values
-
K_SELECTION_EVALUATION_TIMEOUT_TOLERANCE
static final java.lang.String K_SELECTION_EVALUATION_TIMEOUT_TOLERANCE
- See Also:
- Constant Field Values
-
K_SELECTION_NUM_CONSIDERED_SOLUTIONS
static final java.lang.String K_SELECTION_NUM_CONSIDERED_SOLUTIONS
- See Also:
- Constant Field Values
-
-
Method Detail
-
randomSeed
@Key("hasco.seed") @DefaultValue("0") int randomSeed()- Returns:
- The seed for the pseudo randomness generator.
-
selectionNumConsideredSolutions
@Key("hasco.selection.num_considered_solutions") @DefaultValue("100") int selectionNumConsideredSolutions()- Returns:
- The number of solutions that are considered during selection phase.
-
expectedBlowupInSelection
@Key("hasco.blowup.selection") @DefaultValue("NaN") double expectedBlowupInSelection()- Returns:
- Expected multiplication in time for each solution candidate that will be required for evaluation
-
expectedBlowupInPostprocessing
@Key("hasco.blowup.postprocess") @DefaultValue("NaN") double expectedBlowupInPostprocessing()- Returns:
- Expected multiplication in time for each solution candidate that will be required for a postprocessing that should be considered when computing the timeout
-
selectionPhaseTimeoutTolerance
@Key("hasco.selection.timeouttolerance") @DefaultValue("0.1") double selectionPhaseTimeoutTolerance()- Returns:
- The factor by which the evaluation in the selection phase may exceed the time expected on the basis of the estimate given by the blow-up
-
-