From 72d63492dda2c58bc67d863797824f836f7efa05 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Fri, 20 Jan 2023 15:19:07 -0700 Subject: [PATCH] non-clock path group names Signed-off-by: James Cherry --- search/PathGroup.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/search/PathGroup.cc b/search/PathGroup.cc index cd70c770..175c16a9 100644 --- a/search/PathGroup.cc +++ b/search/PathGroup.cc @@ -197,10 +197,10 @@ PathGroup::clear() //////////////////////////////////////////////////////////////// -const char *PathGroups::path_delay_group_name_ = "**default**"; -const char *PathGroups::gated_clk_group_name_ = "**clock_gating_default**"; -const char *PathGroups::async_group_name_ = "**async_default**"; -const char *PathGroups::unconstrained_group_name_ = "(none)"; +const char *PathGroups::path_delay_group_name_ = "path delay"; +const char *PathGroups::gated_clk_group_name_ = "gated clock"; +const char *PathGroups::async_group_name_ = "asynchronous"; +const char *PathGroups::unconstrained_group_name_ = "unconstrained"; bool PathGroups::isGroupPathName(const char *group_name)