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

ai.libs.hasco.model.BooleanParameterDomain Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 0.2.1
Show newest version
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