Minor output fix

This commit is contained in:
Ilya Gulkov 2015-10-13 13:03:46 +03:00
parent 2f1685546d
commit c5bfe81f24

View File

@ -249,7 +249,7 @@ namespace SolveAvdoshin
b = Math.Max(b, 3);
if(a <= 3) {
Console.WriteLine("\n2-3.\n");
Console.WriteLine("\n2-3.");
BooleanFunctions.PrintMinimaInAvdoshinBases(n, minOps, showBlocks);
}
@ -289,6 +289,10 @@ namespace SolveAvdoshin
n = Solve(coefs, verboseSystem);
if(verboseSystem) {
Console.WriteLine(new BooleanFunction((byte)n).ToString());
}
Console.WriteLine("\nОтвет: " + n + "\n");
break;