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

com.venky.csfj.solver.Constraint Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.venky.csfj.solver;

import com.venky.csfj.solver.variable.Variable;
import com.venky.csfj.solver.variable.VariableAssignment;
import java.util.List;

/**
 *
 * @author Venky
 */
public interface Constraint,DT> {
    public  void propagate(VariableAssignment workingAssignment, List> assigned, List> unassigned) throws ConstraintViolationException ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy