Trace number 1056110

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? 243.976 245.484

General information on the benchmark

Namecsp/largeQueens/
normalized-queens-800.xml
MD5SUMa5cb3ae7953c75d065027fcec4cf35e2
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 variables800
Number of constraints319600
Maximum constraint arity2
Maximum domain size800
Number of constraints which are defined in extension0
Number of constraints which are defined in intension319600
Global constraints used (with number of constraints)

Solver Data (download as text)

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

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-1056110-1215061500/watcher-1056110-1215061500 -o /tmp/evaluation-result-1056110-1215061500/solver-1056110-1215061500 -C 1800 -W 2200 -M 900 --output-limit 1,15 java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1056110-1215061500.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: 1.93 1.99 1.99 3/72 15061
/proc/meminfo: memFree=1705360/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=1804 CPUtime=0
/proc/15061/stat : 15061 (java6) D 15059 15061 10362 0 -1 0 183 0 0 0 0 0 0 0 18 0 1 0 1985123534 1847296 155 996147200 134512640 134550740 4294956192 18446744073709551615 4294960144 0 2147483391 4096 0 18446744072099781622 0 0 17 0 0 0
/proc/15061/statm: 451 155 111 9 0 93 0

[startup+0.0428641 s]
/proc/loadavg: 1.93 1.99 1.99 3/72 15061
/proc/meminfo: memFree=1705360/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=801432 CPUtime=0.03
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 2466 0 1 0 1 2 0 0 18 0 5 0 1985123534 820666368 2204 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16784584 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 200358 2204 936 9 0 197741 0
Current children cumulated CPU time (s) 0.03
Current children cumulated vsize (KiB) 801432

[startup+0.102158 s]
/proc/loadavg: 1.93 1.99 1.99 3/72 15061
/proc/meminfo: memFree=1705360/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=804612 CPUtime=0.08
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 2998 0 1 0 6 2 0 0 18 0 12 0 1985123534 823922688 2731 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 201153 2731 1048 9 0 198522 0
Current children cumulated CPU time (s) 0.08
Current children cumulated vsize (KiB) 804612

[startup+0.301182 s]
/proc/loadavg: 1.93 1.99 1.99 3/72 15061
/proc/meminfo: memFree=1705360/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=807760 CPUtime=0.28
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 4811 0 1 0 24 4 0 0 18 0 12 0 1985123534 827146240 4140 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 201940 4140 1298 9 0 199309 0
Current children cumulated CPU time (s) 0.28
Current children cumulated vsize (KiB) 807760

[startup+0.701227 s]
/proc/loadavg: 1.93 1.99 1.99 3/72 15061
/proc/meminfo: memFree=1705360/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=807788 CPUtime=0.66
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 6228 0 1 0 60 6 0 0 18 0 12 0 1985123534 827174912 5358 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 201947 5358 1335 9 0 199309 0
Current children cumulated CPU time (s) 0.66
Current children cumulated vsize (KiB) 807788

[startup+1.50231 s]
/proc/loadavg: 1.93 1.99 1.99 3/84 15073
/proc/meminfo: memFree=1672624/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=811636 CPUtime=1.46
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 29474 0 1 0 127 19 0 0 18 0 12 0 1985123534 831115264 27714 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 202909 27717 1347 9 0 200271 0
[pid=15061/tid=15063] ppid=15059 vsize=811636 CPUtime=0.75
/proc/15061/task/15063/stat : 15063 (java) R 15059 15061 10362 0 -1 64 16951 0 1 0 63 12 0 0 21 0 12 0 1985123535 831115264 27718 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=811636 CPUtime=0.09
/proc/15061/task/15064/stat : 15064 (java) R 15059 15061 10362 0 -1 64 5452 0 0 0 7 2 0 0 17 0 12 0 1985123536 831115264 27720 996147200 134512640 134550740 4294956032 18446744073709551615 106158040 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=811636 CPUtime=0.1
/proc/15061/task/15065/stat : 15065 (java) R 15059 15061 10362 0 -1 64 4590 0 0 0 8 2 0 0 17 0 12 0 1985123536 831115264 27721 996147200 134512640 134550740 4294956032 18446744073709551615 106160148 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15066] ppid=15059 vsize=811636 CPUtime=0
/proc/15061/task/15066/stat : 15066 (java) S 15059 15061 10362 0 -1 64 2 0 0 0 0 0 0 0 16 0 12 0 1985123538 831115264 27723 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=811636 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 9 0 0 0 0 0 0 0 21 0 12 0 1985123538 831115264 27725 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15068] ppid=15059 vsize=811636 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 4 0 0 0 0 0 0 0 22 0 12 0 1985123538 831115264 27727 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=811636 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 831115264 27728 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=811636 CPUtime=0.2
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 424 0 0 0 20 0 0 0 16 0 12 0 1985123543 831115264 27730 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15071] ppid=15059 vsize=811636 CPUtime=0.28
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1302 0 0 0 28 0 0 0 16 0 12 0 1985123543 831115264 27732 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15072] ppid=15059 vsize=811636 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1985123543 831115264 27733 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=811636 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1985123543 831115264 27735 996147200 134512640 134550740 4294956032 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) 811636

[startup+3.10249 s]
/proc/loadavg: 2.01 2.00 2.00 4/84 15073
/proc/meminfo: memFree=1544624/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=821644 CPUtime=3.22
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 52260 0 1 0 293 29 0 0 18 0 12 0 1985123534 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 205411 47588 1378 9 0 202773 0
[pid=15061/tid=15063] ppid=15059 vsize=821644 CPUtime=1.27
/proc/15061/task/15063/stat : 15063 (java) R 15059 15061 10362 0 -1 64 17261 0 1 0 114 13 0 0 19 0 12 0 1985123535 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4109148869 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15064] ppid=15059 vsize=821644 CPUtime=0.66
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 21080 0 0 0 57 9 0 0 19 0 12 0 1985123536 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15065] ppid=15059 vsize=821644 CPUtime=0.28
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 7614 0 0 0 25 3 0 0 16 0 12 0 1985123536 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15066] ppid=15059 vsize=821644 CPUtime=0
/proc/15061/task/15066/stat : 15066 (java) S 15059 15061 10362 0 -1 64 29 0 0 0 0 0 0 0 16 0 12 0 1985123538 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15067] ppid=15059 vsize=821644 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1985123538 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15068] ppid=15059 vsize=821644 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 4 0 0 0 0 0 0 0 22 0 12 0 1985123538 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=821644 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=821644 CPUtime=0.59
/proc/15061/task/15070/stat : 15070 (java) R 15059 15061 10362 0 -1 64 4186 0 0 0 58 1 0 0 18 0 12 0 1985123543 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 104112650 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15071] ppid=15059 vsize=821644 CPUtime=0.37
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1329 0 0 0 37 0 0 0 16 0 12 0 1985123543 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15072] ppid=15059 vsize=821644 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1985123543 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=821644 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1985123543 841363456 47588 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 3.22
Current children cumulated vsize (KiB) 821644

[startup+6.30184 s]
/proc/loadavg: 2.01 2.00 2.00 3/84 15073
/proc/meminfo: memFree=1491248/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=820248 CPUtime=6.57
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 65217 0 1 0 622 35 0 0 18 0 12 0 1985123534 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 205062 57513 1387 9 0 202424 0
[pid=15061/tid=15063] ppid=15059 vsize=820248 CPUtime=3.73
/proc/15061/task/15063/stat : 15063 (java) R 15059 15061 10362 0 -1 64 17270 0 1 0 360 13 0 0 19 0 12 0 1985123535 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4109633600 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15064] ppid=15059 vsize=820248 CPUtime=1.02
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 27904 0 0 0 90 12 0 0 17 0 12 0 1985123536 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15065] ppid=15059 vsize=820248 CPUtime=0.64
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 13444 0 0 0 59 5 0 0 16 0 12 0 1985123536 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15066] ppid=15059 vsize=820248 CPUtime=0
/proc/15061/task/15066/stat : 15066 (java) S 15059 15061 10362 0 -1 64 29 0 0 0 0 0 0 0 16 0 12 0 1985123538 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15067] ppid=15059 vsize=820248 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1985123538 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15068] ppid=15059 vsize=820248 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1985123538 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15069] ppid=15059 vsize=820248 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=820248 CPUtime=0.65
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4256 0 0 0 64 1 0 0 17 0 12 0 1985123543 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15071] ppid=15059 vsize=820248 CPUtime=0.47
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1551 0 0 0 46 1 0 0 17 0 12 0 1985123543 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15072] ppid=15059 vsize=820248 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1985123543 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=820248 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1985123543 839933952 57513 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 6.57
Current children cumulated vsize (KiB) 820248

[startup+12.7025 s]
/proc/loadavg: 2.01 2.00 2.00 3/84 15073
/proc/meminfo: memFree=1428080/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=817988 CPUtime=12.97
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 80817 0 1 0 1255 42 0 0 18 0 12 0 1985123534 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 204497 71640 1387 9 0 201859 0
[pid=15061/tid=15063] ppid=15059 vsize=817988 CPUtime=9.59
/proc/15061/task/15063/stat : 15063 (java) R 15059 15061 10362 0 -1 64 17291 0 1 0 946 13 0 0 25 0 12 0 1985123535 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4109578389 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=817988 CPUtime=1.29
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 35529 0 0 0 114 15 0 0 16 0 12 0 1985123536 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=817988 CPUtime=0.9
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 21398 0 0 0 82 8 0 0 16 0 12 0 1985123536 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15066/stat : 15066 (java) S 15059 15061 10362 0 -1 64 29 0 0 0 0 0 0 0 16 0 12 0 1985123538 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1985123538 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15068] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1985123538 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15069] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=817988 CPUtime=0.65
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4256 0 0 0 64 1 0 0 17 0 12 0 1985123543 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15071] ppid=15059 vsize=817988 CPUtime=0.47
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1551 0 0 0 46 1 0 0 17 0 12 0 1985123543 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15072] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1985123543 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1985123543 837619712 71640 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 12.97
Current children cumulated vsize (KiB) 817988

[startup+25.5029 s]
/proc/loadavg: 2.01 2.00 2.00 3/84 15073
/proc/meminfo: memFree=1319280/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=817988 CPUtime=25.64
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 106952 0 1 0 2511 53 0 0 18 0 12 0 1985123534 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 204497 97746 1387 9 0 201859 0
[pid=15061/tid=15063] ppid=15059 vsize=817988 CPUtime=21.35
/proc/15061/task/15063/stat : 15063 (java) R 15059 15061 10362 0 -1 64 17321 0 1 0 2122 13 0 0 25 0 12 0 1985123535 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4109633545 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=817988 CPUtime=1.73
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 50065 0 0 0 152 21 0 0 16 0 12 0 1985123536 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=817988 CPUtime=1.31
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 32959 0 0 0 118 13 0 0 16 0 12 0 1985123536 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15066/stat : 15066 (java) S 15059 15061 10362 0 -1 64 29 0 0 0 0 0 0 0 15 0 12 0 1985123538 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1985123538 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15068] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1985123538 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15069] ppid=15059 vsize=817988 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 837619712 97746 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0

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


[startup+239.902 s]
/proc/loadavg: 2.55 2.17 2.05 4/93 15122
/proc/meminfo: memFree=830504/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=825992 CPUtime=238.42
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 429479 0 1 0 23642 200 0 0 18 0 12 0 1985123534 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 206498 176009 1391 9 0 203860 0
[pid=15061/tid=15063] ppid=15059 vsize=825992 CPUtime=169.52
/proc/15061/task/15063/stat : 15063 (java) R 15059 15061 10362 0 -1 64 17685 0 1 0 16935 17 0 0 24 0 12 0 1985123535 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=825992 CPUtime=5.19
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 89518 0 0 0 481 38 0 0 15 0 12 0 1985123536 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=825992 CPUtime=4.83
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 69767 0 0 0 453 30 0 0 16 0 12 0 1985123536 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=825992 CPUtime=57.62
/proc/15061/task/15066/stat : 15066 (java) R 15059 15061 10362 0 -1 64 245930 0 0 0 5653 109 0 0 17 0 12 0 1985123538 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 105678347 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=825992 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1985123538 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15068] ppid=15059 vsize=825992 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1985123538 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=825992 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=825992 CPUtime=0.68
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4258 0 0 0 67 1 0 0 16 0 12 0 1985123543 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15071] ppid=15059 vsize=825992 CPUtime=0.51
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1558 0 0 0 50 1 0 0 16 0 12 0 1985123543 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15072] ppid=15059 vsize=825992 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1985123543 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=825992 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1985123543 845815808 176009 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 238.42
Current children cumulated vsize (KiB) 825992

[startup+243.108 s]
/proc/loadavg: 2.51 2.17 2.05 3/94 15123
/proc/meminfo: memFree=828960/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=826316 CPUtime=241.61
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 443503 0 1 0 23955 206 0 0 18 0 13 0 1985123534 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 206579 176017 1392 9 0 203941 0
[pid=15061/tid=15063] ppid=15059 vsize=826316 CPUtime=169.53
/proc/15061/task/15063/stat : 15063 (java) S 15059 15061 10362 0 -1 64 17692 0 1 0 16936 17 0 0 24 0 13 0 1985123535 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=826316 CPUtime=5.19
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 89518 0 0 0 481 38 0 0 15 0 13 0 1985123536 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=826316 CPUtime=4.83
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 69767 0 0 0 453 30 0 0 16 0 13 0 1985123536 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=826316 CPUtime=60.81
/proc/15061/task/15066/stat : 15066 (java) R 15059 15061 10362 0 -1 64 259942 0 0 0 5966 115 0 0 22 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 106123403 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 15 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15068] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=826316 CPUtime=0.68
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4258 0 0 0 67 1 0 0 16 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15071] ppid=15059 vsize=826316 CPUtime=0.51
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1558 0 0 0 50 1 0 0 16 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15072] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15123] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15123/stat : 15123 (java) S 15059 15061 10362 0 -1 64 5 0 0 0 0 0 0 0 16 0 13 0 1985147715 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 241.61
Current children cumulated vsize (KiB) 826316

[startup+244.702 s]
/proc/loadavg: 2.51 2.17 2.05 3/94 15123
/proc/meminfo: memFree=837024/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=826316 CPUtime=243.2
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 450511 0 1 0 24111 209 0 0 18 0 13 0 1985123534 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 206579 176017 1392 9 0 203941 0
[pid=15061/tid=15063] ppid=15059 vsize=826316 CPUtime=169.53
/proc/15061/task/15063/stat : 15063 (java) S 15059 15061 10362 0 -1 64 17692 0 1 0 16936 17 0 0 24 0 13 0 1985123535 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=826316 CPUtime=5.19
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 89518 0 0 0 481 38 0 0 15 0 13 0 1985123536 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=826316 CPUtime=4.83
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 69767 0 0 0 453 30 0 0 16 0 13 0 1985123536 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=826316 CPUtime=62.39
/proc/15061/task/15066/stat : 15066 (java) R 15059 15061 10362 0 -1 64 266948 0 0 0 6121 118 0 0 25 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 105852552 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 15 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15068] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=826316 CPUtime=0.68
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4258 0 0 0 67 1 0 0 16 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15071] ppid=15059 vsize=826316 CPUtime=0.51
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1558 0 0 0 50 1 0 0 16 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15072] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15123] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15123/stat : 15123 (java) S 15059 15061 10362 0 -1 64 7 0 0 0 0 0 0 0 16 0 13 0 1985147715 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 243.2
Current children cumulated vsize (KiB) 826316

[startup+245.102 s]
/proc/loadavg: 2.51 2.17 2.05 3/94 15123
/proc/meminfo: memFree=837024/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=826316 CPUtime=243.6
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 450511 0 1 0 24151 209 0 0 18 0 13 0 1985123534 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 206579 176017 1392 9 0 203941 0
[pid=15061/tid=15063] ppid=15059 vsize=826316 CPUtime=169.53
/proc/15061/task/15063/stat : 15063 (java) S 15059 15061 10362 0 -1 64 17692 0 1 0 16936 17 0 0 24 0 13 0 1985123535 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=826316 CPUtime=5.19
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 89518 0 0 0 481 38 0 0 15 0 13 0 1985123536 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=826316 CPUtime=4.83
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 69767 0 0 0 453 30 0 0 16 0 13 0 1985123536 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=826316 CPUtime=62.79
/proc/15061/task/15066/stat : 15066 (java) R 15059 15061 10362 0 -1 64 266948 0 0 0 6161 118 0 0 25 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 106123734 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 15 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15068] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 1985123538 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=826316 CPUtime=0.68
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4258 0 0 0 67 1 0 0 16 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15071] ppid=15059 vsize=826316 CPUtime=0.51
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1558 0 0 0 50 1 0 0 16 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15072] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 1985123543 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=15061/tid=15123] ppid=15059 vsize=826316 CPUtime=0
/proc/15061/task/15123/stat : 15123 (java) S 15059 15061 10362 0 -1 64 7 0 0 0 0 0 0 0 16 0 13 0 1985147715 846147584 176017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 243.6
Current children cumulated vsize (KiB) 826316

[startup+245.307 s]
/proc/loadavg: 2.51 2.17 2.05 3/94 15123
/proc/meminfo: memFree=829024/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=818312 CPUtime=243.8
/proc/15061/stat : 15061 (java) S 15059 15061 10362 0 -1 0 450513 0 1 0 24171 209 0 0 18 0 12 0 1985123534 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 204578 174017 1393 9 0 201940 0
[pid=15061/tid=15063] ppid=15059 vsize=818312 CPUtime=169.53
/proc/15061/task/15063/stat : 15063 (java) S 15059 15061 10362 0 -1 64 17692 0 1 0 16936 17 0 0 16 0 12 0 1985123535 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15064] ppid=15059 vsize=818312 CPUtime=5.19
/proc/15061/task/15064/stat : 15064 (java) S 15059 15061 10362 0 -1 64 89518 0 0 0 481 38 0 0 15 0 12 0 1985123536 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15065] ppid=15059 vsize=818312 CPUtime=4.83
/proc/15061/task/15065/stat : 15065 (java) S 15059 15061 10362 0 -1 64 69767 0 0 0 453 30 0 0 16 0 12 0 1985123536 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15066] ppid=15059 vsize=818312 CPUtime=63
/proc/15061/task/15066/stat : 15066 (java) R 15059 15061 10362 0 -1 64 266948 0 0 0 6181 119 0 0 25 0 12 0 1985123538 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 106122630 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15067] ppid=15059 vsize=818312 CPUtime=0
/proc/15061/task/15067/stat : 15067 (java) S 15059 15061 10362 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1985123538 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15068] ppid=15059 vsize=818312 CPUtime=0
/proc/15061/task/15068/stat : 15068 (java) S 15059 15061 10362 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1985123538 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15069] ppid=15059 vsize=818312 CPUtime=0
/proc/15061/task/15069/stat : 15069 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1985123543 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15070] ppid=15059 vsize=818312 CPUtime=0.68
/proc/15061/task/15070/stat : 15070 (java) S 15059 15061 10362 0 -1 64 4258 0 0 0 67 1 0 0 16 0 12 0 1985123543 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15071] ppid=15059 vsize=818312 CPUtime=0.51
/proc/15061/task/15071/stat : 15071 (java) S 15059 15061 10362 0 -1 64 1558 0 0 0 50 1 0 0 16 0 12 0 1985123543 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15072] ppid=15059 vsize=818312 CPUtime=0
/proc/15061/task/15072/stat : 15072 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1985123543 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=15061/tid=15073] ppid=15059 vsize=818312 CPUtime=0
/proc/15061/task/15073/stat : 15073 (java) S 15059 15061 10362 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1985123543 837951488 174017 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 243.8
Current children cumulated vsize (KiB) 818312

[startup+245.402 s]
/proc/loadavg: 2.51 2.17 2.05 3/94 15123
/proc/meminfo: memFree=829024/2055920 swapFree=4179764/4192956
[pid=15061] ppid=15059 vsize=0 CPUtime=243.89
/proc/15061/stat : 15061 (java) Z 15059 15061 10362 0 -1 12 450517 0 1 0 24177 212 0 0 16 0 2 0 1985123534 0 0 996147200 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/15061/statm: 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 243.89
Current children cumulated vsize (KiB) 0

Child status: 1
Real time (s): 245.484
CPU time (s): 243.976
CPU user time (s): 241.772
CPU system time (s): 2.20366
CPU usage (%): 99.3858
Max. virtual memory (cumulated for all children) (KiB): 830320

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 241.772
system time used= 2.20366
maximum resident set size= 0
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 450517
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= 10699
involuntary context switches= 11382

runsolver used 0.328949 second user time and 0.838872 second system time

The end

Launcher Data (download as text)

Begin job on node37 at 2008-07-03 07:05:03
IDJOB=1056110
IDBENCH=57399
IDSOLVER=344
FILE ID=node37/1056110-1215061500
PBS_JOBID= 7875099
Free space on /tmp= 66500 MiB

SOLVER NAME= SAT4J CSP 2008-06-13
BENCH NAME= CPAI08/csp/largeQueens/normalized-queens-800.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-1056110-1215061500/watcher-1056110-1215061500 -o /tmp/evaluation-result-1056110-1215061500/solver-1056110-1215061500 -C 1800 -W 2200 -M 900 --output-limit 1,15  java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1056110-1215061500.xml

TIME LIMIT= 1800 seconds
MEMORY LIMIT= 900 MiB

MD5SUM BENCH= a5cb3ae7953c75d065027fcec4cf35e2
RANDOM SEED=442177903

node37.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.236
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.236
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	: 5586.94
clflush size	: 64
cache_alignment	: 128
address sizes	: 36 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:      2055920 kB
MemFree:       1705840 kB
Buffers:         55472 kB
Cached:         197580 kB
SwapCached:       7116 kB
Active:         183268 kB
Inactive:        93500 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      2055920 kB
LowFree:       1705840 kB
SwapTotal:     4192956 kB
SwapFree:      4179764 kB
Dirty:           43756 kB
Writeback:           0 kB
Mapped:          31292 kB
Slab:            58704 kB
Committed_AS:  3485256 kB
PageTables:       1772 kB
VmallocTotal: 536870911 kB
VmallocUsed:    264884 kB
VmallocChunk: 536605679 kB
HugePages_Total:     0
HugePages_Free:      0
Hugepagesize:     2048 kB

Free space on /tmp at the end= 66460 MiB
End job on node37 at 2008-07-03 07:09:08