Java port of the Nauty utility for graph isomorphism testing
Follow jNauty, a Java port of Nauty
Other Useful Business Software
MongoDB Atlas runs apps anywhere
MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
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; }