From 6bb54f953925abb66e66dd796ebb9237861d1919 Mon Sep 17 00:00:00 2001 From: Peter Gadfort Date: Wed, 22 Apr 2026 21:06:09 -0400 Subject: [PATCH] sdc: add clockGroupsNameMap Signed-off-by: Peter Gadfort --- include/sta/Sdc.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/sta/Sdc.hh b/include/sta/Sdc.hh index 3f7cd8e4..eee56669 100644 --- a/include/sta/Sdc.hh +++ b/include/sta/Sdc.hh @@ -1035,6 +1035,10 @@ public: bool isPathDelayInternalTo(const Pin *pin) const; bool isPathDelayInternalToBreak(const Pin *pin) const; const ExceptionPathSet &exceptions() const { return exceptions_; } + const ClockGroupsNameMap &clockGroupsNameMap() const + { + return clk_groups_name_map_; + } void deleteExceptions(); void deleteException(ExceptionPath *exception); void recordException(ExceptionPath *exception);