Trace number 4283696

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
choco-solver 5a (2017-08-18)? 71.209999 20.5138

General information on the benchmark

NameHanoi/Hanoi-m1-s1/
Hanoi-09.xml
MD5SUM974f0afcd706a93e2571fe02010426b6
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark19.367001
Satisfiable
(Un)Satisfiability was proved
Number of variables510
Number of constraints510
Number of domains1
Minimum domain size19683
Maximum domain size19683
Distribution of domain sizes[{"size":19683,"count":510}]
Minimum variable degree1
Maximum variable degree2
Distribution of variable degrees[{"degree":1,"count":509},{"degree":2,"count":1}]
Minimum constraint arity1
Maximum constraint arity2
Distribution of constraint arities[{"arity":1,"count":1},{"arity":2,"count":509}]
Number of extensional constraints509
Number of intensional constraints1
Distribution of constraint types[{"type":"extension","count":509},{"type":"intension","count":1}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4283696-1503222692.xml"  -tl '2520s' -p 1 -x 3
0.13/0.14	c [HOME/instance-4283696-1503222692.xml, -tl, 2520s, -p, 1, -x, 3]
0.13/0.19	c simple solver
0.33/0.26	c parse instance...
61.99/18.12	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
71.05/20.46		at java.util.BitSet.initWords(BitSet.java:166)
71.05/20.46		at java.util.BitSet.<init>(BitSet.java:161)
71.05/20.46		at org.chocosolver.solver.constraints.extension.binary.CouplesBitSetTable.<init>(CouplesBitSetTable.java:53)
71.05/20.46		at org.chocosolver.solver.constraints.extension.binary.PropBinAC3bitrm.<init>(PropBinAC3bitrm.java:41)
71.05/20.46		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:400)
71.05/20.46		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:366)
71.05/20.46		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1853)
71.05/20.46		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1823)
71.05/20.46		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
71.05/20.46		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
71.05/20.46		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
71.05/20.46		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
71.05/20.46		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
71.05/20.46		at org.xcsp.parser.XCallbacks$$Lambda$71/786041152.accept(Unknown Source)
71.05/20.46		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
71.05/20.46		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
71.05/20.46		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
71.05/20.46		at org.xcsp.parser.XCallbacks.loadSlide(XCallbacks.java:421)
71.05/20.46		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:370)
71.05/20.46		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
71.05/20.46		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
71.05/20.46		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
71.05/20.46		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
71.05/20.46		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
71.05/20.46		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
71.05/20.46	s UNKNOWN
71.05/20.46	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 (8447 MiB free)
  memory of node 1: 16384 MiB (12134 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4283696-1503222692/watcher-4283696-1503222692 -o /tmp/evaluation-result-4283696-1503222692/solver-4283696-1503222692 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node104-1503215340-8906 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 517638378 HOME/instance-4283696-1503222692.xml 

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

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

solver pid=10293, runsolver pid=10290

[startup+0.100493 s]*
/proc/loadavg: 1.77 1.60 1.51 3/217 10309
/proc/meminfo: memFree=21058528/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13978596 memory=28004 CPUtime=0.13 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 5435 0 0 0 11 2 0 0 20 0 15 0 155356942 14314082304 7001 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3494649 7001 2842 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13978596 memory=-6962121287837372198 CPUtime=0.09 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) R 10293 10293 3809 0 -1 4202560 3437 0 0 0 8 1 0 0 20 0 15 0 155356942 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429634376176 140429611726440 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13978596 memory=-3689349214911541841 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429226076432 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13978596 memory=140380100208256 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429225023888 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429223971344 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356943 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429222918800 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13978596 memory=140380100208256 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356944 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429104368112 140429630155394 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155356944 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429103314336 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155356945 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429102261744 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) S 10293 10293 3809 0 -1 1077944384 310 0 0 0 0 0 0 0 20 0 15 0 155356947 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429100156912 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) S 10293 10293 3809 0 -1 1077944384 129 0 0 0 0 0 0 0 20 0 15 0 155356947 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429099104368 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13978596 memory=140380100208256 CPUtime=0.01 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) R 10293 10293 3809 0 -1 4202560 315 0 0 0 1 0 0 0 20 0 15 0 155356947 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429098051824 140429622381374 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13978596 memory=140380100208256 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356948 14314082304 7066 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29388 KiB

[startup+0.210807 s]*
/proc/loadavg: 1.77 1.60 1.51 4/217 10309
/proc/meminfo: memFree=21047488/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13982852 memory=40572 CPUtime=0.33 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 8248 0 0 0 31 2 0 0 20 0 15 0 155356942 14318440448 10143 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3495713 10143 3082 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13982852 memory=7883960649037381690 CPUtime=0.19 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) R 10293 10293 3809 0 -1 4202560 5426 0 0 0 18 1 0 0 20 0 15 0 155356942 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429634353984 140429630166173 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13982852 memory=8944 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429226076432 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13982852 memory=140380100218808 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429225023888 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429223971344 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429222918800 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982852 memory=140380100208256 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356944 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429104368112 140429630155394 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155356944 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429103314336 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155356945 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429102261744 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982852 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) S 10293 10293 3809 0 -1 1077944384 610 0 0 0 2 0 0 0 20 0 15 0 155356947 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429100156912 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982852 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) S 10293 10293 3809 0 -1 1077944384 151 0 0 0 1 0 0 0 20 0 15 0 155356947 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429099104368 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982852 memory=140380100208256 CPUtime=0.08 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) R 10293 10293 3809 0 -1 4202560 789 0 0 0 8 0 0 0 20 0 15 0 155356947 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429098051824 140429630156182 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356948 14318440448 10143 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 41956 KiB

[startup+0.311042 s]*
/proc/loadavg: 1.77 1.60 1.51 4/217 10309
/proc/meminfo: memFree=21040540/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13982852 memory=47960 CPUtime=0.52 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 9147 0 0 0 49 3 0 0 20 0 15 0 155356942 14318440448 11990 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3495713 11990 3121 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13982852 memory=6791534058613427641 CPUtime=0.3 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) R 10293 10293 3809 0 -1 4202560 5955 0 0 0 28 2 0 0 20 0 15 0 155356942 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429634379360 140429630166173 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13982852 memory=4126316290023845779 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429226076432 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13982852 memory=6944656575208382560 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429225023888 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982852 memory=-5587046532246807594 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429223971344 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982852 memory=7307460116655545206 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356943 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429222918800 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982852 memory=7016714186490735262 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356944 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429104368112 140429630155394 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982852 memory=-9062862659931694204 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155356944 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429103314336 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982852 memory=3047711566422646390 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155356945 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429102261744 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982852 memory=8693815914432465728 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982852 memory=7100839887185294217 CPUtime=0.04 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) R 10293 10293 3809 0 -1 4202560 741 0 0 0 4 0 0 0 20 0 15 0 155356947 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429100156912 140429615270464 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982852 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) R 10293 10293 3809 0 -1 4202560 261 0 0 0 4 0 0 0 20 0 15 0 155356947 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429099104368 140429622381374 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982852 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) S 10293 10293 3809 0 -1 1077944384 887 0 0 0 12 0 0 0 20 0 15 0 155356947 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429098051824 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356948 14318440448 11990 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 49344 KiB

[startup+0.700949 s]
/proc/loadavg: 1.77 1.60 1.51 5/217 10309
/proc/meminfo: memFree=21000828/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13982928 memory=169448 CPUtime=1.57 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 11443 0 0 0 152 5 0 0 20 0 15 0 155356942 14318518272 42362 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3495732 42362 3196 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13982928 memory=1728 CPUtime=0.68 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) R 10293 10293 3809 0 -1 4202560 6318 0 0 0 64 4 0 0 20 0 15 0 155356942 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429634381864 140429270884544 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13982928 memory=1716 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429226076432 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13982928 memory=796 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429225023888 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982928 memory=1952 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356943 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429223971344 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982928 memory=1200 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) S 10293 10293 3809 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 155356943 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429222918800 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982928 memory=8616 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 155356944 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429104368112 140429630155394 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982928 memory=5784 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 155356944 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429103314336 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982928 memory=4616 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 155356945 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429102261744 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982928 memory=1008 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982928 memory=11112 CPUtime=0.31 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) R 10293 10293 3809 0 -1 4202560 1248 0 0 0 31 0 0 0 20 0 15 0 155356947 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429100157040 140429614531570 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982928 memory=1228 CPUtime=0.31 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) R 10293 10293 3809 0 -1 4202560 1205 0 0 0 31 0 0 0 20 0 15 0 155356947 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429099090392 140429611687539 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982928 memory=1420 CPUtime=0.24 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) S 10293 10293 3809 0 -1 1077944384 1365 0 0 0 24 0 0 0 20 0 15 0 155356947 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429098051824 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982928 memory=15876 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982928 memory=16448 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 155356948 14318518272 42362 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 1.57 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 170832 KiB

[startup+1.50119 s]
/proc/loadavg: 1.77 1.60 1.51 4/217 10309
/proc/meminfo: memFree=20736768/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0

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

/proc/10295/task/10298/stat : 10298 (java) R 10293 10293 3809 0 -1 4202560 10495 0 0 0 1121 260 0 0 20 0 15 0 155356943 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429225023888 140429614843539 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982928 memory=43128 CPUtime=13.76 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) R 10293 10293 3809 0 -1 4202560 8103 0 0 0 1085 291 0 0 20 0 15 0 155356943 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429223971544 140429615140893 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982928 memory=1296 CPUtime=13.75 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) R 10293 10293 3809 0 -1 4202560 9303 0 0 0 1092 283 0 0 20 0 15 0 155356943 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429222918800 140429615140893 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982928 memory=2428 CPUtime=0.6 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 13923 0 0 0 58 2 0 0 20 0 15 0 155356944 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429104366656 140429630154453 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982928 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 155356944 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429103313936 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982928 memory=11727096 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 155356945 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429102261760 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982928 memory=1716 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982928 memory=796 CPUtime=0.56 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) S 10293 10293 3809 0 -1 1077944384 1832 0 0 0 56 0 0 0 20 0 15 0 155356947 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429100156912 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982928 memory=1952 CPUtime=0.57 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) S 10293 10293 3809 0 -1 1077944384 1847 0 0 0 57 0 0 0 20 0 15 0 155356947 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429099104368 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982928 memory=1200 CPUtime=0.31 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) S 10293 10293 3809 0 -1 1077944384 1590 0 0 0 31 0 0 0 20 0 15 0 155356947 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429098051824 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982928 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982928 memory=10147344 CPUtime=0.01 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 340 0 0 0 0 1 0 0 20 0 15 0 155356948 14318518272 2931824 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 10 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 60.25 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 11728680 KiB

[startup+19.2012 s]
/proc/loadavg: 2.50 1.77 1.57 6/217 10309
/proc/meminfo: memFree=9338140/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13982928 memory=11727328 CPUtime=66.27 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 72320 0 0 0 5489 1138 0 0 20 0 15 0 155356942 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3495732 2931832 3249 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13982928 memory=-7087961436404368800 CPUtime=3.06 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) S 10293 10293 3809 0 -1 1077944384 8572 0 0 0 296 10 0 0 20 0 15 0 155356942 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429634383520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13982928 memory=6791534058613427641 CPUtime=15.22 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) R 10293 10293 3809 0 -1 4202560 15007 0 0 0 1235 287 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429226076552 140429623243919 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13982928 memory=51 CPUtime=15.28 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) R 10293 10293 3809 0 -1 4202560 10495 0 0 0 1268 260 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429225024008 140429623243907 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982928 memory=51 CPUtime=15.24 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) R 10293 10293 3809 0 -1 4202560 8107 0 0 0 1233 291 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429223971464 140429623243903 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982928 memory=51 CPUtime=15.23 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) R 10293 10293 3809 0 -1 4202560 9303 0 0 0 1239 284 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429222918920 140429623243907 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982928 memory=52 CPUtime=0.71 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 13923 0 0 0 69 2 0 0 20 0 15 0 155356944 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429104366656 140429630154453 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982928 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 155356944 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429103314400 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982928 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 155356945 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429102261760 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982928 memory=1788 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982928 memory=952 CPUtime=0.56 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) S 10293 10293 3809 0 -1 1077944384 1832 0 0 0 56 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429100156960 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982928 memory=2424 CPUtime=0.57 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) S 10293 10293 3809 0 -1 1077944384 1848 0 0 0 57 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429099104128 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982928 memory=1580 CPUtime=0.31 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) S 10293 10293 3809 0 -1 1077944384 1590 0 0 0 31 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429098051872 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982928 memory=928 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982928 memory=11727328 CPUtime=0.01 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 340 0 0 0 0 1 0 0 20 0 15 0 155356948 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 10 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 66.27 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 11728712 KiB

[startup+20.0012 s]*
/proc/loadavg: 2.50 1.77 1.57 6/217 10309
/proc/meminfo: memFree=9338140/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13982928 memory=11727328 CPUtime=69.49 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 72320 0 0 0 5811 1138 0 0 20 0 15 0 155356942 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3495732 2931832 3249 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13982928 memory=140379999535136 CPUtime=3.06 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) S 10293 10293 3809 0 -1 1077944384 8572 0 0 0 296 10 0 0 20 0 15 0 155356942 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429634383520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13982928 memory=7883960649037381690 CPUtime=16.03 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) R 10293 10293 3809 0 -1 4202560 15007 0 0 0 1316 287 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429226076552 140429622772455 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13982928 memory=9287 CPUtime=16.08 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) R 10293 10293 3809 0 -1 4202560 10495 0 0 0 1348 260 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429225024008 140429623247233 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982928 memory=746022 CPUtime=16.05 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) R 10293 10293 3809 0 -1 4202560 8107 0 0 0 1314 291 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429223971464 140429622772455 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982928 memory=7812728770773083988 CPUtime=16.04 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) R 10293 10293 3809 0 -1 4202560 9303 0 0 0 1320 284 0 0 20 0 15 0 155356943 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429222918920 140429622772455 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982928 memory=7229519121709552997 CPUtime=0.71 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 13923 0 0 0 69 2 0 0 20 0 15 0 155356944 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429104366656 140429630154453 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982928 memory=7156365219858131089 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 155356944 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429103314400 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982928 memory=14473875216 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 155356945 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429102261760 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982928 memory=280759999403424 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982928 memory=280759999631216 CPUtime=0.56 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) S 10293 10293 3809 0 -1 1077944384 1832 0 0 0 56 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429100156960 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982928 memory=3833038133470290576 CPUtime=0.57 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) S 10293 10293 3809 0 -1 1077944384 1848 0 0 0 57 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429099104128 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982928 memory=280759999643440 CPUtime=0.31 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) S 10293 10293 3809 0 -1 1077944384 1590 0 0 0 31 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429098051872 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982928 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982928 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) S 10293 10293 3809 0 -1 1077944384 340 0 0 0 0 1 0 0 20 0 15 0 155356948 14318518272 2931832 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 10 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 69.49 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 11728712 KiB

[startup+20.4012 s]
/proc/loadavg: 2.50 1.77 1.57 6/217 10309
/proc/meminfo: memFree=9338140/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/statm: 2378 346 289 221 0 87 0
[pid=10295] ppid=10293 vsize=13982928 memory=11727340 CPUtime=71.05 cores=1,3,5,7
/proc/10295/stat : 10295 (java) S 10293 10293 3809 0 -1 1077944320 72449 0 0 0 5967 1138 0 0 20 0 15 0 155356942 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140724846327728 140429630144247 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
/proc/10295/statm: 3495732 2931835 3249 1 0 3482966 0
[pid=10295/tid=10296] ppid=10293 vsize=13982928 memory=796 CPUtime=3.06 cores=1,3,5,7
/proc/10295/task/10296/stat : 10296 (java) S 10293 10293 3809 0 -1 1077944384 8572 0 0 0 296 10 0 0 20 0 15 0 155356942 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429634383520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10297] ppid=10293 vsize=13982928 memory=1952 CPUtime=16.42 cores=1,3,5,7
/proc/10295/task/10297/stat : 10297 (java) R 10293 10293 3809 0 -1 4202560 15047 0 0 0 1355 287 0 0 20 0 15 0 155356943 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429226076552 140429623243994 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10298] ppid=10293 vsize=13982928 memory=1200 CPUtime=16.46 cores=1,3,5,7
/proc/10295/task/10298/stat : 10298 (java) R 10293 10293 3809 0 -1 4202560 10520 0 0 0 1386 260 0 0 20 0 15 0 155356943 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429225024008 140429623243911 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10299] ppid=10293 vsize=13982928 memory=8616 CPUtime=16.44 cores=1,3,5,7
/proc/10295/task/10299/stat : 10299 (java) R 10293 10293 3809 0 -1 4202560 8143 0 0 0 1353 291 0 0 20 0 15 0 155356943 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429223971464 140429623243923 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10300] ppid=10293 vsize=13982928 memory=5784 CPUtime=16.43 cores=1,3,5,7
/proc/10295/task/10300/stat : 10300 (java) R 10293 10293 3809 0 -1 4202560 9331 0 0 0 1359 284 0 0 20 0 15 0 155356943 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429222918920 140429623248960 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10301] ppid=10293 vsize=13982928 memory=4616 CPUtime=0.71 cores=1,3,5,7
/proc/10295/task/10301/stat : 10301 (java) S 10293 10293 3809 0 -1 1077944384 13923 0 0 0 69 2 0 0 20 0 15 0 155356944 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429104366656 140429630154453 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10302] ppid=10293 vsize=13982928 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10302/stat : 10302 (java) S 10293 10293 3809 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 155356944 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429103314400 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10303] ppid=10293 vsize=13982928 memory=11727328 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10303/stat : 10303 (java) S 10293 10293 3809 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 155356945 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429102261760 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10304] ppid=10293 vsize=13982928 memory=0 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10304/stat : 10304 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429101210320 140429630162843 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10305] ppid=10293 vsize=13982928 memory=8128038100524242582 CPUtime=0.56 cores=1,3,5,7
/proc/10295/task/10305/stat : 10305 (java) S 10293 10293 3809 0 -1 1077944384 1832 0 0 0 56 0 0 0 20 0 15 0 155356947 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429100156960 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10306] ppid=10293 vsize=13982928 memory=8128038100524242480 CPUtime=0.57 cores=1,3,5,7
/proc/10295/task/10306/stat : 10306 (java) S 10293 10293 3809 0 -1 1077944384 1848 0 0 0 57 0 0 0 20 0 15 0 155356947 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429099104128 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10307] ppid=10293 vsize=13982928 memory=-7966001734603266090 CPUtime=0.31 cores=1,3,5,7
/proc/10295/task/10307/stat : 10307 (java) S 10293 10293 3809 0 -1 1077944384 1590 0 0 0 31 0 0 0 20 0 15 0 155356947 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429098051872 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10308] ppid=10293 vsize=13982928 memory=-6352670693803649130 CPUtime=0 cores=1,3,5,7
/proc/10295/task/10308/stat : 10308 (java) S 10293 10293 3809 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 155356947 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429096999520 140429630154453 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
[pid=10295/tid=10309] ppid=10293 vsize=13982928 memory=7450198866023312233 CPUtime=0.01 cores=1,3,5,7
/proc/10295/task/10309/stat : 10309 (java) R 10293 10293 3809 0 -1 1077944384 340 0 0 0 0 1 0 0 20 0 15 0 155356948 14318518272 2931835 33554432000 4194304 4196468 140724846345184 140429095947056 140429630155394 0 4 0 16800975 0 0 0 -1 3 0 0 10 0 0 6293624 6294260 17588224 140724846347415 140724846347591 140724846347591 140724846350287 0
Current children cumulated CPU time: 71.05 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 11728724 KiB

[startup+20.5009 s]
/proc/loadavg: 2.50 1.77 1.57 6/217 10309
/proc/meminfo: memFree=9338140/32770624 swapFree=67108860/67108860
[pid=10293] ppid=10290 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/10293/stat : 10293 (xcsp3-exec) S 10290 10293 3809 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 155356941 9740288 346 33554432000 4194304 5098028 140726062583872 140726062581976 140170340356732 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 34840576 140726062589039 140726062589243 140726062589243 140726062591979 0
/proc/10293/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): 20.5138
CPU time (s): 71.21
CPU user time (s): 59.7828
CPU system time (s): 11.4272
CPU usage (%): 347.133
Max. virtual memory (cumulated for all children) (KiB): 13992440
Max. memory (cumulated for all children) (KiB): 11728724

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 59.7828
system time used= 11.4272
maximum resident set size= 11727744
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 73113
page faults= 0
swaps= 0
block input operations= 0
block output operations= 112
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 2781
involuntary context switches= 611


# summary of solver processes directly reported to runsolver:
#   pid: 10293
#   total CPU time (s): 71.21
#   total CPU user time (s): 59.7828
#   total CPU system time (s): 11.4272

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.15103 second user time and 0.300758 second system time

The end

Launcher Data

Begin job on node104 at 2017-08-20 11:37:12
IDJOB=4283696
IDBENCH=138764
IDSOLVER=2679
FILE ID=node104/4283696-1503222692
RUNJOBID= node104-1503215340-8906
PBS_JOBID= 20630870
Free space on /tmp= 61720 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/Hanoi/Hanoi-m1-s1/Hanoi-09.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-4283696-1503222692/watcher-4283696-1503222692 -o /tmp/evaluation-result-4283696-1503222692/solver-4283696-1503222692 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node104-1503215340-8906 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 517638378 HOME/instance-4283696-1503222692.xml

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

MD5SUM BENCH= 974f0afcd706a93e2571fe02010426b6
RANDOM SEED=517638378

node104.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
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.43
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.43
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.43
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:        21075804 kB
MemAvailable:   29183504 kB
Buffers:          282032 kB
Cached:          8104008 kB
SwapCached:            0 kB
Active:          6091556 kB
Inactive:        5124144 kB
Active(anon):    2832804 kB
Inactive(anon):    33220 kB
Active(file):    3258752 kB
Inactive(file):  5090924 kB
Unevictable:        7800 kB
Mlocked:            7800 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8532 kB
Writeback:             0 kB
AnonPages:       2847820 kB
Mapped:            64380 kB
Shmem:             33420 kB
Slab:             174364 kB
SReclaimable:     147716 kB
SUnreclaim:        26648 kB
KernelStack:        3808 kB
PageTables:        10440 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    5058896 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2723840 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      112000 kB
DirectMap2M:    33433600 kB

Free space on /tmp at the end= 61712 MiB
End job on node104 at 2017-08-20 11:37:33