Class: Google::Apis::SheetsV4::IterativeCalculationSettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::IterativeCalculationSettings
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
 generated/google/apis/sheets_v4/representations.rb,
 generated/google/apis/sheets_v4/representations.rb
Overview
Settings to control how circular dependencies are resolved with iterative calculation.
Instance Attribute Summary collapse
- 
  
    
      #convergence_threshold  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    When iterative calculation is enabled and successive results differ by less than this threshold value, the calculation rounds stop. 
- 
  
    
      #max_iterations  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    When iterative calculation is enabled, the maximum number of calculation rounds to perform. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ IterativeCalculationSettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of IterativeCalculationSettings. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IterativeCalculationSettings
Returns a new instance of IterativeCalculationSettings
| 5530 5531 5532 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5530 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#convergence_threshold ⇒ Float
When iterative calculation is enabled and successive results differ by
less than this threshold value, the calculation rounds stop.
Corresponds to the JSON property convergenceThreshold
| 5522 5523 5524 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5522 def convergence_threshold @convergence_threshold end | 
#max_iterations ⇒ Fixnum
When iterative calculation is enabled, the maximum number of calculation
rounds to perform.
Corresponds to the JSON property maxIterations
| 5528 5529 5530 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5528 def max_iterations @max_iterations end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5535 5536 5537 5538 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5535 def update!(**args) @convergence_threshold = args[:convergence_threshold] if args.key?(:convergence_threshold) @max_iterations = args[:max_iterations] if args.key?(:max_iterations) end |