Exemplo n.º 1
0
        public void SquareSandwichTest()
        {
            SimpleGraph         square        = SimpleGraphFactory.MakeSandwich(4);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(square);

            CheckParameters(quotientGraph, 2, 2, 1);
        }
Exemplo n.º 2
0
        public void HexagonalSandwichTest()
        {
            SimpleGraph         hexagon       = SimpleGraphFactory.MakeSandwich(6);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(hexagon);

            CheckParameters(quotientGraph, 2, 2, 1);
        }
Exemplo n.º 3
0
        public void TriangleSandwichTest()
        {
            SimpleGraph         triangle      = SimpleGraphFactory.MakeSandwich(3);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(triangle);

            CheckParameters(quotientGraph, 2, 2, 1);
        }