com.adeptik.algorithm.execution.contracts.ExecutionSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AlgorithmExecutorContracts Show documentation
Show all versions of AlgorithmExecutorContracts Show documentation
Library containing models for Java Algorithm Executor API.
The newest version!
package com.adeptik.algorithm.execution.contracts;
import java.io.File;
/**
* Параметры запуска исполнения алгоритма для решения конкретной задачи
*/
@SuppressWarnings({"unused", "CanBeFinal"})
public class ExecutionSettings {
/**
* Папка с распакованным определением алгоритма
*/
public File algorithmDir;
/**
* Папка с распакованным определением задачи
*/
public File problemDir;
/**
* Параметра хранилища решений задачи
*/
public SolutionStoreSettings solutionStore;
}