blob: acc39b33ffbd9d7d29d410c7a86ee5ad9b647897 [file] [log] [blame]
package org.eclipse.stem.analysis.automaticexperiment;
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
public class ErrorAnalysisAlgorithmFactory {
public final static ErrorAnalysisAlgorithmFactory INSTANCE = new ErrorAnalysisAlgorithmFactory();
public ErrorAnalysisAlgorithm createErrorAnalysisAlgorithm(final OptimizerAlgorithm alg)
{
ErrorAnalysisAlgorithm algorithm = null;
if (alg instanceof AutomaticExperiment) { // Need to fix this
algorithm = new SimplexAlgorithmExecuter();
}
return algorithm;
}
}