mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 08:07:46 +00:00
Internals: rank() public for future optimizers.
This commit is contained in:
parent
d6a7073a2b
commit
39ecfd9900
@ -164,7 +164,6 @@ protected:
|
|||||||
void verticesPushBack(V3Graph* graphp);
|
void verticesPushBack(V3Graph* graphp);
|
||||||
// ACCESSORS
|
// ACCESSORS
|
||||||
void fanout(double fanout) { m_fanout = fanout; }
|
void fanout(double fanout) { m_fanout = fanout; }
|
||||||
void rank(uint32_t rank) { m_rank = rank; }
|
|
||||||
void inUnlink() { m_ins.reset(); } // Low level; normally unlinkDelete is what you want
|
void inUnlink() { m_ins.reset(); } // Low level; normally unlinkDelete is what you want
|
||||||
void outUnlink() { m_outs.reset(); } // Low level; normally unlinkDelete is what you want
|
void outUnlink() { m_outs.reset(); } // Low level; normally unlinkDelete is what you want
|
||||||
protected:
|
protected:
|
||||||
@ -197,6 +196,7 @@ public:
|
|||||||
uint32_t color() const { return m_color; }
|
uint32_t color() const { return m_color; }
|
||||||
void color(uint32_t color) { m_color = color; }
|
void color(uint32_t color) { m_color = color; }
|
||||||
uint32_t rank() const { return m_rank; }
|
uint32_t rank() const { return m_rank; }
|
||||||
|
void rank(uint32_t rank) { m_rank = rank; }
|
||||||
double fanout() const { return m_fanout; }
|
double fanout() const { return m_fanout; }
|
||||||
void user(uint32_t user) { m_user = user; }
|
void user(uint32_t user) { m_user = user; }
|
||||||
uint32_t user() const { return m_user; }
|
uint32_t user() const { return m_user; }
|
||||||
|
Loading…
Reference in New Issue
Block a user