/*
* This interface is used by the Expression
* class so that it can solve for variables.
*/

public interface Variable{
	/*
	* Returns the value of given variable.
	*/
	public double variable( String s );
}