Joel Pasvolsky

Results 48 comments of Joel Pasvolsky

@vmullig, thank you for sharing your Rosetta experience with us and proposing this feature. We too experience the ongoing problem of new users relearning lessons that more experienced users, including...

Thank you, @mstechly! @spreinhardt, this issue is what I was discussing in our email Tuesday.

@ChrisDodic, thank you for your feedback. We hope to soon take some big steps in integrating Ocean docs from the various repos which will improve navigation through the sidebar--see https://github.com/dwavesystems/docs/pull/62....

Thanks for clarifying @ChrisDodic!

@giovanipollachini, thank you for following up on this. Currently the examples under https://docs.ocean.dwavesys.com/en/latest/getting_started.html#examples begin with classical sampling in the 2nd and 3rd beginners' examples: * Vertex Color: https://docs.ocean.dwavesys.com/en/latest/examples/min_vertex.html#solving-classically-on-a-cpu * Constrained...

@boothby, the output of ``dnx.chimera_graph(4)`` includes node 40, 44, 45, 46, 47, 41, 42, 43. I had expected C4 nodes to be [0, 1 .. 8x4, 8x16, 8x16+1, ... 8x20,...

Thanks, @boothby, I just changed the first line to ``g = dnx.chimera_graph(16, node_list=qpu.nodelist, edge_list=qpu.edgelist)`` to account for available qubits & couplers, and that works perfectly: ![image](https://user-images.githubusercontent.com/34041130/110166787-b3895900-7da9-11eb-8d0e-39b09fa1241f.png)

@boothby, what about updating the [requirement on networkx](https://github.com/dwavesystems/dwave-networkx/blob/4151e23a74930b3a1414829209f18f96dafc43d8/requirements.txt#L1) to a minimum of [version 2.8.6](https://github.com/networkx/networkx/compare/networkx-2.8.5...networkx-2.8.6) to apply [this fix](https://github.com/dwavesystems/dwave-networkx/pull/214/commits/aba5e46ddd109d2233b62401b4674e8853e34099) there too? I'm hitting it on the NetworkX ``draw()`` function here: ```...