mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-02 10:48:35 +02:00
ConcreteNetwork/Library member alignment
Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
@@ -81,12 +81,12 @@ protected:
|
||||
void removeCell(ConcreteCell *cell);
|
||||
|
||||
std::string name_;
|
||||
ObjectId id_;
|
||||
std::string filename_;
|
||||
ConcreteCellMap cell_map_;
|
||||
ObjectId id_;
|
||||
bool is_liberty_;
|
||||
char bus_brkt_left_{'['};
|
||||
char bus_brkt_right_{']'};
|
||||
ConcreteCellMap cell_map_;
|
||||
|
||||
private:
|
||||
friend class ConcreteCell;
|
||||
|
||||
@@ -366,10 +366,10 @@ protected:
|
||||
ConcretePort *port_;
|
||||
ConcreteNet *net_;
|
||||
ConcreteTerm *term_{nullptr};
|
||||
ObjectId id_;
|
||||
// Doubly linked list of net pins.
|
||||
ConcretePin *net_next_{nullptr};
|
||||
ConcretePin *net_prev_{nullptr};
|
||||
ObjectId id_;
|
||||
VertexId vertex_id_{vertex_id_null};
|
||||
|
||||
private:
|
||||
|
||||
@@ -42,8 +42,8 @@ ConcreteLibrary::ConcreteLibrary(std::string_view name,
|
||||
std::string_view filename,
|
||||
bool is_liberty) :
|
||||
name_(name),
|
||||
id_(ConcreteNetwork::nextObjectId()),
|
||||
filename_(filename),
|
||||
id_(ConcreteNetwork::nextObjectId()),
|
||||
is_liberty_(is_liberty)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user