From 83c8dc3358f4fa1427bc4acc8ff9238fe00f6369 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Tue, 19 Feb 2019 08:42:28 -0800 Subject: [PATCH] write_path_spice comment --- search/WritePathSpice.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/search/WritePathSpice.cc b/search/WritePathSpice.cc index 1e69d08a..6cc7bbd8 100644 --- a/search/WritePathSpice.cc +++ b/search/WritePathSpice.cc @@ -312,7 +312,10 @@ WritePathSpice::writeHeader() auto pvt = sdc_->operatingConditions(min_max); if (pvt == NULL) pvt = default_library_->defaultOperatingConditions(); - streamPrint(spice_stream_, "* Path to %s %s\n", + Path *start_path = path_expanded_.startPath(); + streamPrint(spice_stream_, "* Path from %s %s to %s %s\n", + network_->pathName(start_path->pin(this)), + start_path->transition(this)->asString(), network_->pathName(path_->pin(this)), path_->transition(this)->asString()); auto temp = pvt->temperature();