I have the following code which gives me some random complete graph
rand = {1, 2, 3};
el = EdgeList[CompleteGraph[5]];
g = CompleteGraph[5, VertexLabels -> "Name",
EdgeLabels -> Table[el[[i]] -> RandomChoice[rand], {i, Length[el]}]]
What I want is to get every possible graph with edges labeled with numbers from rand.
Forbecause every iteration I should do something with the graph I've got. – mclord Dec 22 '21 at 19:01Tuples[{1, 2, 3}, 10], for instance. – J. M.'s missing motivation Dec 22 '21 at 19:03