public FFNetHeuristicFactory(string featuresGeneratorPath, string savedNetworkPath, bool useFFHeuristicAsFeature, TargetTransformationType targeTransformation) { this.featuresGenPath = featuresGeneratorPath; this.savedNetPath = savedNetworkPath; this.useFFasFeature = useFFHeuristicAsFeature; this.transformation = targeTransformation; }
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; }