Class: BlifUtils::Netlist::Fanout

Inherits:
Object
  • Object
show all
Defined in:
lib/blifutils/netlist.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target, index) ⇒ Fanout

Returns a new instance of Fanout.



263
264
265
266
# File 'lib/blifutils/netlist.rb', line 263

def initialize (target, index)
	@target = target
	@index = index
end

Instance Attribute Details

#indexObject

Integer



261
262
263
# File 'lib/blifutils/netlist.rb', line 261

def index
  @index
end

#targetObject

Component



260
261
262
# File 'lib/blifutils/netlist.rb', line 260

def target
  @target
end