Parallel Programming With Recursive Functions?

后端 未结 3 1560
迷失自我
迷失自我 2021-02-02 00:02

Background of the Problem: I\'m trying to write a puzzle solution algorithm that takes advantage of multi-core processors and parallel processing. However, the ideal/easiest s

3条回答
  •  别跟我提以往
    2021-02-02 00:35

    JSR-166Y is intended to facilate the implementation of parallel recursion in Java 7 by taking care of thread coordination. You may find their discussions, code, and papers (especially Doug Lea's paper A Java Fork/Join Framework) useful.

提交回复
热议问题