Find all homomorphisms between two ACSets
Examples
e <- path_graph(2)
tri <- cycle_graph(3)
hs <- find_all_homomorphisms(e, tri)
length(hs) # number of edge-embeddings into triangle
#> [1] 3
Find all homomorphisms between two ACSets
e <- path_graph(2)
tri <- cycle_graph(3)
hs <- find_all_homomorphisms(e, tri)
length(hs) # number of edge-embeddings into triangle
#> [1] 3