Method: Sbn::StringVariable#initialize

Defined in:
lib/sbn/string_variable.rb

#initialize(net, name = '') ⇒ StringVariable

Returns a new instance of StringVariable.



50
51
52
53
54
55
56
# File 'lib/sbn/string_variable.rb', line 50

def initialize(net, name = '')
  @net = net
  @covariables = {}
  @covariable_children = []
  @covariable_parents = []
  super(net, name, [], [])
end