diff options
Diffstat (limited to 'CSharp/Ivy/IvyFilter')
-rw-r--r-- | CSharp/Ivy/IvyFilter/Filter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyFilter/Filter.cs b/CSharp/Ivy/IvyFilter/Filter.cs index 1e4fbed..03e2435 100644 --- a/CSharp/Ivy/IvyFilter/Filter.cs +++ b/CSharp/Ivy/IvyFilter/Filter.cs @@ -93,7 +93,7 @@ namespace IvyFilter {
}
}
- System.Console.Out.WriteLine(((f) ? "[filtered] " : "[non filtered] ") + total + "ms elapsed, " + (finlocal - debut) + " ms total out of " + n * t);
+ System.Console.Out.WriteLine(((f) ? "[filtered] " : "[non filtered] ") + total.TotalMilliseconds + "ms elapsed, " + (finlocal - debut).TotalMilliseconds + " ms total out of " + n * t);
bus.Stop();
if (f == true)
new Filter(domain, n, t, false); // relance le même test sans filtre
|