diff options
author | fcolin | 2007-02-01 09:53:50 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:53:50 +0000 |
commit | b29c7715561c326f49d3bad58a3a26c6a045cd2f (patch) | |
tree | 249bf11029ad2ada354d31512a65947b43914412 /CSharp/Ivy/IvyFilter | |
parent | d0580f63fdf9a5b56f103ac756fe8d3e1d1263c6 (diff) | |
download | ivy-csharp-b29c7715561c326f49d3bad58a3a26c6a045cd2f.zip ivy-csharp-b29c7715561c326f49d3bad58a3a26c6a045cd2f.tar.gz ivy-csharp-b29c7715561c326f49d3bad58a3a26c6a045cd2f.tar.bz2 ivy-csharp-b29c7715561c326f49d3bad58a3a26c6a045cd2f.tar.xz |
Utilisateur : Fcolin Date : 23/06/06 Heure : 11:21 Archivé dans $/CSharp/Ivy/IvyFilter Commentaire: (vss 2)
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
|