Example #1
0
 public FFNetHeuristicFactory(string featuresGeneratorPath, string savedNetworkPath, bool useFFHeuristicAsFeature, TargetTransformationType targeTransformation)
 {
     this.featuresGenPath = featuresGeneratorPath;
     this.savedNetPath    = savedNetworkPath;
     this.useFFasFeature  = useFFHeuristicAsFeature;
     this.transformation  = targeTransformation;
 }
Example #2
0
 public FFNetHeuristicFactory(string featuresGeneratorPath, string savedNetworkPath, bool useFFHeuristicAsFeature, TargetTransformationType targetTransformation, DomainDependentSolver solver,
                              string generatorUsedForStoringStates) :
     this(featuresGeneratorPath, savedNetworkPath, useFFHeuristicAsFeature, targetTransformation)
 {
     this.solver = solver;
     this.generatorUsedForStoringStates = generatorUsedForStoringStates;
 }