/* * POSITION.java * * Created on December 10, 2008, 4:39 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package graph; /** * * @author suchenek */ //Copyright Dr. Marek A. Suchenek, 2005, 2006, 2007, 2008 public class POSITION { public int index; public POSITION(int value) { index = value; } public boolean isEqual(POSITION p) { return (this.index == p.index); } }