Trace number 4271961

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)? 174.50301 125.204

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-10.xml
MD5SUM67f07639019614dd1d008c87f8253383
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark1
Best CPU time to get the best result obtained on this benchmark679.95697
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.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4271961-1502845458.xml"  -tl '2520s' -p 1 -x 3
0.12/0.14	c [HOME/instance-4271961-1502845458.xml, -tl, 2520s, -p, 1, -x, 3]
0.12/0.20	c simple solver
0.34/0.26	c parse instance...
174.19/124.99	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
174.19/124.99		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
174.19/124.99		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
174.19/124.99		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
174.19/124.99		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
174.19/124.99		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
174.19/124.99		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
174.19/124.99		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
174.19/124.99		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
174.19/124.99		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
174.19/124.99		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
174.19/124.99		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
174.19/124.99		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
174.19/124.99		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
174.19/124.99		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
174.19/124.99		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
174.19/124.99		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
174.19/124.99		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
174.19/124.99		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
174.19/124.99		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
174.19/124.99		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
174.19/124.99		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
174.19/124.99	s UNKNOWN
174.19/124.99	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

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.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (15075 MiB free)
  memory of node 1: 16384 MiB (15229 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4271961-1502845458/watcher-4271961-1502845458 -o /tmp/evaluation-result-4271961-1502845458/solver-4271961-1502845458 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node103-1502842139-30798 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 640718176 HOME/instance-4271961-1502845458.xml 

running on 4 cores: 0,2,4,6

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 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
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB
solver pid=30984, runsolver pid=30981


[startup+0.100094 s]*
/proc/loadavg: 1.47 1.55 2.06 3/218 31000
/proc/meminfo: memFree=31015164/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13978596 memory=27964 CPUtime=0.12 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 5343 0 0 0 11 1 0 0 20 0 15 0 117634077 14314082304 6991 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3494649 6991 2866 1 0 3482966 0
[pid=30986/tid=30987] ppid=30984 vsize=13978596 memory=8514701219881125282 CPUtime=0.09 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) R 30984 30984 30767 0 -1 4202560 3350 0 0 0 8 1 0 0 20 0 15 0 117634077 14314082304 6991 33554432000 4194304 4196468 140728955948784 139764993406768 139764989185430 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13978596 memory=3472467908915221712 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14314082304 6991 33554432000 4194304 4196468 140728955948784 139764947934096 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13978596 memory=139780020070016 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14314082304 6991 33554432000 4194304 4196468 140728955948784 139764584233744 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13978596 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14314082304 6991 33554432000 4194304 4196468 140728955948784 139764583181456 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13978596 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) S 30984 30984 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117634078 14314082304 6991 33554432000 4194304 4196468 140728955948784 139764582128656 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13978596 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) S 30984 30984 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117634079 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763901470832 139764989184642 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13978596 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117634080 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763900416800 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13978596 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117634080 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763899364464 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13978596 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13978596 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 297 0 0 0 0 0 0 0 20 0 15 0 117634082 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763897260656 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13978596 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 124 0 0 0 0 0 0 0 20 0 15 0 117634082 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763896207856 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13978596 memory=139780020070016 CPUtime=0.01 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 269 0 0 0 1 0 0 0 20 0 15 0 117634082 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763895155568 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13978596 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13978596 memory=139780020070016 CPUtime=0 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634083 14314082304 6991 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29348 KiB

[startup+0.210647 s]*
/proc/loadavg: 1.47 1.55 2.06 4/218 31000
/proc/meminfo: memFree=31003116/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13982852 memory=40332 CPUtime=0.34 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 8169 0 0 0 31 3 0 0 20 0 15 0 117634077 14318440448 10083 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3495713 10083 3041 1 0 3482966 0
[pid=30986/tid=30987] ppid=30984 vsize=13982852 memory=5853394889045019040 CPUtime=0.2 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) R 30984 30984 30767 0 -1 4202560 5259 0 0 0 18 2 0 0 20 0 15 0 117634077 14318440448 10083 33554432000 4194304 4196468 140728955948784 139764993388912 139764989195421 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13982852 memory=3472467908915221712 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 10083 33554432000 4194304 4196468 140728955948784 139764947934096 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13982852 memory=139780020070016 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 10083 33554432000 4194304 4196468 140728955948784 139764584233744 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13982852 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 10083 33554432000 4194304 4196468 140728955948784 139764583181456 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13982852 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) S 30984 30984 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 10083 33554432000 4194304 4196468 140728955948784 139764582128656 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13982852 memory=139780020070016 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) S 30984 30984 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117634079 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763901470832 139764989184642 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13982852 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117634080 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763900416800 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13982852 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117634080 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763899364464 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13982852 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13982852 memory=0 CPUtime=0.02 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 383 0 0 0 2 0 0 0 20 0 15 0 117634082 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763897260656 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13982852 memory=-1 CPUtime=0.02 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 443 0 0 0 2 0 0 0 20 0 15 0 117634082 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763896207856 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13982852 memory=139780020070016 CPUtime=0.07 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) R 30984 30984 30767 0 -1 4202560 781 0 0 0 7 0 0 0 20 0 15 0 117634082 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763895153104 139764989185430 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13982852 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13982852 memory=139780020070016 CPUtime=0 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634083 14318440448 10083 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 41716 KiB

[startup+0.318826 s]*
/proc/loadavg: 1.47 1.55 2.06 6/218 31000
/proc/meminfo: memFree=30997160/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13982852 memory=47792 CPUtime=0.52 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 9077 0 0 0 49 3 0 0 20 0 15 0 117634077 14318440448 11948 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3495713 11948 3129 1 0 3482966 0
[pid=30986/tid=30987] ppid=30984 vsize=13982852 memory=5853961137533323680 CPUtime=0.3 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) R 30984 30984 30767 0 -1 4202560 5915 0 0 0 28 2 0 0 20 0 15 0 117634077 14318440448 11948 33554432000 4194304 4196468 140728955948784 139764993408608 139764989195421 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13982852 memory=3472467908915221712 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 11948 33554432000 4194304 4196468 140728955948784 139764947934096 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13982852 memory=139780020100706 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 11948 33554432000 4194304 4196468 140728955948784 139764584233744 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13982852 memory=139779912119359 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 11948 33554432000 4194304 4196468 140728955948784 139764583181456 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13982852 memory=139779912102351 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) S 30984 30984 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117634078 14318440448 11948 33554432000 4194304 4196468 140728955948784 139764582128656 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13982852 memory=139780020100810 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) S 30984 30984 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117634079 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763901470832 139764989184642 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13982852 memory=139779912093135 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117634080 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763900416800 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13982852 memory=279559824200080 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117634080 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763899364464 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13982852 memory=279559824188528 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13982852 memory=0 CPUtime=0.04 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) R 30984 30984 30767 0 -1 4202560 403 0 0 0 4 0 0 0 20 0 15 0 117634082 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763897260656 139764982158537 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13982852 memory=2240 CPUtime=0.04 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) R 30984 30984 30767 0 -1 4202560 613 0 0 0 4 0 0 0 20 0 15 0 117634082 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763896207856 139764973166109 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13982852 memory=139780020070016 CPUtime=0.12 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 843 0 0 0 12 0 0 0 20 0 15 0 117634082 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763895155568 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13982852 memory=2208 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13982852 memory=139780020070016 CPUtime=0 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634083 14318440448 11948 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 49176 KiB

[startup+0.701227 s]
/proc/loadavg: 1.47 1.55 2.06 6/218 31000
/proc/meminfo: memFree=30827340/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13982928 memory=337320 CPUtime=1.32 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 10869 0 0 0 106 26 0 0 20 0 15 0 117634077 14318518272 84330 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3495732 84330 3184 1 0 3482966 0
[pid=30986/tid=30987] ppid=30984 vsize=13982928 memory=1420 CPUtime=0.59 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) S 30984 30984 30767 0 -1 1077944384 6244 0 0 0 53 6 0 0 20 0 15 0 117634077 14318518272 84330 33554432000 4194304 4196468 140728955948784 139764993410976 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13982928 memory=13040 CPUtime=0.07 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) R 30984 30984 30767 0 -1 4202560 78 0 0 0 3 4 0 0 20 0 15 0 117634078 14318518272 84330 33554432000 4194304 4196468 140728955948784 139764947934096 139764982276212 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13982928 memory=1944 CPUtime=0.07 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) R 30984 30984 30767 0 -1 4202560 114 0 0 0 3 4 0 0 20 0 15 0 117634078 14318518272 84330 33554432000 4194304 4196468 140728955948784 139764584233744 139764982276212 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13982928 memory=0 CPUtime=0.06 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) R 30984 30984 30767 0 -1 4202560 108 0 0 0 3 3 0 0 20 0 15 0 117634078 14318518272 84330 33554432000 4194304 4196468 140728955948784 139764583181456 139764982276548 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13982928 memory=279559824279360 CPUtime=0.07 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) R 30984 30984 30767 0 -1 4202560 123 0 0 0 3 4 0 0 20 0 15 0 117634078 14318518272 84330 33554432000 4194304 4196468 140728955948784 139764582128856 139764982276488 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13982928 memory=139779912150500 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) S 30984 30984 30767 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 117634079 14318518272 84330 33554432000 4194304 4196468 140728955948784 139763901469344 139764989183701 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13982928 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 117634080 14318518272 84330 33554432000 4194304 4196468 140728955948784 139763900416800 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13982928 memory=15876 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 117634080 14318518272 84330 33554432000 4194304 4196468 140728955948784 139763899364464 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13982928 memory=6297835844906604903 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14318518272 84842 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13982928 memory=3791 CPUtime=0.13 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 1073 0 0 0 13 0 0 0 20 0 15 0 117634082 14318518272 84842 33554432000 4194304 4196468 140728955948784 139763897260656 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13982928 memory=4 CPUtime=0.08 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 697 0 0 0 8 0 0 0 20 0 15 0 117634082 14318518272 84842 33554432000 4194304 4196468 140728955948784 139763896207856 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13982928 memory=7023 CPUtime=0.17 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 1049 0 0 0 17 0 0 0 20 0 15 0 117634082 14318518272 84842 33554432000 4194304 4196468 140728955948784 139763895155568 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13982928 memory=370 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14318518272 84842 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13982928 memory=0 CPUtime=0 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117634083 14318518272 84842 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 1.32 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 338704 KiB

[startup+1.50091 s]
/proc/loadavg: 1.47 1.55 2.06 9/219 31005
/proc/meminfo: memFree=29931488/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0

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

/proc/30986/task/30989/stat : 30989 (java) R 30984 30984 30767 0 -1 4202560 190112 0 0 0 1175 178 0 0 20 0 15 0 117634078 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139764584233864 139764981801703 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13984976 memory=288230574492221466 CPUtime=13.67 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) R 30984 30984 30767 0 -1 4202560 181530 0 0 0 1181 186 0 0 20 0 15 0 117634078 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139764583181264 139764981801703 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13984976 memory=288230613214036277 CPUtime=13.68 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) R 30984 30984 30767 0 -1 4202560 302357 0 0 0 1179 189 0 0 20 0 15 0 117634078 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139764582128776 139764981801703 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13984976 memory=16106991470774530 CPUtime=2.6 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) S 30984 30984 30767 0 -1 1077944384 26742 0 0 0 257 3 0 0 20 0 15 0 117634079 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763901469392 139764989183701 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13984976 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763900416864 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13984976 memory=9960584 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763899364480 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13984976 memory=928 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13984976 memory=1568 CPUtime=0.51 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 3393 0 0 0 51 0 0 0 20 0 15 0 117634082 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763897260704 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13984976 memory=2240 CPUtime=0.4 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 2567 0 0 0 40 0 0 0 20 0 15 0 117634082 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763896207616 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13984976 memory=4128 CPUtime=0.31 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 2740 0 0 0 31 0 0 0 20 0 15 0 117634082 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763895155616 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13984976 memory=2204 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13984976 memory=11416124 CPUtime=0.08 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 459 0 0 0 3 5 0 0 20 0 15 0 117634083 14320615424 2854352 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 163.69 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11418792 KiB

[startup+123.201 s]
/proc/loadavg: 2.41 1.82 2.09 3/218 31084
/proc/meminfo: memFree=10678000/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13984976 memory=11417440 CPUtime=168.45 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 1572490 0 0 0 16034 811 0 0 20 0 15 0 117634077 14320615424 2854360 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3496244 2854360 3248 1 0 3483478 0
[pid=30986/tid=30987] ppid=30984 vsize=13984976 memory=0 CPUtime=105.1 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) S 30984 30984 30767 0 -1 1077944384 119500 0 0 0 10458 52 0 0 20 0 15 0 117634077 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139764993411712 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13984976 memory=1724 CPUtime=14.83 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) S 30984 30984 30767 0 -1 1077944384 739875 0 0 0 1287 196 0 0 20 0 15 0 117634078 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139764947934096 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13984976 memory=1012 CPUtime=14.57 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) S 30984 30984 30767 0 -1 1077944384 190112 0 0 0 1279 178 0 0 20 0 15 0 117634078 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139764584233744 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13984976 memory=1716 CPUtime=14.72 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) S 30984 30984 30767 0 -1 1077944384 181530 0 0 0 1286 186 0 0 20 0 15 0 117634078 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139764583181456 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13984976 memory=6791534058613427641 CPUtime=14.74 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) S 30984 30984 30767 0 -1 1077944384 302357 0 0 0 1285 189 0 0 20 0 15 0 117634078 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139764582128656 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13984976 memory=6944652177228980320 CPUtime=3.1 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) R 30984 30984 30767 0 -1 4202560 28609 0 0 0 307 3 0 0 20 0 15 0 117634079 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763901469280 139764974169862 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13984976 memory=6943526294502006880 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763900416864 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13984976 memory=-7740096080597194087 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763899364480 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13984976 memory=6764 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13984976 memory=840 CPUtime=0.51 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 3393 0 0 0 51 0 0 0 20 0 15 0 117634082 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763897260704 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13984976 memory=4104 CPUtime=0.4 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 2567 0 0 0 40 0 0 0 20 0 15 0 117634082 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763896207616 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13984976 memory=736 CPUtime=0.31 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 2740 0 0 0 31 0 0 0 20 0 15 0 117634082 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763895155616 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13984976 memory=1696 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13984976 memory=920 CPUtime=0.08 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 459 0 0 0 3 5 0 0 20 0 15 0 117634083 14320615424 2854360 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 168.45 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11418824 KiB

[startup+124.001 s]*
/proc/loadavg: 2.41 1.82 2.09 6/218 31084
/proc/meminfo: memFree=10157936/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13984976 memory=11417820 CPUtime=171.12 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 1574592 0 0 0 16300 812 0 0 20 0 15 0 117634077 14320615424 2854455 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3496244 2854455 3248 1 0 3483478 0
[pid=30986/tid=30987] ppid=30984 vsize=13984976 memory=4128 CPUtime=105.1 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) S 30984 30984 30767 0 -1 1077944384 119587 0 0 0 10458 52 0 0 20 0 15 0 117634077 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139764993411712 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13984976 memory=1384 CPUtime=15.44 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) S 30984 30984 30767 0 -1 1077944384 740933 0 0 0 1348 196 0 0 20 0 15 0 117634078 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139764947934096 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13984976 memory=-7003737579269690708 CPUtime=15.19 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) S 30984 30984 30767 0 -1 1077944384 190112 0 0 0 1341 178 0 0 20 0 15 0 117634078 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139764584233744 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13984976 memory=2336 CPUtime=15.34 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) S 30984 30984 30767 0 -1 1077944384 182480 0 0 0 1348 186 0 0 20 0 15 0 117634078 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139764583181456 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13984976 memory=1724 CPUtime=15.36 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) S 30984 30984 30767 0 -1 1077944384 302357 0 0 0 1347 189 0 0 20 0 15 0 117634078 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139764582128656 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13984976 memory=1012 CPUtime=3.29 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) R 30984 30984 30767 0 -1 4202560 28614 0 0 0 326 3 0 0 20 0 15 0 117634079 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763901469264 139764967543675 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13984976 memory=1716 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763900416864 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13984976 memory=5792 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763899364480 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13984976 memory=4616 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13984976 memory=792 CPUtime=0.51 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 3393 0 0 0 51 0 0 0 20 0 15 0 117634082 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763897260656 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13984976 memory=1420 CPUtime=0.4 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 2567 0 0 0 40 0 0 0 20 0 15 0 117634082 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763896207856 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13984976 memory=13040 CPUtime=0.31 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 2740 0 0 0 31 0 0 0 20 0 15 0 117634082 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763895155568 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13984976 memory=1944 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13984976 memory=1196 CPUtime=0.08 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 459 0 0 0 3 5 0 0 20 0 15 0 117634083 14320615424 2854455 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 171.12 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11419204 KiB

[startup+124.801 s]
/proc/loadavg: 2.41 1.82 2.09 6/218 31084
/proc/meminfo: memFree=10157936/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
[pid=30986] ppid=30984 vsize=13984976 memory=11417848 CPUtime=174.03 cores=0,2,4,6
/proc/30986/stat : 30986 (java) S 30984 30984 30767 0 -1 1077944320 1575119 0 0 0 16591 812 0 0 20 0 15 0 117634077 14320615424 2854462 33554432000 4194304 4196468 140728955948784 140728955931328 139764989173495 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
/proc/30986/statm: 3496244 2854462 3248 1 0 3483478 0
[pid=30986/tid=30987] ppid=30984 vsize=13984976 memory=1296 CPUtime=105.1 cores=0,2,4,6
/proc/30986/task/30987/stat : 30987 (java) S 30984 30984 30767 0 -1 1077944384 119587 0 0 0 10458 52 0 0 20 0 15 0 117634077 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139764993411712 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30988] ppid=30984 vsize=13984976 memory=2336 CPUtime=16.14 cores=0,2,4,6
/proc/30986/task/30988/stat : 30988 (java) R 30984 30984 30767 0 -1 4202560 740933 0 0 0 1418 196 0 0 20 0 15 0 117634078 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139764947934096 139764981801703 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30989] ppid=30984 vsize=13984976 memory=18476 CPUtime=15.9 cores=0,2,4,6
/proc/30986/task/30989/stat : 30989 (java) R 30984 30984 30767 0 -1 4202560 190137 0 0 0 1412 178 0 0 20 0 15 0 117634078 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139764584233744 139764974169896 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30990] ppid=30984 vsize=13984976 memory=18616 CPUtime=16.05 cores=0,2,4,6
/proc/30986/task/30990/stat : 30990 (java) R 30984 30984 30767 0 -1 4202560 182961 0 0 0 1419 186 0 0 20 0 15 0 117634078 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139764583181656 139764974170048 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30991] ppid=30984 vsize=13984976 memory=4040 CPUtime=16.07 cores=0,2,4,6
/proc/30986/task/30991/stat : 30991 (java) R 30984 30984 30767 0 -1 4202560 302378 0 0 0 1418 189 0 0 20 0 15 0 117634078 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139764582128776 139764981801703 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30992] ppid=30984 vsize=13984976 memory=1236 CPUtime=3.36 cores=0,2,4,6
/proc/30986/task/30992/stat : 30992 (java) S 30984 30984 30767 0 -1 1077944384 28614 0 0 0 333 3 0 0 20 0 15 0 117634079 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763901469392 139764989183701 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30993] ppid=30984 vsize=13984976 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30993/stat : 30993 (java) S 30984 30984 30767 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763900416864 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30994] ppid=30984 vsize=13984976 memory=11417688 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30994/stat : 30994 (java) S 30984 30984 30767 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 117634080 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763899364480 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30995] ppid=30984 vsize=13984976 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30995/stat : 30995 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634082 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763898312784 139764989192091 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30996] ppid=30984 vsize=13984976 memory=15876 CPUtime=0.51 cores=0,2,4,6
/proc/30986/task/30996/stat : 30996 (java) S 30984 30984 30767 0 -1 1077944384 3393 0 0 0 51 0 0 0 20 0 15 0 117634082 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763897260656 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30997] ppid=30984 vsize=13984976 memory=11417848 CPUtime=0.4 cores=0,2,4,6
/proc/30986/task/30997/stat : 30997 (java) S 30984 30984 30767 0 -1 1077944384 2567 0 0 0 40 0 0 0 20 0 15 0 117634082 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763896207856 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30998] ppid=30984 vsize=13984976 memory=1384 CPUtime=0.31 cores=0,2,4,6
/proc/30986/task/30998/stat : 30998 (java) S 30984 30984 30767 0 -1 1077944384 2740 0 0 0 31 0 0 0 20 0 15 0 117634082 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763895155568 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=30999] ppid=30984 vsize=13984976 memory=11417408 CPUtime=0 cores=0,2,4,6
/proc/30986/task/30999/stat : 30999 (java) S 30984 30984 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117634083 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763894103008 139764989183701 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
[pid=30986/tid=31000] ppid=30984 vsize=13984976 memory=18616 CPUtime=0.08 cores=0,2,4,6
/proc/30986/task/31000/stat : 31000 (java) S 30984 30984 30767 0 -1 1077944384 459 0 0 0 3 5 0 0 20 0 15 0 117634083 14320615424 2854462 33554432000 4194304 4196468 140728955948784 139763893049776 139764989184642 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25051136 140728955950231 140728955950407 140728955950407 140728955953103 0
Current children cumulated CPU time: 174.03 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11419232 KiB

[startup+125.2 s]
/proc/loadavg: 2.86 1.93 2.12 6/205 31085
/proc/meminfo: memFree=10568164/32770624 swapFree=67108860/67108860
[pid=30984] ppid=30981 vsize=9512 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/30984/stat : 30984 (xcsp3-exec) S 30981 30984 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117634077 9740288 346 33554432000 4194304 5098028 140734266594464 140734266592568 140155695698556 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 14622720 140734266598511 140734266598715 140734266598715 140734266601451 0
/proc/30984/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1384 KiB

Child status: 1
Real time (s): 125.204
CPU time (s): 174.503
CPU user time (s): 166.17
CPU system time (s): 8.33321
CPU usage (%): 139.375
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11419232

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 166.17
system time used= 8.3332
maximum resident set size= 11418268
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 1575875
page faults= 0
swaps= 0
block input operations= 0
block output operations= 272
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 40052
involuntary context switches= 835


# summary of solver processes directly reported to runsolver:
#   pid: 30984
#   total CPU time (s): 174.503
#   total CPU user time (s): 166.17
#   total CPU system time (s): 8.33321

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.872436 second user time and 1.30958 second system time

The end

Launcher Data

Begin job on node103 at 2017-08-16 02:50:00
IDJOB=4271961
IDBENCH=138054
IDSOLVER=2664
FILE ID=node103/4271961-1502845458
RUNJOBID= node103-1502842139-30798
PBS_JOBID= 20629857
Free space on /tmp= 61704 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-10.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-4271961-1502845458/watcher-4271961-1502845458 -o /tmp/evaluation-result-4271961-1502845458/solver-4271961-1502845458 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node103-1502842139-30798 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 640718176 HOME/instance-4271961-1502845458.xml

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

MD5SUM BENCH= 67f07639019614dd1d008c87f8253383
RANDOM SEED=640718176

node103.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.56
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.56
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.56
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.56
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:        31031836 kB
MemAvailable:   31647160 kB
Buffers:          195332 kB
Cached:           705792 kB
SwapCached:            0 kB
Active:          1048484 kB
Inactive:         247564 kB
Active(anon):     344528 kB
Inactive(anon):    78576 kB
Active(file):     703956 kB
Inactive(file):   168988 kB
Unevictable:        6448 kB
Mlocked:            6448 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             97704 kB
Writeback:             0 kB
AnonPages:        401600 kB
Mapped:            58916 kB
Shmem:             25260 kB
Slab:             142592 kB
SReclaimable:     116432 kB
SUnreclaim:        26160 kB
KernelStack:        3520 kB
PageTables:         6428 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1024344 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    329728 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      114048 kB
DirectMap2M:    33431552 kB

Free space on /tmp at the end= 61620 MiB
End job on node103 at 2017-08-16 02:52:05