The isomorphism tag has no wiki summary.
0
votes
1answer
33 views
How can I check if two graphs with LABELED vertices are isomorphic?
For example, suppose I had a graph G that had all blue nodes and one red node. I also had a graph F that had all blue and one red node.
What is an algorithm that I can run to verify that these two ...
1
vote
1answer
64 views
NetworkX: Subgraph Isomorphism by edge and node attributes
Suppose I have 2 graphs A and B and I want to know if A is a subgraph of B.
The nodes contain attributes, say, 'size' and 'material'.
When I run:
GM = ...
0
votes
0answers
38 views
Is it possible to check if two grids are isomorphic in the following way? [closed]
Can you numerically organize two 2-d arrays and assume that they are isomorphic if each index of the first array is identical to each index of the second array?
1
vote
1answer
144 views
BGL: Example of isomorphism with vertex invariants
can someone show me an example of how to use the Boost Graph Library isomorphism function with vertex invariants? I'm looking at the example at ...
0
votes
1answer
67 views
Haskell sugar for “applyable” class adts containing functions ex. Isomorphisms
Specifically, inspired by J's conjucation operator (g&.f = (f inverse)(g)(f))
I need a way to augment functions with additional information. The obvious way is to use ADT. Something like:
data ...
42
votes
3answers
2k views
Importance of isomorphic functions
Short Question: What is the importance of isomorphic functions in programming (namely in functional programming)?
Long Question: I'm trying to draw some analogs between functional programming and ...
-1
votes
1answer
290 views
Graph isomorphism for jar files [closed]
I'm working with *.jar files and on graph isomorphism. I want to check for graph isomorphism between two *.jar files. Is there a library for python or ruby for this. Can i do it with igraph or what ?
...
2
votes
2answers
149 views
graph - How do I use Tree Isomorphic to solve language pattern matching?
In Algorithm Design Manual, it says
Are you testing whether two trees are isomorphic? – Faster algorithms exist for certain special cases of graph isomorphism, such as trees and planar graphs. ...
1
vote
2answers
1k views
List of C++ libraries for Graph Theory
I'm going to start a scientific project about automata and graph theory, and I'm searching for a graph library that supports features like:
directed/undirected graphs
graph isomorphism test (i.e. is ...
1
vote
2answers
253 views
Subgraph matching (JUNG)
I have a set of subgraphs and I need to match them on the graph they were extracted from. I also need to count how many times each subgraph shows up in such graph (I need to store all possible ...
1
vote
1answer
179 views
Algorithms for polyhedral graph (planar 3-connected graph) isomorphism?
I've put some research in on the topic of graph isomorphism for planar 3-connected graphs, but there are an abundance of algorithms of different restriction, theoretical complexity, and frequency of ...
1
vote
1answer
315 views
VF2 (or other) graph isomorphism implementation in Java [duplicate]
Possible Duplicate:
VF2 Subgraph Isomorphism
I want to implement graph isomorphism algorithm in Java but I face a lot of problems due to small programming experience (maybe logic as well). ...
1
vote
1answer
952 views
VF2 algorithm steps with example
Can someone explain the steps of the VF2 algorithm for graph isomorphism in simple words? I am learning this algorithm, but it is harsh without a working example. Can someone lead me the right ...
1
vote
0answers
176 views
SmartClient: PUT data duplication
I am using SmartClient 8.1 and using XML data sources for GET and PUT operations.
Following is a sample of data I GET.
<data>
<user>
<group1>
<value1>abc</value1>
...
5
votes
2answers
557 views
Pattern matching in graphs
I'm trying to find tool/algorithm for searching sections that corresponds to specified pattern in oriented graph, e.g.:
A->B->C or or A<->B->C
Please, suggest me direction of my searches.
I mean ...
1
vote
1answer
255 views
subgraph isomorphism [closed]
I need a generic algorithm to solve the problem of subgraph isomorphism, we have tow graphs T and G, is T a subgraph in T?
0
votes
2answers
446 views
algorithm to check whether a given graph is subgraph of another graph [closed]
i assume that we have 2 labeled graphs G and T and the algorithm determine if G a subgraph of T and the corresponding vertices in the main graphT and the subgraph G should have same label
0
votes
1answer
604 views
Where can I find C++/C code for tree isomorphism problem?
Where can I find code for tree isomorphism problem in O(N), where N is the number of nodes?
4
votes
1answer
234 views
Counting Subgraph Instances
Let's say I have a large (several thousand node) directed graph G and a much smaller (3-5 node) directed graph g. I want to count how many isomorphisms of g are in G. In other words, I want to know ...
0
votes
3answers
768 views
Python UUID represented as special characters
When creating a UUID in Python, likeso:
>>> uuid.uuid1()
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
How could one map that UUID into a string made up of the capitalized alphabet A-Z ...
4
votes
2answers
3k views
Find all subtrees in a tree matching a given subtree in Java
I am writing code in Java that uses an unordered, rooted tree where each node may have any number of child nodes. Given a tree T and a subtree S, I want to be able to find all the subtrees in T that ...
9
votes
2answers
2k views
What does it mean for two binary trees to be isomorphic?
What does it mean for two binary trees to be isomorphic? I've been looking online and I can't seem to find a clear explanation.
As far as I understand, two trees are isomorphic if they have the same ...
5
votes
3answers
938 views
What's the Difference Between Subgraph Isomorphism and Subgraph Monomorphism?
In one of the projects I've worked on, the subject of isomorphism versus monomorphism came up.
A little background: I'm no expert on graph theory and have no formal training in it. But this topic is ...
