We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8096aed commit 55eff80Copy full SHA for 55eff80
1 file changed
src/ClassNetlist.h
@@ -65,6 +65,8 @@ class ClassNetlist
65
66
const QString netInfo(net_t net); // Returns basic net information as string
67
const QString transInfo(tran_t t); // Returns basic transistor information as string
68
+ bool isTransOn(tran_t t) // Returns true if a transistor is ON
69
+ { return (t < MAX_TRANS) && m_transdefs[t].id && m_transdefs[t].on; }
70
Logic *getLogicTree(net_t net); // Returns the bipartite tree describing the logic connections of a net
71
void optimizeLogicTree(Logic **llr); // Optimizes, in place, logic tree by coalescing suitable nodes
72
QString equation(net_t net); // Returns a string describing the logic connections of a net
0 commit comments