jpaul.Constraints.SolReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpaul Show documentation
Show all versions of jpaul Show documentation
This library was originally developed by people listed at http://jpaul.sourceforge.net.
The newest version!
// SolReader.java, created Mon Jun 20 14:23:02 2005 by salcianu
// Copyright (C) 2005 Alexandru Salcianu
// Licensed under the Modified BSD Licence; see COPYING for details.
package jpaul.Constraints;
/**
* SolReader
provides read-only access to the (possibly
* partial) solution of a system of constraints.
*
* @author Alexandru Salcianu - [email protected]
* @version $Id: SolReader.java,v 1.4 2005/08/11 22:57:08 salcianu Exp $ */
public interface SolReader, Info> {
/** @return value associated with the variable v
. */
public Info get(V v);
}