Trace number 4292233

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
Choco-solver 4.0.7 seq (493a269)? 297.566 260.681

General information on the benchmark

NameCrosswordDesign/
CrosswordDesign-11-4-rom_c18.xml
MD5SUM63b9378ece2d6066ad6e61da47f93b8a
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark65
Best CPU time to get the best result obtained on this benchmark2520.1
Satisfiable
(Un)Satisfiability was proved
Number of variables385
Number of constraints88
Number of domains5
Minimum domain size2
Maximum domain size115571
Distribution of domain sizes[{"size":2,"count":22},{"size":12,"count":154},{"size":27,"count":121},{"size":115571,"count":88}]
Minimum variable degree1
Maximum variable degree8
Distribution of variable degrees[{"degree":1,"count":110},{"degree":2,"count":154},{"degree":8,"count":121}]
Minimum constraint arity14
Maximum constraint arity15
Distribution of constraint arities[{"arity":14,"count":22},{"arity":15,"count":66}]
Number of extensional constraints88
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":88}]
Optimization problemYES
Type of objectivemax SUM

Solver Data

0.00/0.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4292233-1532335596.xml"  -tl '2400s' -p 1 -x 0
0.11/0.17	c Choco 493a269
0.11/0.18	c [HOME/instance-4292233-1532335596.xml, -tl, 2400s, -p, 1, -x, 0]
0.11/0.21	c simple solver
0.33/0.28	c parse instance...
291.95/259.15	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
291.95/259.15		at org.chocosolver.solver.constraints.extension.nary.PropCompactTableStar.computeSupports(PropCompactTableStar.java:80)
291.95/259.15		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
291.95/259.15		at org.chocosolver.solver.constraints.extension.nary.PropCompactTableStar.<init>(PropCompactTableStar.java:45)
297.34/260.58		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2012)
297.34/260.58		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1970)
297.34/260.58		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:315)
297.34/260.58		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
297.34/260.58		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
297.34/260.58		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
297.34/260.58		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
297.34/260.58		at org.xcsp.parser.XCallbacks$$Lambda$98/1896294051.accept(Unknown Source)
297.34/260.58		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
297.34/260.58		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
297.34/260.58		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
297.34/260.58		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1414)
297.34/260.58		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
297.34/260.58		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
297.34/260.58		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
297.34/260.58		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
297.34/260.58		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
297.34/260.58		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:107)
297.34/260.58		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:94)
297.34/260.58		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
297.34/260.58	s UNKNOWN
297.34/260.58	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 (7200 MiB free)
  memory of node 1: 16384 MiB (11735 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4292233-1532335596/watcher-4292233-1532335596 -o /tmp/evaluation-result-4292233-1532335596/solver-4292233-1532335596 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node103-1532328173-11339 --watchdog 2560 HOME/xcsp3-exec -seed 2023389618 -dir HOME -tl 2400 -ml 11000 -p 1 HOME/instance-4292233-1532335596.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 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=12443, runsolver pid=12440

[startup+0.100139 s]*
/proc/loadavg: 2.31 2.14 2.11 4/217 12459
/proc/meminfo: memFree=19373864/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14082840 memory=28512 CPUtime=0.11 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 5545 0 0 0 10 1 0 0 20 0 15 0 51122826 14420828160 7128 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3520710 7128 2974 1 0 3483008 0
[pid=12445/tid=12446] ppid=12443 vsize=14082840 memory=8514701219880730789 CPUtime=0.09 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) R 12443 12443 11307 0 -1 4202560 3569 0 0 0 8 1 0 0 20 0 15 0 51122827 14420828160 7128 33554432000 4194304 4196468 140729531092992 140460112526640 140460108299670 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14082840 memory=3472468416139437264 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459703986704 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459702934160 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459701881104 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) S 12443 12443 11307 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459700828560 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51122829 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459447905008 140460108298882 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 51122829 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459446851232 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 51122830 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459445798128 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 296 0 0 0 0 0 0 0 20 0 15 0 51122832 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 15 0 51122832 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0.01 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) R 12443 12443 11307 0 -1 4202560 255 0 0 0 1 0 0 0 20 0 15 0 51122832 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459441585744 140460108299670 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122833 14420828160 7128 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 0.11 s
Current children cumulated vsize: 14195968 KiB
Current children cumulated memory: 29964 KiB

[startup+0.210804 s]*
/proc/loadavg: 2.31 2.14 2.11 3/217 12459
/proc/meminfo: memFree=19363196/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14082840 memory=40616 CPUtime=0.33 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 8170 0 0 0 31 2 0 0 20 0 15 0 51122826 14420828160 10154 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3520710 10154 3195 1 0 3483008 0
[pid=12445/tid=12446] ppid=12443 vsize=14082840 memory=5854518564242424225 CPUtime=0.2 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) R 12443 12443 11307 0 -1 4202560 5420 0 0 0 18 2 0 0 20 0 15 0 51122827 14420828160 10154 33554432000 4194304 4196468 140729531092992 140460112522720 140460092368222 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14082840 memory=3472468416139437264 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459703986704 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459702934160 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459701881104 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) S 12443 12443 11307 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51122828 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459700828560 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 51122829 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459447905008 140460108298882 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 51122829 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459446851232 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 51122830 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459445798128 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14082840 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 415 0 0 0 3 0 0 0 20 0 15 0 51122832 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14082840 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 267 0 0 0 1 0 0 0 20 0 15 0 51122832 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0.08 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 772 0 0 0 8 0 0 0 20 0 15 0 51122832 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14082840 memory=140287244285568 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122833 14420828160 10154 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 14195968 KiB
Current children cumulated memory: 42068 KiB

[startup+0.310694 s]*
/proc/loadavg: 2.31 2.14 2.11 4/217 12459
/proc/meminfo: memFree=19356124/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14087096 memory=47840 CPUtime=0.52 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 9145 0 0 0 49 3 0 0 20 0 15 0 51122826 14425186304 11960 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3521774 11960 3237 1 0 3483008 0
[pid=12445/tid=12446] ppid=12443 vsize=14087096 memory=8514701219881125277 CPUtime=0.29 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) R 12443 12443 11307 0 -1 4202560 6149 0 0 0 27 2 0 0 20 0 15 0 51122827 14425186304 12025 33554432000 4194304 4196468 140729531092992 140460112523776 140460108309661 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14087096 memory=3472468416139437264 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459703986704 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14087096 memory=140287244285568 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459702934160 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14087096 memory=5 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122828 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459701881104 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14087096 memory=140287120910367 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) S 12443 12443 11307 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51122828 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459700828560 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14087096 memory=280574241781504 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 51122829 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459447905008 140460108298882 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14087096 memory=140287120887311 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 51122829 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459446851232 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14087096 memory=280574365182048 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 51122830 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459445798128 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14087096 memory=140287120891919 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14087096 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 430 0 0 0 5 0 0 0 20 0 15 0 51122832 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14087096 memory=-1 CPUtime=0.04 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 347 0 0 0 4 0 0 0 20 0 15 0 51122832 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14087096 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 917 0 0 0 12 0 0 0 20 0 15 0 51122832 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14087096 memory=0 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14087096 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122833 14425186304 12025 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 14200224 KiB
Current children cumulated memory: 49292 KiB

[startup+0.70092 s]
/proc/loadavg: 2.31 2.14 2.11 3/217 12459
/proc/meminfo: memFree=19264836/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14089220 memory=266752 CPUtime=1.42 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 11384 0 0 0 124 18 0 0 20 0 15 0 51122826 14427361280 66688 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3522305 66688 3323 1 0 3483520 0
[pid=12445/tid=12446] ppid=12443 vsize=14089220 memory=7660742144744843625 CPUtime=0.62 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) R 12443 12443 11307 0 -1 4202560 6577 0 0 0 57 5 0 0 20 0 15 0 51122827 14427361280 66688 33554432000 4194304 4196468 140729531092992 140460112524944 140459744679059 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14089220 memory=5865465064658194540 CPUtime=0.05 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) S 12443 12443 11307 0 -1 1077944384 55 0 0 0 2 3 0 0 20 0 15 0 51122828 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459703986704 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14089220 memory=4638778398332764256 CPUtime=0.05 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) S 12443 12443 11307 0 -1 1077944384 53 0 0 0 2 3 0 0 20 0 15 0 51122828 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459702934160 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14089220 memory=-7242455096852575424 CPUtime=0.05 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) S 12443 12443 11307 0 -1 1077944384 47 0 0 0 2 3 0 0 20 0 15 0 51122828 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459701881104 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14089220 memory=8326441112149131693 CPUtime=0.04 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) S 12443 12443 11307 0 -1 1077944384 56 0 0 0 2 2 0 0 20 0 15 0 51122828 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459700828560 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14089220 memory=-7737605734073691286 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 82 0 0 0 0 0 0 0 20 0 15 0 51122829 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459447905008 140460108298882 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14089220 memory=4612 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 51122829 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459446851232 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14089220 memory=6884 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 51122830 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459445798128 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14089220 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14089220 memory=16580 CPUtime=0.16 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) R 12443 12443 11307 0 -1 4202560 1023 0 0 0 16 0 0 0 20 0 15 0 51122832 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459443674824 140460087941409 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14089220 memory=1296 CPUtime=0.17 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) R 12443 12443 11307 0 -1 4202560 666 0 0 0 17 0 0 0 20 0 15 0 51122832 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459442626576 140460091819295 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14089220 memory=2412 CPUtime=0.23 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 1516 0 0 0 23 0 0 0 20 0 15 0 51122832 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14089220 memory=7668012111147524688 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14089220 memory=7451579857426993518 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51122833 14427361280 66688 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 1.42 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 268204 KiB

[startup+1.5087 s]
/proc/loadavg: 2.31 2.14 2.11 3/217 12459
/proc/meminfo: memFree=19050052/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0

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

/proc/12445/task/12448/stat : 12448 (java) R 12443 12443 11307 0 -1 4202560 103949 0 0 0 522 266 0 0 20 0 15 0 51122828 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459702934280 140460100915943 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14089220 memory=1724 CPUtime=7.97 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) R 12443 12443 11307 0 -1 4202560 93335 0 0 0 504 293 0 0 20 0 15 0 51122828 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459701880912 140460100915943 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14089220 memory=-7003737579269690708 CPUtime=7.98 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) R 12443 12443 11307 0 -1 4202560 91972 0 0 0 561 237 0 0 20 0 15 0 51122828 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459700828368 140460100915943 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14089220 memory=1008 CPUtime=0.28 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 13140 0 0 0 27 1 0 0 20 0 15 0 51122829 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459447903552 140460108297941 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14089220 memory=792 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 51122829 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459446851296 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14089220 memory=1716 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 51122830 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459445798144 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14089220 memory=1952 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14089220 memory=8388 CPUtime=0.6 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 2178 0 0 0 60 0 0 0 20 0 15 0 51122832 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14089220 memory=0 CPUtime=0.54 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 2185 0 0 0 54 0 0 0 20 0 15 0 51122832 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14089220 memory=5794252900487155792 CPUtime=0.34 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 2910 0 0 0 34 0 0 0 20 0 15 0 51122832 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14089220 memory=6655300316396806240 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14089220 memory=5859271421085237344 CPUtime=0.17 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 491 0 0 0 7 10 0 0 20 0 15 0 51122833 14427361280 2873603 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 281.52 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11495864 KiB

[startup+259.203 s]
/proc/loadavg: 2.69 2.23 2.15 3/218 12471
/proc/meminfo: memFree=7650648/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14089220 memory=11728200 CPUtime=292.17 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 781156 0 0 0 28052 1165 0 0 20 0 15 0 51122826 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3522305 2932050 3386 1 0 3483520 0
[pid=12445/tid=12446] ppid=12443 vsize=14089220 memory=4616 CPUtime=247.84 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) S 12443 12443 11307 0 -1 1077944384 154140 0 0 0 24715 69 0 0 20 0 15 0 51122827 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140460112527424 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14089220 memory=11960 CPUtime=10.52 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) R 12443 12443 11307 0 -1 4202560 311071 0 0 0 782 270 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459703986704 140460101390721 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14089220 memory=11494412 CPUtime=10.38 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) R 12443 12443 11307 0 -1 4202560 104404 0 0 0 770 268 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459702934360 140460093275516 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14089220 memory=10621488 CPUtime=10.51 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) R 12443 12443 11307 0 -1 4202560 95104 0 0 0 757 294 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459701881104 140460101387421 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14089220 memory=-3622645143214314312 CPUtime=10.44 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) R 12443 12443 11307 0 -1 4202560 92825 0 0 0 797 247 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459700828560 140460101390714 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14089220 memory=1196 CPUtime=0.73 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 14489 0 0 0 72 1 0 0 20 0 15 0 51122829 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459447903552 140460108297941 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14089220 memory=5300 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 51122829 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459446851296 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14089220 memory=4616 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 51122830 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459445798144 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14089220 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14089220 memory=2588 CPUtime=0.6 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 2178 0 0 0 60 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14089220 memory=2692 CPUtime=0.54 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 2186 0 0 0 54 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14089220 memory=4096 CPUtime=0.34 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 2911 0 0 0 34 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14089220 memory=11494412 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14089220 memory=1452 CPUtime=0.18 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 491 0 0 0 7 11 0 0 20 0 15 0 51122833 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 292.17 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11729652 KiB

[startup+260.002 s]*
/proc/loadavg: 2.95 2.30 2.17 6/218 12471
/proc/meminfo: memFree=7650524/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14089220 memory=11728200 CPUtime=295.39 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 781156 0 0 0 28374 1165 0 0 20 0 15 0 51122826 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3522305 2932050 3386 1 0 3483520 0
[pid=12445/tid=12446] ppid=12443 vsize=14089220 memory=6791534058613427641 CPUtime=247.84 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) S 12443 12443 11307 0 -1 1077944384 154140 0 0 0 24715 69 0 0 20 0 15 0 51122827 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140460112527424 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14089220 memory=-7003737579269690708 CPUtime=11.33 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) R 12443 12443 11307 0 -1 4202560 311071 0 0 0 863 270 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459703986592 140460101387391 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14089220 memory=11727396 CPUtime=11.17 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) R 12443 12443 11307 0 -1 4202560 104404 0 0 0 849 268 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459702934360 140460101387391 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14089220 memory=6791534058613427641 CPUtime=11.32 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) R 12443 12443 11307 0 -1 4202560 95104 0 0 0 838 294 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459701881304 140460101387421 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14089220 memory=-7003737579269690708 CPUtime=11.25 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) R 12443 12443 11307 0 -1 4202560 92825 0 0 0 878 247 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459700828760 140460101390707 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14089220 memory=840 CPUtime=0.73 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 14489 0 0 0 72 1 0 0 20 0 15 0 51122829 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459447903552 140460108297941 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14089220 memory=1800 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 51122829 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459446851296 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14089220 memory=916 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 51122830 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459445798144 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14089220 memory=3844 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14089220 memory=2588 CPUtime=0.6 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 2178 0 0 0 60 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14089220 memory=2692 CPUtime=0.54 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 2186 0 0 0 54 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14089220 memory=4096 CPUtime=0.34 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 2911 0 0 0 34 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14089220 memory=1408 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14089220 memory=3176 CPUtime=0.18 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 491 0 0 0 7 11 0 0 20 0 15 0 51122833 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 295.39 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11729652 KiB

[startup+260.402 s]
/proc/loadavg: 2.95 2.30 2.17 6/218 12471
/proc/meminfo: memFree=7650524/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
[pid=12445] ppid=12443 vsize=14089220 memory=11728200 CPUtime=296.94 cores=1,3,5,7
/proc/12445/stat : 12445 (java) S 12443 12443 11307 0 -1 1077944320 781157 0 0 0 28529 1165 0 0 20 0 15 0 51122826 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140729531075536 140460108287735 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
/proc/12445/statm: 3522305 2932050 3386 1 0 3483520 0
[pid=12445/tid=12446] ppid=12443 vsize=14089220 memory=1716 CPUtime=247.84 cores=1,3,5,7
/proc/12445/task/12446/stat : 12446 (java) S 12443 12443 11307 0 -1 1077944384 154140 0 0 0 24715 69 0 0 20 0 15 0 51122827 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140460112527424 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12447] ppid=12443 vsize=14089220 memory=1952 CPUtime=11.72 cores=1,3,5,7
/proc/12445/task/12447/stat : 12447 (java) R 12443 12443 11307 0 -1 4202560 311071 0 0 0 902 270 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459703986592 140460101387488 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12448] ppid=12443 vsize=14089220 memory=8388 CPUtime=11.55 cores=1,3,5,7
/proc/12445/task/12448/stat : 12448 (java) R 12443 12443 11307 0 -1 4202560 104404 0 0 0 887 268 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459702934360 140460101387399 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12449] ppid=12443 vsize=14089220 memory=1452 CPUtime=11.71 cores=1,3,5,7
/proc/12445/task/12449/stat : 12449 (java) R 12443 12443 11307 0 -1 4202560 95104 0 0 0 877 294 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459701881304 140460101387416 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12450] ppid=12443 vsize=14089220 memory=11728200 CPUtime=11.64 cores=1,3,5,7
/proc/12445/task/12450/stat : 12450 (java) R 12443 12443 11307 0 -1 4202560 92826 0 0 0 917 247 0 0 20 0 15 0 51122828 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459700828760 140460101387411 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12451] ppid=12443 vsize=14089220 memory=6791534058613427641 CPUtime=0.73 cores=1,3,5,7
/proc/12445/task/12451/stat : 12451 (java) S 12443 12443 11307 0 -1 1077944384 14489 0 0 0 72 1 0 0 20 0 15 0 51122829 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459447903552 140460108297941 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12452] ppid=12443 vsize=14089220 memory=3924588 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12452/stat : 12452 (java) S 12443 12443 11307 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 51122829 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459446851296 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12453] ppid=12443 vsize=14089220 memory=1408 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12453/stat : 12453 (java) S 12443 12443 11307 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 15 0 51122830 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459445798144 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12454] ppid=12443 vsize=14089220 memory=3156 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12454/stat : 12454 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459444746704 140460108306331 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12455] ppid=12443 vsize=14089220 memory=1452 CPUtime=0.6 cores=1,3,5,7
/proc/12445/task/12455/stat : 12455 (java) S 12443 12443 11307 0 -1 1077944384 2178 0 0 0 60 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459443693808 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12456] ppid=12443 vsize=14089220 memory=9608988 CPUtime=0.54 cores=1,3,5,7
/proc/12445/task/12456/stat : 12456 (java) S 12443 12443 11307 0 -1 1077944384 2186 0 0 0 54 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459442641264 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12457] ppid=12443 vsize=14089220 memory=11494412 CPUtime=0.34 cores=1,3,5,7
/proc/12445/task/12457/stat : 12457 (java) S 12443 12443 11307 0 -1 1077944384 2911 0 0 0 34 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459441588208 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12458] ppid=12443 vsize=14089220 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12445/task/12458/stat : 12458 (java) S 12443 12443 11307 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51122832 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459440535904 140460108297941 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
[pid=12445/tid=12459] ppid=12443 vsize=14089220 memory=11728068 CPUtime=0.18 cores=1,3,5,7
/proc/12445/task/12459/stat : 12459 (java) S 12443 12443 11307 0 -1 1077944384 491 0 0 0 7 11 0 0 20 0 15 0 51122833 14427361280 2932050 33554432000 4194304 4196468 140729531092992 140459439483952 140460108298882 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 39690240 140729531094145 140729531094321 140729531094321 140729531097039 0
Current children cumulated CPU time: 296.94 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11729652 KiB

[startup+260.601 s]
/proc/loadavg: 2.95 2.30 2.17 6/218 12471
/proc/meminfo: memFree=7650524/32770624 swapFree=67108860/67108860
[pid=12443] ppid=12440 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/12443/stat : 12443 (xcsp3-exec) S 12440 12443 11307 0 -1 4202496 535 0 0 0 0 0 0 0 20 0 1 0 51122826 115843072 363 33554432000 4194304 5098028 140728941749088 140728941747192 140110867223164 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 11186176 140728941757498 140728941757700 140728941757700 140728941760458 0
/proc/12443/statm: 28282 363 305 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

Child status: 1
Real time (s): 260.681
CPU time (s): 297.566
CPU user time (s): 285.814
CPU system time (s): 11.7524
CPU usage (%): 114.15
Max. virtual memory (cumulated for all children) (KiB): 14202348
Max. memory (cumulated for all children) (KiB): 11729652

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 285.814
system time used= 11.7524
maximum resident set size= 11728388
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 781796
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= 19006
involuntary context switches= 578


# summary of solver processes directly reported to runsolver:
#   pid: 12443
#   total CPU time (s): 297.566
#   total CPU user time (s): 285.814
#   total CPU system time (s): 11.7524

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.57149 second user time and 2.90662 second system time

The end

Launcher Data

Begin job on node103 at 2018-07-23 10:46:36
IDJOB=4292233
IDBENCH=141315
IDSOLVER=2747
FILE ID=node103/4292233-1532335596
RUNJOBID= node103-1532328173-11339
PBS_JOBID= 21018996
Free space on /tmp= 56788 MiB

SOLVER NAME= Choco-solver 4.0.7 seq (493a269)
BENCH NAME= XCSP18/CrosswordDesign/CrosswordDesign-11-4-rom_c18.xml
COMMAND LINE= HOME/xcsp3-exec -seed RANDOMSEED -dir DIR -tl TIMEOUT -ml 11000 -p 1 BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4292233-1532335596/watcher-4292233-1532335596 -o /tmp/evaluation-result-4292233-1532335596/solver-4292233-1532335596 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node103-1532328173-11339 --watchdog 2560  HOME/xcsp3-exec -seed 2023389618 -dir HOME -tl 2400 -ml 11000 -p 1 HOME/instance-4292233-1532335596.xml

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

MD5SUM BENCH= 63b9378ece2d6066ad6e61da47f93b8a
RANDOM SEED=2023389618

node103.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.48
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.48
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.48
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.48
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:        19391304 kB
MemAvailable:   28019364 kB
Buffers:          256788 kB
Cached:          8570480 kB
SwapCached:            0 kB
Active:          5488116 kB
Inactive:        7305148 kB
Active(anon):    3968988 kB
Inactive(anon):    16976 kB
Active(file):    1519128 kB
Inactive(file):  7288172 kB
Unevictable:        7144 kB
Mlocked:            7144 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             63932 kB
Writeback:             0 kB
AnonPages:       3973448 kB
Mapped:            49432 kB
Shmem:             17036 kB
Slab:             277124 kB
SReclaimable:     249220 kB
SUnreclaim:        27904 kB
KernelStack:        3536 kB
PageTables:        12952 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    7164216 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   3844096 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      124288 kB
DirectMap2M:    33421312 kB

Free space on /tmp at the end= 56768 MiB
End job on node103 at 2018-07-23 10:50:57