Trace number 4254937

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 NameAnswerobjective functionCPU timeWall clock time
choco-solver 5a (2017-07-26)? 143.636 94.971497

General information on the benchmark

NameBinPacking/BinPacking-tab-sw100/
BinPacking-tab-sw100-15.xml
MD5SUMafde4c54681b724bee939c95254967be
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark240.12199
Satisfiable
(Un)Satisfiability was proved
Number of variables109
Number of constraints21
Number of domains2
Minimum domain size19
Maximum domain size43
Distribution of domain sizes[{"size":19,"count":1},{"size":43,"count":108}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":90},{"degree":4,"count":18}]
Minimum constraint arity6
Maximum constraint arity108
Distribution of constraint arities[{"arity":6,"count":18},{"arity":19,"count":1},{"arity":108,"count":2}]
Number of extensional constraints18
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":18},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

0.00/0.09	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4254937-1501623314.xml"  -tl '264s' -p 1 -x 3
0.00/0.27	c [HOME/instance-4254937-1501623314.xml, -tl, 264s, -p, 1, -x, 3]
0.00/0.33	c simple solver
0.00/0.40	c parse instance...
143.55/94.92	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
143.55/94.92		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
143.55/94.92		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
143.55/94.92		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
143.55/94.92		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
143.55/94.92		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
143.55/94.92		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
143.55/94.92		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
143.55/94.92		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
143.55/94.92		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
143.55/94.92		at org.xcsp.parser.XCallbacks$$Lambda$70/280884709.accept(Unknown Source)
143.55/94.92		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
143.55/94.92		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
143.55/94.92		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
143.55/94.92		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
143.55/94.92		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
143.55/94.92		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
143.55/94.92		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
143.55/94.92		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
143.55/94.92		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
143.55/94.92		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
143.55/94.92		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
143.55/94.92	s UNKNOWN
143.55/94.92	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4254937-1501623314/watcher-4254937-1501623314 -o /tmp/evaluation-result-4254937-1501623314/solver-4254937-1501623314 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node130-1501617182-10799 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 517369046 HOME/instance-4254937-1501623314.xml 

pid=14964
running on 4 cores: 0,2,4,6

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 264 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 294 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 240 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Current StackSize limit: 8192 KiB


[startup+0 s]
/proc/loadavg: 1.33 1.55 1.67 3/195 14967
/proc/meminfo: memFree=31402020/32770624 swapFree=0/194172
[pid=14967] ppid=14964 vsize=23672 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (runsolver) D 14964 14967 5123 0 -1 4202560 107 0 0 0 0 0 0 0 20 0 1 0 10948389 24240128 107 18446744073709551615 4194304 4338465 140723445195536 140723445193176 140630488089303 0 0 1 24578 18446744071580418449 0 0 17 2 0 0 0 0 0 6438912 6441760 29265920 140723445198941 140723445199430 140723445199430 140723445202890 0
/proc/14967/statm: 5918 107 54 36 0 2156 0

[startup+0.100058 s]
/proc/loadavg: 1.33 1.55 1.67 3/195 14967
/proc/meminfo: memFree=31402020/32770624 swapFree=0/194172
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.20451 s]
/proc/loadavg: 1.33 1.55 1.67 3/195 14967
/proc/meminfo: memFree=31402020/32770624 swapFree=0/194172
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.30029 s]
/proc/loadavg: 1.33 1.55 1.67 3/195 14967
/proc/meminfo: memFree=31402020/32770624 swapFree=0/194172
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.70032 s]
/proc/loadavg: 1.33 1.55 1.67 3/195 14967
/proc/meminfo: memFree=31402020/32770624 swapFree=0/194172
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50063 s]
/proc/loadavg: 1.33 1.55 1.67 6/211 14983
/proc/meminfo: memFree=30396896/32770624 swapFree=0/194132
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13978684 CPUtime=2.77 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 14443 0 0 0 241 36 0 0 20 0 15 0 10948398 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3494671 267747 3187 1 0 3482972 0
[pid=14969/tid=14970] ppid=14967 vsize=13978684 CPUtime=1.11 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) R 14967 14967 5123 0 -1 4202560 8264 0 0 0 94 17 0 0 20 0 15 0 10948398 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140201518852432 140201104319198 0 4 1 16800974 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13978684 CPUtime=0.18 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) S 14967 14967 5123 0 -1 1077944384 93 0 0 0 14 4 0 0 20 0 15 0 10948399 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140201434029072 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13978684 CPUtime=0.21 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) S 14967 14967 5123 0 -1 1077944384 92 0 0 0 17 4 0 0 20 0 15 0 10948399 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140201432976528 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13978684 CPUtime=0.18 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) S 14967 14967 5123 0 -1 1077944384 139 0 0 0 14 4 0 0 20 0 15 0 10948399 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140201431923472 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13978684 CPUtime=0.22 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) S 14967 14967 5123 0 -1 1077944384 121 0 0 0 18 4 0 0 20 0 15 0 10948399 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140201430870928 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13978684 CPUtime=0.01 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) S 14967 14967 5123 0 -1 1077944384 194 0 0 0 1 0 0 0 20 0 15 0 10948400 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200497633520 140201514625666 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 10948401 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10948401 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13978684 CPUtime=0.25 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 1640 0 0 0 25 0 0 0 20 0 15 0 10948404 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13978684 CPUtime=0.33 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 1434 0 0 0 33 0 0 0 20 0 15 0 10948404 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13978684 CPUtime=0.22 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 1168 0 0 0 22 0 0 0 20 0 15 0 10948404 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 10948408 14314172416 267747 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 2.77
Current children cumulated vsize (KiB) 13988196

[startup+3.10062 s]
/proc/loadavg: 1.33 1.55 1.67 3/211 14983
/proc/meminfo: memFree=30223484/32770624 swapFree=0/194132
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13978684 CPUtime=4.82 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 18103 0 0 0 424 58 0 0 20 0 15 0 10948398 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3494671 336813 3195 1 0 3482972 0
[pid=14969/tid=14970] ppid=14967 vsize=13978684 CPUtime=2.56 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) R 14967 14967 5123 0 -1 4202560 9093 0 0 0 236 20 0 0 20 0 15 0 10948398 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140201518852720 140201107150122 0 4 1 16800974 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13978684 CPUtime=0.32 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) S 14967 14967 5123 0 -1 1077944384 578 0 0 0 23 9 0 0 20 0 15 0 10948399 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140201434029072 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13978684 CPUtime=0.35 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) S 14967 14967 5123 0 -1 1077944384 740 0 0 0 27 8 0 0 20 0 15 0 10948399 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140201432976528 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13978684 CPUtime=0.31 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) S 14967 14967 5123 0 -1 1077944384 616 0 0 0 23 8 0 0 20 0 15 0 10948399 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140201431923472 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13978684 CPUtime=0.35 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) S 14967 14967 5123 0 -1 1077944384 916 0 0 0 27 8 0 0 20 0 15 0 10948399 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140201430870928 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13978684 CPUtime=0.01 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) S 14967 14967 5123 0 -1 1077944384 591 0 0 0 1 0 0 0 20 0 15 0 10948400 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200497633520 140201514625666 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 10948401 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10948401 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13978684 CPUtime=0.26 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 1641 0 0 0 26 0 0 0 20 0 15 0 10948404 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13978684 CPUtime=0.35 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 1439 0 0 0 35 0 0 0 20 0 15 0 10948404 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13978684 CPUtime=0.22 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 1171 0 0 0 22 0 0 0 20 0 15 0 10948404 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 10948408 14314172416 336813 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 4.82
Current children cumulated vsize (KiB) 13988196

[startup+6.30071 s]
/proc/loadavg: 1.38 1.56 1.67 3/211 14983
/proc/meminfo: memFree=29732332/32770624 swapFree=0/194144
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13978684 CPUtime=8.89 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 23298 0 0 0 799 90 0 0 20 0 15 0 10948398 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3494671 421020 3203 1 0 3482972 0
[pid=14969/tid=14970] ppid=14967 vsize=13978684 CPUtime=5.51 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) R 14967 14967 5123 0 -1 4202560 11161 0 0 0 527 24 0 0 20 0 15 0 10948398 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140201518853536 140201514628406 0 4 1 16800974 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13978684 CPUtime=0.56 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) S 14967 14967 5123 0 -1 1077944384 804 0 0 0 41 15 0 0 20 0 15 0 10948399 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140201434029072 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13978684 CPUtime=0.59 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) S 14967 14967 5123 0 -1 1077944384 1115 0 0 0 44 15 0 0 20 0 15 0 10948399 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140201432976528 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13978684 CPUtime=0.56 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) S 14967 14967 5123 0 -1 1077944384 959 0 0 0 40 16 0 0 20 0 15 0 10948399 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140201431923472 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13978684 CPUtime=0.59 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) S 14967 14967 5123 0 -1 1077944384 1258 0 0 0 44 15 0 0 20 0 15 0 10948399 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140201430870928 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13978684 CPUtime=0.01 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) S 14967 14967 5123 0 -1 1077944384 765 0 0 0 1 0 0 0 20 0 15 0 10948400 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200497633520 140201514625666 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 10948401 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10948401 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13978684 CPUtime=0.31 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 2037 0 0 0 31 0 0 0 20 0 15 0 10948404 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13978684 CPUtime=0.41 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 1993 0 0 0 41 0 0 0 20 0 15 0 10948404 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13978684 CPUtime=0.24 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 1577 0 0 0 24 0 0 0 20 0 15 0 10948404 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13978684 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 332 0 0 0 0 0 0 0 20 0 15 0 10948408 14314172416 421020 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 8.89
Current children cumulated vsize (KiB) 13988196

[startup+12.7007 s]
/proc/loadavg: 1.51 1.58 1.68 3/211 14983
/proc/meminfo: memFree=29159620/32770624 swapFree=0/194152
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13980732 CPUtime=18.5 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 45710 0 0 0 1704 146 0 0 20 0 15 0 10948398 14316269568 559108 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3495183 559108 3205 1 0 3483484 0
[pid=14969/tid=14970] ppid=14967 vsize=13980732 CPUtime=10 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) R 14967 14967 5123 0 -1 4202560 12552 0 0 0 975 25 0 0 20 0 15 0 10948398 14316269568 559108 18446744073709551615 4194304 4196468 140732104112512 140201518852416 140201107817829 0 4 1 16800974 0 0 0 -1 2 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13980732 CPUtime=1.56 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) S 14967 14967 5123 0 -1 1077944384 7936 0 0 0 127 29 0 0 20 0 15 0 10948399 14316269568 559108 18446744073709551615 4194304 4196468 140732104112512 140201434029072 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13980732 CPUtime=1.6 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) S 14967 14967 5123 0 -1 1077944384 3394 0 0 0 132 28 0 0 20 0 15 0 10948399 14316269568 559108 18446744073709551615 4194304 4196468 140732104112512 140201432976528 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0

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

/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 2793 0 0 0 30 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13980732 CPUtime=0.05 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 473 0 0 0 2 3 0 0 20 0 15 0 10948408 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 128.89
Current children cumulated vsize (KiB) 13990244

[startup+92.1007 s]
/proc/loadavg: 2.37 1.82 1.76 6/211 15064
/proc/meminfo: memFree=13350032/32770624 swapFree=0/195152
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13980732 CPUtime=134.72 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 201458 0 0 0 12298 1174 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3495183 2625709 3212 1 0 3483484 0
[pid=14969/tid=14970] ppid=14967 vsize=13980732 CPUtime=75.69 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) S 14967 14967 5123 0 -1 1077944384 35672 0 0 0 7539 30 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201518852736 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13980732 CPUtime=13.82 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) R 14967 14967 5123 0 -1 4202560 62584 0 0 0 1124 258 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201434029272 140201499604077 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13980732 CPUtime=13.81 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) R 14967 14967 5123 0 -1 4202560 17718 0 0 0 1106 275 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201432976648 140201507242727 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13980732 CPUtime=13.82 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) R 14967 14967 5123 0 -1 4202560 25907 0 0 0 1097 285 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201431923280 140201507242727 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13980732 CPUtime=13.85 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) R 14967 14967 5123 0 -1 4202560 27907 0 0 0 1074 311 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201430870736 140201507242727 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13980732 CPUtime=2.31 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) S 14967 14967 5123 0 -1 1077944384 21110 0 0 0 224 7 0 0 20 0 15 0 10948400 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200497632080 140201514624725 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13980732 CPUtime=0.42 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 2595 0 0 0 42 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13980732 CPUtime=0.55 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 3337 0 0 0 55 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13980732 CPUtime=0.3 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 2793 0 0 0 30 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13980732 CPUtime=0.05 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 489 0 0 0 2 3 0 0 20 0 15 0 10948408 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 134.72
Current children cumulated vsize (KiB) 13990244

[startup+93.7006 s]
/proc/loadavg: 2.34 1.82 1.76 3/211 15064
/proc/meminfo: memFree=13350032/32770624 swapFree=0/195152
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13980732 CPUtime=139.57 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 222070 0 0 0 12779 1178 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3495183 2625709 3212 1 0 3483484 0
[pid=14969/tid=14970] ppid=14967 vsize=13980732 CPUtime=75.69 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) S 14967 14967 5123 0 -1 1077944384 35736 0 0 0 7539 30 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201518852736 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13980732 CPUtime=14.93 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) R 14967 14967 5123 0 -1 4202560 68176 0 0 0 1235 258 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201434029072 140201499312166 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13980732 CPUtime=14.87 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) R 14967 14967 5123 0 -1 4202560 17804 0 0 0 1212 275 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201432976424 140201507242727 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13980732 CPUtime=14.91 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) R 14967 14967 5123 0 -1 4202560 29363 0 0 0 1205 286 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201431923472 140201499565618 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13980732 CPUtime=14.94 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) R 14967 14967 5123 0 -1 4202560 30673 0 0 0 1182 312 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201430870928 140201499312158 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13980732 CPUtime=2.79 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) S 14967 14967 5123 0 -1 1077944384 29732 0 0 0 271 8 0 0 20 0 15 0 10948400 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200497631840 140201514624725 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13980732 CPUtime=0.42 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 2599 0 0 0 42 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13980732 CPUtime=0.55 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 3348 0 0 0 55 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13980732 CPUtime=0.3 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 2797 0 0 0 30 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13980732 CPUtime=0.05 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 489 0 0 0 2 3 0 0 20 0 15 0 10948408 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 139.57
Current children cumulated vsize (KiB) 13990244

[startup+94.5067 s]
/proc/loadavg: 2.34 1.82 1.76 10/211 15064
/proc/meminfo: memFree=12825808/32770624 swapFree=0/195152
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13980732 CPUtime=142.34 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 228124 0 0 0 13056 1178 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3495183 2625709 3212 1 0 3483484 0
[pid=14969/tid=14970] ppid=14967 vsize=13980732 CPUtime=75.69 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) S 14967 14967 5123 0 -1 1077944384 35736 0 0 0 7539 30 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201518852736 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13980732 CPUtime=15.58 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) R 14967 14967 5123 0 -1 4202560 68284 0 0 0 1300 258 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201434028968 140201507242727 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13980732 CPUtime=15.54 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) R 14967 14967 5123 0 -1 4202560 18338 0 0 0 1278 276 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201432976728 140201499565854 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13980732 CPUtime=15.58 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) R 14967 14967 5123 0 -1 4202560 31907 0 0 0 1272 286 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201431923672 140201499565706 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13980732 CPUtime=15.6 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) R 14967 14967 5123 0 -1 4202560 31139 0 0 0 1248 312 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201430871128 140201499565512 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13980732 CPUtime=2.93 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) S 14967 14967 5123 0 -1 1077944384 32134 0 0 0 285 8 0 0 20 0 15 0 10948400 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200497631856 140201514624725 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13980732 CPUtime=0.42 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 2599 0 0 0 42 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13980732 CPUtime=0.55 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 3348 0 0 0 55 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13980732 CPUtime=0.3 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 2797 0 0 0 30 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13980732 CPUtime=0.05 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 489 0 0 0 2 3 0 0 20 0 15 0 10948408 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 142.34
Current children cumulated vsize (KiB) 13990244

[startup+94.9008 s]
/proc/loadavg: 2.34 1.82 1.76 10/211 15064
/proc/meminfo: memFree=12825808/32770624 swapFree=0/195152
[pid=14967] ppid=14964 vsize=9512 CPUtime=0 cores=0,2,4,6
/proc/14967/stat : 14967 (xcsp3-exec) S 14964 14967 5123 0 -1 4202496 509 0 0 0 0 0 0 0 20 0 1 0 10948389 9740288 345 18446744073709551615 4194304 5098028 140729220342624 140729220340728 140158619923068 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 9 0 0 7196144 7232144 12214272 140729220350364 140729220350567 140729220350567 140729220354027 0
/proc/14967/statm: 2378 345 289 221 0 87 0
[pid=14969] ppid=14967 vsize=13980732 CPUtime=143.55 cores=0,2,4,6
/proc/14969/stat : 14969 (java) S 14967 14967 5123 0 -1 1077944320 228258 0 0 0 13177 1178 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140732104095056 140201514614519 0 0 1 16800974 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
/proc/14969/statm: 3495183 2625709 3212 1 0 3483484 0
[pid=14969/tid=14970] ppid=14967 vsize=13980732 CPUtime=75.69 cores=0,2,4,6
/proc/14969/task/14970/stat : 14970 (java) S 14967 14967 5123 0 -1 1077944384 35736 0 0 0 7539 30 0 0 20 0 15 0 10948398 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201518852736 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 3 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14971] ppid=14967 vsize=13980732 CPUtime=15.85 cores=0,2,4,6
/proc/14969/task/14971/stat : 14971 (java) S 14967 14967 5123 0 -1 1077944384 68403 0 0 0 1327 258 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201434029072 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14972] ppid=14967 vsize=13980732 CPUtime=15.81 cores=0,2,4,6
/proc/14969/task/14972/stat : 14972 (java) S 14967 14967 5123 0 -1 1077944384 18338 0 0 0 1305 276 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201432976528 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14973] ppid=14967 vsize=13980732 CPUtime=15.85 cores=0,2,4,6
/proc/14969/task/14973/stat : 14973 (java) S 14967 14967 5123 0 -1 1077944384 31907 0 0 0 1299 286 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201431923472 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14974] ppid=14967 vsize=13980732 CPUtime=15.88 cores=0,2,4,6
/proc/14969/task/14974/stat : 14974 (java) S 14967 14967 5123 0 -1 1077944384 31146 0 0 0 1276 312 0 0 20 0 15 0 10948399 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140201430870928 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14975] ppid=14967 vsize=13980732 CPUtime=3.05 cores=0,2,4,6
/proc/14969/task/14975/stat : 14975 (java) R 14967 14967 5123 0 -1 4202560 32142 0 0 0 297 8 0 0 20 0 15 0 10948400 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200497631968 140201492984699 0 0 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14976] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14976/stat : 14976 (java) S 14967 14967 5123 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200496579808 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14977] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14977/stat : 14977 (java) S 14967 14967 5123 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 10948401 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200495526656 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14978] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14978/stat : 14978 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200494475216 140201514633115 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14979] ppid=14967 vsize=13980732 CPUtime=0.42 cores=0,2,4,6
/proc/14969/task/14979/stat : 14979 (java) S 14967 14967 5123 0 -1 1077944384 2599 0 0 0 42 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200493423344 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14980] ppid=14967 vsize=13980732 CPUtime=0.55 cores=0,2,4,6
/proc/14969/task/14980/stat : 14980 (java) S 14967 14967 5123 0 -1 1077944384 3348 0 0 0 55 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200492370800 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14981] ppid=14967 vsize=13980732 CPUtime=0.3 cores=0,2,4,6
/proc/14969/task/14981/stat : 14981 (java) S 14967 14967 5123 0 -1 1077944384 2797 0 0 0 30 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200491317744 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14982] ppid=14967 vsize=13980732 CPUtime=0 cores=0,2,4,6
/proc/14969/task/14982/stat : 14982 (java) S 14967 14967 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10948404 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200490265440 140201514624725 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
[pid=14969/tid=14983] ppid=14967 vsize=13980732 CPUtime=0.05 cores=0,2,4,6
/proc/14969/task/14983/stat : 14983 (java) S 14967 14967 5123 0 -1 1077944384 489 0 0 0 2 3 0 0 20 0 15 0 10948408 14316269568 2625709 18446744073709551615 4194304 4196468 140732104112512 140200489212464 140201514625666 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35078144 140732104114644 140732104114819 140732104114819 140732104118223 0
Current children cumulated CPU time (s) 143.55
Current children cumulated vsize (KiB) 13990244

Child status: 1
Real time (s): 94.9715
CPU time (s): 143.636
CPU user time (s): 131.8
CPU system time (s): 11.8361
CPU usage (%): 151.241
Max. virtual memory (cumulated for all children) (KiB): 13990244

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 131.8
system time used= 11.8361
maximum resident set size= 10503460
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 228976
page faults= 0
swaps= 0
block input operations= 0
block output operations= 8
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 6521
involuntary context switches= 883

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.445629 second user time and 0.626901 second system time

The end

Launcher Data

Begin job on node130 at 2017-08-01 23:21:19
IDJOB=4254937
IDBENCH=137919
IDSOLVER=2637
FILE ID=node130/4254937-1501623314
RUNJOBID= node130-1501617182-10799
PBS_JOBID= 
Free space on /tmp= 61584 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw100/BinPacking-tab-sw100-15.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4254937-1501623314/watcher-4254937-1501623314 -o /tmp/evaluation-result-4254937-1501623314/solver-4254937-1501623314 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node130-1501617182-10799 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 517369046 HOME/instance-4254937-1501623314.xml

TIME LIMIT= 264 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 4

MD5SUM BENCH= afde4c54681b724bee939c95254967be
RANDOM SEED=517369046

node130.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.46
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.46
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.46
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.46
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        31403072 kB
MemAvailable:   31547316 kB
Buffers:           98948 kB
Cached:           328596 kB
SwapCached:            0 kB
Active:           763104 kB
Inactive:         202704 kB
Active(anon):     538556 kB
Inactive(anon):     8532 kB
Active(file):     224548 kB
Inactive(file):   194172 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             75812 kB
Writeback:             0 kB
AnonPages:        540176 kB
Mapped:            42276 kB
Shmem:              8872 kB
Slab:             107212 kB
SReclaimable:      82716 kB
SUnreclaim:        24496 kB
KernelStack:        3440 kB
PageTables:         5976 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1135340 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    430080 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      101760 kB
DirectMap2M:    33443840 kB

Free space on /tmp at the end= 61504 MiB
End job on node130 at 2017-08-01 23:22:54