Skip to content

Commit 43f2dbf

Browse files
committed
Enhanced axiom checkers.
- Removed trivial "auto"s for better readability. - Corrected weird verilog codes in some regression tests. Signed-off-by: Jaehyun Kim <[email protected]>
1 parent a4b543e commit 43f2dbf

22 files changed

+566
-392
lines changed

src/dbSta/include/db_sta/dbNetwork.hh

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,17 @@ class dbNetwork : public ConcreteNetwork
7272
CellPortIterator* portIterator(const Cell* cell) const override;
7373

7474
// sanity checkers
75-
void checkAxioms();
76-
void checkSanityModBTerms();
77-
void checkSanityModITerms();
78-
void checkSanityModuleInsts();
79-
void checkSanityModInstTerms();
80-
void checkSanityUnusedModules();
81-
void checkSanityTermConnectivity();
82-
void checkSanityNetConnectivity();
83-
void checkSanityInstNames();
84-
void checkSanityNetNames();
75+
void checkAxioms() const;
76+
void checkSanityModBTerms() const;
77+
void checkSanityModITerms() const;
78+
void checkSanityModuleInsts() const;
79+
void checkSanityModInstTerms() const;
80+
void checkSanityUnusedModules() const;
81+
void checkSanityTermConnectivity() const;
82+
void checkSanityNetConnectivity() const;
83+
void checkSanityInstNames() const;
84+
void checkSanityNetNames() const;
85+
void checkSanityModNetNamesInModule(odb::dbModule* module) const;
8586

8687
void readLefAfter(dbLib* lib);
8788
void readDefAfter(dbBlock* block);

0 commit comments

Comments
 (0)