Trace number 1060051

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? 289.97 291.671

General information on the benchmark

Namecsp/os-taillard-15/
normalized-os-taillard-15-95-2.xml
MD5SUM8376fcfcac18b60a71faf845a033c81e
Bench Category2-ARY-INT (binary constraints in intension)
Best result obtained on this benchmarkUNSAT
Best CPU time to get the best result obtained on this benchmark2.5906
Satisfiable
(Un)Satisfiability was proved
Number of variables225
Number of constraints3150
Maximum constraint arity2
Maximum domain size854
Number of constraints which are defined in extension0
Number of constraints which are defined in intension3150
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.38/0.41	c c --- Begin Solver configuration ---
0.38/0.41	c Stops conflict analysis at the first Unique Implication Point
0.38/0.41	c org.sat4j.minisat.constraints.MixedDataStructureDaniel@1d2068d
0.38/0.41	c Learn all clauses as in MiniSAT
0.38/0.41	c claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
0.38/0.41	c VSIDS like heuristics from MiniSAT using a heap phase appearing in latest learned clause
0.38/0.41	c Expensive reason simplification
0.38/0.41	c MiniSAT restarts strategy
0.38/0.41	c timeout=2147483s
0.38/0.41	c DB Simplification allowed=false
0.38/0.41	c --- End Solver configuration ---
0.38/0.41	c solving HOME/instance-1060051-1215125630.xml
0.38/0.41	c reading problem ... 
0.57/0.68	c reading problem named null
0.57/0.68	c reading domains done.
0.77/0.86	c reading variables done.
1.17/1.25	c reading predicates  done.
1.37/1.44	c reading constraints
288.24/289.94	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
288.24/289.94		at org.sat4j.minisat.constraints.cnf.WLClause.(WLClause.java:62)
288.24/289.94		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.(OriginalWLClause.java:37)
288.24/289.94		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.brandNewClause(OriginalWLClause.java:78)
288.24/289.94		at org.sat4j.minisat.constraints.MixedDataStructureDaniel.createClause(MixedDataStructureDaniel.java:69)
288.24/289.94		at org.sat4j.minisat.core.Solver.addClause(Solver.java:303)
288.24/289.94		at org.sat4j.csp.encodings.BinarySupportEncoding.generateClauses(BinarySupportEncoding.java:98)
288.24/289.94		at org.sat4j.csp.encodings.BinarySupportEncoding.onFinish(BinarySupportEncoding.java:52)
288.24/289.94		at org.sat4j.csp.Predicate.toClause(Predicate.java:110)
288.24/289.94		at org.sat4j.reader.CSPReader.endConstraint(CSPReader.java:479)
288.24/289.94		at org.sat4j.csp.xml.Constraint.endElement(Constraint.java:50)
288.24/289.94		at org.sat4j.csp.xml.InstanceParser.endElement(InstanceParser.java:49)
288.24/289.94		at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.endElement(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
288.24/289.94		at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
288.24/289.94		at org.sat4j.csp.xml.CspXmlParser.parse(CspXmlParser.java:62)
288.24/289.94		at org.sat4j.reader.XMLCSPReader.parseInstance(XMLCSPReader.java:62)
288.24/289.94		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:174)
288.24/289.94		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:194)
288.24/289.94		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:74)
289.72/291.45	c starts		: 0
289.72/291.45	c conflicts		: 0
289.72/291.45	c decisions		: 0
289.72/291.45	c propagations		: 0
289.72/291.45	c inspects		: 0
289.72/291.45	c learnt literals	: 0
289.72/291.45	c learnt binary clauses	: 0
289.72/291.45	c learnt ternary clauses	: 0
289.72/291.45	c learnt clauses	: 0
289.72/291.45	c ignored clauses	: 0
289.72/291.45	c root simplifications	: 0
289.72/291.45	c removed literals (reason simplification)	: 0
289.72/291.45	c reason swapping (by a shorter reason)	: 0
289.72/291.45	c Calls to reduceDB	: 0
289.72/291.45	c speed (assignments/second)	: 0.0
289.72/291.45	c non guided choices	0
289.72/291.45	s UNKNOWN
289.72/291.45	c Total wall clock time (in seconds) : 289.533

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-1060051-1215125630/watcher-1060051-1215125630 -o /tmp/evaluation-result-1060051-1215125630/solver-1060051-1215125630 -C 1800 -W 2200 -M 900 --output-limit 1,15 java6 -server -Xms650m -Xmx650m -jar HOME/sat4jcsp.jar HOME/instance-1060051-1215125630.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.92 1.98 1.99 4/72 4349
/proc/meminfo: memFree=1643376/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=18572 CPUtime=0
/proc/4349/stat : 4349 (runsolver) R 4347 4349 3975 0 -1 4194368 16 0 0 0 0 0 0 0 21 0 1 0 1991538404 19017728 292 996147200 4194304 4296836 548682068416 18446744073709551615 233632754983 0 2147483391 4096 24578 0 0 0 17 1 0 0
/proc/4349/statm: 4643 292 257 25 0 2626 0

[startup+0.00885504 s]
/proc/loadavg: 1.92 1.98 1.99 4/72 4349
/proc/meminfo: memFree=1643376/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=1804 CPUtime=0
/proc/4349/stat : 4349 (java6) D 4347 4349 3975 0 -1 0 172 0 0 0 0 0 0 0 18 0 1 0 1991538404 1847296 145 996147200 134512640 134550740 4294956192 18446744073709551615 4294960144 0 2147483391 4096 0 18446744072099781622 0 0 17 1 0 0
/proc/4349/statm: 451 150 106 9 0 93 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 1804

[startup+0.102867 s]
/proc/loadavg: 1.92 1.98 1.99 4/72 4349
/proc/meminfo: memFree=1643376/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=804612 CPUtime=0.08
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 2999 0 1 0 6 2 0 0 18 0 12 0 1991538404 823922688 2732 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 201153 2732 1048 9 0 198522 0
Current children cumulated CPU time (s) 0.08
Current children cumulated vsize (KiB) 804612

[startup+0.301883 s]
/proc/loadavg: 1.92 1.98 1.99 4/72 4349
/proc/meminfo: memFree=1643376/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=808244 CPUtime=0.28
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 4931 0 1 0 25 3 0 0 18 0 12 0 1991538404 827641856 4258 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 202061 4258 1297 9 0 199430 0
Current children cumulated CPU time (s) 0.28
Current children cumulated vsize (KiB) 808244

[startup+0.701915 s]
/proc/loadavg: 1.92 1.98 1.99 4/72 4349
/proc/meminfo: memFree=1643376/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=808272 CPUtime=0.68
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 6351 0 1 0 63 5 0 0 18 0 12 0 1991538404 827670528 5479 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 202068 5479 1335 9 0 199430 0
Current children cumulated CPU time (s) 0.68
Current children cumulated vsize (KiB) 808272

[startup+1.50298 s]
/proc/loadavg: 1.92 1.98 1.99 3/84 4361
/proc/meminfo: memFree=1621200/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=808272 CPUtime=1.47
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 16840 0 1 0 137 10 0 0 18 0 12 0 1991538404 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 202068 15299 1351 9 0 199430 0
[pid=4349/tid=4351] ppid=4347 vsize=808272 CPUtime=0.89
/proc/4349/task/4351/stat : 4351 (java) R 4347 4349 3975 0 -1 64 13594 0 1 0 81 8 0 0 18 0 12 0 1991538406 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4109219198 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4352] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 3 0 0 0 0 0 0 0 18 0 12 0 1991538407 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4353] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 19 0 12 0 1991538407 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4354] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4354/stat : 4354 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 16 0 12 0 1991538409 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4355] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 9 0 0 0 0 0 0 0 21 0 12 0 1991538409 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4356] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 4 0 0 0 0 0 0 0 22 0 12 0 1991538409 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=808272 CPUtime=0.33
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 1306 0 0 0 33 0 0 0 16 0 12 0 1991538413 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=808272 CPUtime=0.21
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1175 0 0 0 21 0 0 0 16 0 12 0 1991538413 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4360] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=808272 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 827670528 15299 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 1.47
Current children cumulated vsize (KiB) 808272

[startup+3.10212 s]
/proc/loadavg: 1.92 1.98 1.99 4/84 4361
/proc/meminfo: memFree=1579600/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=819324 CPUtime=3.24
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 35657 0 1 0 306 18 0 0 18 0 12 0 1991538404 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204831 29978 1384 9 0 202193 0
[pid=4349/tid=4351] ppid=4347 vsize=819324 CPUtime=1.58
/proc/4349/task/4351/stat : 4351 (java) R 4347 4349 3975 0 -1 64 17263 0 1 0 149 9 0 0 23 0 12 0 1991538406 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4109651533 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4352] ppid=4347 vsize=819324 CPUtime=0.24
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 6241 0 0 0 22 2 0 0 19 0 12 0 1991538407 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4353] ppid=4347 vsize=819324 CPUtime=0.24
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 4962 0 0 0 22 2 0 0 19 0 12 0 1991538407 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4354] ppid=4347 vsize=819324 CPUtime=0
/proc/4349/task/4354/stat : 4354 (java) S 4347 4349 3975 0 -1 64 31 0 0 0 0 0 0 0 16 0 12 0 1991538409 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4355] ppid=4347 vsize=819324 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1991538409 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4356] ppid=4347 vsize=819324 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=819324 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=819324 CPUtime=0.76
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5039 0 0 0 73 3 0 0 16 0 12 0 1991538413 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=819324 CPUtime=0.37
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1358 0 0 0 37 0 0 0 16 0 12 0 1991538413 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4360] ppid=4347 vsize=819324 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=819324 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 838987776 29978 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 3.24
Current children cumulated vsize (KiB) 819324

[startup+6.30138 s]
/proc/loadavg: 1.93 1.98 1.99 3/84 4361
/proc/meminfo: memFree=1511824/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=819196 CPUtime=6.41
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 40463 0 1 0 620 21 0 0 18 0 12 0 1991538404 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204799 34747 1385 9 0 202161 0
[pid=4349/tid=4351] ppid=4347 vsize=819196 CPUtime=4.38
/proc/4349/task/4351/stat : 4351 (java) R 4347 4349 3975 0 -1 64 17268 0 1 0 429 9 0 0 25 0 12 0 1991538406 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4109656384 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4352] ppid=4347 vsize=819196 CPUtime=0.38
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 8105 0 0 0 35 3 0 0 16 0 12 0 1991538407 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4353] ppid=4347 vsize=819196 CPUtime=0.39
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 7885 0 0 0 36 3 0 0 16 0 12 0 1991538407 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4354] ppid=4347 vsize=819196 CPUtime=0
/proc/4349/task/4354/stat : 4354 (java) S 4347 4349 3975 0 -1 64 31 0 0 0 0 0 0 0 16 0 12 0 1991538409 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4355] ppid=4347 vsize=819196 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1991538409 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4356] ppid=4347 vsize=819196 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=819196 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=819196 CPUtime=0.8
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5042 0 0 0 77 3 0 0 17 0 12 0 1991538413 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=819196 CPUtime=0.4
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1369 0 0 0 40 0 0 0 17 0 12 0 1991538413 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4360] ppid=4347 vsize=819196 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=819196 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 838856704 34747 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 6.41
Current children cumulated vsize (KiB) 819196

[startup+12.7029 s]
/proc/loadavg: 1.93 1.98 1.99 3/84 4361
/proc/meminfo: memFree=1471888/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=817896 CPUtime=12.76
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 50840 0 1 0 1251 25 0 0 18 0 12 0 1991538404 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204474 44814 1385 9 0 201836 0
[pid=4349/tid=4351] ppid=4347 vsize=817896 CPUtime=10.51
/proc/4349/task/4351/stat : 4351 (java) R 4347 4349 3975 0 -1 64 17289 0 1 0 1042 9 0 0 25 0 12 0 1991538406 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4109651817 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4352] ppid=4347 vsize=817896 CPUtime=0.49
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 14447 0 0 0 43 6 0 0 16 0 12 0 1991538407 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4353] ppid=4347 vsize=817896 CPUtime=0.5
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 11893 0 0 0 46 4 0 0 15 0 12 0 1991538407 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4354] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4354/stat : 4354 (java) S 4347 4349 3975 0 -1 64 31 0 0 0 0 0 0 0 16 0 12 0 1991538409 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4355] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1991538409 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4356] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=817896 CPUtime=0.8
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5042 0 0 0 77 3 0 0 17 0 12 0 1991538413 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=817896 CPUtime=0.41
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1375 0 0 0 41 0 0 0 16 0 12 0 1991538413 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4360] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 837525504 44814 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
Current children cumulated CPU time (s) 12.76
Current children cumulated vsize (KiB) 817896

[startup+25.503 s]
/proc/loadavg: 1.95 1.98 1.99 3/84 4361
/proc/meminfo: memFree=1405648/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=817896 CPUtime=25.48
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 68239 0 1 0 2516 32 0 0 18 0 12 0 1991538404 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204474 62085 1385 9 0 201836 0
[pid=4349/tid=4351] ppid=4347 vsize=817896 CPUtime=22.83
/proc/4349/task/4351/stat : 4351 (java) R 4347 4349 3975 0 -1 64 17312 0 1 0 2274 9 0 0 25 0 12 0 1991538406 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4109669490 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4352] ppid=4347 vsize=817896 CPUtime=0.65
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 23973 0 0 0 55 10 0 0 16 0 12 0 1991538407 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4353] ppid=4347 vsize=817896 CPUtime=0.65
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 19732 0 0 0 58 7 0 0 16 0 12 0 1991538407 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4354] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4354/stat : 4354 (java) S 4347 4349 3975 0 -1 64 31 0 0 0 0 0 0 0 15 0 12 0 1991538409 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4355] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1991538409 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4356] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=817896 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 837525504 62085 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0

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


Solver just ended. Dumping a history of the last processes samples

[startup+287.903 s]
/proc/loadavg: 2.66 2.21 2.07 3/84 4361
/proc/meminfo: memFree=950288/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=819900 CPUtime=286.25
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 251842 0 1 0 28514 111 0 0 18 0 12 0 1991538404 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204975 174528 1389 9 0 202337 0
[pid=4349/tid=4351] ppid=4347 vsize=819900 CPUtime=223.09
/proc/4349/task/4351/stat : 4351 (java) S 4347 4349 3975 0 -1 64 17761 0 1 0 22298 11 0 0 16 0 12 0 1991538406 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4352] ppid=4347 vsize=819900 CPUtime=3.5
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 78407 0 0 0 320 30 0 0 15 0 12 0 1991538407 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4353] ppid=4347 vsize=819900 CPUtime=3.37
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 77715 0 0 0 308 29 0 0 16 0 12 0 1991538407 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4354] ppid=4347 vsize=819900 CPUtime=54.9
/proc/4349/task/4354/stat : 4354 (java) R 4347 4349 3975 0 -1 64 70766 0 0 0 5456 34 0 0 25 0 12 0 1991538409 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 106122257 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4355] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1991538409 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4356] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=819900 CPUtime=0.85
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5045 0 0 0 82 3 0 0 16 0 12 0 1991538413 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=819900 CPUtime=0.47
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1385 0 0 0 47 0 0 0 16 0 12 0 1991538413 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4360] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 839577600 174528 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 286.25
Current children cumulated vsize (KiB) 819900

[startup+289.502 s]
/proc/loadavg: 2.61 2.21 2.06 3/84 4361
/proc/meminfo: memFree=950288/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=819900 CPUtime=287.84
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 253852 0 1 0 28672 112 0 0 18 0 12 0 1991538404 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204975 174529 1390 9 0 202337 0
[pid=4349/tid=4351] ppid=4347 vsize=819900 CPUtime=223.09
/proc/4349/task/4351/stat : 4351 (java) S 4347 4349 3975 0 -1 64 17767 0 1 0 22298 11 0 0 16 0 12 0 1991538406 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4352] ppid=4347 vsize=819900 CPUtime=3.5
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 78407 0 0 0 320 30 0 0 15 0 12 0 1991538407 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4353] ppid=4347 vsize=819900 CPUtime=3.37
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 77715 0 0 0 308 29 0 0 16 0 12 0 1991538407 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4354] ppid=4347 vsize=819900 CPUtime=56.48
/proc/4349/task/4354/stat : 4354 (java) R 4347 4349 3975 0 -1 64 72770 0 0 0 5613 35 0 0 25 0 12 0 1991538409 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 106736479 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4355] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 15 0 12 0 1991538409 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4356] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4357] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=819900 CPUtime=0.85
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5045 0 0 0 82 3 0 0 16 0 12 0 1991538413 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=819900 CPUtime=0.47
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1385 0 0 0 47 0 0 0 16 0 12 0 1991538413 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4360] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=819900 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 839577600 174529 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 287.84
Current children cumulated vsize (KiB) 819900

[startup+290.301 s]
/proc/loadavg: 2.61 2.21 2.06 3/85 4362
/proc/meminfo: memFree=948424/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=820224 CPUtime=288.63
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 254361 0 1 0 28751 112 0 0 18 0 13 0 1991538404 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 205056 174536 1390 9 0 202418 0
[pid=4349/tid=4351] ppid=4347 vsize=820224 CPUtime=223.09
/proc/4349/task/4351/stat : 4351 (java) S 4347 4349 3975 0 -1 64 17771 0 1 0 22298 11 0 0 17 0 13 0 1991538406 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4352] ppid=4347 vsize=820224 CPUtime=3.5
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 78407 0 0 0 320 30 0 0 15 0 13 0 1991538407 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4353] ppid=4347 vsize=820224 CPUtime=3.37
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 77715 0 0 0 308 29 0 0 16 0 13 0 1991538407 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4354] ppid=4347 vsize=820224 CPUtime=57.28
/proc/4349/task/4354/stat : 4354 (java) R 4347 4349 3975 0 -1 64 73271 0 0 0 5693 35 0 0 25 0 13 0 1991538409 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 105678344 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4355] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 15 0 13 0 1991538409 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4356] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 1991538409 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4357] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=820224 CPUtime=0.85
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5045 0 0 0 82 3 0 0 16 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=820224 CPUtime=0.47
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1385 0 0 0 47 0 0 0 16 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4360] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4362] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4362/stat : 4362 (java) S 4347 4349 3975 0 -1 64 4 0 0 0 0 0 0 0 17 0 13 0 1991567398 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 288.63
Current children cumulated vsize (KiB) 820224

[startup+291.101 s]
/proc/loadavg: 2.61 2.21 2.06 3/85 4362
/proc/meminfo: memFree=948424/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=820224 CPUtime=289.42
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 255364 0 1 0 28830 112 0 0 18 0 13 0 1991538404 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 205056 174536 1390 9 0 202418 0
[pid=4349/tid=4351] ppid=4347 vsize=820224 CPUtime=223.09
/proc/4349/task/4351/stat : 4351 (java) S 4347 4349 3975 0 -1 64 17771 0 1 0 22298 11 0 0 17 0 13 0 1991538406 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4352] ppid=4347 vsize=820224 CPUtime=3.5
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 78407 0 0 0 320 30 0 0 15 0 13 0 1991538407 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4353] ppid=4347 vsize=820224 CPUtime=3.37
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 77715 0 0 0 308 29 0 0 16 0 13 0 1991538407 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4354] ppid=4347 vsize=820224 CPUtime=58.06
/proc/4349/task/4354/stat : 4354 (java) R 4347 4349 3975 0 -1 64 74273 0 0 0 5771 35 0 0 25 0 13 0 1991538409 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 106123734 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4355] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 15 0 13 0 1991538409 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4356] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 13 0 1991538409 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4357] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=820224 CPUtime=0.85
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5045 0 0 0 82 3 0 0 16 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=820224 CPUtime=0.47
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1385 0 0 0 47 0 0 0 16 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4360] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 13 0 1991538413 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4362] ppid=4347 vsize=820224 CPUtime=0
/proc/4349/task/4362/stat : 4362 (java) S 4347 4349 3975 0 -1 64 5 0 0 0 0 0 0 0 16 0 13 0 1991567398 839909376 174536 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 289.42
Current children cumulated vsize (KiB) 820224

[startup+291.506 s]
/proc/loadavg: 2.61 2.21 2.06 3/85 4362
/proc/meminfo: memFree=948424/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=818220 CPUtime=289.82
/proc/4349/stat : 4349 (java) S 4347 4349 3975 0 -1 0 255366 0 1 0 28870 112 0 0 18 0 12 0 1991538404 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0
/proc/4349/statm: 204555 174036 1391 9 0 201917 0
[pid=4349/tid=4351] ppid=4347 vsize=818220 CPUtime=223.09
/proc/4349/task/4351/stat : 4351 (java) S 4347 4349 3975 0 -1 64 17771 0 1 0 22298 11 0 0 16 0 12 0 1991538406 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4352] ppid=4347 vsize=818220 CPUtime=3.5
/proc/4349/task/4352/stat : 4352 (java) S 4347 4349 3975 0 -1 64 78407 0 0 0 320 30 0 0 15 0 12 0 1991538407 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4353] ppid=4347 vsize=818220 CPUtime=3.37
/proc/4349/task/4353/stat : 4353 (java) S 4347 4349 3975 0 -1 64 77715 0 0 0 308 29 0 0 16 0 12 0 1991538407 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4354] ppid=4347 vsize=818220 CPUtime=58.46
/proc/4349/task/4354/stat : 4354 (java) R 4347 4349 3975 0 -1 64 74273 0 0 0 5811 35 0 0 25 0 12 0 1991538409 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 106122630 0 0 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4355] ppid=4347 vsize=818220 CPUtime=0
/proc/4349/task/4355/stat : 4355 (java) S 4347 4349 3975 0 -1 64 10 0 0 0 0 0 0 0 16 0 12 0 1991538409 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4356] ppid=4347 vsize=818220 CPUtime=0
/proc/4349/task/4356/stat : 4356 (java) S 4347 4349 3975 0 -1 64 6 0 0 0 0 0 0 0 16 0 12 0 1991538409 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4357] ppid=4347 vsize=818220 CPUtime=0
/proc/4349/task/4357/stat : 4357 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 18 0 12 0 1991538413 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4358] ppid=4347 vsize=818220 CPUtime=0.85
/proc/4349/task/4358/stat : 4358 (java) S 4347 4349 3975 0 -1 64 5045 0 0 0 82 3 0 0 16 0 12 0 1991538413 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4359] ppid=4347 vsize=818220 CPUtime=0.47
/proc/4349/task/4359/stat : 4359 (java) S 4347 4349 3975 0 -1 64 1385 0 0 0 47 0 0 0 16 0 12 0 1991538413 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
[pid=4349/tid=4360] ppid=4347 vsize=818220 CPUtime=0
/proc/4349/task/4360/stat : 4360 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 20 0 12 0 1991538413 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 1 0 0
[pid=4349/tid=4361] ppid=4347 vsize=818220 CPUtime=0
/proc/4349/task/4361/stat : 4361 (java) S 4347 4349 3975 0 -1 64 1 0 0 0 0 0 0 0 15 0 12 0 1991538413 837857280 174036 996147200 134512640 134550740 4294956032 18446744073709551615 4294960144 0 4 0 16800975 0 0 0 -1 0 0 0
Current children cumulated CPU time (s) 289.82
Current children cumulated vsize (KiB) 818220

[startup+291.602 s]
/proc/loadavg: 2.61 2.21 2.06 3/85 4362
/proc/meminfo: memFree=948424/2055920 swapFree=4180472/4192956
[pid=4349] ppid=4347 vsize=0 CPUtime=289.89
/proc/4349/stat : 4349 (java) Z 4347 4349 3975 0 -1 12 255370 0 1 0 28874 115 0 0 16 0 2 0 1991538404 0 0 996147200 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0
/proc/4349/statm: 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 289.89
Current children cumulated vsize (KiB) 0

Child status: 1
Real time (s): 291.671
CPU time (s): 289.97
CPU user time (s): 288.742
CPU system time (s): 1.22781
CPU usage (%): 99.4169
Max. virtual memory (cumulated for all children) (KiB): 820224

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 288.742
system time used= 1.22781
maximum resident set size= 0
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 255370
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= 12061
involuntary context switches= 14028

runsolver used 0.359945 second user time and 0.991849 second system time

The end

Launcher Data (download as text)

Begin job on node3 at 2008-07-04 00:53:50
IDJOB=1060051
IDBENCH=54402
IDSOLVER=344
FILE ID=node3/1060051-1215125630
PBS_JOBID= 7877240
Free space on /tmp= 66552 MiB

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

TIME LIMIT= 1800 seconds
MEMORY LIMIT= 900 MiB

MD5SUM BENCH= 8376fcfcac18b60a71faf845a033c81e
RANDOM SEED=1035642738

node3.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.232
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.232
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:       1643856 kB
Buffers:         46332 kB
Cached:         290908 kB
SwapCached:       6568 kB
Active:         188920 kB
Inactive:       159692 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      2055920 kB
LowFree:       1643856 kB
SwapTotal:     4192956 kB
SwapFree:      4180472 kB
Dirty:            1580 kB
Writeback:           0 kB
Mapped:          19260 kB
Slab:            48896 kB
Committed_AS:  3420480 kB
PageTables:       1764 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= 66552 MiB
End job on node3 at 2008-07-04 00:58:42