Java port of the Nauty utility for graph isomorphism testing
Follow jNauty, a Java port of Nauty
Other Useful Business Software
AI-powered service management for IT and enterprise teams
Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity. Maximize operational efficiency with refreshingly simple, AI-powered Freshservice.
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; }