Scott Pakin

Results 10 issues of Scott Pakin

# Problem Most of the models defined in [`models.go`](https://github.com/MaxHalford/eaopt/blob/v0.4.2/models.go) evaluate the fitness function sequentially, even if `ParallelEval` is set to `true`. From what I can tell from inspecting the source...

The `ising` function works fine when I give it tiny sets of *h*s and *J*s. I then tried the following, larger problem: ```Python #! /usr/bin/env python from grove.ising.ising_qaoa import ising...

**Description** Jobs submitted asynchronously to a `DWaveSampler` à la the [example in the `from_future` documentation](https://docs.ocean.dwavesys.com/en/stable/docs_dimod/reference/generated/dimod.SampleSet.from_future.html#dimod.SampleSet.from_future) may return `done() == True` before they're actually done. **To Reproduce** Consider the following code:...

bug/fix

**Description** The example given at https://docs.ocean.dwavesys.com/projects/dimod/en/stable/reference/bqm/generated/dimod.BinaryQuadraticModel.to_numpy_matrix.html fails to run. **Steps To Reproduce** Simply enter the code from the `to_numpy_matrix` example: ``` $ python Python 3.8.3 (default, Jul 2 2020, 16:21:59)...

**Description** `QBSolv.sample` accepts `num_reads` as a parameter but returns a number of samples that seems to have no relation to the value provided. **To Reproduce** ```Python #! /usr/bin/env python from...

**Current Problem** It strikes me as inconsistent that the `QBSolv` class is not defined as a composite sampler. If I want to add auto-embedding support to a sampler, I pass...

This pull request provides a new *Examples* → *Origami* → *Paper Airplane* example, which folds a run-of-the-mill paper airplane.

Here's a reproducer, `badness.fut`: ``` def main (n : i64) : []i64 = filter (\x -> x >= 100 && x

bug
compiler

I set up the following as a MIP problem using `Highs_passModel` in C: ```math \begin{array}{ll} \mathrm{Min.} & 3 x_0 + 2 x_1 + 1 x_2 \\ \mathrm{s.t.} & 1 \leq...

### Proposal Details # Issue I encountered this issue while parsing the output of an application I was working with: * [`strconv.ParseFloat`](https://pkg.go.dev/strconv#ParseFloat) accepts numbers expressed in scientific notation. `strconv.ParseFloat("3.336e-6", 64)`,...

Proposal