Trace number 1092728

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
SAT4J CSP 2008-06-13? 118.917 119.406

General information on the benchmark

Namecsp/langford4/
normalized-langford-4-40.xml
MD5SUM40a3acaa544741df45dd665a69096ec7
Bench Category2-ARY-INT (binary constraints in intension)
Best result obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables160
Number of constraints12840
Maximum constraint arity2
Maximum domain size160
Number of constraints which are defined in extension0
Number of constraints which are defined in intension12840
Global constraints used (with number of constraints)

Solver Data (download as text)

0.18/0.29	c SAT4J: a SATisfiability library for Java (c) 2004-2008 Daniel Le Berre
0.18/0.29	c This is free software under the dual EPL/GNU LGPL licenses.
0.18/0.29	c See www.sat4j.org for details.
0.18/0.29	c That software uses the Rhino library from the Mozilla project.
0.28/0.33	c version 9.9.9.token
0.28/0.33	c sun.arch.data.model	32
0.28/0.33	c java.version	1.6.0_06
0.28/0.33	c os.name	Linux
0.28/0.33	c os.version	2.6.9-22.EL.rootsmp
0.28/0.33	c os.arch	i386
0.28/0.33	c Free memory 669864272
0.28/0.33	c Max memory 672137216
0.28/0.33	c Total memory 672137216
0.28/0.33	c Number of processors 2
0.28/0.37	c c --- Begin Solver configuration ---
0.28/0.37	c Stops conflict analysis at the first Unique Implication Point
0.28/0.37	c org.sat4j.minisat.constraints.MixedDataStructureDaniel@1d2068d
0.28/0.37	c Learn all clauses as in MiniSAT
0.28/0.37	c claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
0.28/0.37	c VSIDS like heuristics from MiniSAT using a heap phase appearing in latest learned clause
0.28/0.37	c Expensive reason simplification
0.28/0.37	c MiniSAT restarts strategy
0.28/0.37	c timeout=2147483s
0.28/0.37	c DB Simplification allowed=false
0.28/0.37	c --- End Solver configuration ---
0.28/0.37	c solving HOME/instance-1092728-1215276986.xml
0.28/0.37	c reading problem ... 
0.57/0.63	c reading problem named null
0.57/0.63	c reading domains done.
0.57/0.63	c reading variables done.
0.88/0.95	c reading predicates  done.
1.07/1.13	c reading constraints
117.24/117.73	Exception in thread "main" java.lang.OutOfMemoryError: GC overhead limit exceeded
117.24/117.73		at org.sat4j.minisat.constraints.cnf.WLClause.(WLClause.java:62)
117.24/117.73		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.(OriginalWLClause.java:37)
117.24/117.73		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.brandNewClause(OriginalWLClause.java:78)
117.24/117.73		at org.sat4j.minisat.constraints.MixedDataStructureDaniel.createClause(MixedDataStructureDaniel.java:69)
117.24/117.73		at org.sat4j.minisat.core.Solver.addClause(Solver.java:303)
117.24/117.73		at org.sat4j.csp.encodings.BinarySupportEncoding.generateClauses(BinarySupportEncoding.java:98)
117.24/117.73		at org.sat4j.csp.encodings.BinarySupportEncoding.onFinish(BinarySupportEncoding.java:52)
117.24/117.73		at org.sat4j.csp.Predicate.toClause(Predicate.java:110)
117.24/117.73		at org.sat4j.reader.CSPReader.endConstraint(CSPReader.java:479)
117.24/117.73		at org.sat4j.csp.xml.Constraint.endElement(Constraint.java:50)
117.24/117.73		at org.sat4j.csp.xml.InstanceParser.endElement(InstanceParser.java:49)
117.24/117.73		at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.endElement(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
117.24/117.73		at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
117.24/117.73		at org.sat4j.csp.xml.CspXmlParser.parse(CspXmlParser.java:62)
117.24/117.73		at org.sat4j.reader.XMLCSPReader.parseInstance(XMLCSPReader.java:62)
117.24/117.73		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:174)
117.24/117.73		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:194)
117.24/117.73		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:74)
118.73/119.27	c starts		: 0
118.73/119.27	c conflicts		: 0
118.73/119.27	c decisions		: 0
118.73/119.27	c propagations		: 0
118.73/119.27	c inspects		: 0
118.73/119.27	c learnt literals	: 0
118.73/119.27	c learnt binary clauses	: 0
118.73/119.27	c learnt ternary clauses	: 0
118.73/119.27	c learnt clauses	: 0
118.73/119.27	c ignored clauses	: 0
118.73/119.27	c root simplifications	: 0
118.73/119.27	c removed literals (reason simplification)	: 0
118.73/119.27	c reason swapping (by a shorter reason)	: 0
118.73/119.27	c Calls to reduceDB	: 0
118.73/119.27	c speed (assignments/second)	: 0.0
118.73/119.27	c non guided choices	0
118.73/119.27	s UNKNOWN
118.73/119.27	c Total wall clock time (in seconds) : 117.357

Verifier Data (download as text)

ERROR: Unexpected answer ! ('s SATISFIABLE'/'s UNSATISFIABLE' expected)
Got answer: UNKNOWN

Watcher Data (download as text)

runsolver version 3.2.5 (c) roussel@cril.univ-artois.fr

command line: /home/evaluation/evaluation/pub/bin/runsolver --timestamp -w /tmp/evaluation-result-1092728-1215276986/watcher-1092728-1215276986 -o /tmp/evaluation-result-1092728-1215276986/solver-1092728-1215276986 -C 1800 -W 2200 -M 900 --output-limit 1,15 java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1092728-1215276986.xml 

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 1800 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 1830 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2200 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 921600 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 972800 KiB
Solver output will be limited to a maximum of 15728640 bytes. The first 1048576 bytes and the last 14680064 bytes will be preserved
Current StackSize limit: 10240 KiB


[startup+0 s]
/proc/loadavg: 2.00 2.00 2.00 3/82 32167
/proc/meminfo: memFree=1407896/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=18572 CPUtime=0
/proc/32167/stat : 32167 (runsolver) R 32165 32167 31941 0 -1 4194368 16 0 0 0 0 0 0 0 20 0 1 0 640916367 19017728 292 996147200 4194304 4296836 548682068416 18446744073709551615 228043844903 0 2147483391 4096 24578 0 0 0 17 1 0 0
/proc/32167/statm: 4643 292 257 25 0 2626 0

[startup+0.0292991 s]
/proc/loadavg: 2.00 2.00 2.00 3/82 32167
/proc/meminfo: memFree=1407896/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=798812 CPUtime=0.01
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 1818 0 1 0 0 1 0 0 18 0 4 0 640916367 817983488 1556 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16784584 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 199703 1556 491 9 0 197481 0
Current children cumulated CPU time (s) 0.01
Current children cumulated vsize (KiB) 798812

[startup+0.108007 s]
/proc/loadavg: 2.00 2.00 2.00 3/82 32167
/proc/meminfo: memFree=1407896/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=804756 CPUtime=0.09
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 3167 0 1 0 7 2 0 0 18 0 12 0 640916367 824070144 2898 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 201189 2898 1165 9 0 198558 0
Current children cumulated CPU time (s) 0.09
Current children cumulated vsize (KiB) 804756

[startup+0.301045 s]
/proc/loadavg: 2.00 2.00 2.00 3/82 32167
/proc/meminfo: memFree=1407896/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=808276 CPUtime=0.28
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 5063 0 1 0 25 3 0 0 18 0 12 0 640916367 827674624 4390 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 202069 4390 1308 9 0 199438 0
Current children cumulated CPU time (s) 0.28
Current children cumulated vsize (KiB) 808276

[startup+0.701124 s]
/proc/loadavg: 2.00 2.00 2.00 3/82 32167
/proc/meminfo: memFree=1407896/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=808304 CPUtime=0.68
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 6572 0 1 0 63 5 0 0 18 0 12 0 640916367 827703296 5700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 202076 5700 1335 9 0 199438 0
Current children cumulated CPU time (s) 0.68
Current children cumulated vsize (KiB) 808304

[startup+1.50228 s]
/proc/loadavg: 2.24 2.05 2.02 3/94 32179
/proc/meminfo: memFree=1384376/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=811676 CPUtime=1.46
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 11105 0 1 0 139 7 0 0 18 0 12 0 640916367 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 202919 8582 1352 9 0 200281 0
[pid=32167/tid=32169] ppid=32165 vsize=811676 CPUtime=0.73
/proc/32167/task/32169/stat : 32169 (java) R 32165 32167 31941 0 -1 64 6005 0 1 0 69 4 0 0 19 0 12 0 640916369 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 3 0 0 0 0 0 0 0 18 0 12 0 640916370 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 19 0 12 0 640916370 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32172/stat : 32172 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 17 0 12 0 640916371 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 9 0 0 0 0 0 0 0 21 0 12 0 640916372 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 4 0 0 0 0 0 0 0 21 0 12 0 640916372 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=811676 CPUtime=0.18
/proc/32167/task/32176/stat : 32176 (java) R 32165 32167 31941 0 -1 64 408 0 0 0 18 0 0 0 16 0 12 0 640916376 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 105479955 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=811676 CPUtime=0.53
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 3926 0 0 0 52 1 0 0 16 0 12 0 640916376 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=811676 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 831156224 8582 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1.46
Current children cumulated vsize (KiB) 811676

[startup+3.1026 s]
/proc/loadavg: 2.24 2.05 2.02 3/94 32179
/proc/meminfo: memFree=1351160/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=820000 CPUtime=3.08
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 28617 0 1 0 293 15 0 0 18 0 12 0 640916367 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 205000 24374 1377 9 0 202362 0
[pid=32167/tid=32169] ppid=32165 vsize=820000 CPUtime=1.85
/proc/32167/task/32169/stat : 32169 (java) R 32165 32167 31941 0 -1 64 17265 0 1 0 175 10 0 0 25 0 12 0 640916369 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=820000 CPUtime=0.03
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 1710 0 0 0 3 0 0 0 17 0 12 0 640916370 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=820000 CPUtime=0.02
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 1014 0 0 0 2 0 0 0 17 0 12 0 640916370 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=820000 CPUtime=0
/proc/32167/task/32172/stat : 32172 (java) S 32165 32167 31941 0 -1 64 30 0 0 0 0 0 0 0 16 0 12 0 640916371 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=820000 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 17 0 12 0 640916372 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=820000 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=820000 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=820000 CPUtime=0.28
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 431 0 0 0 28 0 0 0 16 0 12 0 640916376 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=820000 CPUtime=0.85
/proc/32167/task/32177/stat : 32177 (java) R 32165 32167 31941 0 -1 64 7404 0 0 0 82 3 0 0 17 0 12 0 640916376 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 105562336 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=820000 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=820000 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 839680000 24374 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 3.08
Current children cumulated vsize (KiB) 820000

[startup+6.30223 s]
/proc/loadavg: 2.22 2.05 2.02 6/94 32179
/proc/meminfo: memFree=1290168/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=822652 CPUtime=6.27
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 41046 0 1 0 606 21 0 0 18 0 12 0 640916367 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 205663 32700 1384 9 0 203025 0
[pid=32167/tid=32169] ppid=32165 vsize=822652 CPUtime=4.01
/proc/32167/task/32169/stat : 32169 (java) R 32165 32167 31941 0 -1 64 17271 0 1 0 391 10 0 0 25 0 12 0 640916369 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4109735976 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32170] ppid=32165 vsize=822652 CPUtime=0.12
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 5429 0 0 0 10 2 0 0 16 0 12 0 640916370 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32171] ppid=32165 vsize=822652 CPUtime=0.09
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 4670 0 0 0 8 1 0 0 16 0 12 0 640916370 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32172] ppid=32165 vsize=822652 CPUtime=0
/proc/32167/task/32172/stat : 32172 (java) S 32165 32167 31941 0 -1 64 30 0 0 0 0 0 0 0 16 0 12 0 640916371 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32173] ppid=32165 vsize=822652 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 17 0 12 0 640916372 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=822652 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=822652 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=822652 CPUtime=0.53
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1575 0 0 0 53 0 0 0 16 0 12 0 640916376 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=822652 CPUtime=1.47
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11308 0 0 0 142 5 0 0 17 0 12 0 640916376 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32178] ppid=32165 vsize=822652 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=822652 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 842395648 32700 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 6.27
Current children cumulated vsize (KiB) 822652

[startup+12.7025 s]
/proc/loadavg: 2.20 2.05 2.02 3/94 32179
/proc/meminfo: memFree=1228344/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819136 CPUtime=12.66
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 57108 0 1 0 1238 28 0 0 18 0 12 0 640916367 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204784 47816 1386 9 0 202146 0
[pid=32167/tid=32169] ppid=32165 vsize=819136 CPUtime=9.87
/proc/32167/task/32169/stat : 32169 (java) R 32165 32167 31941 0 -1 64 17288 0 1 0 977 10 0 0 25 0 12 0 640916369 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4109638851 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819136 CPUtime=0.35
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 14530 0 0 0 29 6 0 0 16 0 12 0 640916370 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819136 CPUtime=0.31
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 11608 0 0 0 27 4 0 0 16 0 12 0 640916370 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32172/stat : 32172 (java) S 32165 32167 31941 0 -1 64 30 0 0 0 0 0 0 0 16 0 12 0 640916371 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 17 0 12 0 640916372 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=819136 CPUtime=0.58
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1581 0 0 0 58 0 0 0 16 0 12 0 640916376 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32177] ppid=32165 vsize=819136 CPUtime=1.49
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11308 0 0 0 144 5 0 0 17 0 12 0 640916376 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32178] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 838795264 47816 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 12.66
Current children cumulated vsize (KiB) 819136

[startup+25.502 s]
/proc/loadavg: 2.16 2.04 2.01 5/94 32179
/proc/meminfo: memFree=1109432/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819136 CPUtime=25.45
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 84989 0 1 0 2506 39 0 0 18 0 12 0 640916367 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204784 75675 1386 9 0 202146 0
[pid=32167/tid=32169] ppid=32165 vsize=819136 CPUtime=21.77
/proc/32167/task/32169/stat : 32169 (java) R 32165 32167 31941 0 -1 64 17317 0 1 0 2167 10 0 0 25 0 12 0 640916369 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4109741930 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819136 CPUtime=0.69
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 29520 0 0 0 57 12 0 0 16 0 12 0 640916370 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819136 CPUtime=0.63
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 24467 0 0 0 55 8 0 0 16 0 12 0 640916370 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819136 CPUtime=0.01
/proc/32167/task/32172/stat : 32172 (java) S 32165 32167 31941 0 -1 64 30 0 0 0 1 0 0 0 15 0 12 0 640916371 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 17 0 12 0 640916372 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 838795264 75675 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0

################
# More data... #
################

[pid=32167/tid=32179] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 108.29
Current children cumulated vsize (KiB) 819136

[startup+115.103 s]
/proc/loadavg: 2.52 2.16 2.05 3/94 32179
/proc/meminfo: memFree=713144/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819136 CPUtime=114.65
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 187978 0 1 0 11387 78 0 0 18 0 12 0 640916367 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204784 174434 1392 9 0 202146 0
[pid=32167/tid=32169] ppid=32165 vsize=819136 CPUtime=71.65
/proc/32167/task/32169/stat : 32169 (java) S 32165 32167 31941 0 -1 64 17416 0 1 0 7154 11 0 0 17 0 12 0 640916369 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819136 CPUtime=2.14
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 84145 0 0 0 181 33 0 0 15 0 12 0 640916370 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819136 CPUtime=1.96
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 68972 0 0 0 173 23 0 0 16 0 12 0 640916370 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819136 CPUtime=35.81
/proc/32167/task/32172/stat : 32172 (java) R 32165 32167 31941 0 -1 64 3736 0 0 0 3579 2 0 0 21 0 12 0 640916371 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 106122234 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 640916372 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=819136 CPUtime=1.16
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1621 0 0 0 116 0 0 0 17 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=819136 CPUtime=1.86
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11325 0 0 0 181 5 0 0 17 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 114.65
Current children cumulated vsize (KiB) 819136

[startup+116.701 s]
/proc/loadavg: 2.48 2.15 2.05 3/94 32179
/proc/meminfo: memFree=713144/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819136 CPUtime=116.24
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 187980 0 1 0 11546 78 0 0 18 0 12 0 640916367 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204784 174434 1392 9 0 202146 0
[pid=32167/tid=32169] ppid=32165 vsize=819136 CPUtime=71.67
/proc/32167/task/32169/stat : 32169 (java) R 32165 32167 31941 0 -1 64 17418 0 1 0 7156 11 0 0 17 0 12 0 640916369 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4109925080 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819136 CPUtime=2.14
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 84145 0 0 0 181 33 0 0 15 0 12 0 640916370 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819136 CPUtime=1.96
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 68972 0 0 0 173 23 0 0 16 0 12 0 640916370 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819136 CPUtime=37.39
/proc/32167/task/32172/stat : 32172 (java) R 32165 32167 31941 0 -1 64 3736 0 0 0 3737 2 0 0 25 0 12 0 640916371 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 640916372 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=819136 CPUtime=1.16
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1621 0 0 0 116 0 0 0 17 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=819136 CPUtime=1.86
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11325 0 0 0 181 5 0 0 17 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=819136 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 838795264 174434 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 116.24
Current children cumulated vsize (KiB) 819136

[startup+118.302 s]
/proc/loadavg: 2.48 2.15 2.05 3/94 32179
/proc/meminfo: memFree=713144/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819460 CPUtime=117.84
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 187990 0 1 0 11706 78 0 0 18 0 13 0 640916367 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204865 174442 1392 9 0 202227 0
[pid=32167/tid=32169] ppid=32165 vsize=819460 CPUtime=71.68
/proc/32167/task/32169/stat : 32169 (java) S 32165 32167 31941 0 -1 64 17424 0 1 0 7157 11 0 0 18 0 13 0 640916369 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819460 CPUtime=2.14
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 84145 0 0 0 181 33 0 0 15 0 13 0 640916370 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819460 CPUtime=1.96
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 68972 0 0 0 173 23 0 0 16 0 13 0 640916370 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819460 CPUtime=38.96
/proc/32167/task/32172/stat : 32172 (java) R 32165 32167 31941 0 -1 64 3736 0 0 0 3894 2 0 0 25 0 13 0 640916371 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 106122234 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 16 0 13 0 640916372 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 13 0 640916372 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=819460 CPUtime=1.16
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1621 0 0 0 116 0 0 0 17 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=819460 CPUtime=1.86
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11325 0 0 0 181 5 0 0 17 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 117.84
Current children cumulated vsize (KiB) 819460

[startup+119.103 s]
/proc/loadavg: 2.48 2.15 2.05 3/95 32180
/proc/meminfo: memFree=713136/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819460 CPUtime=118.63
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 187990 0 1 0 11785 78 0 0 18 0 13 0 640916367 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204865 174442 1392 9 0 202227 0
[pid=32167/tid=32169] ppid=32165 vsize=819460 CPUtime=71.68
/proc/32167/task/32169/stat : 32169 (java) S 32165 32167 31941 0 -1 64 17424 0 1 0 7157 11 0 0 18 0 13 0 640916369 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819460 CPUtime=2.14
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 84145 0 0 0 181 33 0 0 15 0 13 0 640916370 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819460 CPUtime=1.96
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 68972 0 0 0 173 23 0 0 16 0 13 0 640916370 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819460 CPUtime=39.76
/proc/32167/task/32172/stat : 32172 (java) R 32165 32167 31941 0 -1 64 3736 0 0 0 3974 2 0 0 25 0 13 0 640916371 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 106123734 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 16 0 13 0 640916372 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 13 0 640916372 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=819460 CPUtime=1.16
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1621 0 0 0 116 0 0 0 17 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=819460 CPUtime=1.86
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11325 0 0 0 181 5 0 0 17 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 640916376 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32180] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32180/stat : 32180 (java) S 32165 32167 31941 0 -1 64 4 0 0 0 0 0 0 0 18 0 13 0 640928141 839127040 174442 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 118.63
Current children cumulated vsize (KiB) 819460

[startup+119.303 s]
/proc/loadavg: 2.48 2.15 2.05 3/95 32180
/proc/meminfo: memFree=713136/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=819460 CPUtime=118.8
/proc/32167/stat : 32167 (java) S 32165 32167 31941 0 -1 0 187992 0 1 0 11802 78 0 0 18 0 12 0 640916367 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 204865 174443 1393 9 0 202227 0
[pid=32167/tid=32169] ppid=32165 vsize=819460 CPUtime=71.68
/proc/32167/task/32169/stat : 32169 (java) S 32165 32167 31941 0 -1 64 17424 0 1 0 7157 11 0 0 16 0 12 0 640916369 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32170] ppid=32165 vsize=819460 CPUtime=2.14
/proc/32167/task/32170/stat : 32170 (java) S 32165 32167 31941 0 -1 64 84145 0 0 0 181 33 0 0 15 0 12 0 640916370 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32171] ppid=32165 vsize=819460 CPUtime=1.96
/proc/32167/task/32171/stat : 32171 (java) S 32165 32167 31941 0 -1 64 68972 0 0 0 173 23 0 0 16 0 12 0 640916370 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32172] ppid=32165 vsize=819460 CPUtime=39.93
/proc/32167/task/32172/stat : 32172 (java) S 32165 32167 31941 0 -1 64 3736 0 0 0 3991 2 0 0 25 0 12 0 640916371 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32173] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32173/stat : 32173 (java) S 32165 32167 31941 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 640916372 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32174] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32174/stat : 32174 (java) S 32165 32167 31941 0 -1 64 5 0 0 0 0 0 0 0 16 0 12 0 640916372 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32175] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32175/stat : 32175 (java) S 32165 32167 31941 0 -1 64 2 0 0 0 0 0 0 0 18 0 12 0 640916376 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32176] ppid=32165 vsize=819460 CPUtime=1.16
/proc/32167/task/32176/stat : 32176 (java) S 32165 32167 31941 0 -1 64 1621 0 0 0 116 0 0 0 17 0 12 0 640916376 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32177] ppid=32165 vsize=819460 CPUtime=1.86
/proc/32167/task/32177/stat : 32177 (java) S 32165 32167 31941 0 -1 64 11325 0 0 0 181 5 0 0 17 0 12 0 640916376 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32178] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32178/stat : 32178 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 640916376 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=32167/tid=32179] ppid=32165 vsize=819460 CPUtime=0
/proc/32167/task/32179/stat : 32179 (java) S 32165 32167 31941 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 640916376 839127040 174443 996147200 134512640 134550740 4294956016 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 118.8
Current children cumulated vsize (KiB) 819460

[startup+119.403 s]
/proc/loadavg: 2.48 2.15 2.05 3/95 32180
/proc/meminfo: memFree=713136/2055920 swapFree=4166000/4192956
[pid=32167] ppid=32165 vsize=0 CPUtime=118.9
/proc/32167/stat : 32167 (java) Z 32165 32167 31941 0 -1 12 187995 0 1 0 11802 88 0 0 16 0 2 0 640916367 0 0 996147200 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/32167/statm: 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 118.9
Current children cumulated vsize (KiB) 0

Child status: 1
Real time (s): 119.406
CPU time (s): 118.917
CPU user time (s): 118.025
CPU system time (s): 0.891864
CPU usage (%): 99.5905
Max. virtual memory (cumulated for all children) (KiB): 826792

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 118.025
system time used= 0.891864
maximum resident set size= 0
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 187995
page faults= 1
swaps= 0
block input operations= 0
block output operations= 0
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 4633
involuntary context switches= 5746

runsolver used 0.145977 second user time and 0.413937 second system time

The end

Launcher Data (download as text)

Begin job on node77 at 2008-07-05 18:56:26
IDJOB=1092728
IDBENCH=58651
IDSOLVER=344
FILE ID=node77/1092728-1215276986
PBS_JOBID= 7882273
Free space on /tmp= 66540 MiB

SOLVER NAME= SAT4J CSP 2008-06-13
BENCH NAME= CPAI08/csp/langford4/normalized-langford-4-40.xml
COMMAND LINE= java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar BENCHNAME
RUNSOLVER COMMAND LINE= /home/evaluation/evaluation/pub/bin/runsolver --timestamp -w /tmp/evaluation-result-1092728-1215276986/watcher-1092728-1215276986 -o /tmp/evaluation-result-1092728-1215276986/solver-1092728-1215276986 -C 1800 -W 2200 -M 900 --output-limit 1,15  java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1092728-1215276986.xml

TIME LIMIT= 1800 seconds
MEMORY LIMIT= 900 MiB

MD5SUM BENCH= 40a3acaa544741df45dd665a69096ec7
RANDOM SEED=865724817

node77.alineos.net Linux 2.6.9-22.EL.rootsmp #1 SMP Mon Oct 3 08:59:52 CEST 2005

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 15
model		: 4
model name	:                   Intel(R) Xeon(TM) CPU 3.00GHz
stepping	: 3
cpu MHz		: 3000.274
cache size	: 2048 KB
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl cid cx16 xtpr
bogomips	: 5914.62
clflush size	: 64
cache_alignment	: 128
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 15
model		: 4
model name	:                   Intel(R) Xeon(TM) CPU 3.00GHz
stepping	: 3
cpu MHz		: 3000.274
cache size	: 2048 KB
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl cid cx16 xtpr
bogomips	: 5996.54
clflush size	: 64
cache_alignment	: 128
address sizes	: 36 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:      2055920 kB
MemFree:       1408376 kB
Buffers:         63684 kB
Cached:         234288 kB
SwapCached:      20880 kB
Active:         419332 kB
Inactive:       166612 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      2055920 kB
LowFree:       1408376 kB
SwapTotal:     4192956 kB
SwapFree:      4166000 kB
Dirty:            2572 kB
Writeback:           0 kB
Mapped:         304108 kB
Slab:            46204 kB
Committed_AS:  1555916 kB
PageTables:       2420 kB
VmallocTotal: 536870911 kB
VmallocUsed:    264952 kB
VmallocChunk: 536605679 kB
HugePages_Total:     0
HugePages_Free:      0
Hugepagesize:     2048 kB

Free space on /tmp at the end= 66540 MiB
End job on node77 at 2008-07-05 18:58:25