Class: Google::Apis::SheetsV4::IterativeCalculationSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb

Overview

Settings to control how circular dependencies are resolved with iterative calculation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IterativeCalculationSettings

Returns a new instance of IterativeCalculationSettings.



6526
6527
6528
# File 'lib/google/apis/sheets_v4/classes.rb', line 6526

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#convergence_thresholdFloat

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

Returns:

  • (Float)


6518
6519
6520
# File 'lib/google/apis/sheets_v4/classes.rb', line 6518

def convergence_threshold
  @convergence_threshold
end

#max_iterationsFixnum

When iterative calculation is enabled, the maximum number of calculation rounds to perform. Corresponds to the JSON property maxIterations

Returns:

  • (Fixnum)


6524
6525
6526
# File 'lib/google/apis/sheets_v4/classes.rb', line 6524

def max_iterations
  @max_iterations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6531
6532
6533
6534
# File 'lib/google/apis/sheets_v4/classes.rb', line 6531

def update!(**args)
  @convergence_threshold = args[:convergence_threshold] if args.key?(:convergence_threshold)
  @max_iterations = args[:max_iterations] if args.key?(:max_iterations)
end