Trace number 4254940

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)? 151.3 102.427

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-31.xml
MD5SUM67c04303171609b86978ceecc7dcafe8
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 benchmark252.078
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size46
Distribution of domain sizes[{"size":23,"count":1},{"size":46,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"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-4254940-1501623335.xml"  -tl '264s' -p 1 -x 3
0.00/0.27	c [HOME/instance-4254940-1501623335.xml, -tl, 264s, -p, 1, -x, 3]
0.00/0.33	c simple solver
0.00/0.40	c parse instance...
151.16/102.35	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
151.16/102.36		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
151.16/102.36		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
151.16/102.36		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
151.16/102.36		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
151.16/102.36		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
151.16/102.36		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
151.16/102.36		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
151.16/102.36		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
151.16/102.36		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
151.16/102.36		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
151.16/102.36		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
151.16/102.36		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
151.16/102.36		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
151.16/102.36		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
151.16/102.36		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
151.16/102.36		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
151.16/102.36		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
151.16/102.36		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
151.16/102.36		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
151.16/102.36		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
151.16/102.36		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
151.16/102.36	s UNKNOWN
151.16/102.36	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-4254940-1501623335/watcher-4254940-1501623335 -o /tmp/evaluation-result-4254940-1501623335/solver-4254940-1501623335 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node130-1501617182-10800 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 1512531292 HOME/instance-4254940-1501623335.xml 

pid=15043
running on 4 cores: 1,3,5,7

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.51 1.58 1.68 2/195 15046
/proc/meminfo: memFree=29577656/32770624 swapFree=0/194964
[pid=15046] ppid=15043 vsize=23672 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (runsolver) D 15043 15046 5123 0 -1 4202560 107 0 0 0 0 0 0 0 20 0 1 0 10950555 24240128 107 18446744073709551615 4194304 4338465 140730645840768 140730645838408 139967164715735 0 0 1 24578 18446744071580418449 0 0 17 5 0 0 0 0 0 6438912 6441760 29765632 140730645844060 140730645844550 140730645844550 140730645848010 0
/proc/15046/statm: 5918 107 54 36 0 2156 0

[startup+0.100018 s]
/proc/loadavg: 1.51 1.58 1.68 2/195 15046
/proc/meminfo: memFree=29577656/32770624 swapFree=0/194964
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.200342 s]
/proc/loadavg: 1.51 1.58 1.68 2/195 15046
/proc/meminfo: memFree=29577656/32770624 swapFree=0/194964
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300295 s]
/proc/loadavg: 1.51 1.58 1.68 2/195 15046
/proc/meminfo: memFree=29577656/32770624 swapFree=0/194964
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.700316 s]
/proc/loadavg: 1.51 1.58 1.68 2/195 15046
/proc/meminfo: memFree=29577656/32770624 swapFree=0/194964
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.5009 s]
/proc/loadavg: 1.51 1.58 1.68 5/211 15062
/proc/meminfo: memFree=28541000/32770624 swapFree=0/195088
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13978684 CPUtime=2.84 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 15187 0 0 0 248 36 0 0 20 0 15 0 10950564 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3494671 274643 3191 1 0 3482972 0
[pid=15048/tid=15049] ppid=15046 vsize=13978684 CPUtime=1.1 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) R 15046 15046 5123 0 -1 4202560 8781 0 0 0 92 18 0 0 20 0 15 0 10950565 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033838823552 140033469167212 0 4 1 16800974 0 0 0 -1 7 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13978684 CPUtime=0.21 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 93 0 0 0 17 4 0 0 20 0 15 0 10950565 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13978684 CPUtime=0.23 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 140 0 0 0 19 4 0 0 20 0 15 0 10950566 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13978684 CPUtime=0.23 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 108 0 0 0 19 4 0 0 20 0 15 0 10950566 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13978684 CPUtime=0.2 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 77 0 0 0 17 3 0 0 20 0 15 0 10950566 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13978684 CPUtime=0.01 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) S 15046 15046 5123 0 -1 1077944384 479 0 0 0 1 0 0 0 20 0 15 0 10950567 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033019902320 140033834596994 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 10950567 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10950568 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13978684 CPUtime=0.3 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 1489 0 0 0 30 0 0 0 20 0 15 0 10950570 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13978684 CPUtime=0.27 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 1433 0 0 0 27 0 0 0 20 0 15 0 10950570 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13978684 CPUtime=0.22 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 1289 0 0 0 22 0 0 0 20 0 15 0 10950570 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 10950574 14314172416 274643 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 2.84
Current children cumulated vsize (KiB) 13988196

[startup+3.10073 s]
/proc/loadavg: 1.55 1.59 1.68 6/211 15062
/proc/meminfo: memFree=28213396/32770624 swapFree=0/195088
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13978684 CPUtime=4.86 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 18863 0 0 0 431 55 0 0 20 0 15 0 10950564 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3494671 343177 3197 1 0 3482972 0
[pid=15048/tid=15049] ppid=15046 vsize=13978684 CPUtime=2.56 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) R 15046 15046 5123 0 -1 4202560 9612 0 0 0 235 21 0 0 20 0 15 0 10950565 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033838823664 140033469167802 0 4 1 16800974 0 0 0 -1 5 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13978684 CPUtime=0.35 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 559 0 0 0 27 8 0 0 20 0 15 0 10950565 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13978684 CPUtime=0.37 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 830 0 0 0 29 8 0 0 20 0 15 0 10950566 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13978684 CPUtime=0.37 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 774 0 0 0 29 8 0 0 20 0 15 0 10950566 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13978684 CPUtime=0.34 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 678 0 0 0 27 7 0 0 20 0 15 0 10950566 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13978684 CPUtime=0.01 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) S 15046 15046 5123 0 -1 1077944384 881 0 0 0 1 0 0 0 20 0 15 0 10950567 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033019902320 140033834596994 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 10950567 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10950568 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13978684 CPUtime=0.3 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 1489 0 0 0 30 0 0 0 20 0 15 0 10950570 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13978684 CPUtime=0.27 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 1433 0 0 0 27 0 0 0 20 0 15 0 10950570 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13978684 CPUtime=0.22 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 1289 0 0 0 22 0 0 0 20 0 15 0 10950570 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 10950574 14314172416 343177 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 4.86
Current children cumulated vsize (KiB) 13988196

[startup+6.30071 s]
/proc/loadavg: 1.55 1.59 1.68 3/211 15062
/proc/meminfo: memFree=27029264/32770624 swapFree=0/195100
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13978684 CPUtime=9.24 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 27099 0 0 0 823 101 0 0 20 0 15 0 10950564 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3494671 456465 3205 1 0 3482972 0
[pid=15048/tid=15049] ppid=15046 vsize=13978684 CPUtime=5.39 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) R 15046 15046 5123 0 -1 4202560 11508 0 0 0 516 23 0 0 20 0 15 0 10950565 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033838820576 140033819666818 0 4 1 16800974 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13978684 CPUtime=0.71 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 1461 0 0 0 53 18 0 0 20 0 15 0 10950565 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13978684 CPUtime=0.73 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 1946 0 0 0 54 19 0 0 20 0 15 0 10950566 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13978684 CPUtime=0.72 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 1993 0 0 0 54 18 0 0 20 0 15 0 10950566 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13978684 CPUtime=0.72 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 1344 0 0 0 53 19 0 0 20 0 15 0 10950566 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13978684 CPUtime=0.01 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) S 15046 15046 5123 0 -1 1077944384 1375 0 0 0 1 0 0 0 20 0 15 0 10950567 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033019902320 140033834596994 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 10950567 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10950568 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13978684 CPUtime=0.34 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 2089 0 0 0 34 0 0 0 20 0 15 0 10950570 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13978684 CPUtime=0.29 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 1816 0 0 0 29 0 0 0 20 0 15 0 10950570 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13978684 CPUtime=0.25 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 1921 0 0 0 25 0 0 0 20 0 15 0 10950570 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 349 0 0 0 0 0 0 0 20 0 15 0 10950574 14314172416 456465 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 9.24
Current children cumulated vsize (KiB) 13988196

[startup+12.7007 s]
/proc/loadavg: 1.79 1.63 1.70 3/211 15062
/proc/meminfo: memFree=25889748/32770624 swapFree=0/195112
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13978684 CPUtime=15.7 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 27484 0 0 0 1469 101 0 0 20 0 15 0 10950564 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3494671 456483 3207 1 0 3482972 0
[pid=15048/tid=15049] ppid=15046 vsize=13978684 CPUtime=11.79 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) R 15046 15046 5123 0 -1 4202560 11815 0 0 0 1156 23 0 0 20 0 15 0 10950565 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033838824568 140033468460575 0 4 1 16800974 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13978684 CPUtime=0.71 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 1461 0 0 0 53 18 0 0 20 0 15 0 10950565 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13978684 CPUtime=0.73 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 1946 0 0 0 54 19 0 0 20 0 15 0 10950566 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13978684 CPUtime=0.72 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 1993 0 0 0 54 18 0 0 20 0 15 0 10950566 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13978684 CPUtime=0.72 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 1344 0 0 0 53 19 0 0 20 0 15 0 10950566 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13978684 CPUtime=0.01 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) S 15046 15046 5123 0 -1 1077944384 1375 0 0 0 1 0 0 0 20 0 15 0 10950567 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033019902320 140033834596994 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 10950567 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 10950568 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13978684 CPUtime=0.36 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 2122 0 0 0 36 0 0 0 20 0 15 0 10950570 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13978684 CPUtime=0.32 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 1829 0 0 0 32 0 0 0 20 0 15 0 10950570 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13978684 CPUtime=0.25 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 1927 0 0 0 25 0 0 0 20 0 15 0 10950570 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13978684 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 375 0 0 0 0 0 0 0 20 0 15 0 10950574 14314172416 456483 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 15.7
Current children cumulated vsize (KiB) 13988196

[startup+25.5009 s]
/proc/loadavg: 2.04 1.69 1.72 6/211 15062
/proc/meminfo: memFree=22730040/32770624 swapFree=0/195120
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13980732 CPUtime=32.62 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 138025 0 0 0 3071 191 0 0 20 0 15 0 10950564 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3495183 721158 3212 1 0 3483484 0
[pid=15048/tid=15049] ppid=15046 vsize=13980732 CPUtime=21.97 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) R 15046 15046 5123 0 -1 4202560 14877 0 0 0 2174 23 0 0 20 0 15 0 10950565 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033838823504 140033469906977 0 4 1 16800974 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13980732 CPUtime=1.99 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 27264 0 0 0 159 40 0 0 20 0 15 0 10950565 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13980732 CPUtime=2.01 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 27958 0 0 0 160 41 0 0 20 0 15 0 10950566 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13980732 CPUtime=2 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 27720 0 0 0 159 41 0 0 20 0 15 0 10950566 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13980732 CPUtime=2 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 27256 0 0 0 159 41 0 0 20 0 15 0 10950566 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13980732 CPUtime=1.33 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) S 15046 15046 5123 0 -1 1077944384 3886 0 0 0 133 0 0 0 20 0 15 0 10950567 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033019902320 140033834596994 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 10950567 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 10950568 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13980732 CPUtime=0.48 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 2704 0 0 0 48 0 0 0 20 0 15 0 10950570 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13980732 CPUtime=0.43 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 2294 0 0 0 43 0 0 0 20 0 15 0 10950570 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13980732 CPUtime=0.3 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 2358 0 0 0 30 0 0 0 20 0 15 0 10950570 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13980732 CPUtime=0.01 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 378 0 0 0 0 1 0 0 20 0 15 0 10950574 14316269568 721158 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 32.62
Current children cumulated vsize (KiB) 13990244

[startup+51.1009 s]
/proc/loadavg: 2.10 1.73 1.73 3/211 15062
/proc/meminfo: memFree=18011736/32770624 swapFree=0/195128
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13980732 CPUtime=66.97 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 191487 0 0 0 6195 502 0 0 20 0 15 0 10950564 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3495183 1350691 3212 1 0 3483484 0
[pid=15048/tid=15049] ppid=15046 vsize=13980732 CPUtime=44.32 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) R 15046 15046 5123 0 -1 4202560 47132 0 0 0 4408 24 0 0 20 0 15 0 10950565 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033838823952 140033469976606 0 4 1 16800974 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13980732 CPUtime=4.92 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 30711 0 0 0 373 119 0 0 20 0 15 0 10950565 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13980732 CPUtime=4.93 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 34192 0 0 0 378 115 0 0 20 0 15 0 10950566 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13980732 CPUtime=4.91 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 30645 0 0 0 381 110 0 0 20 0 15 0 10950566 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13980732 CPUtime=4.89 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 30113 0 0 0 363 126 0 0 20 0 15 0 10950566 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13980732 CPUtime=1.65 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) S 15046 15046 5123 0 -1 1077944384 8744 0 0 0 164 1 0 0 20 0 15 0 10950567 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033019902320 140033834596994 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 10950567 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 10950568 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13980732 CPUtime=0.49 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 2941 0 0 0 49 0 0 0 20 0 15 0 10950570 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13980732 CPUtime=0.44 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 2762 0 0 0 44 0 0 0 20 0 15 0 10950570 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13980732 CPUtime=0.3 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 2492 0 0 0 30 0 0 0 20 0 15 0 10950570 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13980732 CPUtime=0.03 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 425 0 0 0 1 2 0 0 20 0 15 0 10950574 14316269568 1350691 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 66.97
Current children cumulated vsize (KiB) 13990244

[startup+102.301 s]
/proc/loadavg: 2.25 1.84 1.77 3/211 15220
/proc/meminfo: memFree=20005480/32770624 swapFree=0/195236
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=13980732 CPUtime=151.16 cores=1,3,5,7
/proc/15048/stat : 15048 (java) S 15046 15046 5123 0 -1 1077944320 351328 0 0 0 13920 1196 0 0 20 0 15 0 10950564 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140724303669232 140033834585847 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
/proc/15048/statm: 3495183 2837172 3212 1 0 3483484 0
[pid=15048/tid=15049] ppid=15046 vsize=13980732 CPUtime=82.96 cores=1,3,5,7
/proc/15048/task/15049/stat : 15049 (java) S 15046 15046 5123 0 -1 1077944384 48144 0 0 0 8271 25 0 0 20 0 15 0 10950565 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033838824064 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 3 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15050] ppid=15046 vsize=13980732 CPUtime=15.93 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) S 15046 15046 5123 0 -1 1077944384 115221 0 0 0 1317 276 0 0 20 0 15 0 10950565 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033791552656 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15051] ppid=15046 vsize=13980732 CPUtime=15.96 cores=1,3,5,7
/proc/15048/task/15051/stat : 15051 (java) S 15046 15046 5123 0 -1 1077944384 44526 0 0 0 1306 290 0 0 20 0 15 0 10950566 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033790499856 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15052] ppid=15046 vsize=13980732 CPUtime=15.93 cores=1,3,5,7
/proc/15048/task/15052/stat : 15052 (java) S 15046 15046 5123 0 -1 1077944384 44777 0 0 0 1310 283 0 0 20 0 15 0 10950566 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033789447056 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15053] ppid=15046 vsize=13980732 CPUtime=15.89 cores=1,3,5,7
/proc/15048/task/15053/stat : 15053 (java) S 15046 15046 5123 0 -1 1077944384 72872 0 0 0 1278 311 0 0 20 0 15 0 10950566 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033788394256 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15054] ppid=15046 vsize=13980732 CPUtime=3.09 cores=1,3,5,7
/proc/15048/task/15054/stat : 15054 (java) R 15046 15046 5123 0 -1 4202560 15557 0 0 0 307 2 0 0 20 0 15 0 10950567 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033019900880 140033819043478 0 0 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15055] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15055/stat : 15055 (java) S 15046 15046 5123 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 10950567 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033018848352 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15056] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15056/stat : 15056 (java) S 15046 15046 5123 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 10950568 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033017795456 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15057] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15057/stat : 15057 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033016743760 140033834604443 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15058] ppid=15046 vsize=13980732 CPUtime=0.49 cores=1,3,5,7
/proc/15048/task/15058/stat : 15058 (java) S 15046 15046 5123 0 -1 1077944384 2948 0 0 0 49 0 0 0 20 0 15 0 10950570 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033015692144 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15059] ppid=15046 vsize=13980732 CPUtime=0.44 cores=1,3,5,7
/proc/15048/task/15059/stat : 15059 (java) S 15046 15046 5123 0 -1 1077944384 2768 0 0 0 44 0 0 0 20 0 15 0 10950570 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033014639344 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15060] ppid=15046 vsize=13980732 CPUtime=0.31 cores=1,3,5,7
/proc/15048/task/15060/stat : 15060 (java) S 15046 15046 5123 0 -1 1077944384 2736 0 0 0 31 0 0 0 20 0 15 0 10950570 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033013586544 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15061] ppid=15046 vsize=13980732 CPUtime=0 cores=1,3,5,7
/proc/15048/task/15061/stat : 15061 (java) S 15046 15046 5123 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 10950570 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033012533984 140033834596053 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
[pid=15048/tid=15062] ppid=15046 vsize=13980732 CPUtime=0.06 cores=1,3,5,7
/proc/15048/task/15062/stat : 15062 (java) S 15046 15046 5123 0 -1 1077944384 450 0 0 0 2 4 0 0 20 0 15 0 10950574 14316269568 2837172 18446744073709551615 4194304 4196468 140724303686688 140033011481264 140033834596994 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14139392 140724303688148 140724303688323 140724303688323 140724303691727 0
Current children cumulated CPU time (s) 151.16
Current children cumulated vsize (KiB) 13990244

Solver just ended.
??? exit watcher main loop
??? sigkill at end of watcher main loop
??? kill 15048 sig 9
??? kill 15046 sig 9
??? end of watcher thread
Dumping a history of the last processes samples

[startup+102.407 s]
/proc/loadavg: 2.25 1.84 1.77 3/211 15220
/proc/meminfo: memFree=20005480/32770624 swapFree=0/195236
[pid=15046] ppid=15043 vsize=9512 CPUtime=0 cores=1,3,5,7
/proc/15046/stat : 15046 (xcsp3-exec) S 15043 15046 5123 0 -1 4202496 510 0 0 0 0 0 0 0 20 0 1 0 10950555 9740288 345 18446744073709551615 4194304 5098028 140726567581744 140726567579848 139722991661692 0 65536 5 65538 18446744071579417331 0 0 17 7 0 0 9 0 0 7196144 7232144 36102144 140726567588251 140726567588455 140726567588455 140726567591915 0
/proc/15046/statm: 2378 345 289 221 0 87 0
[pid=15048] ppid=15046 vsize=0 CPUtime=151.27 cores=1,3,5,7
/proc/15048/stat : 15048 (java) Z 15046 15046 5123 0 -1 4227084 352273 0 0 0 13926 1201 0 0 20 0 2 0 10950564 0 0 18446744073709551615 0 0 0 0 0 0 0 1 16800974 18446744073709551615 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0
/proc/15048/statm: 0 0 0 0 0 0 0
[pid=15048/tid=15050] ppid=15046 vsize=0 CPUtime=15.98 cores=1,3,5,7
/proc/15048/task/15050/stat : 15050 (java) R 15046 15046 5123 0 -1 4203588 115221 0 0 0 1317 281 0 0 20 0 2 0 10950565 0 0 18446744073709551615 0 0 0 0 0 0 4 1 16800974 18446744073709551615 0 0 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 151.27
Current children cumulated vsize (KiB) 9512

Child status: 1
Real time (s): 102.427
CPU time (s): 151.3
CPU user time (s): 139.263
CPU system time (s): 12.0371
CPU usage (%): 147.716
Max. virtual memory (cumulated for all children) (KiB): 13990244

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 139.263
system time used= 12.0371
maximum resident set size= 11348988
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 352794
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= 10100
involuntary context switches= 681

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.38325 second user time and 0.854384 second system time

The end

Launcher Data

Begin job on node130 at 2017-08-01 23:21:41
IDJOB=4254940
IDBENCH=138074
IDSOLVER=2637
FILE ID=node130/4254940-1501623335
RUNJOBID= node130-1501617182-10800
PBS_JOBID= 
Free space on /tmp= 61512 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-31.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-4254940-1501623335/watcher-4254940-1501623335 -o /tmp/evaluation-result-4254940-1501623335/solver-4254940-1501623335 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node130-1501617182-10800 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 1512531292 HOME/instance-4254940-1501623335.xml

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

MD5SUM BENCH= 67c04303171609b86978ceecc7dcafe8
RANDOM SEED=1512531292

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:        29577396 kB
MemAvailable:   29798752 kB
Buffers:           99044 kB
Cached:           404776 kB
SwapCached:            0 kB
Active:          2583308 kB
Inactive:         203496 kB
Active(anon):    2283404 kB
Inactive(anon):     8532 kB
Active(file):     299904 kB
Inactive(file):   194964 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             83044 kB
Writeback:             4 kB
AnonPages:       2283100 kB
Mapped:            42204 kB
Shmem:              8872 kB
Slab:             109408 kB
SReclaimable:      84644 kB
SUnreclaim:        24764 kB
KernelStack:        3408 kB
PageTables:         9124 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    3895072 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2131968 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= 61572 MiB
End job on node130 at 2017-08-01 23:23:23