Trace number 4392987

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
choco-solver 2019-06-14? 290.637 119.709

General information on the benchmark

NamePigeonsPlus/PigeonsPlus-m1-s1/
pigeonsPlus-08-08.xml
MD5SUMa4344d82eae68729eeb0bbc0b13d3fa1
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkUNSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark29.4324
Satisfiable
(Un)Satisfiability was proved
Number of variables72
Number of constraints44
Number of domains2
Minimum domain size7
Maximum domain size8
Distribution of domain sizes[{"size":7,"count":8},{"size":8,"count":64}]
Minimum variable degree1
Maximum variable degree8
Distribution of variable degrees[{"degree":1,"count":56},{"degree":2,"count":8},{"degree":8,"count":8}]
Minimum constraint arity2
Maximum constraint arity8
Distribution of constraint arities[{"arity":2,"count":36},{"arity":8,"count":8}]
Number of extensional constraints44
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":44}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx12000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4392987-1568320939.xml"  -tl '2520s' -p 4
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4392987-1568320939.xml, -tl, 2520s, -p, 4]
0.34/0.22	c 4 solvers in parallel
0.34/0.28	c parse instance...
290.41/119.56	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
290.41/119.56		at java.util.Arrays.copyOf(Arrays.java:3181)
290.41/119.56		at java.util.ArrayList.grow(ArrayList.java:261)
290.41/119.56		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
290.41/119.56		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
290.41/119.56		at java.util.ArrayList.add(ArrayList.java:458)
290.41/119.56		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:159)
290.41/119.56		at org.chocosolver.solver.constraints.extension.Tuples.<init>(Tuples.java:59)
290.41/119.56		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:309)
290.41/119.56		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
290.41/119.56		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
290.41/119.56		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
290.41/119.56		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
290.41/119.56		at org.xcsp.parser.XCallbacks$$Lambda$95/861842890.accept(Unknown Source)
290.41/119.56		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
290.41/119.56		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
290.41/119.56		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
290.41/119.56		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
290.41/119.56		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
290.41/119.56		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
290.41/119.56		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
290.41/119.56		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
290.41/119.56		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
290.41/119.56		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
290.41/119.56		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
290.41/119.56		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
290.41/119.56	s UNKNOWN
290.41/119.56	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 (7775 MiB free)
  memory of node 1: 16384 MiB (15265 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4392987-1568320939/watcher-4392987-1568320939 -o /tmp/evaluation-result-4392987-1568320939/solver-4392987-1568320939 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node104-1568309054-15624 --watchdog 2580 xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 608188754 HOME/instance-4392987-1568320939.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=24027, runsolver pid=24024

[startup+0.100109 s]*
/proc/loadavg: 9.14 8.71 8.45 8/233 24043
/proc/meminfo: memFree=23577440/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15144768 memory=29100 CPUtime=0.13 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 5721 0 0 0 12 1 0 0 20 0 15 0 408351315 15508242432 7275 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3786192 7275 3146 1 0 3748377 0
[pid=24029/tid=24030] ppid=24027 vsize=15144768 memory=576460756329955459 CPUtime=0.09 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) R 24027 24027 15592 0 -1 4202560 3602 0 0 0 8 1 0 0 20 0 15 0 408351316 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858793159520 139858788949398 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858700593680 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15144768 memory=140636022162577 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858699541136 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858379008272 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858377955728 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351318 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858257509104 139858788948610 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 408351318 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858256455328 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 408351319 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858255402224 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 340 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858253297904 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858252245360 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15144768 memory=140636022142592 CPUtime=0.02 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) R 24027 24027 15592 0 -1 4202560 354 0 0 0 2 0 0 0 20 0 15 0 408351321 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858251192432 139858767070238 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 7275 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 15257896 KiB
Current children cumulated memory: 30548 KiB

[startup+0.210934 s]*
/proc/loadavg: 9.14 8.71 8.45 8/233 24043
/proc/meminfo: memFree=23564312/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15144768 memory=41020 CPUtime=0.34 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 9473 0 0 0 31 3 0 0 20 0 15 0 408351315 15508242432 10255 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3786192 10255 3304 1 0 3748377 0
[pid=24029/tid=24030] ppid=24027 vsize=15144768 memory=7883960649037381690 CPUtime=0.2 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) R 24027 24027 15592 0 -1 4202560 6629 0 0 0 18 2 0 0 20 0 15 0 408351316 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858793173264 139858773017950 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15144768 memory=1898157 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858700593680 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15144768 memory=288371012173854336 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858699541136 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858379008272 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351317 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858377955728 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15144768 memory=140636022142592 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) S 24027 24027 15592 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 408351318 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858257509104 139858788948610 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 408351318 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858256455328 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 408351319 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858255402224 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15144768 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 556 0 0 0 2 0 0 0 20 0 15 0 408351321 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858253297904 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15144768 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 231 0 0 0 2 0 0 0 20 0 15 0 408351321 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858252245360 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15144768 memory=140636022142592 CPUtime=0.08 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) S 24027 24027 15592 0 -1 1077944384 753 0 0 0 8 0 0 0 20 0 15 0 408351321 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858251192304 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351321 15508242432 10255 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 15257896 KiB
Current children cumulated memory: 42468 KiB

[startup+0.317563 s]*
/proc/loadavg: 9.14 8.71 8.45 7/233 24043
/proc/meminfo: memFree=23556672/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15149024 memory=50436 CPUtime=0.55 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 10960 0 0 0 51 4 0 0 20 0 15 0 408351315 15512600576 12601 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3787256 12601 3345 1 0 3748377 0
[pid=24029/tid=24030] ppid=24027 vsize=15149024 memory=8317482817917895235 CPUtime=0.3 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) R 24027 24027 15592 0 -1 4202560 7882 0 0 0 28 2 0 0 20 0 15 0 408351316 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858793173776 139858788959389 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15149024 memory=6944652177228980320 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351317 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858700593680 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15149024 memory=6655300316396806240 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351317 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858699541136 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15149024 memory=6944652177228980320 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351317 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858379008272 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15149024 memory=-4190076264842474805 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) S 24027 24027 15592 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 408351317 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858377955728 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15149024 memory=-6945283279944138911 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) S 24027 24027 15592 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 408351318 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858257509104 139858788948610 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15149024 memory=6944656425123485561 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 408351318 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858256455328 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15149024 memory=7893295687695687954 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 408351319 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858255402224 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15149024 memory=8514701219781834910 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15149024 memory=6576575808607331496 CPUtime=0.04 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 589 0 0 0 4 0 0 0 20 0 15 0 408351321 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858253297904 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15149024 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 333 0 0 0 5 0 0 0 20 0 15 0 408351321 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858252245360 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15149024 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) S 24027 24027 15592 0 -1 1077944384 856 0 0 0 12 0 0 0 20 0 15 0 408351321 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858251192304 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15149024 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15149024 memory=0 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351321 15512600576 12609 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 0.55 s
Current children cumulated vsize: 15262152 KiB
Current children cumulated memory: 51884 KiB

[startup+0.700784 s]
/proc/loadavg: 9.14 8.71 8.45 9/233 24043
/proc/meminfo: memFree=23409392/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15149100 memory=288700 CPUtime=1.26 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 11990 0 0 0 102 24 0 0 20 0 15 0 408351315 15512678400 72175 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3787275 72175 3416 1 0 3748377 0
[pid=24029/tid=24030] ppid=24027 vsize=15149100 memory=-7533522213388100735 CPUtime=0.61 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) R 24027 24027 15592 0 -1 4202560 8269 0 0 0 55 6 0 0 20 0 15 0 408351316 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858793170256 139858772981093 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15149100 memory=7881696724453321575 CPUtime=0.06 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) S 24027 24027 15592 0 -1 1077944384 64 0 0 0 2 4 0 0 20 0 15 0 408351317 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858700593680 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15149100 memory=7156334510635766096 CPUtime=0.06 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) S 24027 24027 15592 0 -1 1077944384 65 0 0 0 2 4 0 0 20 0 15 0 408351317 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858699541136 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15149100 memory=704 CPUtime=0.05 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) S 24027 24027 15592 0 -1 1077944384 48 0 0 0 2 3 0 0 20 0 15 0 408351317 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858379008272 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15149100 memory=1056 CPUtime=0.06 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) S 24027 24027 15592 0 -1 1077944384 70 0 0 0 2 4 0 0 20 0 15 0 408351317 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858377955728 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15149100 memory=1556 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) S 24027 24027 15592 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 408351318 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858257509104 139858788948610 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15149100 memory=780 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 408351318 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858256455328 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15149100 memory=3252 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 408351319 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858255402224 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15149100 memory=1112 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15149100 memory=5952 CPUtime=0.1 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 769 0 0 0 10 0 0 0 20 0 15 0 408351321 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858253297904 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15149100 memory=7552 CPUtime=0.1 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 349 0 0 0 10 0 0 0 20 0 15 0 408351321 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858252245360 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15149100 memory=2832 CPUtime=0.18 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) R 24027 24027 15592 0 -1 4202560 977 0 0 0 18 0 0 0 20 0 15 0 408351321 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858251192304 139858788949398 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15149100 memory=1084 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15149100 memory=14012 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 408351321 15512678400 72175 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 1.26 s
Current children cumulated vsize: 15262228 KiB
Current children cumulated memory: 290148 KiB

[startup+1.50084 s]
/proc/loadavg: 9.14 8.71 8.45 6/233 24043
/proc/meminfo: memFree=22657488/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0

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

/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 173 0 0 0 0 0 0 0 20 0 15 0 408351319 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858255402240 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15151148 memory=1428 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15151148 memory=6791534058613427641 CPUtime=1.03 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 7218 0 0 0 102 1 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858253297952 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15151148 memory=2004 CPUtime=0.86 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 5719 0 0 0 86 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858252245408 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15151148 memory=1428 CPUtime=0.39 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) S 24027 24027 15592 0 -1 1077944384 4596 0 0 0 38 1 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858251192064 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15151148 memory=1724 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15151148 memory=602 CPUtime=0.05 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1298 0 0 0 3 2 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 276.89 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12804576 KiB

[startup+116.801 s]
/proc/loadavg: 6.81 7.87 8.16 9/233 24051
/proc/meminfo: memFree=10742536/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15151148 memory=12803128 CPUtime=283.1 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 2177028 0 0 0 27405 905 0 0 20 0 15 0 408351315 15514775552 3200782 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3787787 3200782 3503 1 0 3748889 0
[pid=24029/tid=24030] ppid=24027 vsize=15151148 memory=6791534058613427641 CPUtime=42.21 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) S 24027 24027 15592 0 -1 1077944384 124927 0 0 0 4153 68 0 0 20 0 15 0 408351316 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858793175920 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15151148 memory=532 CPUtime=54.89 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) R 24027 24027 15592 0 -1 4202560 395946 0 0 0 5286 203 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858700593488 139858781565671 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15151148 memory=1564 CPUtime=54.97 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) R 24027 24027 15592 0 -1 4202560 520469 0 0 0 5268 229 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858699540944 139858781565671 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15151148 memory=924 CPUtime=54.78 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) R 24027 24027 15592 0 -1 4202560 744667 0 0 0 5268 210 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858379008472 139858773637294 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15151148 memory=1756 CPUtime=54.64 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) R 24027 24027 15592 0 -1 4202560 325057 0 0 0 5288 176 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858377955848 139858781565671 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15151148 memory=12803128 CPUtime=19.21 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) S 24027 24027 15592 0 -1 1077944384 45642 0 0 0 1908 13 0 0 20 0 15 0 408351318 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858257507664 139858788947669 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15151148 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 75 0 0 0 0 0 0 0 20 0 15 0 408351318 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858256455392 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15151148 memory=12803128 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 173 0 0 0 0 0 0 0 20 0 15 0 408351319 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858255402240 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15151148 memory=2480 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15151148 memory=1768 CPUtime=1.03 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 7218 0 0 0 102 1 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858253297952 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15151148 memory=1448 CPUtime=0.86 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 5719 0 0 0 86 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858252245408 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15151148 memory=12803128 CPUtime=0.39 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) S 24027 24027 15592 0 -1 1077944384 4596 0 0 0 38 1 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858251192064 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15151148 memory=796 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15151148 memory=1448 CPUtime=0.05 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1298 0 0 0 3 2 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 283.1 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12804576 KiB

[startup+118.401 s]
/proc/loadavg: 6.81 7.87 8.16 9/233 24052
/proc/meminfo: memFree=10742552/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15151148 memory=12803128 CPUtime=289.31 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 2177028 0 0 0 28024 907 0 0 20 0 15 0 408351315 15514775552 3200782 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3787787 3200782 3503 1 0 3748889 0
[pid=24029/tid=24030] ppid=24027 vsize=15151148 memory=4420 CPUtime=42.21 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) S 24027 24027 15592 0 -1 1077944384 124927 0 0 0 4153 68 0 0 20 0 15 0 408351316 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858793175920 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15151148 memory=6628 CPUtime=56.44 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) S 24027 24027 15592 0 -1 1077944384 395946 0 0 0 5440 204 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858700593680 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15151148 memory=6791534058613427641 CPUtime=56.51 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) S 24027 24027 15592 0 -1 1077944384 520469 0 0 0 5422 229 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858699541136 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15151148 memory=12803128 CPUtime=56.37 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) S 24027 24027 15592 0 -1 1077944384 744667 0 0 0 5427 210 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858379008288 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15151148 memory=288292173097731355 CPUtime=56.15 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) R 24027 24027 15592 0 -1 4202560 325057 0 0 0 5438 177 0 0 20 0 15 0 408351317 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858377955848 139858781565671 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15151148 memory=6944657691966988345 CPUtime=19.21 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) S 24027 24027 15592 0 -1 1077944384 45642 0 0 0 1908 13 0 0 20 0 15 0 408351318 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858257507664 139858788947669 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15151148 memory=1768 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 75 0 0 0 0 0 0 0 20 0 15 0 408351318 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858256455392 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15151148 memory=111632 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 173 0 0 0 0 0 0 0 20 0 15 0 408351319 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858255402240 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15151148 memory=796 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15151148 memory=1804 CPUtime=1.03 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 7218 0 0 0 102 1 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858253297952 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15151148 memory=916 CPUtime=0.86 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 5719 0 0 0 86 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858252245408 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15151148 memory=5952 CPUtime=0.39 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) S 24027 24027 15592 0 -1 1077944384 4596 0 0 0 38 1 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858251192064 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15151148 memory=7552 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15151148 memory=2832 CPUtime=0.05 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1298 0 0 0 3 2 0 0 20 0 15 0 408351321 15514775552 3200782 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 289.31 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12804576 KiB

[startup+119.201 s]
/proc/loadavg: 6.66 7.82 8.15 6/233 24052
/proc/meminfo: memFree=10740504/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
[pid=24029] ppid=24027 vsize=15151148 memory=12803140 CPUtime=290.11 cores=1,3,5,7
/proc/24029/stat : 24029 (java) S 24027 24027 15592 0 -1 1077944320 2192126 0 0 0 28103 908 0 0 20 0 15 0 408351315 15514775552 3200785 33554432000 4194304 4196468 140726195065552 140726195048096 139858788937463 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
/proc/24029/statm: 3787787 3200785 3503 1 0 3748889 0
[pid=24029/tid=24030] ppid=24027 vsize=15151148 memory=0 CPUtime=42.21 cores=1,3,5,7
/proc/24029/task/24030/stat : 24030 (java) S 24027 24027 15592 0 -1 1077944384 124927 0 0 0 4153 68 0 0 20 0 15 0 408351316 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858793175920 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24031] ppid=24027 vsize=15151148 memory=0 CPUtime=56.44 cores=1,3,5,7
/proc/24029/task/24031/stat : 24031 (java) S 24027 24027 15592 0 -1 1077944384 395946 0 0 0 5440 204 0 0 20 0 15 0 408351317 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858700593680 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24032] ppid=24027 vsize=15151148 memory=1 CPUtime=56.51 cores=1,3,5,7
/proc/24029/task/24032/stat : 24032 (java) S 24027 24027 15592 0 -1 1077944384 520469 0 0 0 5422 229 0 0 20 0 15 0 408351317 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858699541136 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24033] ppid=24027 vsize=15151148 memory=0 CPUtime=56.37 cores=1,3,5,7
/proc/24029/task/24033/stat : 24033 (java) S 24027 24027 15592 0 -1 1077944384 744667 0 0 0 5427 210 0 0 20 0 15 0 408351317 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858379008272 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24034] ppid=24027 vsize=15151148 memory=2295 CPUtime=56.15 cores=1,3,5,7
/proc/24029/task/24034/stat : 24034 (java) S 24027 24027 15592 0 -1 1077944384 325057 0 0 0 5438 177 0 0 20 0 15 0 408351317 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858377955728 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24035] ppid=24027 vsize=15151148 memory=6791534058613427641 CPUtime=20 cores=1,3,5,7
/proc/24029/task/24035/stat : 24035 (java) R 24027 24027 15592 0 -1 4202560 60740 0 0 0 1987 13 0 0 20 0 15 0 408351318 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858257507552 139858773933864 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24036] ppid=24027 vsize=15151148 memory=780 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24036/stat : 24036 (java) S 24027 24027 15592 0 -1 1077944384 75 0 0 0 0 0 0 0 20 0 15 0 408351318 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858256455392 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24037] ppid=24027 vsize=15151148 memory=3252 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24037/stat : 24037 (java) S 24027 24027 15592 0 -1 1077944384 173 0 0 0 0 0 0 0 20 0 15 0 408351319 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858255402240 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24038] ppid=24027 vsize=15151148 memory=1112 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24038/stat : 24038 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858254350800 139858788956059 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24039] ppid=24027 vsize=15151148 memory=5952 CPUtime=1.03 cores=1,3,5,7
/proc/24029/task/24039/stat : 24039 (java) S 24027 24027 15592 0 -1 1077944384 7218 0 0 0 102 1 0 0 20 0 15 0 408351321 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858253297952 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24040] ppid=24027 vsize=15151148 memory=7552 CPUtime=0.86 cores=1,3,5,7
/proc/24029/task/24040/stat : 24040 (java) S 24027 24027 15592 0 -1 1077944384 5719 0 0 0 86 0 0 0 20 0 15 0 408351321 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858252245408 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24041] ppid=24027 vsize=15151148 memory=2832 CPUtime=0.39 cores=1,3,5,7
/proc/24029/task/24041/stat : 24041 (java) S 24027 24027 15592 0 -1 1077944384 4596 0 0 0 38 1 0 0 20 0 15 0 408351321 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858251192064 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24042] ppid=24027 vsize=15151148 memory=1056 CPUtime=0 cores=1,3,5,7
/proc/24029/task/24042/stat : 24042 (java) S 24027 24027 15592 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 408351321 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858250140000 139858788947669 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
[pid=24029/tid=24043] ppid=24027 vsize=15151148 memory=1556 CPUtime=0.05 cores=1,3,5,7
/proc/24029/task/24043/stat : 24043 (java) S 24027 24027 15592 0 -1 1077944384 1298 0 0 0 3 2 0 0 20 0 15 0 408351321 15514775552 3200785 33554432000 4194304 4196468 140726195065552 139858249088048 139858788948610 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 6299648 140726195069935 140726195070106 140726195070106 140726195072975 0
Current children cumulated CPU time: 290.11 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12804588 KiB

[startup+119.601 s]
/proc/loadavg: 6.66 7.82 8.15 6/233 24052
/proc/meminfo: memFree=10740504/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1448 KiB

[startup+119.7 s]
/proc/loadavg: 6.66 7.82 8.15 6/233 24052
/proc/meminfo: memFree=10740504/32770624 swapFree=66977612/67108860
[pid=24027] ppid=24024 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/24027/stat : 24027 (xcsp3-exec) S 24024 24027 15592 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 408351315 115843072 362 33554432000 4194304 5098028 140726013533136 140726013531240 139653513753212 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 40091648 140726013535099 140726013535341 140726013535341 140726013538250 0
/proc/24027/statm: 28282 362 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1448 KiB

Child status: 1
Real time (s): 119.709
CPU time (s): 290.637
CPU user time (s): 281.405
CPU system time (s): 9.23174
CPU usage (%): 242.787
Max. virtual memory (cumulated for all children) (KiB): 15264276
Max. memory (cumulated for all children) (KiB): 12804588

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 281.405
system time used= 9.23174
maximum resident set size= 12803300
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 2193037
page faults= 0
swaps= 0
block input operations= 0
block output operations= 232
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 15624
involuntary context switches= 6117


# summary of solver processes directly reported to runsolver:
#   pid: 24027
#   total CPU time (s): 290.637
#   total CPU user time (s): 281.405
#   total CPU system time (s): 9.23174

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.764346 second user time and 1.29122 second system time

The end

Launcher Data

Begin job on node104 at 2019-09-12 21:32:03
IDJOB=4392987
IDBENCH=134289
IDSOLVER=2840
FILE ID=node104/4392987-1568320939
RUNJOBID= node104-1568309054-15624
PBS_JOBID= 21701133
Free space on /tmp= 56456 MiB

SOLVER NAME= choco-solver 2019-06-14
BENCH NAME= XCSP17/PigeonsPlus/PigeonsPlus-m1-s1/pigeonsPlus-08-08.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 12000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4392987-1568320939/watcher-4392987-1568320939 -o /tmp/evaluation-result-4392987-1568320939/solver-4392987-1568320939 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node104-1568309054-15624 --watchdog 2580  xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 608188754 HOME/instance-4392987-1568320939.xml

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

MD5SUM BENCH= a4344d82eae68729eeb0bbc0b13d3fa1
RANDOM SEED=608188754

node104.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	: 5334.09
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	: 5334.09
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	: 5334.09
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	: 5334.09
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:        23594508 kB
MemAvailable:   30373676 kB
Buffers:          126568 kB
Cached:          6866004 kB
SwapCached:        31864 kB
Active:          3354356 kB
Inactive:        5129848 kB
Active(anon):    1456464 kB
Inactive(anon):    76560 kB
Active(file):    1897892 kB
Inactive(file):  5053288 kB
Unevictable:      107804 kB
Mlocked:          107804 kB
SwapTotal:      67108860 kB
SwapFree:       66977612 kB
Dirty:            121708 kB
Writeback:             0 kB
AnonPages:       1569096 kB
Mapped:            55916 kB
Shmem:             32780 kB
Slab:             286264 kB
SReclaimable:     256448 kB
SUnreclaim:        29816 kB
KernelStack:        3792 kB
PageTables:         8580 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    3690240 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   1419264 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      124288 kB
DirectMap2M:    33421312 kB

Free space on /tmp at the end= 56428 MiB
End job on node104 at 2019-09-12 21:34:03