class Google::Apis::SheetsV4::IterativeCalculationSettings
Settings to control how circular dependencies are resolved with iterative calculation.
Attributes
convergence_threshold[RW]
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` @return [Float]
max_iterations[RW]
When iterative calculation is enabled, the maximum number of calculation rounds to perform. Corresponds to the JSON property `maxIterations` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 6432 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sheets_v4/classes.rb, line 6437 def update!(**args) @convergence_threshold = args[:convergence_threshold] if args.key?(:convergence_threshold) @max_iterations = args[:max_iterations] if args.key?(:max_iterations) end