Java port of the Nauty utility for graph isomorphism testing
Follow jNauty, a Java port of Nauty
Other Useful Business Software
Ship Agents Faster
Gemini Enterprise Agent Platform lets you rapidly build, scale, govern and optimize production-ready agents grounded in your organization's data. The platform enables developers to build custom or pre-built agents for virtually any use case. New customers get $300 in free credits.
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; }