# File structures/CellComplex.rb, line 15
  def initialize (complex, dim = 0, data = nil)
    begin
      raise "#{dim} is not a valid cell dimension\n" if dim < 0
      @dim = dim
      @complex = complex
      @data = data
    rescue
      print "Cell.initialize: ", $!
      exit
    end
  end