Danylo Lykov

Results 43 comments of Danylo Lykov

I just figured out that the global name scope is, in fact, in the .rst document. The problem is band-aided by using different _captions_ for images, having `[image1.png](attachment:image.png)` and `[image.png](attachment:image.png)`...

I tried the minimum example from #162 and can confirm that both images are 'B'. My pandoc seems to be up-to-date. ``` » pandoc -v pandoc 2.10.1 Compiled with pandoc-types...

Looks well: ``` » pandoc -f markdown -t rst image1: ![foo](x.png) image2: ![foo](y.png) ^D image1: |foo| image2: |image1| .. |foo| image:: x.png .. |image1| image:: y.png ```

Here's the output: ``` » make html Running Sphinx v3.2.1 making output directory... done building [mo]: targets for 0 po files that are out of date building [html]: targets for...

I use the very same repo from #162, here are precisely the commands I execute: ```bash » git clone [email protected]:martintb/nbsphinx_image_error.git Cloning into 'nbsphinx_image_error'... remote: Enumerating objects: 13, done. remote: Total...

Just spotted that my table-of-contents plugin for jupyter notebook added a table of contents, fixed in a second commit

Hi, thanks for submitting the issue The code for warm_start looks good, but did you check it actually changes anything? The `solution=rotated` will not end up in the constructor of...

I checked probability amplitudes and they are equal up to a phase shift https://github.com/danlkv/QTensor/blob/warm_start/qtensor/tests/test_warm_start.py. There is a bug is in lightcone optimization, it treats all qubits as equal, which is...

I think what's better is that the builder should be an argument of composer. For example: ```python qtensor.DefaultQAOAComposer(G, gamma, beta, composer='qtree') ``` The composer type could be a string identifier,...

There are 3 tasks here: 1. Complete the current implementation of generic ising, fast and well-defined, just some code-style fixes 2. Refactor Composers to contain a Builder, using bridge pattern....