Neither the internal graph model nor the layouts that are
used in HyperGraph support multiple edges between two nodes.
However, depending on your application, you may consider to
insert dummy nodes. Say you have two nodes A and B and you
would like to have two edges from A to B. You could
introduce two dummy nodes D1 and D2 and create edges from A
to the dummy nodes and from the dummy nodes to B :
A -> D1 -> B
A -> D2 -> B
I hope this approach is a solution for your problem.
Best Regards,
Jens.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=723815
Hi,
Neither the internal graph model nor the layouts that are
used in HyperGraph support multiple edges between two nodes.
However, depending on your application, you may consider to
insert dummy nodes. Say you have two nodes A and B and you
would like to have two edges from A to B. You could
introduce two dummy nodes D1 and D2 and create edges from A
to the dummy nodes and from the dummy nodes to B :
A -> D1 -> B
A -> D2 -> B
I hope this approach is a solution for your problem.
Best Regards,
Jens.
Logged In: YES
user_id=1360781
Originator: NO
The current code appears to complain if multiple edges (or reverse edges) are added. It's not possible to tell whether the extra edge is drawn.