Trace number 4393866

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 parallelWrong Opt.310 22.8424 3.66859

General information on the benchmark

NameScheduling/Scheduling-os-taillard/
Taillard-os-05-05-0.xml
MD5SUMda64694dd3ca715594c36c32a8b555a8
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark300
Best CPU time to get the best result obtained on this benchmark25.2154
Satisfiable
(Un)Satisfiability was proved
Number of variables105
Number of constraints90
Number of domains7
Minimum domain size5
Maximum domain size400
Distribution of domain sizes[{"size":5,"count":50},{"size":400,"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-4393866-1568418139.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4393866-1568418139.xml, -tl, 20160s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.28	c parse instance...
1.51/0.76	c solve instance...
1.95/0.90	o 389 
2.62/0.91	o 381 
2.62/0.96	o 375 
2.62/0.99	o 369 
3.33/1.04	o 362 
3.33/1.06	o 361 
3.33/1.11	o 358 
3.98/1.12	o 354 
3.98/1.14	o 350 
3.98/1.16	o 349 
3.98/1.19	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (30/35)
3.98/1.19		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
3.98/1.19		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
3.98/1.19		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
3.98/1.19		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
3.98/1.19		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
3.98/1.19	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (30/35)
3.98/1.19		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
3.98/1.19		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
3.98/1.19		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
3.98/1.19		at org.chocosolver.solver.Solver.repair(Solver.java:443)
3.98/1.19		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
3.98/1.19		at org.chocosolver.solver.Solver.solve(Solver.java:262)
3.98/1.19		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
3.98/1.19		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
3.98/1.19		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
3.98/1.19		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
3.98/1.19		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
3.98/1.19		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
3.98/1.19		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
3.98/1.19		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
3.98/1.19		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
3.98/1.19		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
3.98/1.19	o 335 
4.59/1.21	o 334 
4.59/1.24	java.util.concurrent.ExecutionException: java.lang.NullPointerException
4.59/1.24		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
4.59/1.24		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
4.59/1.24		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
4.59/1.24		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
4.59/1.24		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
4.59/1.24	Caused by: java.lang.NullPointerException
4.59/1.24		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
4.59/1.24		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
4.59/1.24		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
4.59/1.24		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
4.59/1.24		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
4.59/1.24		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
4.59/1.24		... 4 more
4.59/1.24	Caused by: java.lang.NullPointerException
4.59/1.24		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
4.59/1.24		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
4.59/1.24		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
4.59/1.24		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
4.59/1.24		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
4.59/1.24		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
4.59/1.24		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
4.59/1.24		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
4.59/1.24		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
4.59/1.24		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
4.59/1.24		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
4.59/1.24		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
4.59/1.24		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
4.59/1.24		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
4.59/1.24		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
4.59/1.24		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
4.59/1.24		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
4.59/1.24		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
4.59/1.24	Caused by: java.lang.NullPointerException
4.59/1.24		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
4.59/1.24		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
4.59/1.24		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:181)
4.59/1.24		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
4.59/1.24		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
4.59/1.24		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
4.59/1.24		at org.chocosolver.solver.Solver.solve(Solver.java:262)
4.59/1.24		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
4.59/1.24		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
4.59/1.24		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
4.59/1.24		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
4.59/1.24		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
4.59/1.24		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
4.59/1.24		... 4 more
4.59/1.24	o 331 
4.59/1.29	java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException
4.59/1.29		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
4.59/1.29		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
4.59/1.29		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
4.59/1.29		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
4.59/1.29		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
4.59/1.29	Caused by: java.lang.ArrayIndexOutOfBoundsException
4.59/1.29		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
4.59/1.29		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
4.59/1.29		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
4.59/1.29		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
4.59/1.29		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
4.59/1.29		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
4.59/1.29		... 4 more
4.59/1.30	Caused by: java.lang.ArrayIndexOutOfBoundsException
4.59/1.30		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
4.59/1.30		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
4.59/1.30		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
4.59/1.30		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
4.59/1.30		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
4.59/1.30		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
4.59/1.30		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
4.59/1.30		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
4.59/1.30		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
4.59/1.30		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
4.59/1.30		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
4.59/1.30		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
4.59/1.30		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
4.59/1.30		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
4.59/1.30		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
4.59/1.30		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
4.59/1.30		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
4.59/1.30		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
4.59/1.30	Caused by: java.lang.ArrayIndexOutOfBoundsException: -1
4.59/1.30		at org.chocosolver.solver.propagation.PropagationEngine$DynPropagators.removeAt(PropagationEngine.java:489)
4.59/1.30		at org.chocosolver.solver.propagation.PropagationEngine$DynPropagators.remove(PropagationEngine.java:480)
4.59/1.30		at org.chocosolver.solver.propagation.PropagationEngine$DynPropagators.addOrUpdate(PropagationEngine.java:473)
4.59/1.30		at org.chocosolver.solver.propagation.PropagationEngine.propagateOnBacktrack(PropagationEngine.java:401)
4.59/1.30		at org.chocosolver.solver.constraints.Propagator.forcePropagationOnBacktrack(Propagator.java:566)
4.59/1.30		at org.chocosolver.sat.PropNogoods.addLearnt(PropNogoods.java:543)
4.59/1.30		at org.chocosolver.solver.search.loop.monitors.NogoodFromRestarts.extractNogoodFromPath(NogoodFromRestarts.java:85)
4.59/1.30		at org.chocosolver.solver.search.loop.monitors.NogoodFromRestarts.beforeRestart(NogoodFromRestarts.java:65)
4.59/1.30		at org.chocosolver.solver.search.loop.monitors.SearchMonitorList.beforeRestart(SearchMonitorList.java:141)
4.59/1.30		at org.chocosolver.solver.Solver.restart(Solver.java:596)
4.59/1.30		at org.chocosolver.solver.search.loop.move.MoveRestart.restart(MoveRestart.java:135)
4.59/1.30		at org.chocosolver.solver.search.loop.move.MoveRestart.repair(MoveRestart.java:96)
4.59/1.30		at org.chocosolver.solver.search.loop.move.MoveRestart.repair(MoveRestart.java:94)
4.59/1.30		at org.chocosolver.solver.Solver.repair(Solver.java:438)
4.59/1.30		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
4.59/1.30		at org.chocosolver.solver.Solver.solve(Solver.java:262)
4.59/1.30		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
4.59/1.30		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
4.59/1.30		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
4.59/1.30		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
4.59/1.30		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
4.59/1.30		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
4.59/1.30		... 4 more
4.59/1.30	o 327 
5.98/1.44	java.util.concurrent.ExecutionException: java.lang.NullPointerException
5.98/1.44		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
5.98/1.44		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
5.98/1.44		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
5.98/1.44		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
5.98/1.44		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
5.98/1.44	Caused by: java.lang.NullPointerException
5.98/1.44		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
5.98/1.44		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
5.98/1.44		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
5.98/1.44		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
5.98/1.44		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
5.98/1.44		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
5.98/1.44		... 4 more
5.98/1.44	Caused by: java.lang.NullPointerException
5.98/1.44		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
5.98/1.44		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
5.98/1.44		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
5.98/1.44		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
5.98/1.44		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
5.98/1.44		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
5.98/1.44		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
5.98/1.44		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
5.98/1.44		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
5.98/1.44		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
5.98/1.44		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
5.98/1.44		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
5.98/1.44		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
5.98/1.44		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
5.98/1.44		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
5.98/1.44		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
5.98/1.44		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
5.98/1.44		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
5.98/1.44	Caused by: java.lang.NullPointerException
5.98/1.44		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
5.98/1.44		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
5.98/1.44		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:164)
5.98/1.44		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
5.98/1.44		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
5.98/1.44		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
5.98/1.44		at org.chocosolver.solver.Solver.solve(Solver.java:262)
5.98/1.44		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
5.98/1.44		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
5.98/1.44		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
5.98/1.44		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
5.98/1.44		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
5.98/1.44		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
5.98/1.44		... 4 more
5.98/1.44	o 322 
7.71/1.77	o 319 
9.84/2.05	java.util.concurrent.ExecutionException: java.lang.NullPointerException
9.84/2.05		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
9.84/2.05		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
9.84/2.05		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
9.84/2.05		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
9.84/2.05		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
9.84/2.05	Caused by: java.lang.NullPointerException
9.84/2.05		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
9.84/2.05		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
9.84/2.05		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
9.84/2.05		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
9.84/2.05		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
9.84/2.05		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
9.84/2.05		... 4 more
9.84/2.05	Caused by: java.lang.NullPointerException
9.84/2.05		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
9.84/2.05		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
9.84/2.05		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
9.84/2.05		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
9.84/2.05		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
9.84/2.05		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
9.84/2.05		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
9.84/2.05		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
9.84/2.05		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
9.84/2.05		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
9.84/2.05		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
9.84/2.05		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
9.84/2.05		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
9.84/2.05		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
9.84/2.05		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
9.84/2.05		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
9.84/2.05		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
9.84/2.05		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
9.84/2.05	Caused by: java.lang.NullPointerException
9.84/2.05		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
9.84/2.05		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
9.84/2.05		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:164)
9.84/2.05		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
9.84/2.05		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
9.84/2.05		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
9.84/2.05		at org.chocosolver.solver.Solver.solve(Solver.java:262)
9.84/2.05		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
9.84/2.05		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
9.84/2.05		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
9.84/2.05		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
9.84/2.05		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
9.84/2.05		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
9.84/2.05		... 4 more
9.84/2.05	o 317 
10.62/2.14	java.util.concurrent.ExecutionException: java.lang.NullPointerException
10.62/2.14		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
10.62/2.14		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
10.62/2.14		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
10.62/2.14		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
10.62/2.14		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
10.62/2.14	Caused by: java.lang.NullPointerException
10.62/2.14		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
10.62/2.14		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
10.62/2.14		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
10.62/2.14		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
10.62/2.14		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
10.62/2.14		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
10.62/2.14		... 4 more
10.62/2.14	Caused by: java.lang.NullPointerException
10.62/2.14		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
10.62/2.14		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
10.62/2.14		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
10.62/2.14		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
10.62/2.14		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
10.62/2.14		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
10.62/2.14		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
10.62/2.14		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
10.62/2.14		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
10.62/2.14		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
10.62/2.14		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
10.62/2.14		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
10.62/2.14		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
10.62/2.14		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
10.62/2.14		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
10.62/2.14		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
10.62/2.14		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
10.62/2.14		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
10.62/2.14	Caused by: java.lang.NullPointerException
10.62/2.14		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
10.62/2.14		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
10.62/2.14		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:164)
10.62/2.14		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
10.62/2.14		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
10.62/2.14		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
10.62/2.14		at org.chocosolver.solver.Solver.solve(Solver.java:262)
10.62/2.14		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
10.62/2.14		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
10.62/2.14		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
10.62/2.14		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
10.62/2.14		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
10.62/2.14		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
10.62/2.14		... 4 more
10.62/2.14	o 313 
20.85/3.42	java.util.concurrent.ExecutionException: java.lang.NullPointerException
20.85/3.42		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
20.85/3.42		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
20.85/3.42		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
20.85/3.42		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
20.85/3.42		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
20.85/3.42	Caused by: java.lang.NullPointerException
20.85/3.42		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
20.85/3.42		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
20.85/3.42		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
20.85/3.42		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
20.85/3.42		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
20.85/3.42		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
20.85/3.42		... 4 more
20.85/3.42	Caused by: java.lang.NullPointerException
20.85/3.42		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
20.85/3.42		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
20.85/3.42		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
20.85/3.42		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
20.85/3.42		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
20.85/3.42		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
20.85/3.42		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
20.85/3.42		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
20.85/3.42		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
20.85/3.42		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
20.85/3.42		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
20.85/3.42		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
20.85/3.42		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
20.85/3.42		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
20.85/3.42		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
20.85/3.42		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
20.85/3.42		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
20.85/3.42		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
20.85/3.42	Caused by: java.lang.NullPointerException
20.85/3.42		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
20.85/3.42		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
20.85/3.42		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:164)
20.85/3.42		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
20.85/3.42		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
20.85/3.42		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
20.85/3.42		at org.chocosolver.solver.Solver.solve(Solver.java:262)
20.85/3.42		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
20.85/3.42		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
20.85/3.42		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
20.85/3.42		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
20.85/3.42		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
20.85/3.42		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
20.85/3.42		... 4 more
20.85/3.42	o 312 
20.85/3.46	java.util.concurrent.ExecutionException: java.lang.NullPointerException
20.85/3.46		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
20.85/3.46		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
20.85/3.46		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
20.85/3.46		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
20.85/3.46		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
20.85/3.46	Caused by: java.lang.NullPointerException
20.85/3.46		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
20.85/3.46		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
20.85/3.46		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
20.85/3.46		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
20.85/3.46		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
20.85/3.46		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
20.85/3.46		... 4 more
20.85/3.46	Caused by: java.lang.NullPointerException
20.85/3.46		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
20.85/3.46		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
20.85/3.46		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
20.85/3.46		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
20.85/3.46		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
20.85/3.46		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
20.85/3.46		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
20.85/3.46		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
20.85/3.46		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
20.85/3.46		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
20.85/3.46		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
20.85/3.46		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
20.85/3.46		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
20.85/3.46		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
20.85/3.46		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
20.85/3.46		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
20.85/3.46		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
20.85/3.46		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
20.85/3.46	Caused by: java.lang.NullPointerException
20.85/3.46		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
20.85/3.46		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
20.85/3.46		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:164)
20.85/3.46		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
20.85/3.46		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
20.85/3.46		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
20.85/3.46		at org.chocosolver.solver.Solver.solve(Solver.java:262)
20.85/3.46		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
20.85/3.46		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
20.85/3.46		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
20.85/3.46		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
20.85/3.46		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
20.85/3.46		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
20.85/3.46		... 4 more
20.85/3.46	o 311 
22.44/3.64	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
22.44/3.64		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
22.44/3.64		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
22.44/3.64		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
22.44/3.64		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
22.44/3.64		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
22.44/3.64	Caused by: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
22.44/3.64		at org.chocosolver.solver.search.strategy.decision.DecisionPath.pushDecision(DecisionPath.java:95)
22.44/3.64		at org.chocosolver.solver.search.loop.move.MoveBinaryDFS.extend(MoveBinaryDFS.java:64)
22.44/3.64		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:82)
22.44/3.64		at org.chocosolver.solver.Solver.extend(Solver.java:421)
22.44/3.64		at org.chocosolver.solver.Solver.searchLoop(Solver.java:297)
22.44/3.64		at org.chocosolver.solver.Solver.solve(Solver.java:262)
22.44/3.64		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
22.44/3.64		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
22.44/3.64		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
22.44/3.64		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
22.44/3.64		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
22.44/3.64		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
22.44/3.64		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
22.44/3.64		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
22.44/3.64		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
22.44/3.64		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
22.44/3.64	o 310 
22.44/3.64	s OPTIMUM FOUND
22.44/3.64	v <instantiation>
22.44/3.64	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>
22.44/3.64	v 	<values>12 80 168 235 266 0 76 99 201 219 1 92 171 233 237 3 68 166 221 234 48 110 202 220 300 310 233 307 310 310 64 85 66 31 44 68 7 69 18 14 90 74 60 1 70 45 98 54 13 76 45 91 15 80 10 0 3 1 2 4 2 0 1 4 3 4 0 2 3 1 1 2 0 4 3 1 4 3 0 2 12 168 235 80 266 76 99 0 219 201 92 237 171 233 1 166 3 68 234 221 220 48 300 202 110 </values>
22.44/3.64	v </instantiation>

Verifier Data

OK	310

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393866-1568418139/watcher-4393866-1568418139 -o /tmp/evaluation-result-4393866-1568418139/solver-4393866-1568418139 -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 1604018927 HOME/instance-4393866-1568418139.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=7229, runsolver pid=7226
Current StackSize limit: 8192 KiB


[startup+0.100108 s]*
/proc/loadavg: 4.69 3.65 2.16 2/213 7250
/proc/meminfo: memFree=31595796/32770624 swapFree=67004224/67108860
[pid=7229] ppid=7226 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/7229/stat : 7229 (xcsp3-exec) S 7226 7229 4858 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 417975474 115843072 364 33554432000 4194304 5098028 140725584828016 140725584826120 140696617599612 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 25214976 140725584831349 140725584831593 140725584831593 140725584834506 0
/proc/7229/statm: 28282 364 305 221 0 87 0
[pid=7231] ppid=7229 vsize=28227388 memory=29068 CPUtime=0.12 cores=0-7
/proc/7231/stat : 7231 (java) S 7229 7229 4858 0 -1 1077944320 5683 0 0 0 11 1 0 0 20 0 20 0 417975474 28904845312 7267 33554432000 4194304 4196468 140732471421232 140732471403776 140493228064503 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
/proc/7231/statm: 7056847 7267 3150 1 0 7019032 0
[pid=7231/tid=7232] ppid=7229 vsize=28227388 memory=576460756329955445 CPUtime=0.08 cores=0-7
/proc/7231/task/7232/stat : 7232 (java) R 7229 7229 4858 0 -1 4202560 3601 0 0 0 8 0 0 0 20 0 20 0 417975475 28904845312 7267 33554432000 4194304 4196468 140732471421232 140493232291088 140493228076438 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7233] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7233/stat : 7233 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140493147916560 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7234] ppid=7229 vsize=28227388 memory=15121721310230168 CPUtime=0 cores=0-7
/proc/7231/task/7234/stat : 7234 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140493146864016 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7235] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7235/stat : 7235 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492777052688 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7236] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7236/stat : 7236 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492776000144 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7237] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7237/stat : 7237 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492774947600 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7238] ppid=7229 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/7231/task/7238/stat : 7238 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492773895056 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7239] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7239/stat : 7239 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492772842512 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7240] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7240/stat : 7240 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492771789968 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7241] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7241/stat : 7241 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975477 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492343941104 140493228075650 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7242] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7242/stat : 7242 (java) S 7229 7229 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 417975478 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492342887328 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7243] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7243/stat : 7243 (java) S 7229 7229 4858 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417975478 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492341834736 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7244] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7244/stat : 7244 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 7267 33554432000 4194304 4196468 140732471421232 140492340783312 140493228083099 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7245] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7245/stat : 7245 (java) S 7229 7229 4858 0 -1 1077944384 418 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 7267 33554432000 4194304 4196468 140732471421232 140491284802032 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7246] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7246/stat : 7246 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 7267 33554432000 4194304 4196468 140732471421232 140491283749488 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7247] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7247/stat : 7247 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 7267 33554432000 4194304 4196468 140732471421232 140491282696944 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7248] ppid=7229 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7248/stat : 7248 (java) R 7229 7229 4858 0 -1 4202560 350 0 0 0 1 0 0 0 20 0 20 0 417975480 28904845312 7267 33554432000 4194304 4196468 140732471421232 140491281644400 140493220305893 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7249] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7249/stat : 7249 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 7267 33554432000 4194304 4196468 140732471421232 140491280591072 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7250] ppid=7229 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/7231/task/7250/stat : 7250 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975481 28904845312 7267 33554432000 4194304 4196468 140732471421232 140491279538608 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30524 KiB

[startup+0.210064 s]*
/proc/loadavg: 4.69 3.65 2.16 2/213 7250
/proc/meminfo: memFree=31582480/32770624 swapFree=67004224/67108860
[pid=7229] ppid=7226 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/7229/stat : 7229 (xcsp3-exec) S 7226 7229 4858 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 417975474 115843072 364 33554432000 4194304 5098028 140725584828016 140725584826120 140696617599612 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 25214976 140725584831349 140725584831593 140725584831593 140725584834506 0
/proc/7229/statm: 28282 364 305 221 0 87 0
[pid=7231] ppid=7229 vsize=28227388 memory=40352 CPUtime=0.33 cores=0-7
/proc/7231/stat : 7231 (java) S 7229 7229 4858 0 -1 1077944320 9340 0 0 0 30 3 0 0 20 0 20 0 417975474 28904845312 10088 33554432000 4194304 4196468 140732471421232 140732471403776 140493228064503 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
/proc/7231/statm: 7056847 10088 3245 1 0 7019032 0
[pid=7231/tid=7232] ppid=7229 vsize=28227388 memory=8316850467074736180 CPUtime=0.19 cores=0-7
/proc/7231/task/7232/stat : 7232 (java) R 7229 7229 4858 0 -1 4202560 6588 0 0 0 17 2 0 0 20 0 20 0 417975475 28904845312 10088 33554432000 4194304 4196468 140732471421232 140493232294656 140493228076438 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7233] ppid=7229 vsize=28227388 memory=14965 CPUtime=0 cores=0-7
/proc/7231/task/7233/stat : 7233 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140493147916560 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7234] ppid=7229 vsize=28227388 memory=140668333903484 CPUtime=0 cores=0-7
/proc/7231/task/7234/stat : 7234 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140493146864016 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7235] ppid=7229 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/7231/task/7235/stat : 7235 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492777052688 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7236] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7236/stat : 7236 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492776000144 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7237] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7237/stat : 7237 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492774947600 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7238] ppid=7229 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/7231/task/7238/stat : 7238 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492773895056 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7239] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7239/stat : 7239 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492772842512 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7240] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7240/stat : 7240 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975476 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492771789968 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7241] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7241/stat : 7241 (java) S 7229 7229 4858 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 417975477 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492343941104 140493228075650 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7242] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7242/stat : 7242 (java) S 7229 7229 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 417975478 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492342887328 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7243] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7243/stat : 7243 (java) S 7229 7229 4858 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417975478 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492341834736 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7244] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7244/stat : 7244 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 10088 33554432000 4194304 4196468 140732471421232 140492340783312 140493228083099 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7245] ppid=7229 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/7231/task/7245/stat : 7245 (java) S 7229 7229 4858 0 -1 1077944384 527 0 0 0 2 0 0 0 20 0 20 0 417975480 28904845312 10088 33554432000 4194304 4196468 140732471421232 140491284802032 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7246] ppid=7229 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7246/stat : 7246 (java) S 7229 7229 4858 0 -1 1077944384 48 0 0 0 1 0 0 0 20 0 20 0 417975480 28904845312 10088 33554432000 4194304 4196468 140732471421232 140491283749488 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7247] ppid=7229 vsize=28227388 memory=-1 CPUtime=0.01 cores=0-7
/proc/7231/task/7247/stat : 7247 (java) S 7229 7229 4858 0 -1 1077944384 67 0 0 0 1 0 0 0 20 0 20 0 417975480 28904845312 10088 33554432000 4194304 4196468 140732471421232 140491282696944 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7248] ppid=7229 vsize=28227388 memory=-1 CPUtime=0.07 cores=0-7
/proc/7231/task/7248/stat : 7248 (java) R 7229 7229 4858 0 -1 4202560 796 0 0 0 7 0 0 0 20 0 20 0 417975480 28904845312 10088 33554432000 4194304 4196468 140732471421232 140491281644400 140493228076438 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7249] ppid=7229 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7249/stat : 7249 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975480 28904845312 10088 33554432000 4194304 4196468 140732471421232 140491280591072 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7250] ppid=7229 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/7231/task/7250/stat : 7250 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975481 28904845312 10088 33554432000 4194304 4196468 140732471421232 140491279538608 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 41808 KiB

[startup+0.309774 s]*
/proc/loadavg: 4.69 3.65 2.16 4/213 7250
/proc/meminfo: memFree=31574592/32770624 swapFree=67004224/67108860
[pid=7229] ppid=7226 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/7229/stat : 7229 (xcsp3-exec) S 7226 7229 4858 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 417975474 115843072 364 33554432000 4194304 5098028 140725584828016 140725584826120 140696617599612 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 25214976 140725584831349 140725584831593 140725584831593 140725584834506 0
/proc/7229/statm: 28282 364 305 221 0 87 0
[pid=7231] ppid=7229 vsize=28231644 memory=49744 CPUtime=0.52 cores=0-7
/proc/7231/stat : 7231 (java) S 7229 7229 4858 0 -1 1077944320 10778 0 0 0 48 4 0 0 20 0 20 0 417975474 28909203456 12436 33554432000 4194304 4196468 140732471421232 140732471403776 140493228064503 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
/proc/7231/statm: 7057911 12436 3368 1 0 7019032 0
[pid=7231/tid=7232] ppid=7229 vsize=28231644 memory=8317482817917895235 CPUtime=0.29 cores=0-7
/proc/7231/task/7232/stat : 7232 (java) R 7229 7229 4858 0 -1 4202560 7718 0 0 0 26 3 0 0 20 0 20 0 417975475 28909203456 12465 33554432000 4194304 4196468 140732471421232 140493232295616 140493212144990 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7233] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7233/stat : 7233 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140493147916560 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7234] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7234/stat : 7234 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140493146864016 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7235] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7235/stat : 7235 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492777052688 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7236] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7236/stat : 7236 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492776000144 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7237] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7237/stat : 7237 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492774947600 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7238] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7238/stat : 7238 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492773895056 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7239] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7239/stat : 7239 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492772842512 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7240] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7240/stat : 7240 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975476 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492771789968 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7241] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7241/stat : 7241 (java) S 7229 7229 4858 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 417975477 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492343941104 140493228075650 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7242] ppid=7229 vsize=28231644 memory=281336464219520 CPUtime=0 cores=0-7
/proc/7231/task/7242/stat : 7242 (java) S 7229 7229 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 417975478 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492342887328 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7243] ppid=7229 vsize=28231644 memory=281336464224128 CPUtime=0 cores=0-7
/proc/7231/task/7243/stat : 7243 (java) S 7229 7229 4858 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417975478 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492341834736 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7244] ppid=7229 vsize=28231644 memory=281336464228736 CPUtime=0 cores=0-7
/proc/7231/task/7244/stat : 7244 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975480 28909203456 12465 33554432000 4194304 4196468 140732471421232 140492340783312 140493228083099 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7245] ppid=7229 vsize=28231644 memory=281336464233344 CPUtime=0.03 cores=0-7
/proc/7231/task/7245/stat : 7245 (java) R 7229 7229 4858 0 -1 4202560 609 0 0 0 3 0 0 0 20 0 20 0 417975480 28909203456 12465 33554432000 4194304 4196468 140732471421232 140491284792416 140493221170220 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7246] ppid=7229 vsize=28231644 memory=281336464237952 CPUtime=0.02 cores=0-7
/proc/7231/task/7246/stat : 7246 (java) S 7229 7229 4858 0 -1 1077944384 102 0 0 0 2 0 0 0 20 0 20 0 417975480 28909203456 12465 33554432000 4194304 4196468 140732471421232 140491283749488 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7247] ppid=7229 vsize=28231644 memory=281336464242560 CPUtime=0.02 cores=0-7
/proc/7231/task/7247/stat : 7247 (java) S 7229 7229 4858 0 -1 1077944384 80 0 0 0 2 0 0 0 20 0 20 0 417975480 28909203456 12465 33554432000 4194304 4196468 140732471421232 140491282696944 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7248] ppid=7229 vsize=28231644 memory=281336464247168 CPUtime=0.12 cores=0-7
/proc/7231/task/7248/stat : 7248 (java) S 7229 7229 4858 0 -1 1077944384 965 0 0 0 12 0 0 0 20 0 20 0 417975480 28909203456 12465 33554432000 4194304 4196468 140732471421232 140491281644400 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7249] ppid=7229 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7249/stat : 7249 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417975480 28909203456 12465 33554432000 4194304 4196468 140732471421232 140491280591072 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7250] ppid=7229 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/7231/task/7250/stat : 7250 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975481 28909203456 12465 33554432000 4194304 4196468 140732471421232 140491279538608 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51200 KiB

[startup+0.700919 s]
/proc/loadavg: 4.69 3.65 2.16 5/213 7250
/proc/meminfo: memFree=31559632/32770624 swapFree=67004224/67108860
[pid=7229] ppid=7226 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/7229/stat : 7229 (xcsp3-exec) S 7226 7229 4858 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 417975474 115843072 364 33554432000 4194304 5098028 140725584828016 140725584826120 140696617599612 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 25214976 140725584831349 140725584831593 140725584831593 140725584834506 0
/proc/7229/statm: 28282 364 305 221 0 87 0
[pid=7231] ppid=7229 vsize=28233768 memory=81848 CPUtime=1.51 cores=0-7
/proc/7231/stat : 7231 (java) S 7229 7229 4858 0 -1 1077944320 14633 0 0 0 145 6 0 0 20 0 20 0 417975474 28911378432 20462 33554432000 4194304 4196468 140732471421232 140732471403776 140493228064503 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
/proc/7231/statm: 7058442 20462 3450 1 0 7019544 0
[pid=7231/tid=7232] ppid=7229 vsize=28233768 memory=0 CPUtime=0.68 cores=0-7
/proc/7231/task/7232/stat : 7232 (java) R 7229 7229 4858 0 -1 4202560 9405 0 0 0 64 4 0 0 20 0 20 0 417975475 28911378432 20462 33554432000 4194304 4196468 140732471421232 140493232299520 140493228076438 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7233] ppid=7229 vsize=28233768 memory=140668232311680 CPUtime=0 cores=0-7
/proc/7231/task/7233/stat : 7233 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417975476 28911378432 20462 33554432000 4194304 4196468 140732471421232 140493147916560 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7234] ppid=7229 vsize=28233768 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7234/stat : 7234 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28911378432 20462 33554432000 4194304 4196468 140732471421232 140493146864016 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7235] ppid=7229 vsize=28233768 memory=1052 CPUtime=0 cores=0-7
/proc/7231/task/7235/stat : 7235 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417975476 28911378432 20462 33554432000 4194304 4196468 140732471421232 140492777052688 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0

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

[pid=7231/tid=7244] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7244/stat : 7244 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417975480 29664305152 67709 33554432000 4194304 4196468 140732471421232 140492340783312 140493228083099 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7245] ppid=7229 vsize=28969048 memory=0 CPUtime=2.14 cores=0-7
/proc/7231/task/7245/stat : 7245 (java) R 7229 7229 4858 0 -1 4202560 4517 0 0 0 213 1 0 0 20 0 28 0 417975480 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491284783200 140493211561287 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7246] ppid=7229 vsize=28969048 memory=0 CPUtime=1.82 cores=0-7
/proc/7231/task/7246/stat : 7246 (java) R 7229 7229 4858 0 -1 4202560 5524 0 0 0 181 1 0 0 20 0 28 0 417975480 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491283740416 140493211561287 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7247] ppid=7229 vsize=28969048 memory=250800 CPUtime=2.15 cores=0-7
/proc/7231/task/7247/stat : 7247 (java) R 7229 7229 4858 0 -1 4202560 6236 0 0 0 214 1 0 0 20 0 28 0 417975480 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491282682448 140493209608602 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7248] ppid=7229 vsize=28969048 memory=1456 CPUtime=1.06 cores=0-7
/proc/7231/task/7248/stat : 7248 (java) S 7229 7229 4858 0 -1 1077944384 5586 0 0 0 105 1 0 0 20 0 28 0 417975480 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491281644400 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7249] ppid=7229 vsize=28969048 memory=235792 CPUtime=0 cores=0-7
/proc/7231/task/7249/stat : 7249 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417975480 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491280591072 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7250] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7250/stat : 7250 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 28 0 417975481 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491279538608 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7395] ppid=7229 vsize=28969048 memory=0 CPUtime=0.86 cores=0-7
/proc/7231/task/7395/stat : 7395 (java) R 7229 7229 4858 0 -1 4202560 27 0 0 0 86 0 0 0 20 0 28 0 417975688 29664305152 67709 33554432000 4194304 4196468 140732471421232 140490950097704 140492832141403 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7396] ppid=7229 vsize=28969048 memory=0 CPUtime=0.79 cores=0-7
/proc/7231/task/7396/stat : 7396 (java) R 7229 7229 4858 0 -1 4202560 18 0 0 0 79 0 0 0 20 0 28 0 417975690 29664305152 67709 33554432000 4194304 4196468 140732471421232 140490955362704 140492837064627 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7397] ppid=7229 vsize=28969048 memory=3588 CPUtime=0.74 cores=0-7
/proc/7231/task/7397/stat : 7397 (java) R 7229 7229 4858 0 -1 4202560 54 0 0 0 74 0 0 0 20 0 28 0 417975690 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491267417512 140492836002106 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7398] ppid=7229 vsize=28969048 memory=40228 CPUtime=0.85 cores=0-7
/proc/7231/task/7398/stat : 7398 (java) R 7229 7229 4858 0 -1 4202560 23 0 0 0 85 0 0 0 20 0 28 0 417975690 29664305152 67709 33554432000 4194304 4196468 140732471421232 140490957470360 140493213275825 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7399] ppid=7229 vsize=28969048 memory=0 CPUtime=0.74 cores=0-7
/proc/7231/task/7399/stat : 7399 (java) R 7229 7229 4858 0 -1 4202560 32 0 0 0 74 0 0 0 20 0 28 0 417975691 29664305152 67709 33554432000 4194304 4196468 140732471421232 140490958520960 140492837517370 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7400] ppid=7229 vsize=28969048 memory=0 CPUtime=0.78 cores=0-7
/proc/7231/task/7400/stat : 7400 (java) R 7229 7229 4858 0 -1 4202560 24 0 0 0 78 0 0 0 20 0 28 0 417975692 29664305152 67709 33554432000 4194304 4196468 140732471421232 140491268468608 140492835246283 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7401] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7401/stat : 7401 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417975693 29664305152 67709 33554432000 4194304 4196468 140732471421232 140490956419792 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7402] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7402/stat : 7402 (java) S 7229 7229 4858 0 -1 1077944384 20 0 0 0 0 0 0 0 20 0 28 0 417975695 29664305152 67709 33554432000 4194304 4196468 140732471421232 140490949051216 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
Current children cumulated CPU time: 18.54 s
Current children cumulated vsize: 29082176 KiB
Current children cumulated memory: 272292 KiB

[startup+3.66852 s]
# the end of solver process 7229 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=22.6114 s, system=0.231047 s

Solver just ended.
??? end of watcher thread
Dumping a history of the last processes samples

[startup+3.20201 s]
/proc/loadavg: 4.80 3.69 2.18 11/221 7402
/proc/meminfo: memFree=31357280/32770624 swapFree=67004224/67108860
[pid=7229] ppid=7226 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/7229/stat : 7229 (xcsp3-exec) S 7226 7229 4858 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 417975474 115843072 364 33554432000 4194304 5098028 140725584828016 140725584826120 140696617599612 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 25214976 140725584831349 140725584831593 140725584831593 140725584834506 0
/proc/7229/statm: 28282 364 305 221 0 87 0
[pid=7231] ppid=7229 vsize=28969048 memory=270928 CPUtime=19.27 cores=0-7
/proc/7231/stat : 7231 (java) S 7229 7229 4858 0 -1 1077944320 36443 0 0 0 1907 20 0 0 20 0 28 0 417975474 29664305152 67732 33554432000 4194304 4196468 140732471421232 140732471403776 140493228064503 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
/proc/7231/statm: 7242262 67732 3502 1 0 7203364 0
[pid=7231/tid=7232] ppid=7229 vsize=28969048 memory=0 CPUtime=0.78 cores=0-7
/proc/7231/task/7232/stat : 7232 (java) S 7229 7229 4858 0 -1 1077944384 9576 0 0 0 74 4 0 0 20 0 28 0 417975475 29664305152 67732 33554432000 4194304 4196468 140732471421232 140493232305280 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7233] ppid=7229 vsize=28969048 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7233/stat : 7233 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 1 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140493147916560 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7234] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7234/stat : 7234 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140493146864016 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7235] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7235/stat : 7235 (java) S 7229 7229 4858 0 -1 1077944384 15 0 0 0 0 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492777052688 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7236] ppid=7229 vsize=28969048 memory=288230574492221466 CPUtime=0.01 cores=0-7
/proc/7231/task/7236/stat : 7236 (java) S 7229 7229 4858 0 -1 1077944384 30 0 0 0 1 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492776000144 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7237] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7237/stat : 7237 (java) S 7229 7229 4858 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492774947600 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7238] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7238/stat : 7238 (java) S 7229 7229 4858 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492773895056 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7239] ppid=7229 vsize=28969048 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7239/stat : 7239 (java) S 7229 7229 4858 0 -1 1077944384 16 0 0 0 1 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492772842512 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7240] ppid=7229 vsize=28969048 memory=6944656592455359580 CPUtime=0 cores=0-7
/proc/7231/task/7240/stat : 7240 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417975476 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492771789968 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7241] ppid=7229 vsize=28969048 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7241/stat : 7241 (java) S 7229 7229 4858 0 -1 1077944384 88 0 0 0 1 0 0 0 20 0 28 0 417975477 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492343941104 140493228075650 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7242] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7242/stat : 7242 (java) S 7229 7229 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 28 0 417975478 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492342887328 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7243] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7243/stat : 7243 (java) S 7229 7229 4858 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 28 0 417975478 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492341834736 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7244] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7244/stat : 7244 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417975480 29664305152 67732 33554432000 4194304 4196468 140732471421232 140492340783312 140493228083099 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7245] ppid=7229 vsize=28969048 memory=0 CPUtime=2.23 cores=0-7
/proc/7231/task/7245/stat : 7245 (java) R 7229 7229 4858 0 -1 4202560 4517 0 0 0 222 1 0 0 20 0 28 0 417975480 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491284783200 140493211563073 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7246] ppid=7229 vsize=28969048 memory=0 CPUtime=1.89 cores=0-7
/proc/7231/task/7246/stat : 7246 (java) R 7229 7229 4858 0 -1 4202560 5533 0 0 0 188 1 0 0 20 0 28 0 417975480 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491283749296 140493209649776 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7247] ppid=7229 vsize=28969048 memory=0 CPUtime=2.24 cores=0-7
/proc/7231/task/7247/stat : 7247 (java) R 7229 7229 4858 0 -1 4202560 6247 0 0 0 223 1 0 0 20 0 28 0 417975480 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491282676432 140493209609052 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7248] ppid=7229 vsize=28969048 memory=0 CPUtime=1.06 cores=0-7
/proc/7231/task/7248/stat : 7248 (java) S 7229 7229 4858 0 -1 1077944384 5587 0 0 0 105 1 0 0 20 0 28 0 417975480 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491281644400 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7249] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7249/stat : 7249 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417975480 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491280591072 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7250] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7250/stat : 7250 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 28 0 417975481 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491279538608 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7395] ppid=7229 vsize=28969048 memory=0 CPUtime=0.95 cores=0-7
/proc/7231/task/7395/stat : 7395 (java) R 7229 7229 4858 0 -1 4202560 27 0 0 0 95 0 0 0 20 0 28 0 417975688 29664305152 67732 33554432000 4194304 4196468 140732471421232 140490950097040 140492832317780 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7396] ppid=7229 vsize=28969048 memory=140668232350864 CPUtime=0.89 cores=0-7
/proc/7231/task/7396/stat : 7396 (java) R 7229 7229 4858 0 -1 4202560 18 0 0 0 89 0 0 0 20 0 28 0 417975690 29664305152 67732 33554432000 4194304 4196468 140732471421232 140490955364648 140492834721085 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7397] ppid=7229 vsize=28969048 memory=140668232329936 CPUtime=0.82 cores=0-7
/proc/7231/task/7397/stat : 7397 (java) R 7229 7229 4858 0 -1 1077944384 54 0 0 0 82 0 0 0 20 0 28 0 417975690 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491267415376 140493228074709 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7398] ppid=7229 vsize=28969048 memory=140668232330032 CPUtime=0.91 cores=0-7
/proc/7231/task/7398/stat : 7398 (java) R 7229 7229 4858 0 -1 4202560 23 0 0 0 91 0 0 0 20 0 28 0 417975690 29664305152 67732 33554432000 4194304 4196468 140732471421232 140490957467856 140492836175352 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7399] ppid=7229 vsize=28969048 memory=140668232330128 CPUtime=0.8 cores=0-7
/proc/7231/task/7399/stat : 7399 (java) R 7229 7229 4858 0 -1 4202560 32 0 0 0 80 0 0 0 20 0 28 0 417975691 29664305152 67732 33554432000 4194304 4196468 140732471421232 140490958519968 140492837516981 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7400] ppid=7229 vsize=28969048 memory=140668232330224 CPUtime=0.87 cores=0-7
/proc/7231/task/7400/stat : 7400 (java) R 7229 7229 4858 0 -1 4202560 24 0 0 0 87 0 0 0 20 0 28 0 417975692 29664305152 67732 33554432000 4194304 4196468 140732471421232 140491268468608 140492835246305 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7401] ppid=7229 vsize=28969048 memory=281336464607072 CPUtime=0 cores=0-7
/proc/7231/task/7401/stat : 7401 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 28 0 417975693 29664305152 67732 33554432000 4194304 4196468 140732471421232 140490956419792 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7402] ppid=7229 vsize=28969048 memory=288230621803970871 CPUtime=0 cores=0-7
/proc/7231/task/7402/stat : 7402 (java) S 7229 7229 4858 0 -1 1077944384 20 0 0 0 0 0 0 0 20 0 28 0 417975695 29664305152 67732 33554432000 4194304 4196468 140732471421232 140490949051216 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
Current children cumulated CPU time: 19.27 s
Current children cumulated vsize: 29082176 KiB
Current children cumulated memory: 272384 KiB

[startup+3.60101 s]
/proc/loadavg: 4.80 3.69 2.18 11/221 7402
/proc/meminfo: memFree=31357280/32770624 swapFree=67004224/67108860
[pid=7229] ppid=7226 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/7229/stat : 7229 (xcsp3-exec) S 7226 7229 4858 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 417975474 115843072 364 33554432000 4194304 5098028 140725584828016 140725584826120 140696617599612 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 25214976 140725584831349 140725584831593 140725584831593 140725584834506 0
/proc/7229/statm: 28282 364 305 221 0 87 0
[pid=7231] ppid=7229 vsize=28969048 memory=271560 CPUtime=22.44 cores=0-7
/proc/7231/stat : 7231 (java) S 7229 7229 4858 0 -1 1077944320 38262 0 0 0 2223 21 0 0 20 0 29 0 417975474 29664305152 67890 33554432000 4194304 4196468 140732471421232 140732471403776 140493228064503 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
/proc/7231/statm: 7242262 67890 3506 1 0 7203364 0
[pid=7231/tid=7232] ppid=7229 vsize=28969048 memory=140668232542624 CPUtime=0.78 cores=0-7
/proc/7231/task/7232/stat : 7232 (java) S 7229 7229 4858 0 -1 1077944384 9576 0 0 0 74 4 0 0 20 0 29 0 417975475 29664305152 67890 33554432000 4194304 4196468 140732471421232 140493232305280 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7233] ppid=7229 vsize=28969048 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7233/stat : 7233 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 1 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140493147916560 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7234] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7234/stat : 7234 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140493146864016 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7235] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7235/stat : 7235 (java) S 7229 7229 4858 0 -1 1077944384 15 0 0 0 0 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492777052688 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7236] ppid=7229 vsize=28969048 memory=0 CPUtime=0.01 cores=0-7
/proc/7231/task/7236/stat : 7236 (java) S 7229 7229 4858 0 -1 1077944384 30 0 0 0 1 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492776000144 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7237] ppid=7229 vsize=28969048 memory=0 CPUtime=0 cores=0-7
/proc/7231/task/7237/stat : 7237 (java) S 7229 7229 4858 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492774947600 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7238] ppid=7229 vsize=28969048 memory=8112282956445269571 CPUtime=0 cores=0-7
/proc/7231/task/7238/stat : 7238 (java) S 7229 7229 4858 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492773895056 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7239] ppid=7229 vsize=28969048 memory=5964 CPUtime=0.01 cores=0-7
/proc/7231/task/7239/stat : 7239 (java) S 7229 7229 4858 0 -1 1077944384 16 0 0 0 1 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492772842512 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7240] ppid=7229 vsize=28969048 memory=14012 CPUtime=0 cores=0-7
/proc/7231/task/7240/stat : 7240 (java) S 7229 7229 4858 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 29 0 417975476 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492771789968 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7241] ppid=7229 vsize=28969048 memory=19464 CPUtime=0.01 cores=0-7
/proc/7231/task/7241/stat : 7241 (java) S 7229 7229 4858 0 -1 1077944384 88 0 0 0 1 0 0 0 20 0 29 0 417975477 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492343941104 140493228075650 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7242] ppid=7229 vsize=28969048 memory=14068 CPUtime=0 cores=0-7
/proc/7231/task/7242/stat : 7242 (java) S 7229 7229 4858 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 29 0 417975478 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492342887328 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7243] ppid=7229 vsize=28969048 memory=2120 CPUtime=0 cores=0-7
/proc/7231/task/7243/stat : 7243 (java) S 7229 7229 4858 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 29 0 417975478 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492341834736 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7244] ppid=7229 vsize=28969048 memory=504 CPUtime=0 cores=0-7
/proc/7231/task/7244/stat : 7244 (java) S 7229 7229 4858 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 29 0 417975480 29664305152 67890 33554432000 4194304 4196468 140732471421232 140492340783312 140493228083099 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7245] ppid=7229 vsize=28969048 memory=1560 CPUtime=2.59 cores=0-7
/proc/7231/task/7245/stat : 7245 (java) R 7229 7229 4858 0 -1 4202560 5954 0 0 0 258 1 0 0 20 0 29 0 417975480 29664305152 67890 33554432000 4194304 4196468 140732471421232 140491284784440 140493209240412 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7246] ppid=7229 vsize=28969048 memory=924 CPUtime=2.16 cores=0-7
/proc/7231/task/7246/stat : 7246 (java) R 7229 7229 4858 0 -1 4202560 5566 0 0 0 215 1 0 0 20 0 29 0 417975480 29664305152 67890 33554432000 4194304 4196468 140732471421232 140491283731632 140493212069616 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7247] ppid=7229 vsize=28969048 memory=1692 CPUtime=2.63 cores=0-7
/proc/7231/task/7247/stat : 7247 (java) R 7229 7229 4858 0 -1 4202560 6306 0 0 0 262 1 0 0 20 0 29 0 417975480 29664305152 67890 33554432000 4194304 4196468 140732471421232 140491282686416 140493213432702 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7248] ppid=7229 vsize=28969048 memory=792 CPUtime=1.08 cores=0-7
/proc/7231/task/7248/stat : 7248 (java) S 7229 7229 4858 0 -1 1077944384 5606 0 0 0 107 1 0 0 20 0 29 0 417975480 29664305152 67890 33554432000 4194304 4196468 140732471421232 140491281644400 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7249] ppid=7229 vsize=28969048 memory=1448 CPUtime=0 cores=0-7
/proc/7231/task/7249/stat : 7249 (java) S 7229 7229 4858 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 29 0 417975480 29664305152 67890 33554432000 4194304 4196468 140732471421232 140491280591072 140493228074709 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
[pid=7231/tid=7250] ppid=7229 vsize=28969048 memory=1964 CPUtime=0 cores=0-7
/proc/7231/task/7250/stat : 7250 (java) S 7229 7229 4858 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 29 0 417975481 29664305152 67890 33554432000 4194304 4196468 140732471421232 140491279538608 140493228075650 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 17965056 140732471423978 140732471424150 140732471424150 140732471427023 0
Current children cumulated CPU time: 22.44 s
Current children cumulated vsize: 29082176 KiB
Current children cumulated memory: 273016 KiB

Child status: 0
Real time (s): 3.66859
CPU time (s): 22.8424
CPU user time (s): 22.6114
CPU system time (s): 0.231047
CPU usage (%): 622.65
Max. virtual memory (cumulated for all children) (KiB): 29082176
Max. memory (cumulated for all children) (KiB): 276912

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 22.6114
system time used= 0.231047
maximum resident set size= 278988
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 39085
page faults= 0
swaps= 0
block input operations= 0
block output operations= 112
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 6608
involuntary context switches= 518


# summary of solver processes directly reported to runsolver:
#   pid: 7229
#   total CPU time (s): 22.8424
#   total CPU user time (s): 22.6114
#   total CPU system time (s): 0.231047

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.051266 second user time and 0.082025 second system time

The end

Launcher Data

Begin job on node148 at 2019-09-14 01:41:42
IDJOB=4393866
IDBENCH=115827
IDSOLVER=2841
FILE ID=node148/4393866-1568418139
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-0.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-4393866-1568418139/watcher-4393866-1568418139 -o /tmp/evaluation-result-4393866-1568418139/solver-4393866-1568418139 -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 1604018927 HOME/instance-4393866-1568418139.xml

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

MD5SUM BENCH= da64694dd3ca715594c36c32a8b555a8
RANDOM SEED=1604018927

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:        31609884 kB
MemAvailable:   31910024 kB
Buffers:           58008 kB
Cached:           540808 kB
SwapCached:         3820 kB
Active:           375852 kB
Inactive:         229876 kB
Active(anon):       4148 kB
Inactive(anon):    43732 kB
Active(file):     371704 kB
Inactive(file):   186144 kB
Unevictable:      108956 kB
Mlocked:          108956 kB
SwapTotal:      67108860 kB
SwapFree:       67004224 kB
Dirty:             25972 kB
Writeback:             0 kB
AnonPages:        315848 kB
Mapped:            43556 kB
Shmem:             32344 kB
Slab:             145096 kB
SReclaimable:     116252 kB
SUnreclaim:        28844 kB
KernelStack:        3568 kB
PageTables:         6068 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:    270336 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:41:46