Skip to content

Commit 54a56d5

Browse files
committed
checked
1 parent 46d8927 commit 54a56d5

File tree

2 files changed

+81
-171
lines changed

2 files changed

+81
-171
lines changed

libs/librrgraph/src/base/rr_graph_builder.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class RRGraphBuilder {
3838
t_rr_graph_storage& rr_nodes();
3939
/** @brief Return a writable object for update the fast look-up of rr_node */
4040
RRSpatialLookup& node_lookup();
41-
/** .. warning:: The Metadata should stay as an independent data structure than rest of the internal data,
41+
/** @warning The Metadata should stay as an independent data structure than rest of the internal data,
4242
* e.g., node_lookup! */
4343
/** @brief Return a writable object for the meta data on the nodes */
4444
MetadataStorage<int>& rr_node_metadata();
@@ -85,7 +85,7 @@ class RRGraphBuilder {
8585
return segment_id;
8686
}
8787
/** TODO @brief Return a writable list of all the rr_segments
88-
* .. 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.
88+
* @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.
8989
*/
9090
inline vtr::vector<RRSegmentId, t_segment_inf>& rr_segments() {
9191
return rr_segments_;
@@ -104,7 +104,7 @@ class RRGraphBuilder {
104104
return switch_id;
105105
}
106106
/** TODO @brief Return a writable list of all the rr_switches
107-
* .. 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.
107+
* @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.
108108
*/
109109
inline vtr::vector<RRSwitchId, t_rr_switch_inf>& rr_switch() {
110110
return rr_switch_inf_;
@@ -388,7 +388,7 @@ class RRGraphBuilder {
388388
/* Detailed information about the switches, which are used in the RRGraph */
389389
vtr::vector<RRSwitchId, t_rr_switch_inf> rr_switch_inf_;
390390

391-
/** .. warning:: The Metadata should stay as an independent data structure than rest of the internal data,
391+
/** @warning The Metadata should stay as an independent data structure than rest of the internal data,
392392
* e.g., node_lookup! */
393393
/* Metadata is an extra data on rr-nodes and edges, respectively, that is not used by vpr
394394
* but simply passed through the flow so that it can be used by downstream tools.

0 commit comments

Comments
 (0)