package farmer;

import graph.Edge;
import graph.Graph;
import graph.Vertex;
import java.util.Arrays;

/**
 * This class constructs an undirected graph of vertices representing
 * states of the FWGC problem.
 * The structure of the graph is as shown at:
 * 
 * http://www.d.umn.edu/~tcolburn/cs2511/javalabs/graphs/images/FarmerGraph1.png
 * 
 * The FWGC states corresponding to the vertices is as shown at:
 * 
 * http://www.d.umn.edu/~tcolburn/cs2511/javalabs/graphs/images/FarmerGraph2.png
 * @author Your name here
 */
public class FarmerGraph extends Graph {
    
    // You must provide.
    
}