This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This method uses Fork/Join in order to create a parallelized version of the Jacobi Algorithm to solve Ax=B. | |
//This is the tester class | |
package jacobi; | |
import java.util.Arrays; | |
import java.util.concurrent.ForkJoinPool; | |
import java.util.concurrent.RecursiveTask; | |
public class ParJac extends RecursiveTask<double[]> { |