From fac8a5623253118633e1bbee72aee3eecf30c6dc Mon Sep 17 00:00:00 2001 From: vijay_ganesh Date: Mon, 22 Mar 2010 22:30:28 +0000 Subject: [PATCH] commented out the mtrand initial seeding with time() function in sat/cryptominisat2/Solver.cpp. We introduced this to strongly randomize the assignments generated by STP git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@651 e59a4935-1847-0410-ae03-e826735625c1 --- src/sat/cryptominisat2/Solver.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sat/cryptominisat2/Solver.cpp b/src/sat/cryptominisat2/Solver.cpp index 53ec40f..e27a86d 100644 --- a/src/sat/cryptominisat2/Solver.cpp +++ b/src/sat/cryptominisat2/Solver.cpp @@ -82,7 +82,8 @@ Solver::Solver() : , order_heap (VarOrderLt(activity)) , progress_estimate(0) , remove_satisfied (true) - , mtrand((unsigned long int)time(NULL)) + , mtrand((unsigned long int)0) + //, mtrand((unsigned long int)time(NULL)) , restartType (static_restart) #ifdef STATS_NEEDED , logger(verbosity) -- 2.47.3