# File structures/CellComplex.rb, line 71
  def []=(k,cell)
    if (k>=0 && k <= @dim)
      @tuple[k] = cell
    end
  end