File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
*
14
14
* Three types of log message types are defined:
15
15
* - VTR_LOG : The standard 'info' type log message
16
- * - VTR_LOG_WARN : A warning log message. This represents unusual condition that may indicate an issue but execution continues
16
+ * - VTR_LOG_WARN : A warning log message. This represents an unusual condition that may indicate an issue but execution continues
17
17
* - VTR_LOG_ERROR : An error log message. This represents a clear issue that should result in stopping the program execution.
18
18
* Please note that using this log message will not actually terminate the program. So a VtrError should be thrown
19
19
* after all the necessary VTR_LOG_ERROR messages are printed.
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ class BlkLocRegistry {
48
48
// / (blocks that are not locked down to a single location)
49
49
std::vector<ClusterBlockId> movable_blocks_;
50
50
51
- // /@brief Stores ClusterBlockId of all movable clustered of each block type
52
- std::vector<std::vector<ClusterBlockId>> movable_blocks_per_type_;
53
-
54
51
public:
52
+
53
+ // /@brief Stores ClusterBlockId of all movable clustered blocks of each block type
54
+ std::vector<std::vector<ClusterBlockId>> movable_blocks_per_type_;
55
55
const vtr::vector_map<ClusterBlockId, t_block_loc>& block_locs () const ;
56
56
vtr::vector_map<ClusterBlockId, t_block_loc>& mutable_block_locs ();
57
57
You can’t perform that action at this time.
0 commit comments