Skip to content

Commit a3e4c4c

Browse files
committed
final check
1 parent 54a56d5 commit a3e4c4c

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

libs/librrgraph/src/base/rr_graph_builder.h

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@ class RRGraphBuilder {
8484

8585
return segment_id;
8686
}
87-
/** TODO @brief Return a writable list of all the rr_segments
87+
/**
88+
* \internal
89+
* TODO
90+
* \endinternal
91+
* @brief Return a writable list of all the rr_segments
8892
* @warning It is not recommended to use this API unless you have to. The API may be deprecated later, and future APIs will designed to return a specific data from the rr_segments.
8993
*/
9094
inline vtr::vector<RRSegmentId, t_segment_inf>& rr_segments() {
@@ -103,7 +107,11 @@ class RRGraphBuilder {
103107

104108
return switch_id;
105109
}
106-
/** TODO @brief Return a writable list of all the rr_switches
110+
/**
111+
* \internal
112+
* TODO
113+
* \endinternal
114+
* @brief Return a writable list of all the rr_switches
107115
* @warning It is not recommended to use this API unless you have to. The API may be deprecated later, and future APIs will designed to return a specific data from the rr_switches.
108116
*/
109117
inline vtr::vector<RRSwitchId, t_rr_switch_inf>& rr_switch() {

libs/librrgraph/src/base/rr_graph_view.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class RRGraphView {
138138
return node_storage_.node_direction(node);
139139
}
140140

141-
/** @brief Return the direction string of a specified node.
141+
/** @brief Return a string representing the direction of the specified node.
142142
*/
143143
inline const std::string& node_direction_string(RRNodeId node) const {
144144
return node_storage_.node_direction_string(node);
@@ -281,7 +281,7 @@ class RRGraphView {
281281
return !(y < node_ylow(node) || y > node_yhigh(node));
282282
}
283283

284-
/** @brief Return string of information about a specified node.
284+
/** @brief Return a string containing information about the specified node.
285285
* @note The returned string can contain the following information:
286286
* type, side, x_low, x_high, y_low, y_high, length, direction, segment_name, layer num
287287
*/
@@ -360,7 +360,7 @@ class RRGraphView {
360360
return node_storage_.is_node_on_specific_side(node, side);
361361
}
362362

363-
/** @brief Return the side string of a routing resource node.
363+
/** @brief Return a string representing the side of a routing resource node.
364364
*/
365365
inline const char* node_side_string(RRNodeId node) const {
366366
return node_storage_.node_side_string(node);
@@ -407,7 +407,7 @@ class RRGraphView {
407407
return node_storage_.edge_sink_node(id, iedge);
408408
}
409409

410-
/** @brief Detect if the edge is a configurable edge
410+
/** @brief Check if the edge is a configurable edge
411411
* @note A configurable edge represents a programmable switch between routing resources, which could be
412412
* - a multiplexer
413413
* - a tri-state buffer

0 commit comments

Comments
 (0)