Trace number 4282764

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 4.0.5 seq (2017-08-18)? 151.34801 106.218

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-50.xml
MD5SUM53b1156e30bb035a294b23873bcaa6f4
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark251.92101
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size47
Distribution of domain sizes[{"size":23,"count":1},{"size":47,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4282764-1503214879/watcher-4282764-1503214879 -o /tmp/evaluation-result-4282764-1503214879/solver-4282764-1503214879 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node107-1503208459-21036 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 2035012072 HOME/instance-4282764-1503214879.xml 

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

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

solver pid=25910, runsolver pid=25907

[startup+0.100143 s]*
/proc/loadavg: 2.31 2.11 1.99 3/217 25926
/proc/meminfo: memFree=19340032/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13978596 memory=28396 CPUtime=0.12 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 5395 0 0 0 11 1 0 0 20 0 15 0 154575911 14314082304 7099 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3494649 7099 2900 1 0 3482966 0
[pid=25912/tid=25913] ppid=25910 vsize=13978596 memory=8514701219881125282 CPUtime=0.08 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) R 25910 25910 21004 0 -1 4202560 3325 0 0 0 8 0 0 0 20 0 15 0 154575912 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685968182784 139685948028254 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13978596 memory=3472468293308241104 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685894036624 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13978596 memory=140164413089408 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685558664208 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685557611408 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) S 25910 25910 21004 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154575913 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685556558608 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154575914 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685505329520 139685963958914 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154575914 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685504275488 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154575915 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685503222640 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 424 0 0 0 0 0 0 0 20 0 15 0 154575917 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685501119344 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685500066544 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13978596 memory=140164413089408 CPUtime=0.02 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 340 0 0 0 2 0 0 0 20 0 15 0 154575917 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685499013744 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13978596 memory=140164413089408 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575917 14314082304 7099 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29780 KiB

[startup+0.21173 s]*
/proc/loadavg: 2.31 2.11 1.99 3/217 25926
/proc/meminfo: memFree=19328016/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13982852 memory=40604 CPUtime=0.33 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 8282 0 0 0 31 2 0 0 20 0 15 0 154575911 14318440448 10151 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3495713 10151 3060 1 0 3482966 0
[pid=25912/tid=25913] ppid=25910 vsize=13982852 memory=5855082630820233377 CPUtime=0.19 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) R 25910 25910 21004 0 -1 4202560 5373 0 0 0 18 1 0 0 20 0 15 0 154575912 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685968157504 139685949641219 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13982852 memory=3472468293308241104 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685894036624 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13982852 memory=140164413089408 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685558664208 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685557611408 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) S 25910 25910 21004 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685556558608 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13982852 memory=140164413089408 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154575914 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685505329520 139685963958914 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154575914 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685504275488 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154575915 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685503222640 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13982852 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 707 0 0 0 2 0 0 0 20 0 15 0 154575917 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685501119344 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13982852 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 143 0 0 0 1 0 0 0 20 0 15 0 154575917 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685500066544 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13982852 memory=140164413089408 CPUtime=0.08 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) R 25910 25910 21004 0 -1 4202560 755 0 0 0 8 0 0 0 20 0 15 0 154575917 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685499013744 139685942908610 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13982852 memory=140164413089408 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575917 14318440448 10151 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 41988 KiB

[startup+0.310832 s]*
/proc/loadavg: 2.31 2.11 1.99 4/217 25926
/proc/meminfo: memFree=19321564/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13982852 memory=47420 CPUtime=0.51 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 9096 0 0 0 49 2 0 0 20 0 15 0 154575911 14318440448 11855 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3495713 11855 3114 1 0 3482966 0
[pid=25912/tid=25913] ppid=25910 vsize=13982852 memory=-8540663193526752614 CPUtime=0.29 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) R 25910 25910 21004 0 -1 4202560 5891 0 0 0 28 1 0 0 20 0 15 0 154575912 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685968184640 139685575829034 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13982852 memory=3472468293308241104 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685894036624 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13982852 memory=140164413110412 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685558664208 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13982852 memory=140164311680310 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685557611408 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13982852 memory=140164311661519 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) S 25910 25910 21004 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154575913 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685556558608 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13982852 memory=140164413110443 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154575914 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685505329520 139685963958914 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13982852 memory=140164311670735 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154575914 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685504275488 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13982852 memory=280328623339152 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154575915 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685503222640 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13982852 memory=280328623346032 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13982852 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) R 25910 25910 21004 0 -1 4202560 851 0 0 0 4 0 0 0 20 0 15 0 154575917 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685501119344 139685945491946 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13982852 memory=2240 CPUtime=0.03 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) R 25910 25910 21004 0 -1 4202560 194 0 0 0 3 0 0 0 20 0 15 0 154575917 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685500066544 139685956184894 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13982852 memory=140164413089408 CPUtime=0.12 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 856 0 0 0 12 0 0 0 20 0 15 0 154575917 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685499013744 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13982852 memory=2208 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13982852 memory=140164413089408 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154575917 14318440448 11855 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 0.51 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 48804 KiB

[startup+0.700837 s]
/proc/loadavg: 2.31 2.11 1.99 6/217 25926
/proc/meminfo: memFree=19086436/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13982928 memory=375292 CPUtime=1.18 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 9943 0 0 0 96 22 0 0 20 0 15 0 154575911 14318518272 93311 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3495732 93311 3171 1 0 3482966 0
[pid=25912/tid=25913] ppid=25910 vsize=13982928 memory=1224 CPUtime=0.61 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) R 25910 25910 21004 0 -1 4202560 6261 0 0 0 54 7 0 0 20 0 15 0 154575912 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685968184944 139685575548819 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13982928 memory=792 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) S 25910 25910 21004 0 -1 1077944384 66 0 0 0 3 3 0 0 20 0 15 0 154575913 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685894036624 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13982928 memory=1004 CPUtime=0.05 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) S 25910 25910 21004 0 -1 1077944384 64 0 0 0 2 3 0 0 20 0 15 0 154575913 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685558664208 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13982928 memory=0 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) S 25910 25910 21004 0 -1 1077944384 60 0 0 0 3 3 0 0 20 0 15 0 154575913 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685557611408 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13982928 memory=280328623420736 CPUtime=0.04 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) S 25910 25910 21004 0 -1 1077944384 55 0 0 0 2 2 0 0 20 0 15 0 154575913 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685556558608 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13982928 memory=11268 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 84 0 0 0 0 0 0 0 20 0 15 0 154575914 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685505329520 139685963958914 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13982928 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 154575914 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685504275488 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13982928 memory=2319529385238513317 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 154575915 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685503222640 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13982928 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13982928 memory=51 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 866 0 0 0 6 0 0 0 20 0 15 0 154575917 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685501119344 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13982928 memory=5 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 216 0 0 0 6 0 0 0 20 0 15 0 154575917 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685500066544 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13982928 memory=9926 CPUtime=0.17 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 970 0 0 0 17 0 0 0 20 0 15 0 154575917 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685499013744 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13982928 memory=463 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13982928 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14318518272 93823 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 1.18 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 376676 KiB

[startup+1.50087 s]
/proc/loadavg: 2.31 2.11 1.99 6/217 25926
/proc/meminfo: memFree=18229868/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0

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

/proc/25912/task/25915/stat : 25915 (java) R 25910 25910 21004 0 -1 4202560 48614 0 0 0 909 260 0 0 20 0 15 0 154575913 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685558664408 139685948898866 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13984976 memory=792 CPUtime=11.73 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) R 25910 25910 21004 0 -1 4202560 76456 0 0 0 885 288 0 0 20 0 15 0 154575913 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685557611608 139685948645380 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13984976 memory=1004 CPUtime=11.65 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) R 25910 25910 21004 0 -1 4202560 22971 0 0 0 894 271 0 0 20 0 15 0 154575913 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685556558808 139685948933063 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13984976 memory=164 CPUtime=2.52 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 15066 0 0 0 247 5 0 0 20 0 15 0 154575914 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685505327840 139685963957973 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13984976 memory=280328623099696 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 154575914 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685504275552 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13984976 memory=0 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 154575915 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685503222656 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13984976 memory=6944656592387989600 CPUtime=0.5 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 3303 0 0 0 50 0 0 0 20 0 15 0 154575917 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685501119344 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13984976 memory=6947480095567603050 CPUtime=0.47 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 2701 0 0 0 47 0 0 0 20 0 15 0 154575917 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685500066544 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13984976 memory=9378692 CPUtime=0.29 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 2782 0 0 0 29 0 0 0 20 0 15 0 154575917 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685499013744 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13984976 memory=2908936 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13984976 memory=1957132 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 520 0 0 0 3 3 0 0 20 0 15 0 154575917 14320615424 2726062 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 138.77 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 10905632 KiB

[startup+104.001 s]*
/proc/loadavg: 2.49 2.26 2.06 6/217 26009
/proc/meminfo: memFree=14073464/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13984976 memory=11705632 CPUtime=144.38 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 328214 0 0 0 13253 1185 0 0 20 0 15 0 154575911 14320615424 2926408 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3496244 2926408 3248 1 0 3483478 0
[pid=25912/tid=25913] ppid=25910 vsize=13984976 memory=6791534058613427641 CPUtime=88.07 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) S 25910 25910 21004 0 -1 1077944384 106869 0 0 0 8780 27 0 0 20 0 15 0 154575912 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685968185984 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13984976 memory=-7003737579269690708 CPUtime=13.02 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) R 25910 25910 21004 0 -1 4202560 46180 0 0 0 997 305 0 0 20 0 15 0 154575913 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685894036208 139685956575975 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13984976 memory=840 CPUtime=13.04 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) R 25910 25910 21004 0 -1 4202560 49241 0 0 0 1029 275 0 0 20 0 15 0 154575913 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685558663792 139685956575975 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13984976 memory=1696 CPUtime=13.07 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) R 25910 25910 21004 0 -1 4202560 76894 0 0 0 1019 288 0 0 20 0 15 0 154575913 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685557611304 139685956575975 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13984976 memory=920 CPUtime=12.99 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) R 25910 25910 21004 0 -1 4202560 23286 0 0 0 1022 277 0 0 20 0 15 0 154575913 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685556558808 139685948898760 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13984976 memory=3832 CPUtime=2.78 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 15085 0 0 0 273 5 0 0 20 0 15 0 154575914 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685505327856 139685963957973 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13984976 memory=2660 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 154575914 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685504275552 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 154575915 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685503222656 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13984976 memory=6943526294502006880 CPUtime=0.5 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 3303 0 0 0 50 0 0 0 20 0 15 0 154575917 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685501119344 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13984976 memory=6943526294502006880 CPUtime=0.47 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 2701 0 0 0 47 0 0 0 20 0 15 0 154575917 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685500066544 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13984976 memory=7649399358461916466 CPUtime=0.29 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 2782 0 0 0 29 0 0 0 20 0 15 0 154575917 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685499013744 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13984976 memory=7682475212697334586 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13984976 memory=8303054830060986464 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 520 0 0 0 3 3 0 0 20 0 15 0 154575917 14320615424 2926408 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 144.38 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11707016 KiB

[startup+105.601 s]
/proc/loadavg: 2.49 2.26 2.06 6/217 26009
/proc/meminfo: memFree=14073464/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13984976 memory=11705660 CPUtime=150.53 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 388349 0 0 0 13863 1190 0 0 20 0 15 0 154575911 14320615424 2926415 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3496244 2926415 3248 1 0 3483478 0
[pid=25912/tid=25913] ppid=25910 vsize=13984976 memory=1384 CPUtime=88.07 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) S 25910 25910 21004 0 -1 1077944384 106869 0 0 0 8780 27 0 0 20 0 15 0 154575912 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685968185984 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13984976 memory=10875452 CPUtime=14.6 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) R 25910 25910 21004 0 -1 4202560 106309 0 0 0 1153 307 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685894036824 139685957050739 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13984976 memory=6791534058613427641 CPUtime=14.55 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) R 25910 25910 21004 0 -1 4202560 49241 0 0 0 1179 276 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685558664328 139685956575975 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13984976 memory=-2893623298589923098 CPUtime=14.59 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) R 25910 25910 21004 0 -1 4202560 76894 0 0 0 1170 289 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685557611216 139685956575975 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13984976 memory=0 CPUtime=14.53 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) R 25910 25910 21004 0 -1 4202560 23286 0 0 0 1175 278 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685556558416 139685956575975 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13984976 memory=0 CPUtime=2.79 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) S 25910 25910 21004 0 -1 1077944384 15090 0 0 0 274 5 0 0 20 0 15 0 154575914 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685505328080 139685963957973 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13984976 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 154575914 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685504275552 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13984976 memory=1420 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 154575915 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685503222656 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13984976 memory=11108 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13984976 memory=1712 CPUtime=0.5 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 3303 0 0 0 50 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685501119392 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13984976 memory=10875452 CPUtime=0.47 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 2702 0 0 0 47 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685500066304 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13984976 memory=1696 CPUtime=0.29 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 2782 0 0 0 29 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685499013792 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13984976 memory=920 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13984976 memory=3832 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 520 0 0 0 3 3 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 150.53 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11707044 KiB

[startup+106.001 s]*
/proc/loadavg: 2.77 2.32 2.08 3/217 26009
/proc/meminfo: memFree=14073588/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
[pid=25912] ppid=25910 vsize=13984976 memory=11705660 CPUtime=151.12 cores=1,3,5,7
/proc/25912/stat : 25912 (java) S 25910 25910 21004 0 -1 1077944320 388349 0 0 0 13922 1190 0 0 20 0 15 0 154575911 14320615424 2926415 33554432000 4194304 4196468 140730667596896 140730667579440 139685963947767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
/proc/25912/statm: 3496244 2926415 3248 1 0 3483478 0
[pid=25912/tid=25913] ppid=25910 vsize=13984976 memory=6791534058613427641 CPUtime=88.07 cores=1,3,5,7
/proc/25912/task/25913/stat : 25913 (java) S 25910 25910 21004 0 -1 1077944384 106869 0 0 0 8780 27 0 0 20 0 15 0 154575912 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685968185984 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25914] ppid=25910 vsize=13984976 memory=-7003737579269690708 CPUtime=14.66 cores=1,3,5,7
/proc/25912/task/25914/stat : 25914 (java) S 25910 25910 21004 0 -1 1077944384 106309 0 0 0 1159 307 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685894036624 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25915] ppid=25910 vsize=13984976 memory=2424 CPUtime=14.61 cores=1,3,5,7
/proc/25912/task/25915/stat : 25915 (java) S 25910 25910 21004 0 -1 1077944384 49241 0 0 0 1185 276 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685558664208 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25916] ppid=25910 vsize=13984976 memory=1236 CPUtime=14.65 cores=1,3,5,7
/proc/25912/task/25916/stat : 25916 (java) S 25910 25910 21004 0 -1 1077944384 76894 0 0 0 1176 289 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685557611408 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25917] ppid=25910 vsize=13984976 memory=2240 CPUtime=14.59 cores=1,3,5,7
/proc/25912/task/25917/stat : 25917 (java) S 25910 25910 21004 0 -1 1077944384 23286 0 0 0 1181 278 0 0 20 0 15 0 154575913 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685556558608 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25918] ppid=25910 vsize=13984976 memory=4128 CPUtime=3.13 cores=1,3,5,7
/proc/25912/task/25918/stat : 25918 (java) R 25910 25910 21004 0 -1 4202560 15090 0 0 0 308 5 0 0 20 0 15 0 154575914 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685505327968 139685948944171 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25919] ppid=25910 vsize=13984976 memory=1572 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25919/stat : 25919 (java) S 25910 25910 21004 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 154575914 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685504275552 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25920] ppid=25910 vsize=13984976 memory=932 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25920/stat : 25920 (java) S 25910 25910 21004 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 154575915 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685503222656 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25921] ppid=25910 vsize=13984976 memory=2200 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25921/stat : 25921 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685502170960 139685963966363 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25922] ppid=25910 vsize=13984976 memory=7792 CPUtime=0.5 cores=1,3,5,7
/proc/25912/task/25922/stat : 25922 (java) S 25910 25910 21004 0 -1 1077944384 3303 0 0 0 50 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685501119392 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25923] ppid=25910 vsize=13984976 memory=1384 CPUtime=0.47 cores=1,3,5,7
/proc/25912/task/25923/stat : 25923 (java) S 25910 25910 21004 0 -1 1077944384 2702 0 0 0 47 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685500066304 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25924] ppid=25910 vsize=13984976 memory=11705660 CPUtime=0.29 cores=1,3,5,7
/proc/25912/task/25924/stat : 25924 (java) S 25910 25910 21004 0 -1 1077944384 2782 0 0 0 29 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685499013792 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25925] ppid=25910 vsize=13984976 memory=15541808151136815 CPUtime=0 cores=1,3,5,7
/proc/25912/task/25925/stat : 25925 (java) S 25910 25910 21004 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685497961184 139685963957973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
[pid=25912/tid=25926] ppid=25910 vsize=13984976 memory=3467964792310233808 CPUtime=0.06 cores=1,3,5,7
/proc/25912/task/25926/stat : 25926 (java) S 25910 25910 21004 0 -1 1077944384 520 0 0 0 3 3 0 0 20 0 15 0 154575917 14320615424 2926415 33554432000 4194304 4196468 140730667596896 139685496908464 139685963958914 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 10428416 140730667603101 140730667603276 140730667603276 140730667605967 0
Current children cumulated CPU time: 151.12 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11707044 KiB

[startup+106.201 s]
/proc/loadavg: 2.77 2.32 2.08 3/217 26009
/proc/meminfo: memFree=14073588/32770624 swapFree=67108860/67108860
[pid=25910] ppid=25907 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/25910/stat : 25910 (xcsp3-exec) S 25907 25910 21004 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 154575911 9740288 346 33554432000 4194304 5098028 140732463220576 140732463218680 139720100352636 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 17698816 140732463223924 140732463224128 140732463224128 140732463226859 0
/proc/25910/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1384 KiB

Child status: 1
Real time (s): 106.218
CPU time (s): 151.348
CPU user time (s): 139.376
CPU system time (s): 11.9723
CPU usage (%): 142.488
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11707064

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 139.376
system time used= 11.9723
maximum resident set size= 11706144
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 389929
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= 8390
involuntary context switches= 778


# summary of solver processes directly reported to runsolver:
#   pid: 25910
#   total CPU time (s): 151.348
#   total CPU user time (s): 139.376
#   total CPU system time (s): 11.9723

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.650986 second user time and 1.20084 second system time

The end

Launcher Data

Begin job on node107 at 2017-08-20 09:27:00
IDJOB=4282764
IDBENCH=138092
IDSOLVER=2678
FILE ID=node107/4282764-1503214879
RUNJOBID= node107-1503208459-21036
PBS_JOBID= 20630867
Free space on /tmp= 61668 MiB

SOLVER NAME= choco-solver 4.0.5 seq
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-50.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4282764-1503214879/watcher-4282764-1503214879 -o /tmp/evaluation-result-4282764-1503214879/solver-4282764-1503214879 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node107-1503208459-21036 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 2035012072 HOME/instance-4282764-1503214879.xml

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

MD5SUM BENCH= 53b1156e30bb035a294b23873bcaa6f4
RANDOM SEED=2035012072

node107.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.84
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.84
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.84
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.84
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:        19357552 kB
MemAvailable:   24943708 kB
Buffers:          270804 kB
Cached:          5605988 kB
SwapCached:            0 kB
Active:          8036468 kB
Inactive:        4911904 kB
Active(anon):    7074516 kB
Inactive(anon):    33132 kB
Active(file):     961952 kB
Inactive(file):  4878772 kB
Unevictable:        7640 kB
Mlocked:            7640 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             93736 kB
Writeback:             0 kB
AnonPages:       7079196 kB
Mapped:            64184 kB
Shmem:             33420 kB
Slab:             149344 kB
SReclaimable:     122536 kB
SUnreclaim:        26808 kB
KernelStack:        3536 kB
PageTables:        19156 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    8754092 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   6928384 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       91520 kB
DirectMap2M:    33454080 kB

Free space on /tmp at the end= 61696 MiB
End job on node107 at 2017-08-20 09:28:46