Skip to content

Instantly share code, notes, and snippets.

View AntonValk's full-sized avatar

Antonios Valkanas AntonValk

View GitHub Profile
@AntonValk
AntonValk / ParJac.java
Last active August 7, 2017 18:29
Parallel Jacobi Algorithm Tester Class
//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[]> {