Sha256: 839aeec7fb8e47680d545089092a32aafac9c450ba0bdb6ba0568f3082f6e5f4
Contents?: true
Size: 674 Bytes
Versions: 20
Compression:
Stored size: 674 Bytes
Contents
# OpenStudio::Analysis::Algorithm define the algorithm parameters. The module and class names start to conflict # with OpenStudio's namespace. Be careful adding new classes without first making sure that the namespace conflict # is clear. module OpenStudio module Analysis class AlgorithmAttributes # Create a new instance of an algorithm # def initialize @attributes = {} end def set_attribute(attribute_name, attribute_value) @attributes[attribute_name] = attribute_value end def [](name) @attributes[name] end def to_hash(_version = 1) @attributes end end end end
Version data entries
20 entries across 20 versions & 1 rubygems