Is there a free Java implementation of any of the major planarity testing algorithms? Boyer-Myrvold, de Fraysseix-Rosenstiehl, heck, even Hopcroft-Tarjan. I've been reading the papers and they all seem fairly complex, and I'd rather skip all the work of implementing them myself if someone else has already done so.

link|improve this question

45% accept rate
feedback

3 Answers

JGraphEd has some planarity testing but I haven't used it.

link|improve this answer
feedback

Arne-Michael Törsel's implementation of Boyer-Myrvold - description

http://home.arcor.de/arne-michael/docs/boyer.zip

link|improve this answer
feedback
import java.io.DataInputStream;
import java.io.IOException;

public class TestPlanar{

    /**
     * @param args the command line arguments
     */
    public static int[][] input(int n, int e){
        int[][] a = new int[n][e];
        DataInputStream in = new DataInputStream(System.in);
        try {
            for(int i=0; i<n; i++){
                for(int j=0; j<e; j++){
                    a[i][j] = Integer.parseInt(in.readLine());
                }
            }

        } catch (IOException ex) {
           ex.printStackTrace();
        }
        return a;
    }

    public static void display(int a[][], int n, int e){
        for(int i=0; i<n; i++){
            for(int j=0; j<e; j++){
                System.out.print(""+a[i][j]+" ");
            }
            System.out.println(" ");
        }
    }

    public static int[][] removependent(int a[][], int n, int e){
        int count;
        for(int i=0; i<n; i++){
            count = 0;
            for(int j=0; j<e; j++){
                if(a[i][j] == 1)
                    count++;
            }
            if(count == 1){
                for(int j=0; j<e; j++){
                    if(a[i][j] == 1){
                        a[i][j] = 0;
                    }
                }
            }
        }
        return a;
    }

    public static int[][] removeselfloop(int a[][], int n, int e){
        int count;
        for(int i=0; i<e; i++){
            count = 0;
            for(int j=0; j<n; j++){
                if(a[j][i] == 1)
                    count++;
            }
            if(count == 1){
                for(int j=0; j<n; j++){
                    a[j][i] = 0;
                }
            }
        }
        return a;
    }

    public static int[][] removeparallel(int a[][], int n, int e){
        int count;
        for(int i=0; i<n; i++){
            for(int j=(i+1); j<n; j++){
                count = 0;
                for(int k=0; k<e; k++){
                    if(a[i][k] == 1 && a[j][k] == 1)
                        count++;
                }
                if(count > 1){
                    count = 0;
                    for(int k=0; k<e; k++){
                        if(count == 0){
                            if(a[i][k] == 1 && a[j][k] == 1)
                                count++;
                        }
                        else{
                            if(a[i][k] == 1 && a[j][k] == 1){
                                a[i][k] = 0;
                                a[j][k] = 0;
                            }
                        }
                    }
                }
            }
        }
        return a;
    }

    public static int[][] convertseries(int a[][], int n, int e){
        int count, v1 = 0, v2 = 0, c = 0;
        for(int i=0; i<n; i++){
            count = 0;
            c = 0;
            for(int j=0; j<e; j++){
                if(a[i][j] == 1){
                    count++;
                    if(count == 1)
                        v1 = j;
                    else
                        v2 = j;
                }
            }
            if(count == 2){
                 for(int j=0; j<e; j++){
                    if(a[i][j] == 1){
                        a[i][j] = 0;
                    }
                }   
                for(int j=0; j<n; j++){
                    if(a[j][v1] == 1){
                        c = j;
                        a[j][v1] = 0;
                    }
                }
                a[c][v2] = 1;

            }
        }
        return a;
    }

    public static int[][] degreethree(int a[][], int n, int e){
        int count, x = 0;
        for(int i=0; i<n; i++){
            count = 0;
            for(int j=0; j<e; j++){
                if(a[i][j] == 1){
                    if(count == 0)
                        x = j;
                    count++;
                }
            }
            if(count == 3){
                for(int j=0; j<n; j++){
                    if(a[j][x] == 1){
                        a[j][x] = 0;
                    }
                }
                System.out.println(" degree three ");
                display(a, n, e);
                System.out.println(" degree three - series ");
                a = convertseries(a, n, e);
                display(a, n, e);
                System.out.println(" degree three - parallel ");
                a = removeparallel(a, n, e);
                display(a, n, e);
                a = degreethree(a, n, e);


            }
        }
        return a;
    }

    public static void main(String[] args) {
        // TODO code application logic here
        int n = 0,e = 0;
        DataInputStream in = new DataInputStream(System.in);
        try {
            n = Integer.parseInt(in.readLine());
            e = Integer.parseInt(in.readLine());


        } catch (IOException ex) {
           ex.printStackTrace();
        }
        int[][] a = new int[n][e];
        a = input(n,e);
        display(a, n, e);
        a = removependent(a, n, e);
        System.out.println(" pendent");
        display(a, n, e);
        a = removeselfloop(a, n, e);
        System.out.println(" self loop");
        display(a, n, e);
        a = removeparallel(a, n, e);
        System.out.println(" parallel");
        display(a, n, e);
        a = convertseries(a, n, e);
        System.out.println(" series");
        display(a, n, e);
        a = removeparallel(a, n, e);
        System.out.println(" parallel");
        display(a, n, e);
        a = degreethree(a, n, e);
        System.out.println(" degree three final");
        display(a, n, e);
    }
}

input must be a incidence matrix G(n,e) for example

6
12

1 0 1 1 0 0 1 0 0 0 1 1
0 1 1 0 1 0 0 1 0 1 0 0
1 1 0 0 0 1 0 0 0 0 0 1
0 0 0 1 1 1 0 0 1 0 0 0
0 0 0 0 0 0 1 1 1 0 0 0
0 0 0 0 0 0 0 0 0 1 0 0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.