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

javax.constraints.impl.search.SearchStrategy Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy