Submit a problem with all supported coefficients set.
(self)
| 172 | self._submit_and_check(solver, linear, {}) |
| 173 | |
| 174 | def test_submit_full_problem(self): |
| 175 | """Submit a problem with all supported coefficients set.""" |
| 176 | |
| 177 | with Client(**config) as client: |
| 178 | solver = client.get_solver() |
| 179 | linear, quad = generate_random_ising_problem(solver) |
| 180 | self._submit_and_check(solver, linear, quad) |
| 181 | |
| 182 | def test_submit_full_ising_problem_with_offset(self): |
| 183 | """Submit a problem with all supported coefficients set, including energy offset.""" |
nothing calls this directly
no test coverage detected