Class: Origen::Application::Statistics::Pattern
- Defined in:
- lib/origen/application/statistics.rb
Instance Attribute Summary collapse
-
#cycles ⇒ Object
Returns the value of attribute cycles.
-
#duration ⇒ Object
Returns the value of attribute duration.
-
#vectors ⇒ Object
Returns the value of attribute vectors.
Instance Method Summary collapse
-
#initialize ⇒ Pattern
constructor
A new instance of Pattern.
Constructor Details
#initialize ⇒ Pattern
Returns a new instance of Pattern.
13 14 15 16 17 |
# File 'lib/origen/application/statistics.rb', line 13 def initialize @vectors = 0 @cycles = 0 @duration = 0 end |
Instance Attribute Details
#cycles ⇒ Object
Returns the value of attribute cycles.
12 13 14 |
# File 'lib/origen/application/statistics.rb', line 12 def cycles @cycles end |
#duration ⇒ Object
Returns the value of attribute duration.
12 13 14 |
# File 'lib/origen/application/statistics.rb', line 12 def duration @duration end |
#vectors ⇒ Object
Returns the value of attribute vectors.
12 13 14 |
# File 'lib/origen/application/statistics.rb', line 12 def vectors @vectors end |