Trace number 4398947

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-09-16? 320.353 126.4

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4398947-1568698437/watcher-4398947-1568698437 -o /tmp/evaluation-result-4398947-1568698437/solver-4398947-1568698437 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node150-1568698397-5773 --watchdog 2580 xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 1848192552 HOME/instance-4398947-1568698437.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=5818, runsolver pid=5815
Starting watchdog thread
Current StackSize limit: 8192 KiB


[startup+0.102667 s]*
/proc/loadavg: 0.63 0.87 1.17 5/230 5834
/proc/meminfo: memFree=29678956/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15144776 memory=30460 CPUtime=0.13 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 5996 0 0 0 12 1 0 0 20 0 15 0 446116364 15508250624 7615 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3786194 7615 3209 1 0 3748377 0
[pid=5820/tid=5821] ppid=5818 vsize=15144776 memory=7828565255743837019 CPUtime=0.09 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) R 5818 5818 5742 0 -1 4202560 3882 0 0 0 8 1 0 0 20 0 15 0 446116365 15508250624 7615 33554432000 4194304 4196468 140720901762720 139934341046288 139934336834966 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15144776 memory=-3689349214911541841 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 7615 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15144776 memory=140669864404608 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 7615 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15144776 memory=140669864404608 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116367 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933872556912 139934336834178 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 446116367 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933871502880 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 446116367 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933870450032 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15144776 memory=0 CPUtime=0.01 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) R 5818 5818 5742 0 -1 4202560 463 0 0 0 1 0 0 0 20 0 15 0 446116370 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933868345712 139934320265203 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) R 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933867292912 139934336834178 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15144776 memory=140669864404608 CPUtime=0.02 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) R 5818 5818 5742 0 -1 4202560 344 0 0 0 2 0 0 0 20 0 15 0 446116370 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933866240112 139934322522113 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15144776 memory=140669864404608 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 7615 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 31912 KiB

[startup+0.211254 s]*
/proc/loadavg: 0.63 0.87 1.17 7/230 5834
/proc/meminfo: memFree=29620424/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15144776 memory=41292 CPUtime=0.34 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 9487 0 0 0 31 3 0 0 20 0 15 0 446116364 15508250624 10323 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3786194 10323 3305 1 0 3748377 0
[pid=5820/tid=5821] ppid=5818 vsize=15144776 memory=7883960649037381690 CPUtime=0.2 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) R 5818 5818 5742 0 -1 4202560 6697 0 0 0 18 2 0 0 20 0 15 0 446116365 15508250624 10323 33554432000 4194304 4196468 140720901762720 139934341058016 139934336844957 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15144776 memory=13574 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 10323 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15144776 memory=140669867750321 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 10323 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116365 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15144776 memory=140669864404608 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) S 5818 5818 5742 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 446116367 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933872556912 139934336834178 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 446116367 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933871502880 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 446116367 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933870450032 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15144776 memory=0 CPUtime=0.01 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 483 0 0 0 1 0 0 0 20 0 15 0 446116370 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933868345712 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15144776 memory=-1 CPUtime=0.03 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 272 0 0 0 3 0 0 0 20 0 15 0 446116370 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933867292912 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15144776 memory=140669864404608 CPUtime=0.08 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) S 5818 5818 5742 0 -1 1077944384 729 0 0 0 8 0 0 0 20 0 15 0 446116370 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933866240112 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116370 15508250624 10323 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 42744 KiB

[startup+0.314895 s]*
/proc/loadavg: 0.63 0.87 1.17 5/230 5834
/proc/meminfo: memFree=29610968/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15149032 memory=50312 CPUtime=0.53 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 10936 0 0 0 50 3 0 0 20 0 15 0 446116364 15512608768 12578 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3787258 12578 3361 1 0 3748377 0
[pid=5820/tid=5821] ppid=5818 vsize=15149032 memory=7883960649037381690 CPUtime=0.3 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) R 5818 5818 5742 0 -1 4202560 7905 0 0 0 27 3 0 0 20 0 15 0 446116365 15512608768 12643 33554432000 4194304 4196468 140720901762720 139934341054144 139934320903518 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15149032 memory=13917 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116365 15512608768 12643 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15149032 memory=3345126 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116365 15512608768 12643 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116365 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446116365 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) S 5818 5818 5742 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 446116367 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933872556912 139934336834178 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 446116367 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933871502880 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 446116367 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933870450032 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15149032 memory=0 CPUtime=0.04 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 620 0 0 0 4 0 0 0 20 0 15 0 446116370 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933868345712 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15149032 memory=0 CPUtime=0.04 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 287 0 0 0 4 0 0 0 20 0 15 0 446116370 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933867292912 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15149032 memory=0 CPUtime=0.12 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) S 5818 5818 5742 0 -1 1077944384 824 0 0 0 12 0 0 0 20 0 15 0 446116370 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933866240112 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116370 15512608768 12643 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 15262160 KiB
Current children cumulated memory: 51764 KiB

[startup+0.700824 s]
/proc/loadavg: 0.63 0.87 1.17 8/230 5834
/proc/meminfo: memFree=29369372/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15149108 memory=288904 CPUtime=1.25 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 11988 0 0 0 103 22 0 0 20 0 15 0 446116364 15512686592 72226 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3787277 72226 3420 1 0 3748377 0
[pid=5820/tid=5821] ppid=5818 vsize=15149108 memory=13240 CPUtime=0.61 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) R 5818 5818 5742 0 -1 4202560 8313 0 0 0 55 6 0 0 20 0 15 0 446116365 15512686592 72226 33554432000 4194304 4196468 140720901762720 139934341058720 139934336834966 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15149108 memory=500 CPUtime=0.05 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 446116365 15512686592 72226 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15149108 memory=1736 CPUtime=0.05 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 70 0 0 0 2 3 0 0 20 0 15 0 446116365 15512686592 72226 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15149108 memory=1772 CPUtime=0.06 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 64 0 0 0 3 3 0 0 20 0 15 0 446116365 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15149108 memory=924 CPUtime=0.05 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 53 0 0 0 2 3 0 0 20 0 15 0 446116365 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15149108 memory=2344 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) S 5818 5818 5742 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 446116367 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933872556912 139934336834178 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15149108 memory=2064 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 446116367 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933871502880 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15149108 memory=2876 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 446116367 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933870450032 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15149108 memory=1572 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15149108 memory=872 CPUtime=0.08 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 637 0 0 0 8 0 0 0 20 0 15 0 446116370 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933868345712 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15149108 memory=1760 CPUtime=0.09 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 447 0 0 0 9 0 0 0 20 0 15 0 446116370 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933867292912 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15149108 memory=111632 CPUtime=0.18 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) R 5818 5818 5742 0 -1 4202560 962 0 0 0 18 0 0 0 20 0 15 0 446116370 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933866240112 139934320903518 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15149108 memory=804 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15149108 memory=4100 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446116370 15512686592 72226 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 1.25 s
Current children cumulated vsize: 15262236 KiB
Current children cumulated memory: 290356 KiB

[startup+1.50084 s]
/proc/loadavg: 0.63 0.87 1.17 7/234 5838
/proc/meminfo: memFree=28515116/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0

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

/proc/5820/task/5823/stat : 5823 (java) R 5818 5818 5742 0 -1 4202560 631321 0 0 0 6169 213 0 0 20 0 15 0 446116365 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139934263810696 139934329451239 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15151156 memory=12796692 CPUtime=64.08 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) R 5818 5818 5742 0 -1 4202560 457881 0 0 0 6205 203 0 0 20 0 15 0 446116365 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933927205152 139934321812674 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15151156 memory=1452 CPUtime=63.64 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) R 5818 5818 5742 0 -1 4202560 369392 0 0 0 6151 213 0 0 20 0 15 0 446116365 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933926152272 139934329451239 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15151156 memory=12796692 CPUtime=18.15 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) S 5818 5818 5742 0 -1 1077944384 39078 0 0 0 1807 8 0 0 20 0 15 0 446116367 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933872555472 139934336833237 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 31 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15151156 memory=1224 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 70 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933871502944 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15151156 memory=3824 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 167 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933870450048 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15151156 memory=1384 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15151156 memory=10092 CPUtime=1.05 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 7049 0 0 0 104 1 0 0 20 0 15 0 446116370 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933868345760 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15151156 memory=1908 CPUtime=1.08 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 7630 0 0 0 107 1 0 0 20 0 15 0 446116370 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933867292672 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15151156 memory=1360 CPUtime=0.38 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) S 5818 5818 5742 0 -1 1077944384 4042 0 0 0 38 0 0 0 20 0 15 0 446116370 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933866240160 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15151156 memory=7500 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15151156 memory=860 CPUtime=0.04 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 586 0 0 0 3 1 0 0 20 0 15 0 446116370 15514783744 3199173 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 74 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 317.96 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12798144 KiB

[startup+125.601 s]
/proc/loadavg: 6.11 2.80 1.83 8/233 6010
/proc/meminfo: memFree=14815808/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15151156 memory=12796708 CPUtime=319.54 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 2245828 0 0 0 31057 897 0 0 20 0 15 0 446116364 15514783744 3199177 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3787789 3199177 3505 1 0 3748889 0
[pid=5820/tid=5821] ppid=5818 vsize=15151156 memory=7100839861465685612 CPUtime=41.72 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) S 5818 5818 5742 0 -1 1077944384 88029 0 0 0 4105 67 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934341061488 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15151156 memory=8112282956445269571 CPUtime=64.18 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 632164 0 0 0 6231 187 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15151156 memory=2184 CPUtime=64.07 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 631321 0 0 0 6194 213 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15151156 memory=1844 CPUtime=64.35 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 457881 0 0 0 6232 203 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15151156 memory=4968 CPUtime=63.9 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 369392 0 0 0 6177 213 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15151156 memory=10092 CPUtime=18.69 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) R 5818 5818 5742 0 -1 4202560 46255 0 0 0 1860 9 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933872555472 139934321819435 0 0 0 16800975 0 0 0 -1 4 0 0 31 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15151156 memory=1908 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 70 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933871502944 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15151156 memory=1360 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 167 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933870450048 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15151156 memory=7500 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15151156 memory=860 CPUtime=1.05 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 7049 0 0 0 104 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933868345760 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15151156 memory=776 CPUtime=1.08 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 7630 0 0 0 107 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933867292672 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15151156 memory=1612 CPUtime=0.38 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) S 5818 5818 5742 0 -1 1077944384 4042 0 0 0 38 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933866240160 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15151156 memory=13240 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15151156 memory=500 CPUtime=0.04 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 586 0 0 0 3 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 74 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 319.54 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12798160 KiB

[startup+126.001 s]*
/proc/loadavg: 6.11 2.80 1.83 6/233 6010
/proc/meminfo: memFree=14815808/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15151156 memory=12796708 CPUtime=319.95 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 2245830 0 0 0 31098 897 0 0 20 0 15 0 446116364 15514783744 3199177 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3787789 3199177 3505 1 0 3748889 0
[pid=5820/tid=5821] ppid=5818 vsize=15151156 memory=8112282956445269571 CPUtime=41.72 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) S 5818 5818 5742 0 -1 1077944384 88029 0 0 0 4105 67 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934341061488 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15151156 memory=4126316290023845779 CPUtime=64.18 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 632164 0 0 0 6231 187 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15151156 memory=1296 CPUtime=64.07 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 631321 0 0 0 6194 213 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15151156 memory=2184 CPUtime=64.35 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 457881 0 0 0 6232 203 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15151156 memory=1844 CPUtime=63.9 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 369392 0 0 0 6177 213 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15151156 memory=4968 CPUtime=19.1 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) R 5818 5818 5742 0 -1 4202560 46255 0 0 0 1901 9 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933872555472 139934321280662 0 0 0 16800975 0 0 0 -1 4 0 0 31 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15151156 memory=10092 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 70 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933871502944 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15151156 memory=1908 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 167 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933870450048 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15151156 memory=288230574492221466 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15151156 memory=288230583166042426 CPUtime=1.05 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 7049 0 0 0 104 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933868345760 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15151156 memory=15537431562684288 CPUtime=1.08 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 7630 0 0 0 107 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933867292672 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15151156 memory=12796692 CPUtime=0.38 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) S 5818 5818 5742 0 -1 1077944384 4042 0 0 0 38 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933866240160 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15151156 memory=1948552 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15151156 memory=8112282956445269571 CPUtime=0.04 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 588 0 0 0 3 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 74 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 319.95 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12798160 KiB

[startup+126.201 s]
/proc/loadavg: 6.11 2.80 1.83 6/233 6010
/proc/meminfo: memFree=14815808/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
[pid=5820] ppid=5818 vsize=15151156 memory=12796708 CPUtime=320.14 cores=0,2,4,6
/proc/5820/stat : 5820 (java) S 5818 5818 5742 0 -1 1077944320 2245830 0 0 0 31117 897 0 0 20 0 15 0 446116364 15514783744 3199177 33554432000 4194304 4196468 140720901762720 140720901745264 139934336823031 0 0 0 16800975 18446744073709551615 0 0 17 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
/proc/5820/statm: 3787789 3199177 3505 1 0 3748889 0
[pid=5820/tid=5821] ppid=5818 vsize=15151156 memory=15537431562684288 CPUtime=41.72 cores=0,2,4,6
/proc/5820/task/5821/stat : 5821 (java) S 5818 5818 5742 0 -1 1077944384 88029 0 0 0 4105 67 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934341061488 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5822] ppid=5818 vsize=15151156 memory=8112282956445269571 CPUtime=64.18 cores=0,2,4,6
/proc/5820/task/5822/stat : 5822 (java) S 5818 5818 5742 0 -1 1077944384 632164 0 0 0 6231 187 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934264863376 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5823] ppid=5818 vsize=15151156 memory=4126316290023845779 CPUtime=64.07 cores=0,2,4,6
/proc/5820/task/5823/stat : 5823 (java) S 5818 5818 5742 0 -1 1077944384 631321 0 0 0 6194 213 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139934263810576 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5824] ppid=5818 vsize=15151156 memory=111632 CPUtime=64.35 cores=0,2,4,6
/proc/5820/task/5824/stat : 5824 (java) S 5818 5818 5742 0 -1 1077944384 457881 0 0 0 6232 203 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933927205264 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5825] ppid=5818 vsize=15151156 memory=8112282956445269571 CPUtime=63.9 cores=0,2,4,6
/proc/5820/task/5825/stat : 5825 (java) S 5818 5818 5742 0 -1 1077944384 369392 0 0 0 6177 213 0 0 20 0 15 0 446116365 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933926152464 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5826] ppid=5818 vsize=15151156 memory=4100 CPUtime=19.29 cores=0,2,4,6
/proc/5820/task/5826/stat : 5826 (java) R 5818 5818 5742 0 -1 4202560 46255 0 0 0 1920 9 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933872555472 139934315193192 0 0 0 16800975 0 0 0 -1 4 0 0 31 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5827] ppid=5818 vsize=15151156 memory=1808 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5827/stat : 5827 (java) S 5818 5818 5742 0 -1 1077944384 70 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933871502944 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5828] ppid=5818 vsize=15151156 memory=920 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5828/stat : 5828 (java) S 5818 5818 5742 0 -1 1077944384 167 0 0 0 0 0 0 0 20 0 15 0 446116367 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933870450048 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5829] ppid=5818 vsize=15151156 memory=3804 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5829/stat : 5829 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933869398352 139934336841627 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5830] ppid=5818 vsize=15151156 memory=2300 CPUtime=1.05 cores=0,2,4,6
/proc/5820/task/5830/stat : 5830 (java) S 5818 5818 5742 0 -1 1077944384 7049 0 0 0 104 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933868345760 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5831] ppid=5818 vsize=15151156 memory=2592 CPUtime=1.08 cores=0,2,4,6
/proc/5820/task/5831/stat : 5831 (java) S 5818 5818 5742 0 -1 1077944384 7630 0 0 0 107 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933867292672 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5832] ppid=5818 vsize=15151156 memory=1412 CPUtime=0.38 cores=0,2,4,6
/proc/5820/task/5832/stat : 5832 (java) S 5818 5818 5742 0 -1 1077944384 4042 0 0 0 38 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933866240160 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5833] ppid=5818 vsize=15151156 memory=4126316290023845779 CPUtime=0 cores=0,2,4,6
/proc/5820/task/5833/stat : 5833 (java) S 5818 5818 5742 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933865187552 139934336833237 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
[pid=5820/tid=5834] ppid=5818 vsize=15151156 memory=4100 CPUtime=0.04 cores=0,2,4,6
/proc/5820/task/5834/stat : 5834 (java) S 5818 5818 5742 0 -1 1077944384 588 0 0 0 3 1 0 0 20 0 15 0 446116370 15514783744 3199177 33554432000 4194304 4196468 140720901762720 139933864135856 139934336834178 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 74 0 0 6293624 6294260 25223168 140720901768175 140720901768346 140720901768346 140720901771215 0
Current children cumulated CPU time: 320.14 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12798160 KiB

[startup+126.301 s]
/proc/loadavg: 6.11 2.80 1.83 6/233 6010
/proc/meminfo: memFree=14815808/32770624 swapFree=67027408/67108860
[pid=5818] ppid=5815 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/5818/stat : 5818 (xcsp3-exec) S 5815 5818 5742 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 446116364 115843072 363 33554432000 4194304 5098028 140725166626736 140725166624840 140484704232060 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 11816960 140725166633850 140725166634093 140725166634093 140725166637002 0
/proc/5818/statm: 28282 363 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

Child status: 1
Real time (s): 126.4
CPU time (s): 320.353
CPU user time (s): 311.208
CPU system time (s): 9.14438
CPU usage (%): 253.444
Max. virtual memory (cumulated for all children) (KiB): 15264284
Max. memory (cumulated for all children) (KiB): 12798160

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 311.208
system time used= 9.14438
maximum resident set size= 12796852
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 2246772
page faults= 0
swaps= 0
block input operations= 0
block output operations= 304
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 15613
involuntary context switches= 8204


# summary of solver processes directly reported to runsolver:
#   pid: 5818
#   total CPU time (s): 320.353
#   total CPU user time (s): 311.208
#   total CPU system time (s): 9.14438

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.762152 second user time and 1.36647 second system time

The end

Launcher Data

Begin job on node150 at 2019-09-17 07:33:18
IDJOB=4398947
IDBENCH=134289
IDSOLVER=2853
FILE ID=node150/4398947-1568698437
RUNJOBID= node150-1568698397-5773
PBS_JOBID= 21703813
Free space on /tmp= 59248 MiB

SOLVER NAME= choco-solver 2019-09-16
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-4398947-1568698437/watcher-4398947-1568698437 -o /tmp/evaluation-result-4398947-1568698437/solver-4398947-1568698437 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node150-1568698397-5773 --watchdog 2580  xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 1848192552 HOME/instance-4398947-1568698437.xml

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

MD5SUM BENCH= a4344d82eae68729eeb0bbc0b13d3fa1
RANDOM SEED=1848192552

node150.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.79
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.79
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.79
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.79
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:        29697772 kB
MemAvailable:   31650324 kB
Buffers:          216976 kB
Cached:          1997364 kB
SwapCached:        10928 kB
Active:          1237564 kB
Inactive:        1211496 kB
Active(anon):     195512 kB
Inactive(anon):    78664 kB
Active(file):    1042052 kB
Inactive(file):  1132832 kB
Unevictable:      109640 kB
Mlocked:          109640 kB
SwapTotal:      67108860 kB
SwapFree:       67027408 kB
Dirty:            148672 kB
Writeback:             0 kB
AnonPages:        174004 kB
Mapped:            59016 kB
Shmem:             30872 kB
Slab:             217016 kB
SReclaimable:     187008 kB
SUnreclaim:        30008 kB
KernelStack:        3424 kB
PageTables:         5936 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1637316 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     67584 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       99712 kB
DirectMap2M:    33445888 kB

Free space on /tmp at the end= 59224 MiB
End job on node150 at 2019-09-17 07:35:24