[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eIncrementalAverage\u003c/code\u003e class in C++ facilitates the calculation and management of running averages.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to add new data points (\u003ccode\u003eAddData\u003c/code\u003e), retrieve the current average (\u003ccode\u003eCurrentAverage\u003c/code\u003e), and access the total number of records (\u003ccode\u003eNumRecords\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eUsers can initialize the average with a starting value or reset it to a specific value using dedicated methods (\u003ccode\u003eIncrementalAverage\u003c/code\u003e, \u003ccode\u003eReset\u003c/code\u003e).\u003c/p\u003e\n"]]],["The `IncrementalAverage` class in C++ manages running averages. Key actions include initializing the average with a given value, adding new data points via `AddData`, retrieving the current average with `CurrentAverage`, and obtaining the number of records using `NumRecords`. The `Reset` method allows resetting the average and the record count to zero. There is also a method to construct the class with an initial average value.\n"],null,["# IncrementalAverage\n\nC++ Reference: class IncrementalAverage\n=======================================\n\n\nNote: This documentation is automatically generated.\nManages incremental averages.\n\n| Method ||\n|----------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| [`AddData`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/util.h#L278) | Return type: `void ` Arguments: `double new_record` \u003cbr /\u003e |\n| [`CurrentAverage`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/util.h#L275) | Return type: `double ` \u003cbr /\u003e |\n| [`IncrementalAverage`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/util.h#L268) | Return type: `explicit ` Arguments: `double initial_average` Initializes the average with 'initial_average' and number of records to 0. |\n| [`IncrementalAverage`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/util.h#L270) | \u003cbr /\u003e |\n| [`NumRecords`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/util.h#L276) | Return type: `int64_t ` \u003cbr /\u003e |\n| [`Reset`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/util.h#L273) | Return type: `void ` Arguments: `double reset_value` Sets the number of records to 0 and average to 'reset_value'. |"]]