Kelly Boothby
Kelly Boothby
Okay, so I've read through what you've got so far. From where I sit, this proposal looks structurally quite similar to the `suspend_chains` feature (where `suspend_chains` imposes some changes to...
Just for context. We (@stefanhannie and myself) are currently working on other layout-aware hinting algorithms, so my proposed `minorminer.layout` submodule will hopefully grow to contain several good approaches. My prefered...
Oops. I misread those logs. The issue is actually in the python polytime embedder, which isn't (yet) minorminer's responsibility. Leaving this open because I'll eventually want to fix that.
Yes-ish? There's still some value in that python code: 1. it can handle arbitrary shore sizes; the c++ is limited to 8 2. it can be used to sample from...
I think this is a problem with the inspector and not the chimera graph generator. ```python import dwave_networkx as dnx from matplotlib import pyplot as plt c4 = dnx.chimera_graph(4, 4)...
You can get that subgraph as follows: ```python g = dnx.chimera_graph(16) c4_nodes = [v for v, d in g.nodes(data=True) if all(x < 4 for x in d['chimera_index'][:2])] c4 = g.subgraph(c4_nodes)...
Here's a proof of concept. It will be a piece of work to get this integrated into the other drawing functions, but this should ease the process. ``` from matplotlib...
~Caught a mistake; will patch later. For now, have a preview.~  A giant run of sample images: ```python import dwave_networkx as dnx import networkx as nx from minorminer import...
Sorry I've been absent for a while but this one piqued my interest. As a point of curiosity, I found a way to generate similar graphs to the drug interaction...
The new algorithm by @Tortar is optimized for connected graphs, and replaces all bulk operations with single-node operations so that it can terminates soon after the graph has been fully...