From 6e569ebe1187e93f6d1322b07127b51628c92cd1 Mon Sep 17 00:00:00 2001 From: Iron Prando da Silva Date: Fri, 10 Dec 2021 15:14:39 +0100 Subject: [PATCH] Added main calculation loop and other modifications and corrections. Still missing table data storing and test. --- .../dramTimeDependencies/dramtimedependenciesIF.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DRAMSys/traceAnalyzer/businessObjects/dramTimeDependencies/dramtimedependenciesIF.h b/DRAMSys/traceAnalyzer/businessObjects/dramTimeDependencies/dramtimedependenciesIF.h index bd495583..de20bc48 100644 --- a/DRAMSys/traceAnalyzer/businessObjects/dramTimeDependencies/dramtimedependenciesIF.h +++ b/DRAMSys/traceAnalyzer/businessObjects/dramTimeDependencies/dramtimedependenciesIF.h @@ -48,6 +48,9 @@ public: const uint getClk() const { return clk; } const uint getNAW() const { return nActivateWindow; }; + const uint getClk() const { return clk; } + const uint getNAW() const { return nActivateWindow; }; + protected: void mFilterDependencyList(std::vector& dependencyList, const std::vector& dependencyFilter) const; void mFilterDependencyMap(DependencyMap& dependencyMap, const std::vector& dependencyFilter) const;