latest from 06/09 codes parallaxsw/OpensSTA

Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com>
This commit is contained in:
dsengupta0628 2026-06-09 17:43:53 +00:00
parent 7aeca8c193
commit 7c2f746185
3 changed files with 7 additions and 7 deletions

View File

@ -1838,7 +1838,7 @@ TEST_F(StaDesignTest, SearchReportArrivals) {
Search *search = sta_->search();
Vertex *v = findVertex("r1/Q");
ASSERT_NE(v, nullptr);
search->reportArrivals(v, false);
search->reportArrivals(v, false, 3);
}
// --- Search: reportPathCountHistogram ---
@ -4143,8 +4143,8 @@ TEST_F(StaDesignTest, SearchReportArrivals2) {
Search *search = sta_->search();
Vertex *v = findVertex("r1/Q");
ASSERT_NE(v, nullptr);
search->reportArrivals(v, false);
search->reportArrivals(v, true);
search->reportArrivals(v, false, 3);
search->reportArrivals(v, true, 3);
}
TEST_F(StaDesignTest, SearchSeedArrival) {

View File

@ -97,8 +97,8 @@ puts "paths: [sta::path_count]"
puts "--- report_tag_arrivals ---"
set v [sta::worst_slack_vertex max]
if { $v != "NULL" } {
sta::report_tag_arrivals_cmd $v 1
sta::report_tag_arrivals_cmd $v 0
sta::report_tag_arrivals_cmd $v 1 3
sta::report_tag_arrivals_cmd $v 0 3
}
############################################################

View File

@ -86,8 +86,8 @@ if { $wv != "NULL" } {
}
# report_tag_arrivals
sta::report_tag_arrivals_cmd $wv 1
sta::report_tag_arrivals_cmd $wv 0
sta::report_tag_arrivals_cmd $wv 1 3
sta::report_tag_arrivals_cmd $wv 0 3
}
puts "--- worst_slack_vertex min ---"