summaryrefslogtreecommitdiff
path: root/Source/Provers/TPTP/ProverInterface.cs
diff options
context:
space:
mode:
authorGravatar stobies <unknown>2012-01-11 09:55:06 +0100
committerGravatar stobies <unknown>2012-01-11 09:55:06 +0100
commitbf2bd08a7ebecfdec77e5bf64d1a4dda7973bcc6 (patch)
tree2635ee1d9e9984ad9c45211c70ea0b6072004b4e /Source/Provers/TPTP/ProverInterface.cs
parent416d28d0927ef49e60b3ac964782e175b7805892 (diff)
Use DateTime.UtcNow instead of DateTime.Now
Diffstat (limited to 'Source/Provers/TPTP/ProverInterface.cs')
-rw-r--r--Source/Provers/TPTP/ProverInterface.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Provers/TPTP/ProverInterface.cs b/Source/Provers/TPTP/ProverInterface.cs
index 662d45d3..b714ed67 100644
--- a/Source/Provers/TPTP/ProverInterface.cs
+++ b/Source/Provers/TPTP/ProverInterface.cs
@@ -201,7 +201,7 @@ USE_PREDICATES=<bool> Try to use SMT predicates for functions returning bool
Contract.Requires(expr != null);
Contract.Ensures(Contract.Result<string>() != null);
- DateTime start = DateTime.Now;
+ DateTime start = DateTime.UtcNow;
if (CommandLineOptions.Clo.Trace)
Console.Write("Linearising ... ");
@@ -238,7 +238,7 @@ USE_PREDICATES=<bool> Try to use SMT predicates for functions returning bool
Contract.Assert(res != null);
if (CommandLineOptions.Clo.Trace) {
- DateTime end = DateTime.Now;
+ DateTime end = DateTime.UtcNow;
TimeSpan elapsed = end - start;
Console.WriteLine("finished [{0} s]", elapsed.TotalSeconds);
}