Nathan Shammah

Results 72 comments of Nathan Shammah

Actually use ``` git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git ``` see this link for [information](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork).

Also add the information, about unsync-ed remote branches (origin behind/above upstream): ``` git fetch upstream git checkout master git reset --hard upstream/master git push origin master --force ``` from https://github.com/migueldeicaza/gui.cs/issues/498#issuecomment-632739227

This looks like a nontrivial challenge, glad that you're putting thought in it. Having a quick look around, it looks like Matplotlib [uses](https://matplotlib.org/3.1.1/devel/testing.html#writing-an-image-comparison-test) a decorator for this, [`image_comparison`](https://matplotlib.org/3.1.1/api/testing_api.html#matplotlib.testing.decorators.image_comparison), within a...

I think this is addressed in the recent QobjEvo implementation.

@araza6, this looks interesting. Do you want to take ownership of this issue and be assigned to it, for completion over the Summer? It is not high priority (that's the...

These d3 dendrograms have a similar in layout: - [circle cluster](https://bl.ocks.org/mbostock/4339607) - [cluster on Github](https://github.com/d3/d3-hierarchy/blob/master/README.md#cluster)

This is a good task in case QuTiP is accepted in GSoD!

Ok some things that one learns by playing with it: - make sure the location of the `qutip/qutip` folder is as expected (`../../qutip/qutip`) - the second for loop in in...

@Siddhant9868, can you open a PR on the fix on the visualization? Thanks!