mirror of
https://github.com/dancojocaru2000/ai-project-idastar.git
synced 2025-02-23 00:49:34 +02:00
Changed dots in printout
This commit is contained in:
parent
dbe2cfd500
commit
b376525785
1 changed files with 4 additions and 4 deletions
|
@ -20,9 +20,9 @@ algoBoard.AlgorithmStep += (_, threshold) => {
|
|||
if(done){
|
||||
System.Console.WriteLine("The solved labyrinth is:");
|
||||
}else if(step%2 == 0) {
|
||||
System.Console.WriteLine($"Computing (threshold: {threshold}) [· ]");
|
||||
System.Console.WriteLine($"Computing (threshold: {threshold}) [• ]");
|
||||
}else {
|
||||
System.Console.WriteLine($"Computing (threshold: {threshold}) [ ·]");
|
||||
System.Console.WriteLine($"Computing (threshold: {threshold}) [ •]");
|
||||
}
|
||||
|
||||
//top border
|
||||
|
@ -86,7 +86,7 @@ void FormattedLabRow(string line) {
|
|||
|
||||
case 'S': {
|
||||
Console.BackgroundColor = ConsoleColor.Green;
|
||||
Console.Write("<·>");
|
||||
Console.Write("<•>");
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -98,7 +98,7 @@ void FormattedLabRow(string line) {
|
|||
|
||||
case 'P': {
|
||||
Console.BackgroundColor = ConsoleColor.Blue;
|
||||
Console.Write(" · ");
|
||||
Console.Write(" • ");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue