(self)
| 370 | @unittest.skipUnless(numpy, "requires numpy") |
| 371 | class TestMultiObjectiveNumpy(TearDownCreatorTestCase): |
| 372 | def setUp(self): |
| 373 | creator.create(FITCLSNAME, base.Fitness, weights=(-1.0, -1.0)) |
| 374 | creator.create(INDCLSNAME, numpy.ndarray, fitness=creator.__dict__[FITCLSNAME]) |
| 375 | |
| 376 | def test_mo_cma_es(self): |
| 377 |
nothing calls this directly
no outgoing calls
no test coverage detected