All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adeptik.algorithm.execution.contracts.ExecutionSettings Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy