Encog.ConsoleStatusReportable.Report C# (CSharp) Method

Report() public method

Simply display any status reports.
public Report ( int total, int current, String message ) : void
total int Total amount.
current int Current item.
message String Current message.
return void
        public void Report(int total, int current,
                           String message)
        {
            if (total == 0)
            {
                Console.WriteLine(current + " : " + message);
            }
            else
            {
                Console.WriteLine(current + "/" + total + " : " + message);
            }
        }
ConsoleStatusReportable