本文整理汇总了C#中World.IsAlive方法的典型用法代码示例。如果您正苦于以下问题:C# World.IsAlive方法的具体用法?C# World.IsAlive怎么用?C# World.IsAlive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类World
的用法示例。
在下文中一共展示了World.IsAlive方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CoordinatesOutsideNonWrappedWorldAreDead
public void CoordinatesOutsideNonWrappedWorldAreDead()
{
World world = new World(10, 10);
Assert.False(world.IsAlive(9, 10));
Assert.False(world.IsAlive(-1, 0));
Assert.False(world.IsAlive(0, 10));
Assert.False(world.IsAlive(5, -1));
}
示例2: AnyLiveCellWithTwoLiveNeighborsLives
public void AnyLiveCellWithTwoLiveNeighborsLives()
{
var world = new World(4, 4);
world.BringToLife(1, 1);
world.BringToLife(2, 1);
world.BringToLife(1, 2);
world.Tick();
Assert.IsTrue(world.IsAlive(1, 1));
Assert.IsTrue(world.IsAlive(2, 1));
Assert.IsTrue(world.IsAlive(1, 2));
}
示例3: AnyDeadCellWithExactlyThreeLiveNeighborsBecomesALiveCell
public void AnyDeadCellWithExactlyThreeLiveNeighborsBecomesALiveCell()
{
var world = new World(4, 4);
world.BringToLife(1, 1);
world.BringToLife(1, 2);
world.BringToLife(2, 3);
world.Tick();
Assert.IsTrue(world.IsAlive(2, 2));
Assert.IsFalse(world.IsAlive(1, 1));
Assert.IsTrue(world.IsAlive(1, 2));
Assert.IsFalse(world.IsAlive(2, 3));
}
示例4: AnyLiveCellWithMoreThanThreeLiveNeighborsDies
public void AnyLiveCellWithMoreThanThreeLiveNeighborsDies()
{
var world = new World(4, 4);
world.BringToLife(2, 2);
world.BringToLife(1, 1);
world.BringToLife(1, 2);
world.BringToLife(2, 3);
world.BringToLife(3, 2);
world.Tick();
Assert.IsFalse(world.IsAlive(2, 2));
Assert.IsTrue(world.IsAlive(1, 1));
Assert.IsTrue(world.IsAlive(1, 2));
Assert.IsTrue(world.IsAlive(2, 3));
Assert.IsTrue(world.IsAlive(3, 2));
}
示例5: AnyLiveCellWithFewerThanTwoLiveNeighboursDies
public void AnyLiveCellWithFewerThanTwoLiveNeighboursDies()
{
var world = new World(4, 4);
world.BringToLife(1, 1);
world.Tick();
for (var i = 1; i <= 4; i++)
for (var j = 1; j <= 4; j++)
Assert.IsFalse(world.IsAlive(i, j));
}
示例6: InitialWorldIsDead
public void InitialWorldIsDead()
{
World world = new World(10, 10);
for (int x = 0; x < 10; x++)
{
for (int y = 0; y < 10; y++)
{
Assert.AreEqual(false, world.IsAlive(x, y));
}
}
}
示例7: GetLifeCoordinates
private List<Point> GetLifeCoordinates(World world)
{
var coordinates = GetAllCoordinates(world);
return coordinates.Where(c => world.IsAlive(c.X, c.Y)).ToList();
}