Skip to content

Commit 20dd3f8

Browse files
doxygen comment for t_rr_rc_data
1 parent bc7f9d1 commit 20dd3f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libs/librrgraph/src/base/rr_node_types.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ typedef vtr::Range<edge_idx_iterator> edge_idx_range;
103103

104104
typedef std::vector<std::map<int, int>> t_arch_switch_fanin;
105105

106-
/*
107-
* Resistance/Capacitance data for an RR Nodes
106+
/**
107+
* @brief Resistance/Capacitance data for an RR Node.
108108
*
109109
* In practice many RR nodes have the same values, so they are fly-weighted
110110
* to keep t_rr_node small. Each RR node holds an rc_index which allows
@@ -121,8 +121,8 @@ typedef std::vector<std::map<int, int>> t_arch_switch_fanin;
121121
struct t_rr_rc_data {
122122
t_rr_rc_data(float Rval, float Cval) noexcept;
123123

124-
float R;
125-
float C;
124+
float R; ///< Resistance to go through an RR node
125+
float C; ///< Total capacitance of an RR node.
126126
};
127127

128128
// This is the data type of fast lookups of an rr-node given an (rr_type, layer, x, y, and the side)

0 commit comments

Comments
 (0)