javax.constraints.impl.search.SearchStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-sugar Show documentation
Show all versions of jsr331-sugar Show documentation
This is a JSR331 interface for the open source Java constraint programming library "Sugar" v. 2.1.3
The newest version!
package javax.constraints.impl.search;
import javax.constraints.Solver;
public class SearchStrategy extends AbstractSearchStrategy {
public SearchStrategy(Solver solver) {
super(solver);
javax.constraints.Var[] vars = solver.getProblem().getVars();
setVars(vars);
// TODO JSR331 Implementation
// getProblem().log("SearchStrategy is not supported");
}
}