using System; namespace aima.search.csp { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public interface Constraint { bool isSatisfiedWith(Assignment assignment, string variable, Object value); } }