public void BowtieaneQuotientGraphTest()
        {
            SimpleGraph bowtieane = SimpleGraphFactory.MakeBowtieane();
            //        Check3Regularity(bowtieane);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(bowtieane);

            //        Draw(quotientGraph);
            // TODO : FIXME
            CheckParameters(quotientGraph, 4, 5, 2);
        }
Example #2
0
        public void BowtieaneTest()
        {
            SimpleGraph bowtie = SimpleGraphFactory.MakeBowtieane();
            string      tmp    = new SimpleGraphSignature(bowtie).SignatureStringForVertex(6);

            Console.Out.WriteLine(tmp);
            Console.Out.WriteLine("----------------------------------------");
            string tmp2 = new SimpleGraphSignature(bowtie).SignatureStringForVertex(2);

            Console.Out.WriteLine(tmp2);
        }