lamelizard

Results 3 issues of lamelizard

A suggestion; splitting `Kokkos::sort` into the functions `offset_type get_permute_vector(view_type)` and `void sort(view_type, offset_type)`. Reason being that sorting of 1-n views using one array of keys currently seems to require code...

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...