![JAR search and dependency download from the Maven repository](/logo.png)
ai.libs.hasco.model.BooleanParameterDomain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hasco Show documentation
Show all versions of hasco Show documentation
HASCO is a framework for reducing configuration tasks (e.g. software system configuration or algorithm configuration) into an HTN planning problem. This can then in turn be reduced to a graph search problem that can be solved by any kind of standard graph search algorithm, e.g., breadth-first-search.
package ai.libs.hasco.model;
import com.fasterxml.jackson.annotation.JsonCreator;
public class BooleanParameterDomain extends CategoricalParameterDomain {
@JsonCreator
public BooleanParameterDomain() {
super(new String[] {"true", "false"});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy