nkoskelo

Results 9 issues of nkoskelo

``` knl = lp.make_kernel( " { [i] : 0

``` import pygsti from pygsti.modelpacks import smq1Q_XY from pygsti.circuits import Circuit from pygsti.baseobjs import Label test_model = smq1Q_XY.target_model('static') test_circuit = Circuit([Label('Gxpi2',0)], line_labels=(0,)) test_model.sim.bulk_dprobs([test_circuit]) ``` The above yields an Array access...

bug

We currently solve, ```J^TJ = -J^T f``` in parallel with partial pivoting of Gaussian elimination. Since we know that the left hand side is positive semi definite, one does not...

enhancement

TODO: Add description.

```python var = 2 if var: print(True) ``` will print True but ```python var = 2 if var == True: print(True) ``` will not print True in python 3.11. We...

bug

We use finite difference with a hard-coded step size of $10^{-7}$ for approximating the value of $f(x)$. This requires $N_p + 1$ calls to $f$ where $N_p$ is the number...

enhancement