GraphWaveFunctionCollapse icon indicating copy to clipboard operation
GraphWaveFunctionCollapse copied to clipboard

WaveFunctionCollapse on graphs

Results 4 GraphWaveFunctionCollapse issues
Sort by recently updated
recently updated
newest added

Is there a way to initialize a few nodes of the output graph? I'm trying to propagate known colors for some of the nodes, but my output graph appears to...

enhancement

~~As PR #3 stated~~ (#3's note was about GIs), we do not have an example for GLs yet, is there a good simple example? We could do the "Eight queens...

I tried to run the code in the readme: ```python import networkx as nx import graphwfc GI = nx.Graph([(1,2),(2,3),(3,4)]) GI.add_nodes_from([(1,{'c':1}),(2,{'c':1}),(3,{'c':2}),(4,{'c':3})]) GL = nx.DiGraph([(1,2)]) GO = nx.random_tree(1000) ``` But it raises...

Hi! Would it be possible to get some kind of guide (in English) for how to actually work with the code? While one has to appreciate the fact it is...