Trace number 4281771

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 4.0.5 seq (2017-08-18)? 164.959 123.713

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.09	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4281771-1503156598.xml"  -tl '2520s' -p 1 -x 0
0.05/0.30	c [HOME/instance-4281771-1503156598.xml, -tl, 2520s, -p, 1, -x, 0]
0.23/0.36	c simple solver
0.40/0.43	c parse instance...
164.63/123.50	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
164.73/123.50		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
164.73/123.50		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
164.73/123.50		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1867)
164.73/123.50		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1823)
164.73/123.50		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
164.73/123.50		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
164.73/123.50		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
164.73/123.50		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
164.73/123.50		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
164.73/123.50		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
164.73/123.50		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
164.73/123.50		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
164.73/123.50		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
164.73/123.50		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
164.73/123.50		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
164.73/123.50		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
164.73/123.50		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
164.73/123.50		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
164.73/123.50		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
164.73/123.50		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
164.73/123.50		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
164.73/123.50	s UNKNOWN
164.73/123.50	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 (9102 MiB free)
  memory of node 1: 16384 MiB (14077 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4281771-1503156598/watcher-4281771-1503156598 -o /tmp/evaluation-result-4281771-1503156598/solver-4281771-1503156598 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node125-1503095795-8622 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 1352473837 HOME/instance-4281771-1503156598.xml 

running on 4 cores: 1,3,5,7

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=22650, runsolver pid=22647

[startup+0.10013 s]*
/proc/loadavg: 1.93 1.84 1.78 3/198 22653
/proc/meminfo: memFree=23735236/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13358712 memory=12520 CPUtime=0 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 2876 0 0 0 0 0 0 0 20 0 6 0 117880401 13679321088 3130 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16784584 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3339678 3130 1579 1 0 3329175 0
[pid=22652/tid=22653] ppid=22650 vsize=13358712 memory=-8713483618642852700 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) R 22650 22650 8563 0 -1 4202560 1713 0 0 0 0 0 0 0 20 0 6 0 117880401 13679321088 3196 18446744073709551615 4194304 4196468 140721589214912 140523209273936 140523166019446 0 4 1 16784584 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13358712 memory=-8458152057954561420 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) S 22650 22650 8563 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 6 0 117880402 13679321088 3196 18446744073709551615 4194304 4196468 140721589214912 140523146984080 140523205048021 0 4 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13358712 memory=140431113651840 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 6 0 117880402 13679321088 3196 18446744073709551615 4194304 4196468 140721589214912 140523145931280 140523205048021 0 4 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13358712 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 6 0 117880402 13679321088 3196 18446744073709551615 4194304 4196468 140721589214912 140523144878480 140523205048021 0 4 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13358712 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 6 0 117880402 13679321088 3196 18446744073709551615 4194304 4196468 140721589214912 140523143825680 140523205048021 0 4 1 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 13368224 KiB
Current children cumulated memory: 13900 KiB

[startup+0.209783 s]*
/proc/loadavg: 1.93 1.84 1.78 2/210 22665
/proc/meminfo: memFree=23725240/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13907304 memory=21148 CPUtime=0.05 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 4735 0 0 0 5 0 0 0 20 0 14 0 117880401 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3476826 5287 2537 1 0 3466323 0
[pid=22652/tid=22653] ppid=22650 vsize=13907304 memory=-6871798056524144002 CPUtime=0.04 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) R 22650 22650 8563 0 -1 4202560 2908 0 0 0 4 0 0 0 20 0 14 0 117880401 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140523209275296 140523205059837 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13907304 memory=-8458152057954561420 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) S 22650 22650 8563 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 14 0 117880402 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140523146984080 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13907304 memory=140431113651840 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 14 0 117880402 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140523145931280 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13907304 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 14 0 117880402 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140523144878480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13907304 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 14 0 117880402 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140523143825680 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13907304 memory=140431113651840 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) S 22650 22650 8563 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 14 0 117880403 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522323241840 140523205048962 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13907304 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 14 0 117880403 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522322187808 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13907304 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 14 0 117880404 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522321134960 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13907304 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 14 0 117880406 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13907304 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 29 0 0 0 0 0 0 0 20 0 14 0 117880406 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522319030640 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13907304 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 280 0 0 0 0 0 0 0 20 0 14 0 117880406 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522317977840 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13907304 memory=140431113651840 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 215 0 0 0 0 0 0 0 20 0 14 0 117880406 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522316925040 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13907304 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 14 0 117880406 14241079296 5287 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 0.05 s
Current children cumulated vsize: 13916816 KiB
Current children cumulated memory: 22528 KiB

[startup+0.311529 s]*
/proc/loadavg: 1.93 1.84 1.78 3/211 22666
/proc/meminfo: memFree=23715132/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13974352 memory=34460 CPUtime=0.23 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 8690 0 0 0 21 2 0 0 20 0 15 0 117880401 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3493588 8615 2974 1 0 3482964 0
[pid=22652/tid=22653] ppid=22650 vsize=13974352 memory=-8774313645642428999 CPUtime=0.15 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) R 22650 22650 8563 0 -1 4202560 5909 0 0 0 13 2 0 0 20 0 15 0 117880401 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140523209266352 140523205059741 0 4 1 16800974 0 0 0 -1 5 0 0 6 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13974352 memory=140431113658833 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) S 22650 22650 8563 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117880402 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140523146984080 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13974352 memory=7449888722577352560 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117880402 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140523145931280 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13974352 memory=4872558044660077418 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117880402 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140523144878480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117880402 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140523143825680 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) S 22650 22650 8563 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117880403 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522323241840 140523205048962 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117880403 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522322187808 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117880404 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522321134960 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13974352 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 167 0 0 0 1 0 0 0 20 0 15 0 117880406 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522319030640 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13974352 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 583 0 0 0 1 0 0 0 20 0 15 0 117880406 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522317977840 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13974352 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 727 0 0 0 5 0 0 0 20 0 15 0 117880406 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522316925040 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14309736448 8615 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22666] ppid=22650 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22666/stat : 22666 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117880413 14309736448 9127 18446744073709551615 4194304 4196468 140721589214912 140522314820784 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 0.23 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 35840 KiB

[startup+0.701451 s]
/proc/loadavg: 1.93 1.84 1.78 4/211 22666
/proc/meminfo: memFree=23686404/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13978608 memory=272844 CPUtime=0.98 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 11069 0 0 0 76 22 0 0 20 0 15 0 117880401 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3494652 68211 3095 1 0 3482964 0
[pid=22652/tid=22653] ppid=22650 vsize=13978608 memory=7886766292050720565 CPUtime=0.46 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) S 22650 22650 8563 0 -1 1077944384 7572 0 0 0 40 6 0 0 20 0 15 0 117880401 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140523209276656 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 6 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13978608 memory=6003668156883685970 CPUtime=0.05 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) R 22650 22650 8563 0 -1 4202560 61 0 0 0 2 3 0 0 20 0 15 0 117880402 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140523146981888 140523198140863 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13978608 memory=4116 CPUtime=0.05 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) R 22650 22650 8563 0 -1 4202560 59 0 0 0 2 3 0 0 20 0 15 0 117880402 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140523145931280 140523198140532 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13978608 memory=2241 CPUtime=0.05 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) R 22650 22650 8563 0 -1 4202560 59 0 0 0 2 3 0 0 20 0 15 0 117880402 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140523144876456 140523198140794 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13978608 memory=2244 CPUtime=0.05 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) R 22650 22650 8563 0 -1 4202560 58 0 0 0 2 3 0 0 20 0 15 0 117880402 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140523143823488 140523198140532 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) S 22650 22650 8563 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 15 0 117880403 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522323240352 140523205048021 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117880403 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522322187808 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117880404 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522321134960 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13978608 memory=30305 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13978608 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 263 0 0 0 5 0 0 0 20 0 15 0 117880406 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522319030640 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13978608 memory=-2893623298589923098 CPUtime=0.06 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 791 0 0 0 6 0 0 0 20 0 15 0 117880406 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522317977840 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13978608 memory=0 CPUtime=0.14 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 897 0 0 0 14 0 0 0 20 0 15 0 117880406 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522316925040 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22666] ppid=22650 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22666/stat : 22666 (java) S 22650 22650 8563 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117880413 14314094592 68211 18446744073709551615 4194304 4196468 140721589214912 140522314820784 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 0.98 s
Current children cumulated vsize: 13988120 KiB
Current children cumulated memory: 274224 KiB

[startup+1.50094 s]
/proc/loadavg: 1.93 1.84 1.78 3/212 22668
/proc/meminfo: memFree=23133400/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13978684 memory=1145588 CPUtime=2.57 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 14719 0 0 0 210 47 0 0 20 0 15 0 117880401 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3494671 286397 3192 1 0 3482964 0
[pid=22652/tid=22653] ppid=22650 vsize=13978684 memory=0 CPUtime=1.19 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) R 22650 22650 8563 0 -1 4202560 8827 0 0 0 101 18 0 0 20 0 15 0 117880401 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140523209274176 140522826909767 0 4 1 16800974 0 0 0 -1 5 0 0 6 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13978684 memory=-1624781813439352349 CPUtime=0.11 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) S 22650 22650 8563 0 -1 1077944384 141 0 0 0 5 6 0 0 20 0 15 0 117880402 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140523146984080 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13978684 memory=8242832241811678803 CPUtime=0.11 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) S 22650 22650 8563 0 -1 1077944384 121 0 0 0 5 6 0 0 20 0 15 0 117880402 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140523145931280 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13978684 memory=7811044310603950144 CPUtime=0.12 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) S 22650 22650 8563 0 -1 1077944384 156 0 0 0 6 6 0 0 20 0 15 0 117880402 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140523144878480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13978684 memory=-8774313645642428999 CPUtime=0.11 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) S 22650 22650 8563 0 -1 1077944384 154 0 0 0 5 6 0 0 20 0 15 0 117880402 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140523143825680 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) S 22650 22650 8563 0 -1 1077944384 209 0 0 0 0 0 0 0 20 0 15 0 117880403 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140522323241840 140523205048962 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 117880403 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140522322187872 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 117880404 14314172416 286397 18446744073709551615 4194304 4196468 140721589214912 140522321134976 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7

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

/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 117880404 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522321134976 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13980732 memory=4116 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13980732 memory=63584 CPUtime=0.46 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 3078 0 0 0 46 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522319030640 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13980732 memory=1292 CPUtime=0.49 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 2418 0 0 0 49 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522317977840 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13980732 memory=2316 CPUtime=0.3 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 2839 0 0 0 30 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522316925040 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13980732 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22666] ppid=22650 vsize=13980732 memory=1228 CPUtime=0.08 cores=1,3,5,7
/proc/22652/task/22666/stat : 22666 (java) S 22650 22650 8563 0 -1 1077944384 485 0 0 0 4 4 0 0 20 0 15 0 117880413 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522314820784 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 147.48 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11388896 KiB

[startup+121.601 s]
/proc/loadavg: 2.37 2.01 1.85 6/212 22671
/proc/meminfo: memFree=12340424/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13980732 memory=11387516 CPUtime=158.97 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 1371801 0 0 0 15129 768 0 0 20 0 15 0 117880401 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3495183 2846879 3223 1 0 3483476 0
[pid=22652/tid=22653] ppid=22650 vsize=13980732 memory=30 CPUtime=106.56 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) S 22650 22650 8563 0 -1 1077944384 120692 0 0 0 10599 57 0 0 20 0 15 0 117880401 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523209276032 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 6 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13980732 memory=0 CPUtime=12.11 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) R 22650 22650 8563 0 -1 4202560 203479 0 0 0 1039 172 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523146983888 140523197666023 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13980732 memory=6 CPUtime=12.08 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) R 22650 22650 8563 0 -1 4202560 496327 0 0 0 1031 177 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523145931400 140523197666023 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13980732 memory=-8774313645642428999 CPUtime=12.08 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) S 22650 22650 8563 0 -1 1077944384 217493 0 0 0 1033 175 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523144878288 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13980732 memory=63584 CPUtime=12.12 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) R 22650 22650 8563 0 -1 4202560 298570 0 0 0 1040 172 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523143825568 140523198140839 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13980732 memory=1292 CPUtime=2.57 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) S 22650 22650 8563 0 -1 1077944384 25073 0 0 0 251 6 0 0 20 0 15 0 117880403 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522323240400 140523205048021 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13980732 memory=2316 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 117880403 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522322187872 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13980732 memory=5788 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 117880404 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522321134976 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13980732 memory=1720 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13980732 memory=4616 CPUtime=0.46 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 3078 0 0 0 46 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522319030640 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13980732 memory=1380 CPUtime=0.49 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 2418 0 0 0 49 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522317977840 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13980732 memory=11387516 CPUtime=0.3 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 2839 0 0 0 30 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522316925040 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13980732 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22666] ppid=22650 vsize=13980732 memory=280862005027136 CPUtime=0.08 cores=1,3,5,7
/proc/22652/task/22666/stat : 22666 (java) S 22650 22650 8563 0 -1 1077944384 485 0 0 0 4 4 0 0 20 0 15 0 117880413 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522314820784 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 158.97 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11388896 KiB

[startup+122.401 s]
/proc/loadavg: 2.58 2.06 1.87 6/212 22672
/proc/meminfo: memFree=12340424/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13980732 memory=11387516 CPUtime=162.08 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 1756161 0 0 0 15423 785 0 0 20 0 15 0 117880401 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3495183 2846879 3223 1 0 3483476 0
[pid=22652/tid=22653] ppid=22650 vsize=13980732 memory=3467969555864793944 CPUtime=106.56 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) S 22650 22650 8563 0 -1 1077944384 120692 0 0 0 10599 57 0 0 20 0 15 0 117880401 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523209276032 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 6 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13980732 memory=3540027149902721912 CPUtime=12.88 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) R 22650 22650 8563 0 -1 4202560 203479 0 0 0 1116 172 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523146983888 140523197666023 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13980732 memory=-8774313645642428999 CPUtime=12.86 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) R 22650 22650 8563 0 -1 4202560 496327 0 0 0 1108 178 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523145931088 140523197666023 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13980732 memory=11387516 CPUtime=12.86 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) R 22650 22650 8563 0 -1 4202560 217493 0 0 0 1110 176 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523144878600 140523197666023 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13980732 memory=1380 CPUtime=12.9 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) R 22650 22650 8563 0 -1 4202560 682930 0 0 0 1103 187 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523143825568 140523198140829 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13980732 memory=11387516 CPUtime=2.57 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) S 22650 22650 8563 0 -1 1077944384 25073 0 0 0 251 6 0 0 20 0 15 0 117880403 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522323240400 140523205048021 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13980732 memory=6 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 117880403 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522322187872 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13980732 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 117880404 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522321134976 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13980732 memory=-8774313645642428999 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13980732 memory=16436 CPUtime=0.46 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 3078 0 0 0 46 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522319030640 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13980732 memory=3904 CPUtime=0.49 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 2418 0 0 0 49 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522317977840 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13980732 memory=2760 CPUtime=0.3 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 2839 0 0 0 30 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522316925040 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13980732 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22666] ppid=22650 vsize=13980732 memory=194639327965444 CPUtime=0.08 cores=1,3,5,7
/proc/22652/task/22666/stat : 22666 (java) S 22650 22650 8563 0 -1 1077944384 485 0 0 0 4 4 0 0 20 0 15 0 117880413 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522314820784 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 162.08 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11388896 KiB

[startup+123.201 s]
/proc/loadavg: 2.58 2.06 1.87 3/212 22672
/proc/meminfo: memFree=12340424/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
[pid=22652] ppid=22650 vsize=13980732 memory=11387516 CPUtime=164.43 cores=1,3,5,7
/proc/22652/stat : 22652 (java) S 22650 22650 8563 0 -1 1077944320 1922910 0 0 0 15651 792 0 0 20 0 15 0 117880401 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140721589197456 140523205037815 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
/proc/22652/statm: 3495183 2846879 3223 1 0 3483476 0
[pid=22652/tid=22653] ppid=22650 vsize=13980732 memory=11387516 CPUtime=106.56 cores=1,3,5,7
/proc/22652/task/22653/stat : 22653 (java) S 22650 22650 8563 0 -1 1077944384 120692 0 0 0 10599 57 0 0 20 0 15 0 117880401 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523209276032 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 6 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22654] ppid=22650 vsize=13980732 memory=11387516 CPUtime=13.4 cores=1,3,5,7
/proc/22652/task/22654/stat : 22654 (java) S 22650 22650 8563 0 -1 1077944384 203479 0 0 0 1168 172 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523146984080 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22655] ppid=22650 vsize=13980732 memory=-8774313645642428999 CPUtime=13.38 cores=1,3,5,7
/proc/22652/task/22655/stat : 22655 (java) S 22650 22650 8563 0 -1 1077944384 496327 0 0 0 1160 178 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523145931280 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22656] ppid=22650 vsize=13980732 memory=11387516 CPUtime=13.38 cores=1,3,5,7
/proc/22652/task/22656/stat : 22656 (java) S 22650 22650 8563 0 -1 1077944384 217493 0 0 0 1162 176 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523144878480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22657] ppid=22650 vsize=13980732 memory=2316 CPUtime=13.44 cores=1,3,5,7
/proc/22652/task/22657/stat : 22657 (java) S 22650 22650 8563 0 -1 1077944384 849678 0 0 0 1150 194 0 0 20 0 15 0 117880402 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140523143825680 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22658] ppid=22650 vsize=13980732 memory=1728 CPUtime=2.83 cores=1,3,5,7
/proc/22652/task/22658/stat : 22658 (java) R 22650 22650 8563 0 -1 4202560 25073 0 0 0 277 6 0 0 20 0 15 0 117880403 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522323240400 140523190034368 0 0 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22659] ppid=22650 vsize=13980732 memory=1228 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22659/stat : 22659 (java) S 22650 22650 8563 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 117880403 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522322187872 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22660] ppid=22650 vsize=13980732 memory=2000 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22660/stat : 22660 (java) S 22650 22650 8563 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 117880404 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522321134976 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22661] ppid=22650 vsize=13980732 memory=11072 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22661/stat : 22661 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522320083280 140523205056411 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22662] ppid=22650 vsize=13980732 memory=1200 CPUtime=0.46 cores=1,3,5,7
/proc/22652/task/22662/stat : 22662 (java) S 22650 22650 8563 0 -1 1077944384 3078 0 0 0 46 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522319030688 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22663] ppid=22650 vsize=13980732 memory=15884 CPUtime=0.49 cores=1,3,5,7
/proc/22652/task/22663/stat : 22663 (java) S 22650 22650 8563 0 -1 1077944384 2419 0 0 0 49 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522317977600 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22664] ppid=22650 vsize=13980732 memory=35676 CPUtime=0.3 cores=1,3,5,7
/proc/22652/task/22664/stat : 22664 (java) S 22650 22650 8563 0 -1 1077944384 2839 0 0 0 30 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522316925088 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22665] ppid=22650 vsize=13980732 memory=4044 CPUtime=0 cores=1,3,5,7
/proc/22652/task/22665/stat : 22665 (java) S 22650 22650 8563 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117880406 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522315872480 140523205048021 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
[pid=22652/tid=22666] ppid=22650 vsize=13980732 memory=1380 CPUtime=0.08 cores=1,3,5,7
/proc/22652/task/22666/stat : 22666 (java) S 22650 22650 8563 0 -1 1077944384 485 0 0 0 4 4 0 0 20 0 15 0 117880413 14316269568 2846879 18446744073709551615 4194304 4196468 140721589214912 140522314820784 140523205048962 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8163328 140721589223857 140721589224033 140721589224033 140721589227471 0
Current children cumulated CPU time: 164.43 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11388896 KiB

[startup+123.601 s]
/proc/loadavg: 2.58 2.06 1.87 3/212 22672
/proc/meminfo: memFree=12340424/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

[startup+123.701 s]
/proc/loadavg: 2.58 2.06 1.87 3/212 22672
/proc/meminfo: memFree=12340424/32770624 swapFree=67108860/67108860
[pid=22650] ppid=22647 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/22650/stat : 22650 (xcsp3-exec) S 22647 22650 8563 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 117880391 9740288 345 18446744073709551615 4194304 5098028 140720398373440 140720398371544 139895547867772 0 65536 5 65538 18446744071579417331 0 0 17 5 0 0 9 0 0 7196144 7232144 14086144 140720398377336 140720398377541 140720398377541 140720398381035 0
/proc/22650/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

Child status: 1
Real time (s): 123.713
CPU time (s): 164.959
CPU user time (s): 156.82
CPU system time (s): 8.13841
CPU usage (%): 133.339
Max. virtual memory (cumulated for all children) (KiB): 13990244
Max. memory (cumulated for all children) (KiB): 11388928

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 156.82
system time used= 8.13841
maximum resident set size= 11387908
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 1924601
page faults= 0
swaps= 0
block input operations= 0
block output operations= 248
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 43976
involuntary context switches= 611


# summary of solver processes directly reported to runsolver:
#   pid: 22650
#   total CPU time (s): 164.959
#   total CPU user time (s): 156.82
#   total CPU system time (s): 8.13841

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.823022 second user time and 1.29187 second system time

The end

Launcher Data

Begin job on node125 at 2017-08-19 17:15:51
IDJOB=4281771
IDBENCH=138054
IDSOLVER=2677
FILE ID=node125/4281771-1503156598
RUNJOBID= node125-1503095795-8622
PBS_JOBID= 
Free space on /tmp= 61900 MiB

SOLVER NAME= choco-solver 4.0.5 seq
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-4281771-1503156598/watcher-4281771-1503156598 -o /tmp/evaluation-result-4281771-1503156598/solver-4281771-1503156598 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node125-1503095795-8622 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 1352473837 HOME/instance-4281771-1503156598.xml

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

MD5SUM BENCH= 67f07639019614dd1d008c87f8253383
RANDOM SEED=1352473837

node125.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.07
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.07
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.07
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.07
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:        23736056 kB
MemAvailable:   25021916 kB
Buffers:          326304 kB
Cached:          1266044 kB
SwapCached:            0 kB
Active:          7902696 kB
Inactive:         678772 kB
Active(anon):    6989732 kB
Inactive(anon):    49484 kB
Active(file):     912964 kB
Inactive(file):   629288 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             97828 kB
Writeback:             0 kB
AnonPages:       6989104 kB
Mapped:            73800 kB
Shmem:             49828 kB
Slab:             145404 kB
SReclaimable:     118884 kB
SUnreclaim:        26520 kB
KernelStack:        3408 kB
PageTables:        18712 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    8702936 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   6846464 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      118144 kB
DirectMap2M:    33427456 kB

Free space on /tmp at the end= 61892 MiB
End job on node125 at 2017-08-19 17:17:55