]> git.unchartedbackwaters.co.uk Git - francis/stp.git/commitdiff
Remove the comment that 32-bit is best for arrays. No longer the case because we...
authortrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Wed, 11 May 2011 01:53:42 +0000 (01:53 +0000)
committertrevor_hansen <trevor_hansen@e59a4935-1847-0410-ae03-e826735625c1>
Wed, 11 May 2011 01:53:42 +0000 (01:53 +0000)
git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1320 e59a4935-1847-0410-ae03-e826735625c1

scripts/Makefile.common
scripts/run_tests.pl

index f5b0930d35f58e7e1000353e146d2ff0f71dbdc4..5973ce23b339e751c42523e0f09a50adf99fd890 100644 (file)
@@ -1,7 +1,7 @@
 # This is a -*- makefile -*-, Emacs
 #
 #/********************************************************************
-# * AUTHORS: Vijay Ganesh
+# * AUTHORS: Vijay Ganesh, Trevor Hansen
 # *
 # * BEGIN DATE: November, 2005
 # *
 #OPTIMIZE      = -O3 -march=native -DNDEBUG -DLESSBYTES_PERNODE
 OPTIMIZE      = -O3  -g            # Maximum optimization
 
-
-#When solving array problems STP creates lots of objects during the conversion to CNF. If STP is compiled 
-#as a 32-bit executable, then these objects are about half the size than they are if STP is compiled as a 64-bit
-#program. That's because lots of the data in the objects are pointers to other objects.  So, if you meet the 
-#following criteria you may want to enable -m32 on your 64-bit machine:
-#1) You are solving array problems. Problems without arrays use another CNF conversion scheme.
-#2) You need STP to use about half the memory.
 #CFLAGS_M32   = -m32
 
 CFLAGS_BASE   = $(OPTIMIZE)
 
-
 ifeq ($(WITHCBITP),yes)
        CFLAGS_BASE += -DWITHCBITP
 endif
index 91981eee138115e88b208c815b0ec6c5652555fa..25368d87a0d551458fc0a8c3767f54503ed9f78a 100755 (executable)
@@ -74,7 +74,7 @@ my %optionsDefault = ("level" => 4,
                      "proofs" => 0,
                      "lang" => "all",
                      "stppath" => "stp/bin",
-                     "vc" => $pwd . "/bin/stp -t -d", # Program names
+                     "vc" => $pwd . "/bin/stp -r -t -d", # Program names
                      #"vc" => "valgrind --leak-check=full /home/vganesh/stp/bin/stp", # Program names
                      "pfc" => "true",
                      "stptestpath" => "stp/test",
@@ -85,7 +85,7 @@ my %optionsDefault = ("level" => 4,
                      # Runtime limit; 0 = no limit
                      "time" => 180,
                      # Additional command line options to stp
-                     "stpOptions" => "-d");
+                     "stpOptions" => "-r -d");
 
 # Database of command line options.  Initially, they are undefined