Java port of the Nauty utility for graph isomorphism testing
Follow jNauty, a Java port of Nauty
Other Useful Business Software
Veeam Data Platform v13.1 - Get Your Free Trial
Try Veeam Data Platform today. Experience the unified platform that's secure by design, portable by default, and proven to recover clean, fast, and anywhere.
Rate This Project
Login To Rate This Project
User Reviews
-
public static boolean isomorphic(...) returns in any case true. see: public static boolean isomorphic(boolean digrah, int n, int m, int inode1[], int jnode[], int inode2[], int jnode2[], int sol[]) { for (int i =1; i <=n; i++) { if (i > m) break; sol[i] = inode1[i]; } // call nauty() // jNauty.nauty(...) return true; }