Szymon Konefal
Szymon Konefal
Current moving average filter code (ema.cpp/ema.hpp) is a mix of "base" filter class and "exponential moving average" algorithm. **We should refactor the code:** - Create separate .hpp and .cpp for...
#149 Implemented simple tracking of products for consumption and production in components. This should be extended to keep track of specific ID of producers, to be sure that our pipelines...
#149 Implemented _std::vector consumables()_ function. Because some products are vectors, some components are consumers of vector. For easier development, we should have flattenedConsumables that will return flattened result.
SyncConsumer functionality should be implemented in Filter class.
WID class are redundant and it's occurrences should be removed. Whenever they were useful, they should be changed to ExecutorInfo message.
We have tested most of our components using unit tests, but we need to make sure that our pipelines produce results. **We few tests to check if Estimator returns slack...