Submit a problem with all the linear terms populated.
(self)
| 164 | results.samples |
| 165 | |
| 166 | def test_submit_linear_problem(self): |
| 167 | """Submit a problem with all the linear terms populated.""" |
| 168 | |
| 169 | with Client(**config) as client: |
| 170 | solver = client.get_solver() |
| 171 | linear, quad = generate_random_ising_problem(solver) |
| 172 | self._submit_and_check(solver, linear, {}) |
| 173 | |
| 174 | def test_submit_full_problem(self): |
| 175 | """Submit a problem with all supported coefficients set.""" |
nothing calls this directly
no test coverage detected