public void SquareSandwichTest() { SimpleGraph square = SimpleGraphFactory.MakeSandwich(4); SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(square); CheckParameters(quotientGraph, 2, 2, 1); }
public void HexagonalSandwichTest() { SimpleGraph hexagon = SimpleGraphFactory.MakeSandwich(6); SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(hexagon); CheckParameters(quotientGraph, 2, 2, 1); }
public void TriangleSandwichTest() { SimpleGraph triangle = SimpleGraphFactory.MakeSandwich(3); SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(triangle); CheckParameters(quotientGraph, 2, 2, 1); }