bug fixing to constant string to display interconnect names

This commit is contained in:
tangxifan 2020-04-07 18:28:19 -06:00
parent ff7ea99381
commit dd4f83a374
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ enum e_interconnect {
NUM_INTERC_TYPES /* Xifan Tang - Invalid types for interconnect */
};
/* Xifan Tang - String versions of interconnection type */
constexpr std::array<const char*, NUM_INTERC_TYPES> INTERCONNECT_TYPE_STRING = {{"complete", "direct", "mux"}};
constexpr std::array<const char*, NUM_INTERC_TYPES> INTERCONNECT_TYPE_STRING = {{"unknown", "complete", "direct", "mux"}};
/* Orientations. */
enum e_side : unsigned char {