本文整理汇总了Python中population.Population.replicate方法的典型用法代码示例。如果您正苦于以下问题:Python Population.replicate方法的具体用法?Python Population.replicate怎么用?Python Population.replicate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类population.Population
的用法示例。
在下文中一共展示了Population.replicate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestPopulationBitstring
# 需要导入模块: from population import Population [as 别名]
# 或者: from population.Population import replicate [as 别名]
class TestPopulationBitstring(unittest.TestCase):
def setUp(self):
bit0 = Bitstring("0000")
bit1 = Bitstring("1111")
col0 = ColicinBit(bit0)
col1 = ColicinBit(bit1)
org = Organism([col0], [ImmunityBit(bit0, 2)])
self.pop = Population([org for _ in range(5)])
def test_replicate(self):
self.assertEqual(len(self.pop), 5)
self.pop.replicate()
self.assertEqual(len(self.pop), 10)
def test_remove_self_toxic(self):
self.assertEqual(len(self.pop), 5)
self.pop.remove_self_toxic()
self.assertEqual(len(self.pop), 5)
def test_cull_by_iterative_colicin(self):
self.assertEqual(len(self.pop), 5)
self.pop.cull_by_iterative_colicin()
self.assertEqual(len(self.pop), 5)
def test_advance_generation(self):
self.pop.advance_generation()
def test_sample_with_replacement(self):
self.pop.sample_with_replacement()
示例2: TestPopulation
# 需要导入模块: from population import Population [as 别名]
# 或者: from population.Population import replicate [as 别名]
class TestPopulation(TC):
def setUp(self):
self.orgs = [MockOrganism(1), MockOrganism(2),
MockOrganism(3), MockOrganism(4)]
self.pop = Population(self.orgs)
def test_init_nogivensize(self):
self.assertEqual(self.pop.carrying_capacity, 4)
def test_init_givensize(self):
population = Population([1, 2, 3, 4], carrying_capacity=5)
self.assertEqual(population.carrying_capacity, 5)
def test_removal(self):
population = Population([1, 2, 3], carrying_capacity=2)
population.remove_at_random()
self.assertEqual(len(population), 2)
def test_leastfit_removal(self):
this_pop = Population([MockOrganism(1), MockOrganism(2),
MockOrganism(100)], carrying_capacity=1)
this_pop.remove_least_fit()
self.assertIn(this_pop[0].eval_fit(),
[1, 2, 100])
self.assertEqual(len(this_pop), 1)
def test_replicate(self):
self.pop.replicate()
self.assertEqual(8, len(self.pop))
def test_advance(self):
big_pop = Population(
[MockOrganism(1), MockOrganism(2),
MockOrganism(90)], 3)
big_pop.advance_generation()
self.assertLessEqual(len(big_pop), 3)
def test_iter_len(self):
self.assertEqual(4, len(self.pop))
for org, poporg in zip(self.orgs, self.pop):
self.assertEqual(org, poporg)
def test_add_to_pop(self):
org = MockOrganism(6)
self.pop.add_to_pop(org)
self.assertEqual(5, len(self.pop))
def test_set(self):
self.pop[2] = MockOrganism(6)
print self.pop[2]
self.assertEqual(self.pop[2].eval_fit(), MockOrganism(6).eval_fit())
def test_full(self):
self.assertTrue(self.pop.is_full())
def test_max_fit(self):
self.assertEqual(self.pop.max_fitness(), MockOrganism(4).eval_fit())
def test_mean_fit(self):
self.assertEqual(self.pop.mean_fitness(), 2.5)
示例3: TestPopulation
# 需要导入模块: from population import Population [as 别名]
# 或者: from population.Population import replicate [as 别名]
class TestPopulation(unittest.TestCase):
def setUp(self):
self.col = Colicin(0)
self.imm = Immunity(-5, 5)
self.org = Organism([self.col], [self.imm])
self.pop = Population([self.org.duplicate() for _ in range(10)])
def test_len(self):
self.assertEqual(len(self.pop), 10)
def test_replicate(self):
self.pop.replicate()
self.assertEqual(self.pop.pop.count(self.org), 10)
self.assertEqual(len(self.pop), 20)
def test_iter(self):
for org in self.pop:
self.assertEqual(org, self.org)
else:
return
self.fail()
def test_remove_self_toxic(self):
org_toxic = Organism([Colicin(0)], [Immunity(10, 5)])
org_not_toxic = Organism([Colicin(0)], [Immunity(0, 5)])
self.pop.pop = [org_not_toxic, org_toxic]
self.assertEqual(len(self.pop), 2)
self.pop.remove_self_toxic()
self.assertEqual(len(self.pop), 1)
self.assertSequenceEqual(self.pop.pop, [org_not_toxic])
def test_cull_by_all_colicins(self):
org_winner = Organism([Colicin(5)], [Immunity(0, 5)])
self.pop.pop.append(org_winner)
self.pop.cull_by_all_colicins()
self.assertSequenceEqual(self.pop.pop, [org_winner])
def test_cull_by_all_colicins_extinction(self):
org_other = Organism([Colicin(5)], [Immunity(10, 5)])
self.pop.pop.append(org_other)
self.pop.cull_by_all_colicins()
self.assertEqual(len(self.pop), 0)
def test_cull_by_single_colicin(self):
org_other = Organism([Colicin(100)], [Immunity(100, 5)])
self.pop.pop.extend(org_other for _ in range(10))
self.pop.cull_by_single_colicin()
self.assertEqual(len(self.pop), 10)
def test_cull_by_single_colicin_extinction(self):
self.pop.cull_by_single_colicin(Colicin(5))
self.assertEqual(len(self.pop), 0)
def test_cull_by_iterative_colicin(self):
org_winner = Organism([Colicin(5)], [Immunity(0, 5)])
self.pop.pop.append(org_winner)
self.pop.cull_by_iterative_colicin()
self.assertSequenceEqual(self.pop.pop, [org_winner])
def test_cull_by_iterative_colicin_extinction(self):
org_other = Organism([Colicin(5)], [Immunity(10, 5)])
self.pop.pop.extend(org_other for _ in range(10))
self.pop.cull_by_iterative_colicin()
self.assertEqual(len(self.pop), 10)
def test_colicins_produced(self):
colicins = set(self.pop.colicins_produced())
self.assertSetEqual({self.col}, colicins)
other_colicin = Colicin(5)
self.pop.pop.append(Organism([other_colicin], [Immunity(0, 5)]))
colicins = set(self.pop.colicins_produced())
self.assertSetEqual({self.col, other_colicin}, colicins)
def test_sample_with_replacement(self):
self.pop.pop.extend(self.org for _ in range(20))
self.assertEqual(len(self.pop), 30)
self.pop.sample_with_replacement()
self.assertEqual(len(self.pop), 10)
self.pop.pop = self.pop.pop[::2]
self.assertEqual(len(self.pop), 5)
self.pop.sample_with_replacement()
self.assertEqual(len(self.pop), 10)
self.assertEqual(self.pop.carrying_capacity, 10)
def test_advance_generation(self):
self.pop.advance_generation()
self.assertEqual(len(self.pop), 10)