// This file is part of your solution; as long as you don't modify the // NodeRunnable inteface you may change this file any way you wish. You may // also include any other files or classes in your solution as you think // apropriate. class NodeRunnable implements Runnable { int returnPartnerIndex() { // Return this node's partner's node index. If this node has no parner, // return this node's index. return -1; } NodeRunnable(int nodeIndex, NodeRunnable neighbors[]) { // Create a new node with the given index and adjacent neighbors. } public void run() { } } // $Log: nr.java,v $ // Revision 1.1 2003/08/07 20:37:54 rclayton // Initial revision //