@@ -248,16 +248,16 @@ class RRGraphView {
248
248
inline const char * node_side_string (RRNodeId node) const {
249
249
return node_storage_.node_side_string (node);
250
250
}
251
-
251
+
252
252
/* * @brief The ptc_num carries different meanings for different node types
253
- * (true in VPR RRG that is currently supported, may not be true in customized RRG)
254
- * CHANX or CHANY: the track id in routing channels
255
- * OPIN or IPIN: the index of pins in the logic block data structure
256
- * SOURCE and SINK: the class id of a pin (indicating logic equivalence of pins) in the logic block data structure
257
- * @note
258
- * This API is very powerful and developers should not use it unless it is necessary,
259
- * e.g the node type is unknown. If the node type is known, the more specific routines, `node_pin_num()`,
260
- * `node_track_num()`and `node_class_num()`, for different types of nodes should be used.*/
253
+ * (true in VPR RRG that is currently supported, may not be true in customized RRG)
254
+ * CHANX or CHANY: the track id in routing channels
255
+ * OPIN or IPIN: the index of pins in the logic block data structure
256
+ * SOURCE and SINK: the class id of a pin (indicating logic equivalence of pins) in the logic block data structure
257
+ * @note
258
+ * This API is very powerful and developers should not use it unless it is necessary,
259
+ * e.g the node type is unknown. If the node type is known, the more specific routines, `node_pin_num()`,
260
+ * `node_track_num()`and `node_class_num()`, for different types of nodes should be used.*/
261
261
262
262
inline short node_ptc_num (RRNodeId node) const {
263
263
return node_storage_.node_ptc_num (node);
@@ -274,7 +274,7 @@ class RRGraphView {
274
274
inline short node_track_num (RRNodeId node) const {
275
275
return node_storage_.node_track_num (node);
276
276
}
277
-
277
+
278
278
/* * @brief Get the class num of a routing resource node. This is designed for routing source and sinks,
279
279
* which are SOURCE and SINK nodes. This function is inlined for runtime optimization. */
280
280
inline short node_class_num (RRNodeId node) const {
0 commit comments