# File structures/CellComplex.rb, line 40 def initialize(*tuple) raise "tuple constructed with nil argument" if tuple==nil raise "tuple constructed with bad argument" unless tuple.is_a? Array @tuple = tuple.flatten @dim = @tuple.length-1 end