diff --git a/code/python/src/hirschberg/display.py b/code/python/src/hirschberg/display.py index d984540..08f47c3 100644 --- a/code/python/src/hirschberg/display.py +++ b/code/python/src/hirschberg/display.py @@ -56,9 +56,9 @@ def represent_cost_matrix( match verb: case VerboseMode.MOVES: - table[3:(3+m), 3:(3+n)] = '.'; + table[3:(3+m), 3:(3+n)] = '\x1b[2m.\x1b[0m'; for (i, j) in path: - table[3 + i, 3 + j] = '*'; + table[3 + i, 3 + j] = '\x1b[31;1m*\x1b[0m'; case VerboseMode.COSTS | VerboseMode.COSTS_AND_MOVES: table[3:(3+m), 3:(3+n)] = Costs.copy(); if verb == VerboseMode.COSTS_AND_MOVES: