You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add capacity, oldest and newest timestamp to moving window (#598)
The capacity of the moving window is exposed, which is the maximum
number of values that the moving window can hold.
Also the oldest and newest timestamps are exposed by the moving window.
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,11 @@
22
22
23
23
- A new class `Fuse` has been added to represent fuses. This class has a member variable `max_current` which represents the maximum current that can course through the fuse. If the current flowing through a fuse is greater than this limit, then the fuse will break the circuit.
24
24
25
-
- NaN values are treated as missing when gaps are determined in the `OrderedRingBuffer`.
25
+
-`MovingWindow` and `OrderedRingBuffer`:
26
+
- NaN values are treated as missing when gaps are determined in the `OrderedRingBuffer`.
27
+
- Provide access to `capacity` (maximum number of elements) in `MovingWindow`.
28
+
- Methods to retrieve oldest and newest timestamp of valid samples are added to both.
29
+
26
30
27
31
- Now when printing `FormulaEngine` for debugging purposes the the formula will be shown in infix notation, which should be easier to read.
0 commit comments