Trace number 4393838

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 2019-06-14 parallelOPT583 59.0797 10.9559

General information on the benchmark

NameFastfood/Fastfood-m1-s1/
Fastfood-ff21.xml
MD5SUM9ed96a9b02dc4e036934e9ef3088dc03
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark583
Best CPU time to get the best result obtained on this benchmark12.5314
Satisfiable
(Un)Satisfiability was proved
Number of variables323
Number of constraints319
Number of domains34
Minimum domain size31
Maximum domain size34
Distribution of domain sizes[{"size":31,"count":24},{"size":32,"count":48},{"size":33,"count":108},{"size":34,"count":143}]
Minimum variable degree2
Maximum variable degree54
Distribution of variable degrees[{"degree":2,"count":318},{"degree":54,"count":5}]
Minimum constraint arity2
Maximum constraint arity6
Distribution of constraint arities[{"arity":2,"count":265},{"arity":5,"count":1},{"arity":6,"count":53}]
Number of extensional constraints265
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":265},{"type":"ordered","count":1},{"type":"minimum","count":53}]
Optimization problemYES
Type of objectivemin SUM

Quality of the solution as a function of time


Download the above graph as a PDF file / as an EPS file

Solver Data

0.00/0.00	c java -server -Xmx24000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4393838-1568441906.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4393838-1568441906.xml, -tl, 20160s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.28	c parse instance...
3.41/1.02	c solve instance...
6.71/1.54	o 4062 
6.71/1.56	o 4018 
6.71/1.58	o 3892 
6.71/1.58	o 2973 
7.26/1.62	o 2616 
7.26/1.63	o 2547 
7.26/1.65	o 1526 
7.83/1.79	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (102/107)
7.83/1.79		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
7.83/1.79		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
7.83/1.79		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
7.83/1.79		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
7.83/1.79		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
7.83/1.79	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (102/107)
7.83/1.79		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
7.83/1.79		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
7.83/1.79		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
7.83/1.79		at org.chocosolver.solver.Solver.repair(Solver.java:443)
7.83/1.79		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
7.83/1.79		at org.chocosolver.solver.Solver.solve(Solver.java:262)
7.83/1.79		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
7.83/1.79		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
7.83/1.79		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
7.83/1.79		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
7.83/1.79		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
7.83/1.79		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
7.83/1.79		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
7.83/1.79		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
7.83/1.79		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
7.83/1.79		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
7.83/1.79	o 1444 
8.51/1.83	o 1134 
9.22/1.96	o 1107 
9.22/1.98	o 1080 
9.22/2.00	o 1056 
9.87/2.04	o 1049 
12.05/2.30	o 1048 
12.05/2.32	o 1039 
13.36/2.50	o 1025 
13.36/2.51	o 1017 
13.36/2.53	o 982 
13.36/2.57	o 977 
13.36/2.57	o 976 
13.98/2.60	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (250/252)
13.98/2.60		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
13.98/2.60		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
13.98/2.60		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
13.98/2.60		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
13.98/2.60		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
13.98/2.60	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (250/252)
13.98/2.60		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
13.98/2.60		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
13.98/2.60		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
13.98/2.60		at org.chocosolver.solver.Solver.repair(Solver.java:443)
13.98/2.60		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
13.98/2.60		at org.chocosolver.solver.Solver.solve(Solver.java:262)
13.98/2.60		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
13.98/2.60		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
13.98/2.60		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
13.98/2.60		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
13.98/2.60		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
13.98/2.60		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
13.98/2.60		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
13.98/2.60		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
13.98/2.60		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
13.98/2.60		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
13.98/2.60	o 964 
13.98/2.60	o 959 
13.98/2.61	o 958 
13.98/2.62	o 956 
13.98/2.62	o 951 
13.98/2.63	o 950 
14.67/2.72	o 937 
15.28/2.80	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (147/149)
15.28/2.80		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
15.28/2.80		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
15.28/2.80		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
15.28/2.80		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
15.28/2.80		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
15.28/2.80	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (147/149)
15.28/2.80		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
15.28/2.80		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
15.28/2.80		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
15.28/2.80		at org.chocosolver.solver.Solver.repair(Solver.java:443)
15.28/2.80		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
15.28/2.80		at org.chocosolver.solver.Solver.solve(Solver.java:262)
15.28/2.80		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
15.28/2.80		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
15.28/2.80		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
15.28/2.80		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
15.28/2.80		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
15.28/2.80		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
15.28/2.80		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
15.28/2.80		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
15.28/2.80		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
15.28/2.80		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
15.28/2.81	o 932 
15.28/2.82	o 931 
15.28/2.86	o 916 
15.28/2.88	o 911 
15.87/2.93	o 910 
15.87/2.94	o 898 
15.87/2.95	o 893 
15.87/2.97	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (104/107)
15.87/2.97		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
15.87/2.97		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
15.87/2.97		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
15.87/2.97		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
15.87/2.97		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
15.87/2.97	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (104/107)
15.87/2.97		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
15.87/2.97		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
15.87/2.97		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
15.87/2.97		at org.chocosolver.solver.Solver.repair(Solver.java:443)
15.87/2.97		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
15.87/2.97		at org.chocosolver.solver.Solver.solve(Solver.java:262)
15.87/2.97		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
15.87/2.97		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
15.87/2.97		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
15.87/2.97		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
15.87/2.97		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
15.87/2.97		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
15.87/2.97		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
15.87/2.97		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
15.87/2.97		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
15.87/2.97		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
15.87/2.97	o 892 
15.87/2.99	o 890 
15.87/3.00	o 888 
16.51/3.03	o 877 
16.51/3.04	o 874 
17.22/3.15	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (116/122)
17.22/3.15		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
17.22/3.15		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
17.22/3.15		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
17.22/3.15		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
17.22/3.15		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
17.22/3.15	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (116/122)
17.22/3.15		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
17.22/3.15		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
17.22/3.15		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
17.22/3.15		at org.chocosolver.solver.Solver.repair(Solver.java:443)
17.22/3.15		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
17.22/3.15		at org.chocosolver.solver.Solver.solve(Solver.java:262)
17.22/3.15		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
17.22/3.15		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
17.22/3.15		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
17.22/3.15		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
17.22/3.15		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
17.22/3.15		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
17.22/3.15		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
17.22/3.15		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
17.22/3.15		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
17.22/3.15		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
17.22/3.15	o 866 
17.22/3.17	o 864 
17.22/3.19	o 861 
17.70/3.22	o 853 
17.70/3.24	o 850 
17.70/3.26	o 836 
17.70/3.27	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (258/263)
17.70/3.27		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
17.70/3.27		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
17.70/3.27		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
17.70/3.27		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
17.70/3.27		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
17.70/3.27	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (258/263)
17.70/3.27		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
17.70/3.27		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
17.70/3.27		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
17.70/3.27		at org.chocosolver.solver.Solver.repair(Solver.java:443)
17.70/3.27		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
17.70/3.27		at org.chocosolver.solver.Solver.solve(Solver.java:262)
17.70/3.27		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
17.70/3.27		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
17.70/3.27		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
17.70/3.27		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
17.70/3.27		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
17.70/3.27		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
17.70/3.27		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
17.70/3.27		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
17.70/3.27		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
17.70/3.27		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
17.70/3.27	o 816 
17.70/3.27	o 813 
18.33/3.35	o 811 
18.33/3.38	o 808 
18.33/3.39	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (104/107)
18.33/3.39		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
18.33/3.39		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
18.33/3.39		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
18.33/3.39		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
18.33/3.39		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
18.33/3.39	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (104/107)
18.33/3.39		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
18.33/3.39		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
18.33/3.39		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
18.33/3.39		at org.chocosolver.solver.Solver.repair(Solver.java:443)
18.33/3.39		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
18.33/3.39		at org.chocosolver.solver.Solver.solve(Solver.java:262)
18.33/3.39		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
18.33/3.39		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
18.33/3.39		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
18.33/3.39		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
18.33/3.39		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
18.33/3.39		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
18.33/3.39		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
18.33/3.39		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
18.33/3.39		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
18.33/3.39		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
18.33/3.40	o 806 
22.18/3.84	o 795 
22.18/3.84	o 790 
22.18/3.85	o 789 
22.18/3.86	o 787 
22.18/3.86	o 785 
25.20/4.21	o 784 
25.20/4.22	o 782 
28.12/4.60	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (159/163)
28.12/4.60		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
28.12/4.60		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
28.12/4.60		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
28.12/4.60		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
28.12/4.60		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
28.12/4.60	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (159/163)
28.12/4.60		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
28.12/4.60		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
28.12/4.60		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
28.12/4.60		at org.chocosolver.solver.Solver.repair(Solver.java:443)
28.12/4.60		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
28.12/4.60		at org.chocosolver.solver.Solver.solve(Solver.java:262)
28.12/4.60		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
28.12/4.60		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
28.12/4.60		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
28.12/4.60		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
28.12/4.60		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
28.12/4.60		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
28.12/4.60		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
28.12/4.60		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
28.12/4.60		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
28.12/4.60		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
28.12/4.61	o 774 
28.12/4.63	o 772 
28.12/4.63	o 763 
28.12/4.67	o 754 
28.12/4.69	o 747 
28.72/4.70	o 738 
28.72/4.72	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (170/174)
28.72/4.72		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
28.72/4.72		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
28.72/4.72		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
28.72/4.72		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
28.72/4.72		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
28.72/4.72	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (170/174)
28.72/4.72		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
28.72/4.72		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
28.72/4.72		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
28.72/4.72		at org.chocosolver.solver.Solver.repair(Solver.java:443)
28.72/4.72		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
28.72/4.72		at org.chocosolver.solver.Solver.solve(Solver.java:262)
28.72/4.72		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
28.72/4.72		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
28.72/4.72		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
28.72/4.72		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
28.72/4.72		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
28.72/4.72		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
28.72/4.72		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
28.72/4.72		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
28.72/4.72		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
28.72/4.72		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
28.72/4.72	o 729 
28.72/4.73	o 728 
30.27/5.00	o 727 
31.01/5.03	o 721 
31.01/5.04	o 719 
31.01/5.05	o 708 
31.01/5.06	o 706 
31.01/5.08	o 705 
31.01/5.10	o 703 
31.58/5.13	o 702 
31.58/5.17	o 697 
31.58/5.18	o 695 
31.58/5.18	o 694 
31.58/5.18	o 692 
32.06/5.20	o 691 
32.06/5.25	o 688 
32.06/5.26	o 686 
32.06/5.27	o 685 
32.06/5.29	o 683 
32.48/5.30	o 682 
32.48/5.35	o 676 
33.16/5.42	o 674 
33.16/5.43	o 663 
33.16/5.45	o 661 
33.16/5.46	o 660 
33.16/5.49	o 658 
33.16/5.50	o 657 
33.64/5.52	o 656 
41.45/6.53	o 655 
42.86/6.78	o 654 
43.54/6.90	o 648 
43.54/7.00	o 647 
43.81/7.08	o 646 
44.02/7.17	o 644 
44.21/7.25	o 643 
44.91/7.40	o 633 
44.91/7.49	o 631 
45.12/7.57	o 625 
45.31/7.67	o 623 
45.52/7.75	o 612 
45.69/7.83	o 610 
45.86/7.92	o 609 
45.86/8.00	o 607 
46.00/8.10	o 606 
46.54/8.24	o 605 
46.74/8.34	o 604 
46.89/8.43	o 602 
47.07/8.52	o 601 
47.36/8.63	o 600 
47.57/8.72	o 599 
51.39/9.27	o 597 
51.76/9.36	o 595 
51.93/9.45	o 594 
52.09/9.54	o 592 
52.26/9.63	o 591 
52.52/9.72	o 590 
52.73/9.82	o 589 
52.73/9.83	o 587 
52.95/9.94	o 586 
53.43/10.07	o 585 
53.70/10.16	o 584 
54.82/10.39	o 583 
58.99/10.94	s OPTIMUM FOUND
58.99/10.94	v <instantiation>
58.99/10.94	v 	<list>x[0] x[1] x[2] x[3] x[4] drd[0][0] drd[0][1] drd[0][2] drd[0][3] drd[0][4] drd[1][0] drd[1][1] drd[1][2] drd[1][3] drd[1][4] drd[2][0] drd[2][1] drd[2][2] drd[2][3] drd[2][4] drd[3][0] drd[3][1] drd[3][2] drd[3][3] drd[3][4] drd[4][0] drd[4][1] drd[4][2] drd[4][3] drd[4][4] drd[5][0] drd[5][1] drd[5][2] drd[5][3] drd[5][4] drd[6][0] drd[6][1] drd[6][2] drd[6][3] drd[6][4] drd[7][0] drd[7][1] drd[7][2] drd[7][3] drd[7][4] drd[8][0] drd[8][1] drd[8][2] drd[8][3] drd[8][4] drd[9][0] drd[9][1] drd[9][2] drd[9][3] drd[9][4] drd[10][0] drd[10][1] drd[10][2] drd[10][3] drd[10][4] drd[11][0] drd[11][1] drd[11][2] drd[11][3] drd[11][4] drd[12][0] drd[12][1] drd[12][2] drd[12][3] drd[12][4] drd[13][0] drd[13][1] drd[13][2] drd[13][3] drd[13][4] drd[14][0] drd[14][1] drd[14][2] drd[14][3] drd[14][4] drd[15][0] drd[15][1] drd[15][2] drd[15][3] drd[15][4] drd[16][0] drd[16][1] drd[16][2] drd[16][3] drd[16][4] drd[17][0] drd[17][1] drd[17][2] drd[17][3] drd[17][4] drd[18][0] drd[18][1] drd[18][2] drd[18][3] drd[18][4] drd[19][0] drd[19][1] drd[19][2] drd[19][3] drd[19][4] drd[20][0] drd[20][1] drd[20][2] drd[20][3] drd[20][4] drd[21][0] drd[21][1] drd[21][2] drd[21][3] drd[21][4] drd[22][0] drd[22][1] drd[22][2] drd[22][3] drd[22][4] drd[23][0] drd[23][1] drd[23][2] drd[23][3] drd[23][4] drd[24][0] drd[24][1] drd[24][2] drd[24][3] drd[24][4] drd[25][0] drd[25][1] drd[25][2] drd[25][3] drd[25][4] drd[26][0] drd[26][1] drd[26][2] drd[26][3] drd[26][4] drd[27][0] drd[27][1] drd[27][2] drd[27][3] drd[27][4] drd[28][0] drd[28][1] drd[28][2] drd[28][3] drd[28][4] drd[29][0] drd[29][1] drd[29][2] drd[29][3] drd[29][4] drd[30][0] drd[30][1] drd[30][2] drd[30][3] drd[30][4] drd[31][0] drd[31][1] drd[31][2] drd[31][3] drd[31][4] drd[32][0] drd[32][1] drd[32][2] drd[32][3] drd[32][4] drd[33][0] drd[33][1] drd[33][2] drd[33][3] drd[33][4] drd[34][0] drd[34][1] drd[34][2] drd[34][3] drd[34][4] drd[35][0] drd[35][1] drd[35][2] drd[35][3] drd[35][4] drd[36][0] drd[36][1] drd[36][2] drd[36][3] drd[36][4] drd[37][0] drd[37][1] drd[37][2] drd[37][3] drd[37][4] drd[38][0] drd[38][1] drd[38][2] drd[38][3] drd[38][4] drd[39][0] drd[39][1] drd[39][2] drd[39][3] drd[39][4] drd[40][0] drd[40][1] drd[40][2] drd[40][3] drd[40][4] drd[41][0] drd[41][1] drd[41][2] drd[41][3] drd[41][4] drd[42][0] drd[42][1] drd[42][2] drd[42][3] drd[42][4] drd[43][0] drd[43][1] drd[43][2] drd[43][3] drd[43][4] drd[44][0] drd[44][1] drd[44][2] drd[44][3] drd[44][4] drd[45][0] drd[45][1] drd[45][2] drd[45][3] drd[45][4] drd[46][0] drd[46][1] drd[46][2] drd[46][3] drd[46][4] drd[47][0] drd[47][1] drd[47][2] drd[47][3] drd[47][4] drd[48][0] drd[48][1] drd[48][2] drd[48][3] drd[48][4] drd[49][0] drd[49][1] drd[49][2] drd[49][3] drd[49][4] drd[50][0] drd[50][1] drd[50][2] drd[50][3] drd[50][4] drd[51][0] drd[51][1] drd[51][2] drd[51][3] drd[51][4] drd[52][0] drd[52][1] drd[52][2] drd[52][3] drd[52][4] dr[0] dr[1] dr[2] dr[3] dr[4] dr[5] dr[6] dr[7] dr[8] dr[9] dr[10] dr[11] dr[12] dr[13] dr[14] dr[15] dr[16] dr[17] dr[18] dr[19] dr[20] dr[21] dr[22] dr[23] dr[24] dr[25] dr[26] dr[27] dr[28] dr[29] dr[30] dr[31] dr[32] dr[33] dr[34] dr[35] dr[36] dr[37] dr[38] dr[39] dr[40] dr[41] dr[42] dr[43] dr[44] dr[45] dr[46] dr[47] dr[48] dr[49] dr[50] dr[51] dr[52] </list>
58.99/10.94	v 	<values>15 52 113 204 277 1 38 99 190 263 1 38 99 190 263 91 54 7 98 171 91 54 7 98 171 36 1 62 153 226 36 1 62 153 226 118 81 20 71 144 118 81 20 71 144 52 15 46 137 210 52 15 46 137 210 11 26 87 178 251 12 25 86 177 250 127 90 29 62 135 0 37 98 189 262 0 37 98 189 262 189 152 91 0 73 188 151 90 1 74 262 225 164 73 0 262 225 164 73 0 35 2 63 154 227 35 2 63 154 227 43 6 55 146 219 42 5 56 147 220 4 41 102 193 266 301 264 203 112 39 42 5 56 147 220 70 33 28 119 192 234 197 136 45 28 29 8 69 160 233 138 101 40 51 124 208 171 110 19 54 208 171 110 19 54 15 52 113 204 277 15 52 113 204 277 30 7 68 159 232 30 7 68 159 232 67 30 31 122 195 260 223 162 71 2 28 9 70 161 234 15 22 83 174 247 15 22 83 174 247 37 0 61 152 225 37 0 61 152 225 179 142 81 10 83 88 51 10 101 174 98 61 0 91 164 98 61 0 91 164 140 103 42 49 122 140 103 42 49 122 43 6 55 146 219 43 6 55 146 219 95 58 3 94 167 95 58 3 94 167 1 1 7 7 1 1 20 20 15 15 11 12 29 0 0 0 1 0 0 2 2 6 5 4 39 5 28 28 8 40 19 19 15 15 7 7 30 2 9 15 15 0 0 10 10 0 0 42 42 6 6 3 3 </values>
58.99/10.94	v </instantiation>

Verifier Data

OK	583

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 (14863 MiB free)
  memory of node 1: 16384 MiB (15278 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393838-1568441906/watcher-4393838-1568441906 -o /tmp/evaluation-result-4393838-1568441906/solver-4393838-1568441906 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node149-1568439317-16689 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1423101 HOME/instance-4393838-1568441906.xml 

running on 8 cores: 0,2,4,6,1,3,5,7

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


[startup+0.100137 s]*
/proc/loadavg: 7.37 8.01 8.02 2/211 18140
/proc/meminfo: memFree=30848324/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28227388 memory=29212 CPUtime=0.12 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 5699 0 0 0 11 1 0 0 20 0 20 0 420429254 28904845312 7303 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7056847 7303 3153 1 0 7019032 0
[pid=18121/tid=18122] ppid=18119 vsize=28227388 memory=7754242466541116057 CPUtime=0.08 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) R 18119 18119 16662 0 -1 4202560 3621 0 0 0 8 0 0 0 20 0 20 0 420429254 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611787522304 140611407718266 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28227388 memory=732370474618813413 CPUtime=0 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28227388 memory=140336281360000 CPUtime=0 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18126] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18126/stat : 18126 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611732753296 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18127] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18127/stat : 18127 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611731700240 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18128] ppid=18119 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/18121/task/18128/stat : 18128 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611730647696 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18129] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18129/stat : 18129 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611729594640 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18130] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18130/stat : 18130 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 7303 33554432000 4194304 4196468 140729792164112 140611728542096 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18131] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18131/stat : 18131 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429257 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609911679728 140611783301762 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18132] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18132/stat : 18132 (java) S 18119 18119 16662 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 420429257 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609910625952 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18133] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18133/stat : 18133 (java) S 18119 18119 16662 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 420429257 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609909572848 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18134] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18134/stat : 18134 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609908521424 140611783309211 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18135] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18135/stat : 18135 (java) S 18119 18119 16662 0 -1 1077944384 416 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609907468528 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18136] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18136/stat : 18136 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609906415984 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18137] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18137/stat : 18137 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609905362928 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18138] ppid=18119 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/18121/task/18138/stat : 18138 (java) R 18119 18119 16662 0 -1 4202560 347 0 0 0 1 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609904310384 140611783302550 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18139] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 7303 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30668 KiB

[startup+0.210158 s]*
/proc/loadavg: 7.37 8.01 8.02 2/211 18140
/proc/meminfo: memFree=30835480/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28227388 memory=40908 CPUtime=0.33 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 9499 0 0 0 30 3 0 0 20 0 20 0 420429254 28904845312 10227 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7056847 10227 3260 1 0 7019032 0
[pid=18121/tid=18122] ppid=18119 vsize=28227388 memory=0 CPUtime=0.2 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) R 18119 18119 16662 0 -1 4202560 6633 0 0 0 18 2 0 0 20 0 20 0 420429254 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611787523344 140611783302550 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28227388 memory=732370474618813413 CPUtime=0 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28227388 memory=140336281360000 CPUtime=0 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18126] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18126/stat : 18126 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611732753296 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18127] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18127/stat : 18127 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611731700240 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18128] ppid=18119 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/18121/task/18128/stat : 18128 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611730647696 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18129] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18129/stat : 18129 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611729594640 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18130] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18130/stat : 18130 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28904845312 10227 33554432000 4194304 4196468 140729792164112 140611728542096 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18131] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18131/stat : 18131 (java) S 18119 18119 16662 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 420429257 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609911679728 140611783301762 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18132] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18132/stat : 18132 (java) S 18119 18119 16662 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 420429257 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609910625952 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18133] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18133/stat : 18133 (java) S 18119 18119 16662 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 420429257 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609909572848 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18134] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18134/stat : 18134 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609908521424 140611783309211 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18135] ppid=18119 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/18121/task/18135/stat : 18135 (java) S 18119 18119 16662 0 -1 1077944384 507 0 0 0 1 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609907468528 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18136] ppid=18119 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/18121/task/18136/stat : 18136 (java) S 18119 18119 16662 0 -1 1077944384 221 0 0 0 2 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609906415984 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18137] ppid=18119 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/18121/task/18137/stat : 18137 (java) S 18119 18119 16662 0 -1 1077944384 57 0 0 0 1 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609905362928 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18138] ppid=18119 vsize=28227388 memory=0 CPUtime=0.07 cores=0-7
/proc/18121/task/18138/stat : 18138 (java) R 18119 18119 16662 0 -1 4202560 768 0 0 0 7 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609904310384 140611783311962 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18139] ppid=18119 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429260 28904845312 10227 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42364 KiB

[startup+0.309531 s]*
/proc/loadavg: 7.37 8.01 8.02 5/211 18140
/proc/meminfo: memFree=30829112/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28231644 memory=49960 CPUtime=0.53 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 10859 0 0 0 49 4 0 0 20 0 20 0 420429254 28909203456 12490 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7057911 12490 3360 1 0 7019032 0
[pid=18121/tid=18122] ppid=18119 vsize=28231644 memory=6791534058613427641 CPUtime=0.29 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) R 18119 18119 16662 0 -1 4202560 7759 0 0 0 27 2 0 0 20 0 20 0 420429254 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611787521728 140611767371102 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18126] ppid=18119 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18126/stat : 18126 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611732753296 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18127] ppid=18119 vsize=28231644 memory=2244 CPUtime=0 cores=0-7
/proc/18121/task/18127/stat : 18127 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611731700240 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18128] ppid=18119 vsize=28231644 memory=140336177443759 CPUtime=0 cores=0-7
/proc/18121/task/18128/stat : 18128 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611730647696 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18129] ppid=18119 vsize=28231644 memory=140336177446064 CPUtime=0 cores=0-7
/proc/18121/task/18129/stat : 18129 (java) S 18119 18119 16662 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611729594640 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18130] ppid=18119 vsize=28231644 memory=140336177448368 CPUtime=0 cores=0-7
/proc/18121/task/18130/stat : 18130 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28909203456 12519 33554432000 4194304 4196468 140729792164112 140611728542096 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18131] ppid=18119 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18131/stat : 18131 (java) S 18119 18119 16662 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 420429257 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609911679728 140611783301762 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18132] ppid=18119 vsize=28231644 memory=280672354903696 CPUtime=0 cores=0-7
/proc/18121/task/18132/stat : 18132 (java) S 18119 18119 16662 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 420429257 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609910625952 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18133] ppid=18119 vsize=28231644 memory=280672354910608 CPUtime=0 cores=0-7
/proc/18121/task/18133/stat : 18133 (java) S 18119 18119 16662 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 420429257 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609909572848 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18134] ppid=18119 vsize=28231644 memory=280672354851760 CPUtime=0 cores=0-7
/proc/18121/task/18134/stat : 18134 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609908521424 140611783309211 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18135] ppid=18119 vsize=28231644 memory=280672354924432 CPUtime=0.02 cores=0-7
/proc/18121/task/18135/stat : 18135 (java) S 18119 18119 16662 0 -1 1077944384 527 0 0 0 2 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609907468528 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18136] ppid=18119 vsize=28231644 memory=280672354931344 CPUtime=0.04 cores=0-7
/proc/18121/task/18136/stat : 18136 (java) R 18119 18119 16662 0 -1 4202560 320 0 0 0 4 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609906406368 140611764817720 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18137] ppid=18119 vsize=28231644 memory=280672354929040 CPUtime=0.01 cores=0-7
/proc/18121/task/18137/stat : 18137 (java) S 18119 18119 16662 0 -1 1077944384 72 0 0 0 1 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609905362928 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18138] ppid=18119 vsize=28231644 memory=280672354945200 CPUtime=0.12 cores=0-7
/proc/18121/task/18138/stat : 18138 (java) S 18119 18119 16662 0 -1 1077944384 871 0 0 0 12 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609904310384 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18139] ppid=18119 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429260 28909203456 12519 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51416 KiB

[startup+0.700868 s]
/proc/loadavg: 7.37 8.01 8.02 2/211 18140
/proc/meminfo: memFree=30814136/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28233768 memory=110436 CPUtime=1.81 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 15681 0 0 0 175 6 0 0 20 0 20 0 420429254 28911378432 27609 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7058442 27609 3455 1 0 7019544 0
[pid=18121/tid=18122] ppid=18119 vsize=28233768 memory=280672355240128 CPUtime=0.68 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) R 18119 18119 16662 0 -1 4202560 9211 0 0 0 64 4 0 0 20 0 20 0 420429254 28911378432 27609 33554432000 4194304 4196468 140729792164112 140611787527568 140611775968629 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28233768 memory=1772 CPUtime=0 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28911378432 27609 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28233768 memory=1056 CPUtime=0 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28911378432 27609 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28233768 memory=1556 CPUtime=0 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420429255 28911378432 27609 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0

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

/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 204165 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28769356 memory=280672354948544 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 330 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 204165 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 52.26 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 818116 KiB

[startup+10.4098 s]
/proc/loadavg: 6.70 7.84 7.97 5/219 19127
/proc/meminfo: memFree=29998088/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28769356 memory=927404 CPUtime=55.16 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 73194 0 0 0 5417 99 0 0 20 0 28 0 420429254 29459820544 231851 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7192339 231851 3531 1 0 7153441 0
[pid=18121/tid=18122] ppid=18119 vsize=28769356 memory=-1807685287725077596 CPUtime=1.06 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) S 18119 18119 16662 0 -1 1077944384 9656 0 0 0 100 6 0 0 20 0 28 0 420429254 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611787531392 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28769356 memory=2608 CPUtime=0.15 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 190 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28769356 memory=0 CPUtime=0.16 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 812 0 0 0 10 6 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28769356 memory=7593739040114344008 CPUtime=0.15 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 212 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18126] ppid=18119 vsize=28769356 memory=288284476417615685 CPUtime=0.15 cores=0-7
/proc/18121/task/18126/stat : 18126 (java) S 18119 18119 16662 0 -1 1077944384 238 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611732753296 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18127] ppid=18119 vsize=28769356 memory=301794158561955219 CPUtime=0.13 cores=0-7
/proc/18121/task/18127/stat : 18127 (java) S 18119 18119 16662 0 -1 1077944384 249 0 0 0 8 5 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611731700240 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18128] ppid=18119 vsize=28769356 memory=4137293581110450563 CPUtime=0.17 cores=0-7
/proc/18121/task/18128/stat : 18128 (java) S 18119 18119 16662 0 -1 1077944384 237 0 0 0 10 7 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611730647696 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18129] ppid=18119 vsize=28769356 memory=6791534058613427641 CPUtime=0.15 cores=0-7
/proc/18121/task/18129/stat : 18129 (java) S 18119 18119 16662 0 -1 1077944384 195 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611729594640 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18130] ppid=18119 vsize=28769356 memory=1088 CPUtime=0.16 cores=0-7
/proc/18121/task/18130/stat : 18130 (java) S 18119 18119 16662 0 -1 1077944384 225 0 0 0 10 6 0 0 20 0 28 0 420429255 29459820544 231851 33554432000 4194304 4196468 140729792164112 140611728542096 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18131] ppid=18119 vsize=28769356 memory=988 CPUtime=0.02 cores=0-7
/proc/18121/task/18131/stat : 18131 (java) S 18119 18119 16662 0 -1 1077944384 799 0 0 0 2 0 0 0 20 0 28 0 420429257 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609911679728 140611783301762 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18132] ppid=18119 vsize=28769356 memory=780 CPUtime=0 cores=0-7
/proc/18121/task/18132/stat : 18132 (java) S 18119 18119 16662 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 28 0 420429257 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609910626016 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18133] ppid=18119 vsize=28769356 memory=5980 CPUtime=0 cores=0-7
/proc/18121/task/18133/stat : 18133 (java) S 18119 18119 16662 0 -1 1077944384 29 0 0 0 0 0 0 0 20 0 28 0 420429257 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609909572864 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18134] ppid=18119 vsize=28769356 memory=624 CPUtime=0 cores=0-7
/proc/18121/task/18134/stat : 18134 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609908521424 140611783309211 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18135] ppid=18119 vsize=28769356 memory=3996 CPUtime=4.42 cores=0-7
/proc/18121/task/18135/stat : 18135 (java) S 18119 18119 16662 0 -1 1077944384 13643 0 0 0 438 4 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609907468528 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18136] ppid=18119 vsize=28769356 memory=2832 CPUtime=5.04 cores=0-7
/proc/18121/task/18136/stat : 18136 (java) S 18119 18119 16662 0 -1 1077944384 10406 0 0 0 502 2 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609906415984 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18137] ppid=18119 vsize=28769356 memory=14012 CPUtime=4.23 cores=0-7
/proc/18121/task/18137/stat : 18137 (java) R 18119 18119 16662 0 -1 1077944384 10442 0 0 0 419 4 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609905362928 140611783301762 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18138] ppid=18119 vsize=28769356 memory=2112 CPUtime=1.33 cores=0-7
/proc/18121/task/18138/stat : 18138 (java) S 18119 18119 16662 0 -1 1077944384 6931 0 0 0 131 2 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609904310384 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18139] ppid=18119 vsize=28769356 memory=12040 CPUtime=0 cores=0-7
/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28769356 memory=24248 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 330 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 231851 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 55.16 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 928860 KiB

[startup+10.8019 s]
/proc/loadavg: 6.70 7.84 7.97 5/219 19127
/proc/meminfo: memFree=29998088/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28769356 memory=954044 CPUtime=58.29 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 73324 0 0 0 5729 100 0 0 20 0 28 0 420429254 29459820544 238511 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7192339 238511 3531 1 0 7153441 0
[pid=18121/tid=18122] ppid=18119 vsize=28769356 memory=280672355510392 CPUtime=1.06 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) S 18119 18119 16662 0 -1 1077944384 9656 0 0 0 100 6 0 0 20 0 28 0 420429254 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611787531392 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28769356 memory=80004771744490 CPUtime=0.15 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 190 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28769356 memory=80004771744234 CPUtime=0.16 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 812 0 0 0 10 6 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28769356 memory=29880249799 CPUtime=0.15 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 212 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18126] ppid=18119 vsize=28769356 memory=7077805479492598374 CPUtime=0.15 cores=0-7
/proc/18121/task/18126/stat : 18126 (java) S 18119 18119 16662 0 -1 1077944384 238 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611732753296 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18127] ppid=18119 vsize=28769356 memory=29880249798 CPUtime=0.13 cores=0-7
/proc/18121/task/18127/stat : 18127 (java) S 18119 18119 16662 0 -1 1077944384 249 0 0 0 8 5 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611731700240 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18128] ppid=18119 vsize=28769356 memory=280672356337008 CPUtime=0.17 cores=0-7
/proc/18121/task/18128/stat : 18128 (java) S 18119 18119 16662 0 -1 1077944384 237 0 0 0 10 7 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611730647696 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18129] ppid=18119 vsize=28769356 memory=0 CPUtime=0.15 cores=0-7
/proc/18121/task/18129/stat : 18129 (java) S 18119 18119 16662 0 -1 1077944384 195 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611729594640 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18130] ppid=18119 vsize=28769356 memory=0 CPUtime=0.16 cores=0-7
/proc/18121/task/18130/stat : 18130 (java) S 18119 18119 16662 0 -1 1077944384 225 0 0 0 10 6 0 0 20 0 28 0 420429255 29459820544 238511 33554432000 4194304 4196468 140729792164112 140611728542096 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18131] ppid=18119 vsize=28769356 memory=0 CPUtime=0.02 cores=0-7
/proc/18121/task/18131/stat : 18131 (java) S 18119 18119 16662 0 -1 1077944384 799 0 0 0 2 0 0 0 20 0 28 0 420429257 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609911679728 140611783301762 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18132] ppid=18119 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18132/stat : 18132 (java) S 18119 18119 16662 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 28 0 420429257 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609910626016 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18133] ppid=18119 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18133/stat : 18133 (java) S 18119 18119 16662 0 -1 1077944384 29 0 0 0 0 0 0 0 20 0 28 0 420429257 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609909572864 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18134] ppid=18119 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18134/stat : 18134 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609908521424 140611783309211 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18135] ppid=18119 vsize=28769356 memory=0 CPUtime=4.46 cores=0-7
/proc/18121/task/18135/stat : 18135 (java) S 18119 18119 16662 0 -1 1077944384 13654 0 0 0 442 4 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609907468528 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18136] ppid=18119 vsize=28769356 memory=0 CPUtime=5.07 cores=0-7
/proc/18121/task/18136/stat : 18136 (java) S 18119 18119 16662 0 -1 1077944384 10415 0 0 0 505 2 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609906415984 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18137] ppid=18119 vsize=28769356 memory=0 CPUtime=4.29 cores=0-7
/proc/18121/task/18137/stat : 18137 (java) R 18119 18119 16662 0 -1 1077944384 10447 0 0 0 425 4 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609905362928 140611783301762 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18138] ppid=18119 vsize=28769356 memory=0 CPUtime=1.34 cores=0-7
/proc/18121/task/18138/stat : 18138 (java) S 18119 18119 16662 0 -1 1077944384 6959 0 0 0 132 2 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609904310384 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18139] ppid=18119 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 330 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 238511 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 58.29 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 955500 KiB

[startup+10.901 s]
/proc/loadavg: 6.70 7.84 7.97 5/219 19127
/proc/meminfo: memFree=29998088/32770624 swapFree=66940972/67108860
[pid=18119] ppid=18116 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/18119/stat : 18119 (xcsp3-exec) S 18116 18119 16662 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420429254 115843072 364 33554432000 4194304 5098028 140736582571456 140736582569560 140688567800444 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 16113664 140736582579064 140736582579305 140736582579305 140736582582218 0
/proc/18119/statm: 28282 364 305 221 0 87 0
[pid=18121] ppid=18119 vsize=28769356 memory=958140 CPUtime=58.99 cores=0-7
/proc/18121/stat : 18121 (java) S 18119 18119 16662 0 -1 1077944320 73326 0 0 0 5799 100 0 0 20 0 28 0 420429254 29459820544 239535 33554432000 4194304 4196468 140729792164112 140729792146656 140611783290615 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
/proc/18121/statm: 7192339 239535 3531 1 0 7153441 0
[pid=18121/tid=18122] ppid=18119 vsize=28769356 memory=816660 CPUtime=1.06 cores=0-7
/proc/18121/task/18122/stat : 18122 (java) S 18119 18119 16662 0 -1 1077944384 9656 0 0 0 100 6 0 0 20 0 28 0 420429254 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611787531392 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18123] ppid=18119 vsize=28769356 memory=816624 CPUtime=0.15 cores=0-7
/proc/18121/task/18123/stat : 18123 (java) S 18119 18119 16662 0 -1 1077944384 190 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611735911440 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18124] ppid=18119 vsize=28769356 memory=943804 CPUtime=0.16 cores=0-7
/proc/18121/task/18124/stat : 18124 (java) S 18119 18119 16662 0 -1 1077944384 812 0 0 0 10 6 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611734858896 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18125] ppid=18119 vsize=28769356 memory=1456 CPUtime=0.15 cores=0-7
/proc/18121/task/18125/stat : 18125 (java) S 18119 18119 16662 0 -1 1077944384 212 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611733805840 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18126] ppid=18119 vsize=28769356 memory=789820 CPUtime=0.15 cores=0-7
/proc/18121/task/18126/stat : 18126 (java) S 18119 18119 16662 0 -1 1077944384 238 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611732753296 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18127] ppid=18119 vsize=28769356 memory=1456 CPUtime=0.13 cores=0-7
/proc/18121/task/18127/stat : 18127 (java) S 18119 18119 16662 0 -1 1077944384 249 0 0 0 8 5 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611731700240 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18128] ppid=18119 vsize=28769356 memory=826900 CPUtime=0.17 cores=0-7
/proc/18121/task/18128/stat : 18128 (java) S 18119 18119 16662 0 -1 1077944384 237 0 0 0 10 7 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611730647696 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18129] ppid=18119 vsize=28769356 memory=280672355085832 CPUtime=0.15 cores=0-7
/proc/18121/task/18129/stat : 18129 (java) S 18119 18119 16662 0 -1 1077944384 195 0 0 0 9 6 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611729594640 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18130] ppid=18119 vsize=28769356 memory=80004771744234 CPUtime=0.16 cores=0-7
/proc/18121/task/18130/stat : 18130 (java) S 18119 18119 16662 0 -1 1077944384 225 0 0 0 10 6 0 0 20 0 28 0 420429255 29459820544 239535 33554432000 4194304 4196468 140729792164112 140611728542096 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18131] ppid=18119 vsize=28769356 memory=1456 CPUtime=0.02 cores=0-7
/proc/18121/task/18131/stat : 18131 (java) S 18119 18119 16662 0 -1 1077944384 799 0 0 0 2 0 0 0 20 0 28 0 420429257 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609911679728 140611783301762 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18132] ppid=18119 vsize=28769356 memory=789676 CPUtime=0 cores=0-7
/proc/18121/task/18132/stat : 18132 (java) S 18119 18119 16662 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 28 0 420429257 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609910626016 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18133] ppid=18119 vsize=28769356 memory=280672355019536 CPUtime=0 cores=0-7
/proc/18121/task/18133/stat : 18133 (java) S 18119 18119 16662 0 -1 1077944384 29 0 0 0 0 0 0 0 20 0 28 0 420429257 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609909572864 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18134] ppid=18119 vsize=28769356 memory=1456 CPUtime=0 cores=0-7
/proc/18121/task/18134/stat : 18134 (java) S 18119 18119 16662 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609908521424 140611783309211 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18135] ppid=18119 vsize=28769356 memory=816624 CPUtime=4.46 cores=0-7
/proc/18121/task/18135/stat : 18135 (java) S 18119 18119 16662 0 -1 1077944384 13654 0 0 0 442 4 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609907468528 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18136] ppid=18119 vsize=28769356 memory=0 CPUtime=5.07 cores=0-7
/proc/18121/task/18136/stat : 18136 (java) S 18119 18119 16662 0 -1 1077944384 10415 0 0 0 505 2 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609906415984 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18137] ppid=18119 vsize=28769356 memory=280672354914280 CPUtime=4.32 cores=0-7
/proc/18121/task/18137/stat : 18137 (java) R 18119 18119 16662 0 -1 4202560 10450 0 0 0 428 4 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609905362928 140611764834338 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18138] ppid=18119 vsize=28769356 memory=80004771744746 CPUtime=1.34 cores=0-7
/proc/18121/task/18138/stat : 18138 (java) S 18119 18119 16662 0 -1 1077944384 6959 0 0 0 132 2 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609904310384 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18139] ppid=18119 vsize=28769356 memory=80004771744746 CPUtime=0 cores=0-7
/proc/18121/task/18139/stat : 18139 (java) S 18119 18119 16662 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609903258592 140611783300821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
[pid=18121/tid=18140] ppid=18119 vsize=28769356 memory=80004771744746 CPUtime=0 cores=0-7
/proc/18121/task/18140/stat : 18140 (java) S 18119 18119 16662 0 -1 1077944384 330 0 0 0 0 0 0 0 20 0 28 0 420429260 29459820544 239535 33554432000 4194304 4196468 140729792164112 140609902206128 140611783301762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21643264 140729792168938 140729792169110 140729792169110 140729792171983 0
Current children cumulated CPU time: 58.99 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 959596 KiB

Child status: 0
Real time (s): 10.9559
CPU time (s): 59.0797
CPU user time (s): 58.0624
CPU system time (s): 1.01725
CPU usage (%): 539.25
Max. virtual memory (cumulated for all children) (KiB): 28883168
Max. memory (cumulated for all children) (KiB): 959596

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 58.0624
system time used= 1.01725
maximum resident set size= 960696
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 74009
page faults= 0
swaps= 0
block input operations= 0
block output operations= 136
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 13186
involuntary context switches= 1619


# summary of solver processes directly reported to runsolver:
#   pid: 18119
#   total CPU time (s): 59.0797
#   total CPU user time (s): 58.0624
#   total CPU system time (s): 1.01725

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.091867 second user time and 0.174547 second system time

The end

Launcher Data

Begin job on node149 at 2019-09-14 08:17:48
IDJOB=4393838
IDBENCH=138353
IDSOLVER=2841
FILE ID=node149/4393838-1568441906
RUNJOBID= node149-1568439317-16689
PBS_JOBID= 21702332
Free space on /tmp= 61424 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/Fastfood/Fastfood-m1-s1/Fastfood-ff21.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 24000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4393838-1568441906/watcher-4393838-1568441906 -o /tmp/evaluation-result-4393838-1568441906/solver-4393838-1568441906 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node149-1568439317-16689 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1423101 HOME/instance-4393838-1568441906.xml

TIME LIMIT= 20160 seconds
MEMORY LIMIT= 31000 MiB
NBCORE= 8

MD5SUM BENCH= 9ed96a9b02dc4e036934e9ef3088dc03
RANDOM SEED=1423101

node149.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.81
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.81
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.81
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.81
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:        30865960 kB
MemAvailable:   31851968 kB
Buffers:          194912 kB
Cached:          1086440 kB
SwapCached:        61340 kB
Active:           623404 kB
Inactive:         720224 kB
Active(anon):      29748 kB
Inactive(anon):    72540 kB
Active(file):     593656 kB
Inactive(file):   647684 kB
Unevictable:      111236 kB
Mlocked:          111236 kB
SwapTotal:      67108860 kB
SwapFree:       66940972 kB
Dirty:             26492 kB
Writeback:             0 kB
AnonPages:        113640 kB
Mapped:            44276 kB
Shmem:             31396 kB
Slab:             149944 kB
SReclaimable:     121008 kB
SUnreclaim:        28936 kB
KernelStack:        3616 kB
PageTables:         5592 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     498584 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     67584 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      144768 kB
DirectMap2M:    33400832 kB

Free space on /tmp at the end= 61396 MiB
End job on node149 at 2019-09-14 08:17:59