mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-02 02:38:22 +02:00
14 lines
331 B
C++
14 lines
331 B
C++
// Shared report-path field name constants used by the OpenSTA gtest suites.
|
|||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "sta/StringUtil.hh"
|
||
|
|
|
||
|
|
namespace sta {
|
||
|
|
|
||
|
|
inline const StringSeq kAllReportFields = {
|
||
|
|
"input_pin", "hierarchical_pin", "net", "capacitance",
|
||
|
|
"slew", "fanout", "variation", "src_attr"};
|
||
|
|
|
||
|
|
} // namespace sta
|