Trace number 4393845

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 parallelOPT353 117.309 23.1362

General information on the benchmark

NameScheduling/Scheduling-os-taillard/
Taillard-os-05-05-8.xml
MD5SUM43b2ef46cc27b455a3f22cfd7dbefeca
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark353
Best CPU time to get the best result obtained on this benchmark28.1866
Satisfiable
(Un)Satisfiability was proved
Number of variables105
Number of constraints90
Number of domains7
Minimum domain size5
Maximum domain size453
Distribution of domain sizes[{"size":5,"count":50},{"size":453,"count":55}]
Minimum variable degree2
Maximum variable degree6
Distribution of variable degrees[{"degree":2,"count":30},{"degree":3,"count":50},{"degree":6,"count":25}]
Minimum constraint arity1
Maximum constraint arity7
Distribution of constraint arities[{"arity":1,"count":5},{"arity":2,"count":25},{"arity":3,"count":25},{"arity":5,"count":10},{"arity":7,"count":25}]
Number of extensional constraints25
Number of intensional constraints30
Distribution of constraint types[{"type":"extension","count":25},{"type":"intension","count":30},{"type":"allDifferent","count":5},{"type":"noOverlap","count":5},{"type":"element","count":25}]
Optimization problemYES
Type of objectivemin MAXIMUM

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-4393845-1568418027.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4393845-1568418027.xml, -tl, 20160s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.28	c parse instance...
1.53/0.76	c solve instance...
1.92/0.89	o 452 
3.35/1.08	o 451 
3.35/1.10	o 428 
4.12/1.19	o 417 
4.60/1.28	o 411 
6.09/1.57	o 405 
7.46/1.83	o 393 
8.12/1.96	o 390 
10.06/2.34	o 378 
14.03/3.03	o 373 
15.39/3.29	o 371 
20.10/4.06	o 370 
21.71/4.40	o 367 
21.93/4.40	o 363 
24.24/5.08	o 362 
25.21/5.24	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (29/52)
25.21/5.24		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
25.21/5.24		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
25.21/5.24		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
25.21/5.24		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
25.21/5.24		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
25.21/5.24	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (29/52)
25.21/5.24		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
25.21/5.24		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
25.21/5.24		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
25.21/5.24		at org.chocosolver.solver.Solver.repair(Solver.java:443)
25.21/5.24		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
25.21/5.24		at org.chocosolver.solver.Solver.solve(Solver.java:262)
25.21/5.24		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
25.21/5.24		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
25.21/5.24		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
25.21/5.24		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
25.21/5.24		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
25.21/5.24		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
25.21/5.24		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
25.21/5.24		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
25.21/5.24		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
25.21/5.24		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
25.21/5.24	o 361 
25.21/5.30	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
25.21/5.30		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
25.21/5.30		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
25.21/5.30		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
25.21/5.30		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
25.21/5.30		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
25.98/5.31	Caused by: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
25.98/5.31		at org.chocosolver.solver.search.strategy.decision.DecisionPath.pushDecision(DecisionPath.java:95)
25.98/5.31		at org.chocosolver.solver.search.loop.move.MoveBinaryDFS.extend(MoveBinaryDFS.java:64)
25.98/5.31		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:82)
25.98/5.31		at org.chocosolver.solver.Solver.extend(Solver.java:421)
25.98/5.31		at org.chocosolver.solver.Solver.searchLoop(Solver.java:297)
25.98/5.31		at org.chocosolver.solver.Solver.solve(Solver.java:262)
25.98/5.31		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
25.98/5.31		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
25.98/5.31		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
25.98/5.31		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
25.98/5.31		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
25.98/5.31		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
25.98/5.31		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
25.98/5.31		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
25.98/5.31		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
25.98/5.31		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
25.98/5.31	o 360 
27.49/5.55	java.util.concurrent.ExecutionException: java.lang.NullPointerException
27.49/5.55		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
27.49/5.55		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
27.49/5.55		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
27.49/5.55		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
27.49/5.55		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
27.49/5.55	Caused by: java.lang.NullPointerException
27.49/5.55		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
27.49/5.55		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
27.49/5.55		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
27.49/5.55		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
27.49/5.55		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
27.49/5.55		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
27.49/5.55		... 4 more
27.49/5.55	Caused by: java.lang.NullPointerException
27.49/5.55		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
27.49/5.55		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
27.49/5.55		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
27.49/5.55		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
27.49/5.55		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
27.49/5.55		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
27.49/5.55		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
27.49/5.55		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
27.49/5.55		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
27.49/5.55		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
27.49/5.55		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
27.49/5.55		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
27.49/5.55		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
27.49/5.55		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
27.49/5.55		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
27.49/5.55		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
27.49/5.55		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
27.49/5.55		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
27.49/5.55	Caused by: java.lang.NullPointerException
27.49/5.55		at org.chocosolver.solver.propagation.PropagationEngine.execute(PropagationEngine.java:208)
27.49/5.55		at org.chocosolver.solver.propagation.PropagationEngine.activatePropagators(PropagationEngine.java:197)
27.49/5.55		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:162)
27.49/5.55		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
27.49/5.55		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
27.49/5.55		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
27.49/5.55		at org.chocosolver.solver.Solver.solve(Solver.java:262)
27.49/5.55		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
27.49/5.55		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
27.49/5.55		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
27.49/5.55		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
27.49/5.55		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
27.49/5.55		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
27.49/5.55		... 4 more
27.49/5.55	o 359 
31.38/6.19	java.util.concurrent.ExecutionException: java.lang.IndexOutOfBoundsException
31.38/6.19		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
31.38/6.19		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
31.38/6.19		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
31.38/6.19		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
31.38/6.19		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
31.38/6.19	Caused by: java.lang.IndexOutOfBoundsException
31.38/6.19		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
31.38/6.19		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
31.38/6.19		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
31.38/6.19		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
31.38/6.19		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
31.38/6.19		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
31.38/6.19		... 4 more
31.38/6.19	Caused by: java.lang.IndexOutOfBoundsException
31.38/6.19		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
31.38/6.19		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
31.38/6.19		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
31.38/6.19		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
31.38/6.19		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
31.38/6.19		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
31.38/6.19		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
31.38/6.19		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
31.38/6.19		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
31.38/6.19		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
31.38/6.19		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
31.38/6.19		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
31.38/6.19		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
31.38/6.19		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
31.38/6.19		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
31.38/6.19		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
31.38/6.19		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
31.38/6.19		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
31.38/6.19	Caused by: java.lang.IndexOutOfBoundsException: Index: 2818, Size: 1
31.38/6.19		at java.util.ArrayList.rangeCheck(ArrayList.java:653)
31.38/6.19		at java.util.ArrayList.remove(ArrayList.java:492)
31.38/6.19		at org.chocosolver.solver.search.strategy.decision.DecisionPath.synchronize(DecisionPath.java:117)
31.38/6.19		at org.chocosolver.solver.search.strategy.decision.DecisionPath.synchronize(DecisionPath.java:104)
31.38/6.19		at org.chocosolver.solver.Solver.restoreRootNode(Solver.java:623)
31.38/6.19		at org.chocosolver.solver.Solver.restart(Solver.java:597)
31.38/6.19		at org.chocosolver.solver.search.loop.move.MoveRestart.restart(MoveRestart.java:135)
31.38/6.19		at org.chocosolver.solver.search.loop.move.MoveRestart.repair(MoveRestart.java:96)
31.38/6.19		at org.chocosolver.solver.Solver.repair(Solver.java:438)
31.38/6.19		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
31.38/6.19		at org.chocosolver.solver.Solver.solve(Solver.java:262)
31.38/6.19		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
31.38/6.19		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
31.38/6.19		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
31.38/6.19		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
31.38/6.19		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
31.38/6.19		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
31.38/6.19		... 4 more
31.38/6.19	o 358 
36.37/8.40	o 357 
50.44/10.74	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (7/9)
50.44/10.74		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
50.44/10.74		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
50.44/10.74		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
50.44/10.74		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
50.44/10.74		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
50.44/10.75	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (7/9)
50.44/10.75		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
50.44/10.75		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
50.44/10.75		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
50.44/10.75		at org.chocosolver.solver.Solver.repair(Solver.java:443)
50.44/10.75		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
50.44/10.75		at org.chocosolver.solver.Solver.solve(Solver.java:262)
50.44/10.75		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
50.44/10.75		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
50.44/10.75		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
50.44/10.75		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
50.44/10.75		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
50.44/10.75		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
50.44/10.75		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
50.44/10.75		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
50.44/10.75		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
50.44/10.75		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
50.44/10.75	o 355 
52.79/11.10	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
52.79/11.10		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
52.79/11.10		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
52.79/11.10		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
52.79/11.10		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
52.79/11.10		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
52.79/11.11	Caused by: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
52.79/11.11		at org.chocosolver.solver.search.strategy.decision.DecisionPath.pushDecision(DecisionPath.java:95)
52.79/11.11		at org.chocosolver.solver.search.loop.move.MoveBinaryDFS.extend(MoveBinaryDFS.java:64)
52.79/11.11		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:82)
52.79/11.11		at org.chocosolver.solver.Solver.extend(Solver.java:421)
52.79/11.11		at org.chocosolver.solver.Solver.searchLoop(Solver.java:297)
52.79/11.11		at org.chocosolver.solver.Solver.solve(Solver.java:262)
52.79/11.11		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
52.79/11.11		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
52.79/11.11		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
52.79/11.11		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
52.79/11.11		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
52.79/11.11		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
52.79/11.11		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
52.79/11.11		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
52.79/11.11		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
52.79/11.11		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
52.79/11.11	o 354 
69.01/13.58	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
69.01/13.58		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
69.01/13.58		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
69.01/13.58		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
69.01/13.58		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
69.01/13.58		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
69.01/13.58	Caused by: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
69.01/13.58		at org.chocosolver.solver.search.strategy.decision.DecisionPath.pushDecision(DecisionPath.java:95)
69.01/13.58		at org.chocosolver.solver.search.loop.move.MoveBinaryDFS.extend(MoveBinaryDFS.java:64)
69.01/13.58		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:82)
69.01/13.58		at org.chocosolver.solver.Solver.extend(Solver.java:421)
69.01/13.58		at org.chocosolver.solver.Solver.searchLoop(Solver.java:297)
69.01/13.58		at org.chocosolver.solver.Solver.solve(Solver.java:262)
69.01/13.58		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
69.01/13.58		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
69.01/13.58		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
69.01/13.58		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
69.01/13.58		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
69.01/13.58		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
69.01/13.58		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
69.01/13.58		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
69.01/13.58		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
69.01/13.58		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
69.01/13.58	o 353 
117.23/23.12	java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException
117.23/23.12		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
117.23/23.12		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
117.23/23.12		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
117.23/23.12		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
117.23/23.12		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
117.23/23.12	Caused by: java.lang.ArrayIndexOutOfBoundsException
117.23/23.12		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
117.23/23.12		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
117.23/23.12		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
117.23/23.12		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
117.23/23.12		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
117.23/23.12		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
117.23/23.12		... 4 more
117.23/23.12	Caused by: java.lang.ArrayIndexOutOfBoundsException
117.23/23.12		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
117.23/23.12		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
117.23/23.12		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
117.23/23.12		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
117.23/23.12		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
117.23/23.12		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
117.23/23.12		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
117.23/23.12		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
117.23/23.12		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
117.23/23.12		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
117.23/23.12		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
117.23/23.12		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
117.23/23.12		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
117.23/23.12		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
117.23/23.12		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
117.23/23.12		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
117.23/23.12		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
117.23/23.12		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
117.23/23.12	Caused by: java.lang.ArrayIndexOutOfBoundsException: -1
117.23/23.12		at org.chocosolver.solver.variables.impl.AbstractVariable.getDindex(AbstractVariable.java:309)
117.23/23.12		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:289)
117.23/23.12		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
117.23/23.12		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:181)
117.23/23.12		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
117.23/23.12		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
117.23/23.12		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
117.23/23.12		at org.chocosolver.solver.Solver.solve(Solver.java:262)
117.23/23.12		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
117.23/23.12		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
117.23/23.12		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
117.23/23.12		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
117.23/23.12		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
117.23/23.12		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
117.23/23.12		... 4 more
117.23/23.12	s OPTIMUM FOUND
117.23/23.12	v <instantiation>
117.23/23.12	v 	<list>s[0][0] s[0][1] s[0][2] s[0][3] s[0][4] s[1][0] s[1][1] s[1][2] s[1][3] s[1][4] s[2][0] s[2][1] s[2][2] s[2][3] s[2][4] s[3][0] s[3][1] s[3][2] s[3][3] s[3][4] s[4][0] s[4][1] s[4][2] s[4][3] s[4][4] e[0] e[1] e[2] e[3] e[4] d[0][0] d[0][1] d[0][2] d[0][3] d[0][4] d[1][0] d[1][1] d[1][2] d[1][3] d[1][4] d[2][0] d[2][1] d[2][2] d[2][3] d[2][4] d[3][0] d[3][1] d[3][2] d[3][3] d[3][4] d[4][0] d[4][1] d[4][2] d[4][3] d[4][4] w[0][0] w[0][1] w[0][2] w[0][3] w[0][4] w[1][0] w[1][1] w[1][2] w[1][3] w[1][4] w[2][0] w[2][1] w[2][2] w[2][3] w[2][4] w[3][0] w[3][1] w[3][2] w[3][3] w[3][4] w[4][0] w[4][1] w[4][2] w[4][3] w[4][4] sd[0][0] sd[0][1] sd[0][2] sd[0][3] sd[0][4] sd[1][0] sd[1][1] sd[1][2] sd[1][3] sd[1][4] sd[2][0] sd[2][1] sd[2][2] sd[2][3] sd[2][4] sd[3][0] sd[3][1] sd[3][2] sd[3][3] sd[3][4] sd[4][0] sd[4][1] sd[4][2] sd[4][3] sd[4][4] </list>
117.23/23.12	v 	<values>30 108 132 180 263 0 73 96 192 260 16 56 90 147 258 1 59 131 190 257 0 90 106 167 264 353 353 352 353 353 38 22 35 83 90 73 23 84 68 93 38 34 41 77 94 55 72 59 67 96 90 16 49 93 89 3 0 1 2 4 0 3 2 4 1 1 2 4 0 3 2 1 4 3 0 4 0 3 1 2 108 132 180 30 263 0 260 96 73 192 147 16 56 258 90 257 59 1 190 131 90 167 264 106 0 </values>
117.23/23.12	v </instantiation>

Verifier Data

OK	353

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393845-1568418027/watcher-4393845-1568418027 -o /tmp/evaluation-result-4393845-1568418027/solver-4393845-1568418027 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1568417824-4885 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 2129605119 HOME/instance-4393845-1568418027.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=5991, runsolver pid=5988
Current StackSize limit: 8192 KiB


[startup+0.100112 s]*
/proc/loadavg: 5.12 3.14 1.83 2/213 6012
/proc/meminfo: memFree=31594768/32770624 swapFree=67004224/67108860
[pid=5991] ppid=5988 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/5991/stat : 5991 (xcsp3-exec) S 5988 5991 4858 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 417964305 115843072 363 33554432000 4194304 5098028 140728268123072 140728268121176 139972810224252 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 23027712 140728268129141 140728268129385 140728268129385 140728268132298 0
/proc/5991/statm: 28282 363 305 221 0 87 0
[pid=5993] ppid=5991 vsize=28227388 memory=28828 CPUtime=0.12 cores=0-7
/proc/5993/stat : 5993 (java) S 5991 5991 4858 0 -1 1077944320 5691 0 0 0 11 1 0 0 20 0 20 0 417964305 28904845312 7207 33554432000 4194304 4196468 140734204046928 140734204029472 140200754093815 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
/proc/5993/statm: 7056847 7207 3119 1 0 7019032 0
[pid=5993/tid=5994] ppid=5991 vsize=28227388 memory=576460756329955445 CPUtime=0.09 cores=0-7
/proc/5993/task/5994/stat : 5994 (java) R 5991 5991 4858 0 -1 4202560 3611 0 0 0 8 1 0 0 20 0 20 0 417964305 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200758330240 140200754105750 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5995] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5995/stat : 5995 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200706714640 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5996] ppid=5991 vsize=28227388 memory=15121323126224536 CPUtime=0 cores=0-7
/proc/5993/task/5996/stat : 5996 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200705662096 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5997] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5997/stat : 5997 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200704609040 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5998] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5998/stat : 5998 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200703556496 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5999] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5999/stat : 5999 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200702503440 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6000] ppid=5991 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/5993/task/6000/stat : 6000 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200701450896 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6001] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6001/stat : 6001 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200700397840 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6002] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6002/stat : 6002 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 7207 33554432000 4194304 4196468 140734204046928 140200699345296 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6003] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6003/stat : 6003 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964307 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199936875248 140200754104962 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6004] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6004/stat : 6004 (java) S 5991 5991 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 417964308 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199935821472 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6005] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6005/stat : 6005 (java) S 5991 5991 4858 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417964308 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199934768368 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6006] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6006/stat : 6006 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199933716944 140200754112411 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6007] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6007/stat : 6007 (java) S 5991 5991 4858 0 -1 1077944384 296 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199932664048 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6008] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6008/stat : 6008 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199931611504 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6009] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6009/stat : 6009 (java) S 5991 5991 4858 0 -1 1077944384 124 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199930558448 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6010] ppid=5991 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/5993/task/6010/stat : 6010 (java) R 5991 5991 4858 0 -1 4202560 346 0 0 0 2 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199929505904 140200733070510 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6011] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6011/stat : 6011 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199928454112 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6012] ppid=5991 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/5993/task/6012/stat : 6012 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 7207 33554432000 4194304 4196468 140734204046928 140199927401648 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30280 KiB

[startup+0.209861 s]*
/proc/loadavg: 5.12 3.14 1.83 2/213 6012
/proc/meminfo: memFree=31582020/32770624 swapFree=67004224/67108860
[pid=5991] ppid=5988 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/5991/stat : 5991 (xcsp3-exec) S 5988 5991 4858 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 417964305 115843072 363 33554432000 4194304 5098028 140728268123072 140728268121176 139972810224252 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 23027712 140728268129141 140728268129385 140728268129385 140728268132298 0
/proc/5991/statm: 28282 363 305 221 0 87 0
[pid=5993] ppid=5991 vsize=28227388 memory=41132 CPUtime=0.33 cores=0-7
/proc/5993/stat : 5993 (java) S 5991 5991 4858 0 -1 1077944320 9482 0 0 0 30 3 0 0 20 0 20 0 417964305 28904845312 10283 33554432000 4194304 4196468 140734204046928 140734204029472 140200754093815 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
/proc/5993/statm: 7056847 10283 3312 1 0 7019032 0
[pid=5993/tid=5994] ppid=5991 vsize=28227388 memory=8316850467074736180 CPUtime=0.2 cores=0-7
/proc/5993/task/5994/stat : 5994 (java) R 5991 5991 4858 0 -1 4202560 6646 0 0 0 18 2 0 0 20 0 20 0 417964305 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200758323536 140200738174302 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5995] ppid=5991 vsize=28227388 memory=14965 CPUtime=0 cores=0-7
/proc/5993/task/5995/stat : 5995 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200706714640 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5996] ppid=5991 vsize=28227388 memory=140270149897852 CPUtime=0 cores=0-7
/proc/5993/task/5996/stat : 5996 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200705662096 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5997] ppid=5991 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/5993/task/5997/stat : 5997 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200704609040 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5998] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5998/stat : 5998 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200703556496 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5999] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5999/stat : 5999 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200702503440 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6000] ppid=5991 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/5993/task/6000/stat : 6000 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200701450896 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6001] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6001/stat : 6001 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200700397840 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6002] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6002/stat : 6002 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964306 28904845312 10283 33554432000 4194304 4196468 140734204046928 140200699345296 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6003] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6003/stat : 6003 (java) S 5991 5991 4858 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 417964307 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199936875248 140200754104962 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6004] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6004/stat : 6004 (java) S 5991 5991 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 417964308 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199935821472 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6005] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6005/stat : 6005 (java) S 5991 5991 4858 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417964308 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199934768368 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6006] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6006/stat : 6006 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199933716944 140200754112411 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6007] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6007/stat : 6007 (java) R 5991 5991 4858 0 -1 1077944384 337 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199932664048 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6008] ppid=5991 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/5993/task/6008/stat : 6008 (java) S 5991 5991 4858 0 -1 1077944384 75 0 0 0 1 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199931611504 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6009] ppid=5991 vsize=28227388 memory=-1 CPUtime=0.02 cores=0-7
/proc/5993/task/6009/stat : 6009 (java) S 5991 5991 4858 0 -1 1077944384 348 0 0 0 2 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199930558448 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6010] ppid=5991 vsize=28227388 memory=-1 CPUtime=0.07 cores=0-7
/proc/5993/task/6010/stat : 6010 (java) R 5991 5991 4858 0 -1 4202560 767 0 0 0 7 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199929505904 140200754115162 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6011] ppid=5991 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6011/stat : 6011 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199928454112 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6012] ppid=5991 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/5993/task/6012/stat : 6012 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964311 28904845312 10283 33554432000 4194304 4196468 140734204046928 140199927401648 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42584 KiB

[startup+0.309505 s]*
/proc/loadavg: 5.12 3.14 1.83 5/213 6012
/proc/meminfo: memFree=31574164/32770624 swapFree=67004224/67108860
[pid=5991] ppid=5988 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/5991/stat : 5991 (xcsp3-exec) S 5988 5991 4858 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 417964305 115843072 363 33554432000 4194304 5098028 140728268123072 140728268121176 139972810224252 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 23027712 140728268129141 140728268129385 140728268129385 140728268132298 0
/proc/5991/statm: 28282 363 305 221 0 87 0
[pid=5993] ppid=5991 vsize=28231644 memory=49984 CPUtime=0.52 cores=0-7
/proc/5993/stat : 5993 (java) S 5991 5991 4858 0 -1 1077944320 10848 0 0 0 48 4 0 0 20 0 20 0 417964305 28909203456 12496 33554432000 4194304 4196468 140734204046928 140734204029472 140200754093815 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
/proc/5993/statm: 7057911 12496 3357 1 0 7019032 0
[pid=5993/tid=5994] ppid=5991 vsize=28231644 memory=8317482817917895235 CPUtime=0.29 cores=0-7
/proc/5993/task/5994/stat : 5994 (java) R 5991 5991 4858 0 -1 4202560 7763 0 0 0 26 3 0 0 20 0 20 0 417964305 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200758324928 140200738174302 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5995] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5995/stat : 5995 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200706714640 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5996] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5996/stat : 5996 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200705662096 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5997] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5997/stat : 5997 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200704609040 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5998] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5998/stat : 5998 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200703556496 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5999] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5999/stat : 5999 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200702503440 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6000] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6000/stat : 6000 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200701450896 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6001] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6001/stat : 6001 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200700397840 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6002] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6002/stat : 6002 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964306 28909203456 12496 33554432000 4194304 4196468 140734204046928 140200699345296 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6003] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6003/stat : 6003 (java) S 5991 5991 4858 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 417964307 28909203456 12496 33554432000 4194304 4196468 140734204046928 140199936875248 140200754104962 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6004] ppid=5991 vsize=28231644 memory=280540016221568 CPUtime=0 cores=0-7
/proc/5993/task/6004/stat : 6004 (java) S 5991 5991 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 417964308 28909203456 12496 33554432000 4194304 4196468 140734204046928 140199935821472 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6005] ppid=5991 vsize=28231644 memory=280540016226176 CPUtime=0 cores=0-7
/proc/5993/task/6005/stat : 6005 (java) S 5991 5991 4858 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417964308 28909203456 12496 33554432000 4194304 4196468 140734204046928 140199934768368 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6006] ppid=5991 vsize=28231644 memory=280540016230784 CPUtime=0 cores=0-7
/proc/5993/task/6006/stat : 6006 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964311 28909203456 12496 33554432000 4194304 4196468 140734204046928 140199933716944 140200754112411 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6007] ppid=5991 vsize=28231644 memory=280540016235392 CPUtime=0.01 cores=0-7
/proc/5993/task/6007/stat : 6007 (java) S 5991 5991 4858 0 -1 1077944384 369 0 0 0 1 0 0 0 20 0 20 0 417964311 28909203456 12496 33554432000 4194304 4196468 140734204046928 140199932664048 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6008] ppid=5991 vsize=28231644 memory=280540016240000 CPUtime=0.02 cores=0-7
/proc/5993/task/6008/stat : 6008 (java) S 5991 5991 4858 0 -1 1077944384 82 0 0 0 2 0 0 0 20 0 20 0 417964311 28909203456 12496 33554432000 4194304 4196468 140734204046928 140199931611504 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6009] ppid=5991 vsize=28231644 memory=280540016244608 CPUtime=0.04 cores=0-7
/proc/5993/task/6009/stat : 6009 (java) R 5991 5991 4858 0 -1 4202560 446 0 0 0 4 0 0 0 20 0 20 0 417964311 28909203456 12527 33554432000 4194304 4196468 140734204046928 140199930558448 140200733346431 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6010] ppid=5991 vsize=28231644 memory=280540016249216 CPUtime=0.12 cores=0-7
/proc/5993/task/6010/stat : 6010 (java) S 5991 5991 4858 0 -1 1077944384 883 0 0 0 12 0 0 0 20 0 20 0 417964311 28909203456 12527 33554432000 4194304 4196468 140734204046928 140199929505904 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6011] ppid=5991 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/6011/stat : 6011 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417964311 28909203456 12527 33554432000 4194304 4196468 140734204046928 140199928454112 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6012] ppid=5991 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/5993/task/6012/stat : 6012 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417964311 28909203456 12527 33554432000 4194304 4196468 140734204046928 140199927401648 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51436 KiB

[startup+0.70082 s]
/proc/loadavg: 5.12 3.14 1.83 4/213 6012
/proc/meminfo: memFree=31560572/32770624 swapFree=67004224/67108860
[pid=5991] ppid=5988 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/5991/stat : 5991 (xcsp3-exec) S 5988 5991 4858 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 417964305 115843072 363 33554432000 4194304 5098028 140728268123072 140728268121176 139972810224252 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 23027712 140728268129141 140728268129385 140728268129385 140728268132298 0
/proc/5991/statm: 28282 363 305 221 0 87 0
[pid=5993] ppid=5991 vsize=28233768 memory=81648 CPUtime=1.53 cores=0-7
/proc/5993/stat : 5993 (java) S 5991 5991 4858 0 -1 1077944320 14617 0 0 0 146 7 0 0 20 0 20 0 417964305 28911378432 20412 33554432000 4194304 4196468 140734204046928 140734204029472 140200754093815 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
/proc/5993/statm: 7058442 20412 3451 1 0 7019544 0
[pid=5993/tid=5994] ppid=5991 vsize=28233768 memory=0 CPUtime=0.67 cores=0-7
/proc/5993/task/5994/stat : 5994 (java) R 5991 5991 4858 0 -1 4202560 9398 0 0 0 63 4 0 0 20 0 20 0 417964305 28911378432 20412 33554432000 4194304 4196468 140734204046928 140200758328096 140200754105750 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5995] ppid=5991 vsize=28233768 memory=140270008312704 CPUtime=0 cores=0-7
/proc/5993/task/5995/stat : 5995 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28911378432 20412 33554432000 4194304 4196468 140734204046928 140200706714640 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5996] ppid=5991 vsize=28233768 memory=0 CPUtime=0 cores=0-7
/proc/5993/task/5996/stat : 5996 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28911378432 20412 33554432000 4194304 4196468 140734204046928 140200705662096 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5997] ppid=5991 vsize=28233768 memory=1052 CPUtime=0 cores=0-7
/proc/5993/task/5997/stat : 5997 (java) S 5991 5991 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417964306 28911378432 20412 33554432000 4194304 4196468 140734204046928 140200704609040 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0

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

[pid=5993/tid=6010] ppid=5991 vsize=28968020 memory=1452 CPUtime=1.26 cores=0-7
/proc/5993/task/6010/stat : 6010 (java) S 5991 5991 4858 0 -1 1077944384 9290 0 0 0 123 3 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199929505904 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6011] ppid=5991 vsize=28968020 memory=396892 CPUtime=0 cores=0-7
/proc/5993/task/6011/stat : 6011 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199928454112 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6012] ppid=5991 vsize=28968020 memory=1724 CPUtime=0 cores=0-7
/proc/5993/task/6012/stat : 6012 (java) S 5991 5991 4858 0 -1 1077944384 1177 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199927401648 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6205] ppid=5991 vsize=28968020 memory=6655300316396806240 CPUtime=9.18 cores=0-7
/proc/5993/task/6205/stat : 6205 (java) R 5991 5991 4858 0 -1 4202560 497 0 0 0 918 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199907909304 140200378457237 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6206] ppid=5991 vsize=28968020 memory=6944656592455360604 CPUtime=9.18 cores=0-7
/proc/5993/task/6206/stat : 6206 (java) R 5991 5991 4858 0 -1 4202560 443 0 0 0 918 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199910015864 140200375837330 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6207] ppid=5991 vsize=28968020 memory=6944656575208382560 CPUtime=9.18 cores=0-7
/proc/5993/task/6207/stat : 6207 (java) R 5991 5991 4858 0 -1 4202560 510 0 0 0 918 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199914226232 140200371907173 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6208] ppid=5991 vsize=28968020 memory=55 CPUtime=9.18 cores=0-7
/proc/5993/task/6208/stat : 6208 (java) R 5991 5991 4858 0 -1 4202560 1415 0 0 0 915 3 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199908962664 140200374854213 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6209] ppid=5991 vsize=28968020 memory=576583242059703325 CPUtime=9.18 cores=0-7
/proc/5993/task/6209/stat : 6209 (java) R 5991 5991 4858 0 -1 4202560 760 0 0 0 917 1 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199912119664 140200377505108 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6210] ppid=5991 vsize=28968020 memory=288289961139257303 CPUtime=0 cores=0-7
/proc/5993/task/6210/stat : 6210 (java) S 5991 5991 4858 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199915283280 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6211] ppid=5991 vsize=28968020 memory=7306075891424520553 CPUtime=0 cores=0-7
/proc/5993/task/6211/stat : 6211 (java) S 5991 5991 4858 0 -1 1077944384 16 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199913178576 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6212] ppid=5991 vsize=28968020 memory=7308327820188083025 CPUtime=0 cores=0-7
/proc/5993/task/6212/stat : 6212 (java) S 5991 5991 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199911073360 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
Current children cumulated CPU time: 115.68 s
Current children cumulated vsize: 29081148 KiB
Current children cumulated memory: 396804 KiB

[startup+23.0012 s]*
/proc/loadavg: 4.54 3.16 1.87 6/221 6212
/proc/meminfo: memFree=31227904/32770624 swapFree=67004224/67108860
[pid=5991] ppid=5988 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/5991/stat : 5991 (xcsp3-exec) S 5988 5991 4858 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 417964305 115843072 363 33554432000 4194304 5098028 140728268123072 140728268121176 139972810224252 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 23027712 140728268129141 140728268129385 140728268129385 140728268132298 0
/proc/5991/statm: 28282 363 305 221 0 87 0
[pid=5993] ppid=5991 vsize=28968020 memory=395352 CPUtime=116.72 cores=0-7
/proc/5993/stat : 5993 (java) S 5991 5991 4858 0 -1 1077944320 79005 0 0 0 11617 55 0 0 20 0 28 0 417964305 29663252480 98838 33554432000 4194304 4196468 140734204046928 140734204029472 140200754093815 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
/proc/5993/statm: 7242005 98838 3544 1 0 7203107 0
[pid=5993/tid=5994] ppid=5991 vsize=28968020 memory=8317482817917895235 CPUtime=0.79 cores=0-7
/proc/5993/task/5994/stat : 5994 (java) S 5991 5991 4858 0 -1 1077944384 10332 0 0 0 74 5 0 0 20 0 28 0 417964305 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200758334592 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5995] ppid=5991 vsize=28968020 memory=7 CPUtime=0.06 cores=0-7
/proc/5993/task/5995/stat : 5995 (java) S 5991 5991 4858 0 -1 1077944384 175 0 0 0 5 1 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200706714640 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5996] ppid=5991 vsize=28968020 memory=280540018473520 CPUtime=0.05 cores=0-7
/proc/5993/task/5996/stat : 5996 (java) S 5991 5991 4858 0 -1 1077944384 1500 0 0 0 3 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200705662096 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5997] ppid=5991 vsize=28968020 memory=0 CPUtime=0.07 cores=0-7
/proc/5993/task/5997/stat : 5997 (java) S 5991 5991 4858 0 -1 1077944384 193 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200704609040 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5998] ppid=5991 vsize=28968020 memory=1452 CPUtime=0.07 cores=0-7
/proc/5993/task/5998/stat : 5998 (java) S 5991 5991 4858 0 -1 1077944384 121 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200703556496 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5999] ppid=5991 vsize=28968020 memory=395352 CPUtime=0.06 cores=0-7
/proc/5993/task/5999/stat : 5999 (java) S 5991 5991 4858 0 -1 1077944384 263 0 0 0 4 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200702503440 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6000] ppid=5991 vsize=28968020 memory=0 CPUtime=0.07 cores=0-7
/proc/5993/task/6000/stat : 6000 (java) S 5991 5991 4858 0 -1 1077944384 214 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200701450896 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6001] ppid=5991 vsize=28968020 memory=385 CPUtime=0.07 cores=0-7
/proc/5993/task/6001/stat : 6001 (java) S 5991 5991 4858 0 -1 1077944384 92 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200700397840 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6002] ppid=5991 vsize=28968020 memory=6944656592455097440 CPUtime=0.06 cores=0-7
/proc/5993/task/6002/stat : 6002 (java) S 5991 5991 4858 0 -1 1077944384 587 0 0 0 4 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200699345296 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6003] ppid=5991 vsize=28968020 memory=6655300316396806240 CPUtime=0.02 cores=0-7
/proc/5993/task/6003/stat : 6003 (java) S 5991 5991 4858 0 -1 1077944384 908 0 0 0 2 0 0 0 20 0 28 0 417964307 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199936875248 140200754104962 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6004] ppid=5991 vsize=28968020 memory=6943526294502006880 CPUtime=0 cores=0-7
/proc/5993/task/6004/stat : 6004 (java) S 5991 5991 4858 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 28 0 417964308 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199935821536 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6005] ppid=5991 vsize=28968020 memory=-7361174377247368086 CPUtime=0 cores=0-7
/proc/5993/task/6005/stat : 6005 (java) S 5991 5991 4858 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 28 0 417964308 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199934768384 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6006] ppid=5991 vsize=28968020 memory=8303054830060986464 CPUtime=0 cores=0-7
/proc/5993/task/6006/stat : 6006 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199933716944 140200754112411 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6007] ppid=5991 vsize=28968020 memory=4137293581110450563 CPUtime=4.21 cores=0-7
/proc/5993/task/6007/stat : 6007 (java) S 5991 5991 4858 0 -1 1077944384 12280 0 0 0 418 3 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199932664048 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6008] ppid=5991 vsize=28968020 memory=7598824234097836114 CPUtime=4.08 cores=0-7
/proc/5993/task/6008/stat : 6008 (java) S 5991 5991 4858 0 -1 1077944384 13257 0 0 0 404 4 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199931611504 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6009] ppid=5991 vsize=28968020 memory=13628 CPUtime=4.5 cores=0-7
/proc/5993/task/6009/stat : 6009 (java) S 5991 5991 4858 0 -1 1077944384 16017 0 0 0 446 4 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199930558448 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6010] ppid=5991 vsize=28968020 memory=-8540893463792950645 CPUtime=1.26 cores=0-7
/proc/5993/task/6010/stat : 6010 (java) S 5991 5991 4858 0 -1 1077944384 9290 0 0 0 123 3 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199929505904 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6011] ppid=5991 vsize=28968020 memory=4717981658327851154 CPUtime=0 cores=0-7
/proc/5993/task/6011/stat : 6011 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199928454112 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6012] ppid=5991 vsize=28968020 memory=29877784849 CPUtime=0 cores=0-7
/proc/5993/task/6012/stat : 6012 (java) S 5991 5991 4858 0 -1 1077944384 1177 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199927401648 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6205] ppid=5991 vsize=28968020 memory=280540016543328 CPUtime=9.39 cores=0-7
/proc/5993/task/6205/stat : 6205 (java) R 5991 5991 4858 0 -1 4202560 500 0 0 0 939 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199907909304 140200369463620 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6206] ppid=5991 vsize=28968020 memory=280540016318496 CPUtime=9.39 cores=0-7
/proc/5993/task/6206/stat : 6206 (java) R 5991 5991 4858 0 -1 4202560 443 0 0 0 939 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199910015864 140200733818887 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6207] ppid=5991 vsize=28968020 memory=-7966001957961632603 CPUtime=9.39 cores=0-7
/proc/5993/task/6207/stat : 6207 (java) R 5991 5991 4858 0 -1 4202560 511 0 0 0 939 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199914226232 140200376201936 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6208] ppid=5991 vsize=28968020 memory=6944656592387989600 CPUtime=9.39 cores=0-7
/proc/5993/task/6208/stat : 6208 (java) R 5991 5991 4858 0 -1 4202560 1426 0 0 0 936 3 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199908962664 140200371907429 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6209] ppid=5991 vsize=28968020 memory=0 CPUtime=9.39 cores=0-7
/proc/5993/task/6209/stat : 6209 (java) R 5991 5991 4858 0 -1 4202560 761 0 0 0 938 1 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199912119664 140200373695804 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6210] ppid=5991 vsize=28968020 memory=140270008251231 CPUtime=0 cores=0-7
/proc/5993/task/6210/stat : 6210 (java) S 5991 5991 4858 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199915283280 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6211] ppid=5991 vsize=28968020 memory=7377223215533161625 CPUtime=0 cores=0-7
/proc/5993/task/6211/stat : 6211 (java) S 5991 5991 4858 0 -1 1077944384 16 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199913178576 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6212] ppid=5991 vsize=28968020 memory=1452 CPUtime=0 cores=0-7
/proc/5993/task/6212/stat : 6212 (java) S 5991 5991 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199911073360 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
Current children cumulated CPU time: 116.72 s
Current children cumulated vsize: 29081148 KiB
Current children cumulated memory: 396804 KiB

[startup+23.1107 s]
/proc/loadavg: 4.54 3.16 1.87 6/221 6212
/proc/meminfo: memFree=31227904/32770624 swapFree=67004224/67108860
[pid=5991] ppid=5988 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/5991/stat : 5991 (xcsp3-exec) S 5988 5991 4858 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 417964305 115843072 363 33554432000 4194304 5098028 140728268123072 140728268121176 139972810224252 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 23027712 140728268129141 140728268129385 140728268129385 140728268132298 0
/proc/5991/statm: 28282 363 305 221 0 87 0
[pid=5993] ppid=5991 vsize=28968020 memory=395352 CPUtime=117.23 cores=0-7
/proc/5993/stat : 5993 (java) S 5991 5991 4858 0 -1 1077944320 79014 0 0 0 11668 55 0 0 20 0 28 0 417964305 29663252480 98838 33554432000 4194304 4196468 140734204046928 140734204029472 140200754093815 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
/proc/5993/statm: 7242005 98838 3544 1 0 7203107 0
[pid=5993/tid=5994] ppid=5991 vsize=28968020 memory=395352 CPUtime=0.79 cores=0-7
/proc/5993/task/5994/stat : 5994 (java) S 5991 5991 4858 0 -1 1077944384 10332 0 0 0 74 5 0 0 20 0 28 0 417964305 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200758334592 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5995] ppid=5991 vsize=28968020 memory=1452 CPUtime=0.06 cores=0-7
/proc/5993/task/5995/stat : 5995 (java) S 5991 5991 4858 0 -1 1077944384 175 0 0 0 5 1 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200706714640 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5996] ppid=5991 vsize=28968020 memory=6628 CPUtime=0.05 cores=0-7
/proc/5993/task/5996/stat : 5996 (java) S 5991 5991 4858 0 -1 1077944384 1500 0 0 0 3 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200705662096 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5997] ppid=5991 vsize=28968020 memory=394760 CPUtime=0.07 cores=0-7
/proc/5993/task/5997/stat : 5997 (java) S 5991 5991 4858 0 -1 1077944384 193 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200704609040 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5998] ppid=5991 vsize=28968020 memory=0 CPUtime=0.07 cores=0-7
/proc/5993/task/5998/stat : 5998 (java) S 5991 5991 4858 0 -1 1077944384 121 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200703556496 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=5999] ppid=5991 vsize=28968020 memory=395352 CPUtime=0.06 cores=0-7
/proc/5993/task/5999/stat : 5999 (java) S 5991 5991 4858 0 -1 1077944384 263 0 0 0 4 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200702503440 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6000] ppid=5991 vsize=28968020 memory=140270008174817 CPUtime=0.07 cores=0-7
/proc/5993/task/6000/stat : 6000 (java) S 5991 5991 4858 0 -1 1077944384 214 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200701450896 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6001] ppid=5991 vsize=28968020 memory=280540017808128 CPUtime=0.07 cores=0-7
/proc/5993/task/6001/stat : 6001 (java) S 5991 5991 4858 0 -1 1077944384 92 0 0 0 5 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200700397840 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6002] ppid=5991 vsize=28968020 memory=0 CPUtime=0.06 cores=0-7
/proc/5993/task/6002/stat : 6002 (java) S 5991 5991 4858 0 -1 1077944384 587 0 0 0 4 2 0 0 20 0 28 0 417964306 29663252480 98838 33554432000 4194304 4196468 140734204046928 140200699345296 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6003] ppid=5991 vsize=28968020 memory=1452 CPUtime=0.02 cores=0-7
/proc/5993/task/6003/stat : 6003 (java) S 5991 5991 4858 0 -1 1077944384 908 0 0 0 2 0 0 0 20 0 28 0 417964307 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199936875248 140200754104962 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6004] ppid=5991 vsize=28968020 memory=396892 CPUtime=0 cores=0-7
/proc/5993/task/6004/stat : 6004 (java) S 5991 5991 4858 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 28 0 417964308 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199935821536 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6005] ppid=5991 vsize=28968020 memory=3588 CPUtime=0 cores=0-7
/proc/5993/task/6005/stat : 6005 (java) S 5991 5991 4858 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 28 0 417964308 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199934768384 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6006] ppid=5991 vsize=28968020 memory=40220 CPUtime=0 cores=0-7
/proc/5993/task/6006/stat : 6006 (java) S 5991 5991 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199933716944 140200754112411 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6007] ppid=5991 vsize=28968020 memory=3588 CPUtime=4.21 cores=0-7
/proc/5993/task/6007/stat : 6007 (java) S 5991 5991 4858 0 -1 1077944384 12280 0 0 0 418 3 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199932664048 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6008] ppid=5991 vsize=28968020 memory=40228 CPUtime=4.08 cores=0-7
/proc/5993/task/6008/stat : 6008 (java) S 5991 5991 4858 0 -1 1077944384 13257 0 0 0 404 4 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199931611504 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6009] ppid=5991 vsize=28968020 memory=4136 CPUtime=4.5 cores=0-7
/proc/5993/task/6009/stat : 6009 (java) S 5991 5991 4858 0 -1 1077944384 16017 0 0 0 446 4 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199930558448 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6010] ppid=5991 vsize=28968020 memory=4104 CPUtime=1.26 cores=0-7
/proc/5993/task/6010/stat : 6010 (java) S 5991 5991 4858 0 -1 1077944384 9290 0 0 0 123 3 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199929505904 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6011] ppid=5991 vsize=28968020 memory=1412 CPUtime=0 cores=0-7
/proc/5993/task/6011/stat : 6011 (java) S 5991 5991 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199928454112 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6012] ppid=5991 vsize=28968020 memory=394760 CPUtime=0 cores=0-7
/proc/5993/task/6012/stat : 6012 (java) S 5991 5991 4858 0 -1 1077944384 1177 0 0 0 0 0 0 0 20 0 28 0 417964311 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199927401648 140200754104962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6205] ppid=5991 vsize=28968020 memory=4004 CPUtime=9.49 cores=0-7
/proc/5993/task/6205/stat : 6205 (java) R 5991 5991 4858 0 -1 4202560 500 0 0 0 949 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199907909304 140200375890439 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6206] ppid=5991 vsize=28968020 memory=1452 CPUtime=9.49 cores=0-7
/proc/5993/task/6206/stat : 6206 (java) R 5991 5991 4858 0 -1 4202560 444 0 0 0 949 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199910015864 140200373592098 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6207] ppid=5991 vsize=28968020 memory=294004 CPUtime=9.49 cores=0-7
/proc/5993/task/6207/stat : 6207 (java) R 5991 5991 4858 0 -1 4202560 512 0 0 0 949 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199914226232 140200368319856 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6208] ppid=5991 vsize=28968020 memory=3588 CPUtime=9.49 cores=0-7
/proc/5993/task/6208/stat : 6208 (java) R 5991 5991 4858 0 -1 4202560 1431 0 0 0 946 3 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199908962664 140200373272767 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6209] ppid=5991 vsize=28968020 memory=40228 CPUtime=9.49 cores=0-7
/proc/5993/task/6209/stat : 6209 (java) R 5991 5991 4858 0 -1 4202560 763 0 0 0 948 1 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199912119664 140200366937088 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6210] ppid=5991 vsize=28968020 memory=1720 CPUtime=0 cores=0-7
/proc/5993/task/6210/stat : 6210 (java) S 5991 5991 4858 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199915283280 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6211] ppid=5991 vsize=28968020 memory=1096 CPUtime=0 cores=0-7
/proc/5993/task/6211/stat : 6211 (java) S 5991 5991 4858 0 -1 1077944384 16 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199913178576 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
[pid=5993/tid=6212] ppid=5991 vsize=28968020 memory=1416 CPUtime=0 cores=0-7
/proc/5993/task/6212/stat : 6212 (java) S 5991 5991 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417965663 29663252480 98838 33554432000 4194304 4196468 140734204046928 140199911073360 140200754104021 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 27795456 140734204052458 140734204052630 140734204052630 140734204055503 0
Current children cumulated CPU time: 117.23 s
Current children cumulated vsize: 29081148 KiB
Current children cumulated memory: 396804 KiB

Child status: 0
Real time (s): 23.1362
CPU time (s): 117.309
CPU user time (s): 116.739
CPU system time (s): 0.569619
CPU usage (%): 507.037
Max. virtual memory (cumulated for all children) (KiB): 29081148
Max. memory (cumulated for all children) (KiB): 398344

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 116.739
system time used= 0.569619
maximum resident set size= 396900
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 80703
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= 8334
involuntary context switches= 1268


# summary of solver processes directly reported to runsolver:
#   pid: 5991
#   total CPU time (s): 117.309
#   total CPU user time (s): 116.739
#   total CPU system time (s): 0.569619

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.201876 second user time and 0.306475 second system time

The end

Launcher Data

Begin job on node148 at 2019-09-14 01:39:50
IDJOB=4393845
IDBENCH=115815
IDSOLVER=2841
FILE ID=node148/4393845-1568418027
RUNJOBID= node148-1568417824-4885
PBS_JOBID= 21702282
Free space on /tmp= 61308 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/Scheduling/Scheduling-os-taillard/Taillard-os-05-05-8.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-4393845-1568418027/watcher-4393845-1568418027 -o /tmp/evaluation-result-4393845-1568418027/solver-4393845-1568418027 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1568417824-4885 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 2129605119 HOME/instance-4393845-1568418027.xml

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

MD5SUM BENCH= 43b2ef46cc27b455a3f22cfd7dbefeca
RANDOM SEED=2129605119

node148.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.13
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.13
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.13
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.13
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:        31611096 kB
MemAvailable:   31910504 kB
Buffers:           57784 kB
Cached:           540408 kB
SwapCached:         3820 kB
Active:           375904 kB
Inactive:         229600 kB
Active(anon):       4636 kB
Inactive(anon):    43732 kB
Active(file):     371268 kB
Inactive(file):   185868 kB
Unevictable:      108956 kB
Mlocked:          108956 kB
SwapTotal:      67108860 kB
SwapFree:       67004224 kB
Dirty:             25792 kB
Writeback:             0 kB
AnonPages:        132380 kB
Mapped:            44204 kB
Shmem:             32344 kB
Slab:             144728 kB
SReclaimable:     116216 kB
SUnreclaim:        28512 kB
KernelStack:        3744 kB
PageTables:         6012 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     497488 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     86016 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      124288 kB
DirectMap2M:    33421312 kB

Free space on /tmp at the end= 61284 MiB
End job on node148 at 2019-09-14 01:40:14