Trace number 4283239

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 5a (2017-08-18)? 142.93201 94.324699

General information on the benchmark

NameBinPacking/BinPacking-tab-sw100/
BinPacking-tab-sw100-15.xml
MD5SUMafde4c54681b724bee939c95254967be
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 benchmark2400.09
Satisfiable
(Un)Satisfiability was proved
Number of variables109
Number of constraints21
Number of domains2
Minimum domain size19
Maximum domain size43
Distribution of domain sizes[{"size":19,"count":1},{"size":43,"count":108}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":90},{"degree":4,"count":18}]
Minimum constraint arity6
Maximum constraint arity108
Distribution of constraint arities[{"arity":6,"count":18},{"arity":19,"count":1},{"arity":108,"count":2}]
Number of extensional constraints18
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":18},{"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-4283239-1503221334.xml"  -tl '2520s' -p 1 -x 3
0.12/0.14	c [HOME/instance-4283239-1503221334.xml, -tl, 2520s, -p, 1, -x, 3]
0.12/0.19	c simple solver
0.33/0.26	c parse instance...
142.80/94.27	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
142.80/94.27		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
142.80/94.27		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
142.80/94.27		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1867)
142.80/94.27		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1823)
142.80/94.27		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
142.80/94.27		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
142.80/94.27		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
142.80/94.27		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
142.80/94.27		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
142.80/94.27		at org.xcsp.parser.XCallbacks$$Lambda$70/280884709.accept(Unknown Source)
142.80/94.27		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
142.80/94.27		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
142.80/94.27		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
142.80/94.27		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
142.80/94.27		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
142.80/94.27		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
142.80/94.27		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
142.80/94.27		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
142.80/94.27		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
142.80/94.27		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
142.80/94.27		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
142.80/94.27	s UNKNOWN
142.80/94.27	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 (12647 MiB free)
  memory of node 1: 16384 MiB (12894 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4283239-1503221334/watcher-4283239-1503221334 -o /tmp/evaluation-result-4283239-1503221334/solver-4283239-1503221334 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node113-1503215438-13002 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 2043905507 HOME/instance-4283239-1503221334.xml 

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

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


[startup+0.100141 s]*
/proc/loadavg: 1.54 1.51 1.59 3/218 13737
/proc/meminfo: memFree=26138528/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13978596 memory=28084 CPUtime=0.12 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 5440 0 0 0 11 1 0 0 20 0 15 0 155220897 14314082304 7021 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3494649 7021 2869 1 0 3482966 0
[pid=13723/tid=13724] ppid=13721 vsize=13978596 memory=8514701219881125282 CPUtime=0.09 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) R 13721 13721 8036 0 -1 4202560 3394 0 0 0 8 1 0 0 20 0 15 0 155220898 14314082304 7087 33554432000 4194304 4196468 140726264451680 140528635945792 140528631725462 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13978596 memory=3472468164695590096 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14314082304 7087 33554432000 4194304 4196468 140726264451680 140528584334096 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13978596 memory=140035800438400 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14314082304 7087 33554432000 4194304 4196468 140726264451680 140528583281552 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14314082304 7087 33554432000 4194304 4196468 140726264451680 140528582229008 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) S 13721 13721 8036 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155220898 14314082304 7087 33554432000 4194304 4196468 140726264451680 140528581176464 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) S 13721 13721 8036 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155220900 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527610869744 140528631724674 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155220900 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527609815968 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155220900 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527608763376 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 308 0 0 0 0 0 0 0 20 0 15 0 155220903 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 122 0 0 0 0 0 0 0 20 0 15 0 155220903 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13978596 memory=140035800438400 CPUtime=0.01 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) R 13721 13721 8036 0 -1 4202560 336 0 0 0 1 0 0 0 20 0 15 0 155220903 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527604554480 140528610522547 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13978596 memory=140035800438400 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220903 14314082304 7087 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29464 KiB

[startup+0.210855 s]*
/proc/loadavg: 1.54 1.51 1.59 5/218 13737
/proc/meminfo: memFree=26126884/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13982852 memory=40656 CPUtime=0.33 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 8252 0 0 0 31 2 0 0 20 0 15 0 155220897 14318440448 10164 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3495713 10164 3080 1 0 3482966 0
[pid=13723/tid=13724] ppid=13721 vsize=13982852 memory=5855082630820233377 CPUtime=0.19 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) R 13721 13721 8036 0 -1 4202560 5390 0 0 0 18 1 0 0 20 0 15 0 155220898 14318440448 10164 33554432000 4194304 4196468 140726264451680 140528635924432 140528615794014 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13982852 memory=3472468164695590096 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 10164 33554432000 4194304 4196468 140726264451680 140528584334096 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13982852 memory=140035800438400 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 10164 33554432000 4194304 4196468 140726264451680 140528583281552 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 10164 33554432000 4194304 4196468 140726264451680 140528582229008 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) S 13721 13721 8036 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 10164 33554432000 4194304 4196468 140726264451680 140528581176464 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13982852 memory=140035800438400 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) S 13721 13721 8036 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155220900 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527610869744 140528631724674 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155220900 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527609815968 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155220900 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527608763376 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 615 0 0 0 3 0 0 0 20 0 15 0 155220903 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13982852 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) R 13721 13721 8036 0 -1 1077944384 217 0 0 0 1 0 0 0 20 0 15 0 155220903 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13982852 memory=140035800438400 CPUtime=0.07 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) R 13721 13721 8036 0 -1 4202560 729 0 0 0 7 0 0 0 20 0 15 0 155220903 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527604554480 140528608937680 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13982852 memory=140035800438400 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220903 14318440448 10164 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 42036 KiB

[startup+0.32036 s]*
/proc/loadavg: 1.54 1.51 1.59 5/218 13737
/proc/meminfo: memFree=26119948/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13982852 memory=51876 CPUtime=0.54 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 9066 0 0 0 51 3 0 0 20 0 15 0 155220897 14318440448 12969 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3495713 12969 3106 1 0 3482966 0
[pid=13723/tid=13724] ppid=13721 vsize=13982852 memory=8514701219880862117 CPUtime=0.3 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) R 13721 13721 8036 0 -1 4202560 5919 0 0 0 28 2 0 0 20 0 15 0 155220898 14318440448 12969 33554432000 4194304 4196468 140726264451680 140528635948432 140528631735453 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13982852 memory=3472468164695590096 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 12969 33554432000 4194304 4196468 140726264451680 140528584334096 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13982852 memory=140035800438400 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 12969 33554432000 4194304 4196468 140726264451680 140528583281552 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13982852 memory=8 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 12969 33554432000 4194304 4196468 140726264451680 140528582229008 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13982852 memory=140035663996959 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) S 13721 13721 8036 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155220898 14318440448 12969 33554432000 4194304 4196468 140726264451680 140528581176464 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13982852 memory=280071327954688 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) S 13721 13721 8036 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155220900 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527610869744 140528631724674 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13982852 memory=140035663973903 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155220900 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527609815968 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13982852 memory=280071464421472 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155220900 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527608763376 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13982852 memory=140035663978511 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13982852 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 630 0 0 0 5 0 0 0 20 0 15 0 155220903 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13982852 memory=-1 CPUtime=0.04 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 403 0 0 0 4 0 0 0 20 0 15 0 155220903 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13982852 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) S 13721 13721 8036 0 -1 1077944384 810 0 0 0 12 0 0 0 20 0 15 0 155220903 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527604554480 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13982852 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220903 14318440448 12969 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 0.54 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 53256 KiB

[startup+0.700945 s]
/proc/loadavg: 1.54 1.51 1.59 6/218 13737
/proc/meminfo: memFree=25924272/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13982928 memory=486184 CPUtime=1.17 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 10197 0 0 0 93 24 0 0 20 0 15 0 155220897 14318518272 121546 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3495732 121546 3144 1 0 3482966 0
[pid=13723/tid=13724] ppid=13721 vsize=13982928 memory=280071327780720 CPUtime=0.61 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) R 13721 13721 8036 0 -1 4202560 6593 0 0 0 53 8 0 0 20 0 15 0 155220898 14318518272 121546 33554432000 4194304 4196468 140726264451680 140528635947440 140528262016339 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13982928 memory=3835163037842756688 CPUtime=0.05 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) S 13721 13721 8036 0 -1 1077944384 62 0 0 0 2 3 0 0 20 0 15 0 155220898 14318518272 121546 33554432000 4194304 4196468 140726264451680 140528584334096 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13982928 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) S 13721 13721 8036 0 -1 1077944384 64 0 0 0 2 3 0 0 20 0 15 0 155220898 14318518272 121546 33554432000 4194304 4196468 140726264451680 140528583281552 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13982928 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) S 13721 13721 8036 0 -1 1077944384 65 0 0 0 2 3 0 0 20 0 15 0 155220898 14318518272 121546 33554432000 4194304 4196468 140726264451680 140528582229008 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13982928 memory=5796 CPUtime=0.04 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) S 13721 13721 8036 0 -1 1077944384 53 0 0 0 2 2 0 0 20 0 15 0 155220898 14318518272 121546 33554432000 4194304 4196468 140726264451680 140528581176464 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13982928 memory=1224 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) S 13721 13721 8036 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 155220900 14318518272 121546 33554432000 4194304 4196468 140726264451680 140527610869744 140528631724674 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13982928 memory=8716 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 155220900 14318518272 121546 33554432000 4194304 4196468 140726264451680 140527609815968 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13982928 memory=1712 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 155220900 14318518272 121546 33554432000 4194304 4196468 140726264451680 140527608763376 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13982928 memory=7452706766398776640 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14318518272 121546 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13982928 memory=7881696724453321575 CPUtime=0.06 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 640 0 0 0 6 0 0 0 20 0 15 0 155220903 14318518272 121546 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13982928 memory=7151835304759939152 CPUtime=0.06 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 413 0 0 0 6 0 0 0 20 0 15 0 155220903 14318518272 122058 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13982928 memory=0 CPUtime=0.16 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) S 13721 13721 8036 0 -1 1077944384 924 0 0 0 16 0 0 0 20 0 15 0 155220903 14318518272 122058 33554432000 4194304 4196468 140726264451680 140527604554480 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13982928 memory=0 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14318518272 122058 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13982928 memory=42804 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155220903 14318518272 122058 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 1.17 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 487564 KiB

[startup+1.50089 s]
/proc/loadavg: 1.54 1.51 1.59 7/218 13737
/proc/meminfo: memFree=25120848/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0

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

/proc/13723/task/13726/stat : 13726 (java) R 13721 13721 8036 0 -1 4202560 27712 0 0 0 1249 264 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528583281360 140528624341735 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13984976 memory=800 CPUtime=14.97 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) R 13721 13721 8036 0 -1 4202560 24267 0 0 0 1224 273 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528582229128 140528624341735 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13984976 memory=1380 CPUtime=15.09 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) R 13721 13721 8036 0 -1 4202560 32145 0 0 0 1235 274 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528581176664 140528624816541 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13984976 memory=11445816 CPUtime=2.68 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) S 13721 13721 8036 0 -1 1077944384 18261 0 0 0 265 3 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527610868304 140528631723733 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 66 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13984976 memory=-3622645143214314312 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527609816032 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13984976 memory=1224 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527608763392 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13984976 memory=8716 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13984976 memory=1712 CPUtime=0.43 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 2982 0 0 0 43 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13984976 memory=6791534058613427641 CPUtime=0.47 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 2582 0 0 0 47 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13984976 memory=7353424 CPUtime=0.3 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) S 13721 13721 8036 0 -1 1077944384 3345 0 0 0 30 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527604554480 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13984976 memory=2240 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13984976 memory=4124 CPUtime=0.06 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 470 0 0 0 2 4 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 72 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 138.48 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11447700 KiB

[startup+93.6008 s]
/proc/loadavg: 2.11 1.67 1.63 6/217 13738
/proc/meminfo: memFree=14517004/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13984976 memory=11446320 CPUtime=141.59 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 172471 0 0 0 13016 1143 0 0 20 0 15 0 155220897 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3496244 2861580 3246 1 0 3483478 0
[pid=13723/tid=13724] ppid=13721 vsize=13984976 memory=-3622645143214314312 CPUtime=74.17 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) S 13721 13721 8036 0 -1 1077944384 31746 0 0 0 7395 22 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528635951744 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13984976 memory=8716 CPUtime=15.84 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) R 13721 13721 8036 0 -1 4202560 21399 0 0 0 1288 296 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528584334216 140528624341735 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13984976 memory=1712 CPUtime=15.91 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) R 13721 13721 8036 0 -1 4202560 27712 0 0 0 1326 265 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528583281360 140528624341735 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13984976 memory=4612 CPUtime=15.74 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) R 13721 13721 8036 0 -1 4202560 24267 0 0 0 1300 274 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528582228816 140528615096562 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13984976 memory=1004 CPUtime=15.9 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) R 13721 13721 8036 0 -1 4202560 38357 0 0 0 1315 275 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528581176664 140528624816561 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13984976 memory=1200 CPUtime=2.68 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) S 13721 13721 8036 0 -1 1077944384 18261 0 0 0 265 3 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527610868304 140528631723733 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 66 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527609816032 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13984976 memory=8988976 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527608763392 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13984976 memory=1160 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13984976 memory=2960 CPUtime=0.43 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 2982 0 0 0 43 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13984976 memory=1380 CPUtime=0.47 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 2582 0 0 0 47 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13984976 memory=11429432 CPUtime=0.3 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) S 13721 13721 8036 0 -1 1077944384 3345 0 0 0 30 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527604554480 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13984976 memory=1732 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13984976 memory=1948 CPUtime=0.06 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 470 0 0 0 2 4 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 72 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 141.59 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11447700 KiB

[startup+94.0008 s]*
/proc/loadavg: 2.11 1.67 1.63 3/217 13738
/proc/meminfo: memFree=14518748/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13984976 memory=11446320 CPUtime=142.61 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 173287 0 0 0 13117 1144 0 0 20 0 15 0 155220897 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3496244 2861580 3246 1 0 3483478 0
[pid=13723/tid=13724] ppid=13721 vsize=13984976 memory=6791534058613427641 CPUtime=74.17 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) S 13721 13721 8036 0 -1 1077944384 31746 0 0 0 7395 22 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528635951744 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13984976 memory=-7003737579269690708 CPUtime=16.04 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) S 13721 13721 8036 0 -1 1077944384 21399 0 0 0 1308 296 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528584334096 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13984976 memory=2540 CPUtime=16.11 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) S 13721 13721 8036 0 -1 1077944384 27712 0 0 0 1346 265 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528583281552 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13984976 memory=4108 CPUtime=15.94 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) S 13721 13721 8036 0 -1 1077944384 24267 0 0 0 1320 274 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528582229008 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13984976 memory=1156 CPUtime=16.11 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) S 13721 13721 8036 0 -1 1077944384 39172 0 0 0 1336 275 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528581176464 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13984976 memory=3152 CPUtime=2.88 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) R 13721 13721 8036 0 -1 4202560 18261 0 0 0 285 3 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527610868304 140528616709872 0 0 0 16800975 0 0 0 -1 3 0 0 66 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527609816032 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13984976 memory=42804 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527608763392 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13984976 memory=4100 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13984976 memory=42804 CPUtime=0.43 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 2982 0 0 0 43 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13984976 memory=140035664692657 CPUtime=0.47 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 2582 0 0 0 47 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13984976 memory=1292 CPUtime=0.3 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) S 13721 13721 8036 0 -1 1077944384 3345 0 0 0 30 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527604554480 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13984976 memory=960 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13984976 memory=4472 CPUtime=0.06 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 470 0 0 0 2 4 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 72 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 142.61 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11447700 KiB

[startup+94.2008 s]
/proc/loadavg: 2.11 1.67 1.63 3/217 13738
/proc/meminfo: memFree=14518748/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
[pid=13723] ppid=13721 vsize=13984976 memory=11446320 CPUtime=142.8 cores=1,3,5,7
/proc/13723/stat : 13723 (java) S 13721 13721 8036 0 -1 1077944320 173529 0 0 0 13136 1144 0 0 20 0 15 0 155220897 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140726264434224 140528631713527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
/proc/13723/statm: 3496244 2861580 3246 1 0 3483478 0
[pid=13723/tid=13724] ppid=13721 vsize=13984976 memory=13566002935894027 CPUtime=74.17 cores=1,3,5,7
/proc/13723/task/13724/stat : 13724 (java) S 13721 13721 8036 0 -1 1077944384 31746 0 0 0 7395 22 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528635951744 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13725] ppid=13721 vsize=13984976 memory=4100 CPUtime=16.04 cores=1,3,5,7
/proc/13723/task/13725/stat : 13725 (java) S 13721 13721 8036 0 -1 1077944384 21399 0 0 0 1308 296 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528584334096 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13726] ppid=13721 vsize=13984976 memory=42804 CPUtime=16.11 cores=1,3,5,7
/proc/13723/task/13726/stat : 13726 (java) S 13721 13721 8036 0 -1 1077944384 27712 0 0 0 1346 265 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528583281552 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13727] ppid=13721 vsize=13984976 memory=1292 CPUtime=15.94 cores=1,3,5,7
/proc/13723/task/13727/stat : 13727 (java) S 13721 13721 8036 0 -1 1077944384 24267 0 0 0 1320 274 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528582229008 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13728] ppid=13721 vsize=13984976 memory=2448 CPUtime=16.11 cores=1,3,5,7
/proc/13723/task/13728/stat : 13728 (java) S 13721 13721 8036 0 -1 1077944384 39172 0 0 0 1336 275 0 0 20 0 15 0 155220898 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140528581176464 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13729] ppid=13721 vsize=13984976 memory=1732 CPUtime=3.07 cores=1,3,5,7
/proc/13723/task/13729/stat : 13729 (java) R 13721 13721 8036 0 -1 4202560 18503 0 0 0 304 3 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527610868304 140528616171158 0 0 0 16800975 0 0 0 -1 3 0 0 66 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13730] ppid=13721 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13730/stat : 13730 (java) S 13721 13721 8036 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527609816032 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13731] ppid=13721 vsize=13984976 memory=800 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13731/stat : 13731 (java) S 13721 13721 8036 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 155220900 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527608763392 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13732] ppid=13721 vsize=13984976 memory=12132 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13732/stat : 13732 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527607711952 140528631732123 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13733] ppid=13721 vsize=13984976 memory=1440 CPUtime=0.43 cores=1,3,5,7
/proc/13723/task/13733/stat : 13733 (java) S 13721 13721 8036 0 -1 1077944384 2982 0 0 0 43 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527606659568 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13734] ppid=13721 vsize=13984976 memory=-7522837583129502606 CPUtime=0.47 cores=1,3,5,7
/proc/13723/task/13734/stat : 13734 (java) S 13721 13721 8036 0 -1 1077944384 2582 0 0 0 47 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527605607024 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13735] ppid=13721 vsize=13984976 memory=6944652177228980320 CPUtime=0.3 cores=1,3,5,7
/proc/13723/task/13735/stat : 13735 (java) S 13721 13721 8036 0 -1 1077944384 3345 0 0 0 30 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527604554480 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13736] ppid=13721 vsize=13984976 memory=1236 CPUtime=0 cores=1,3,5,7
/proc/13723/task/13736/stat : 13736 (java) S 13721 13721 8036 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527603502176 140528631723733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
[pid=13723/tid=13737] ppid=13721 vsize=13984976 memory=932 CPUtime=0.06 cores=1,3,5,7
/proc/13723/task/13737/stat : 13737 (java) S 13721 13721 8036 0 -1 1077944384 470 0 0 0 2 4 0 0 20 0 15 0 155220903 14320615424 2861580 33554432000 4194304 4196468 140726264451680 140527602448688 140528631724674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 72 0 0 6293624 6294260 28807168 140726264456343 140726264456519 140726264456519 140726264459215 0
Current children cumulated CPU time: 142.8 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11447700 KiB

[startup+94.3008 s]
/proc/loadavg: 2.11 1.67 1.63 3/217 13738
/proc/meminfo: memFree=14518748/32770624 swapFree=67108860/67108860
[pid=13721] ppid=13718 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/13721/stat : 13721 (xcsp3-exec) S 13718 13721 8036 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 155220897 9740288 345 33554432000 4194304 5098028 140723677035984 140723677034088 140123120366204 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 39944192 140723677037678 140723677037883 140723677037883 140723677040619 0
/proc/13721/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

Child status: 1
Real time (s): 94.3247
CPU time (s): 142.932
CPU user time (s): 131.445
CPU system time (s): 11.4874
CPU usage (%): 151.532
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11447700

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 131.445
system time used= 11.4874
maximum resident set size= 11446776
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 174441
page faults= 0
swaps= 0
block input operations= 0
block output operations= 264
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 5667
involuntary context switches= 658


# summary of solver processes directly reported to runsolver:
#   pid: 13721
#   total CPU time (s): 142.932
#   total CPU user time (s): 131.445
#   total CPU system time (s): 11.4874

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.688958 second user time and 0.986779 second system time

The end

Launcher Data

Begin job on node113 at 2017-08-20 11:14:34
IDJOB=4283239
IDBENCH=137919
IDSOLVER=2679
FILE ID=node113/4283239-1503221334
RUNJOBID= node113-1503215438-13002
PBS_JOBID= 20630874
Free space on /tmp= 61520 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw100/BinPacking-tab-sw100-15.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-4283239-1503221334/watcher-4283239-1503221334 -o /tmp/evaluation-result-4283239-1503221334/solver-4283239-1503221334 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node113-1503215438-13002 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 2043905507 HOME/instance-4283239-1503221334.xml

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

MD5SUM BENCH= afde4c54681b724bee939c95254967be
RANDOM SEED=2043905507

node113.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.89
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.89
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.89
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.89
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:        26155816 kB
MemAvailable:   31597236 kB
Buffers:          259048 kB
Cached:          5471796 kB
SwapCached:            0 kB
Active:          1755992 kB
Inactive:        4403088 kB
Active(anon):     378356 kB
Inactive(anon):    85940 kB
Active(file):    1377636 kB
Inactive(file):  4317148 kB
Unevictable:        7460 kB
Mlocked:            7460 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             75992 kB
Writeback:             0 kB
AnonPages:        441516 kB
Mapped:            64064 kB
Shmem:             33416 kB
Slab:             152356 kB
SReclaimable:     124940 kB
SUnreclaim:        27416 kB
KernelStack:        3552 kB
PageTables:         6404 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1180852 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    337920 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      116096 kB
DirectMap2M:    33429504 kB

Free space on /tmp at the end= 61512 MiB
End job on node113 at 2017-08-20 11:16:09