Changed module name
[graph.njae.git] / lib / graph / graph.rb
diff --git a/lib/graph/graph.rb b/lib/graph/graph.rb
deleted file mode 100644 (file)
index 25c95cc..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'ostruct'
-
-# A simple graph library
-
-module Graph
-  
-  # A container for all the parts of a graph.  The graph can have arbitrary attributes,
-  # treated as method names.
-  class Graph < OpenStruct
-    def initialize
-      super
-      self.edges = Array.new
-      self.vertices = Array.new
-      self
-    end
-    
-    # Add a Vertex or Edge to the graph.
-    def <<(other)
-      if other.class == Vertex
-        self.vertices << other
-      elsif
-        self.edges << other
-      end
-      self
-    end
-  end
-end