Skip to content

@graphty/algorithms / index / IsomorphismOptions

Interface: IsomorphismOptions ​

Defined in: algorithms/matching/isomorphism.ts:22

Properties ​

edgeMatch()? ​

optional edgeMatch: (edge1, edge2, g1, g2) => boolean

Defined in: algorithms/matching/isomorphism.ts:24

Parameters ​

edge1 ​

[NodeId, NodeId]

edge2 ​

[NodeId, NodeId]

g1 ​

Graph

g2 ​

Graph

Returns ​

boolean


findAllMappings? ​

optional findAllMappings: boolean

Defined in: algorithms/matching/isomorphism.ts:25


nodeMatch()? ​

optional nodeMatch: (node1, node2, g1, g2) => boolean

Defined in: algorithms/matching/isomorphism.ts:23

Parameters ​

node1 ​

NodeId

node2 ​

NodeId

g1 ​

Graph

g2 ​

Graph

Returns ​

boolean