def setUp(self): self.G1 = example_graphs.example_graph1() self.G2 = example_graphs.example_graph2() self.G3 = example_graphs.example_graph3() self.G4 = example_graphs.example_graph4()
G1.print_info(verbose=True) G2.print_info(verbose=True) G3.print_info(verbose=True) print('---------- Normalizing -------------') G1.normalize() G1.print_info(verbose=True) G2.normalize() G2.print_info(verbose=True) G3.normalize() G3.print_info(verbose=True) print('------ Checking isomorphism -----') print('For self:') print('- Plane Isomorphic: ', isomorphic.check_plane_isomorphism(G1, G1)) print('- Sphere Isomoprhic:', isomorphic.check_sphere_isomorphism(G2, G2)) print('For others:') print('- Plane Isomorphic: ', isomorphic.check_plane_isomorphism(G1, G2)) print('- Sphere Isomorphic:', isomorphic.check_sphere_isomorphism(G2, G1)) print('------ Checking for pattern matching -----') print('For self:') print('- pattern: ', isomorphic.check_pattern(G1, G1)) print('For others') G4 = examples.example_graph4() G4.normalize() print('- pattern: ', isomorphic.check_pattern(G4,G1))
G1.print_info(verbose=True) G2.print_info(verbose=True) G3.print_info(verbose=True) print('---------- Normalizing -------------') G1.normalize() G1.print_info(verbose=True) G2.normalize() G2.print_info(verbose=True) G3.normalize() G3.print_info(verbose=True) print('------ Checking isomorphism -----') print('For self:') print('- Plane Isomorphic: ', isomorphic.check_plane_isomorphism(G1, G1)) print('- Sphere Isomoprhic:', isomorphic.check_sphere_isomorphism(G2, G2)) print('For others:') print('- Plane Isomorphic: ', isomorphic.check_plane_isomorphism(G1, G2)) print('- Sphere Isomorphic:', isomorphic.check_sphere_isomorphism(G2, G1)) print('------ Checking for pattern matching -----') print('For self:') print('- pattern: ', isomorphic.check_pattern(G1, G1)) print('For others') G4 = examples.example_graph4() G4.normalize() print('- pattern: ', isomorphic.check_pattern(G4, G1))