Esempio n. 1
0
        static void Main(string[] args)
        {
            CubicAlgo csi = new CubicAlgo(googleMapsData);

            csi.getGSVector();
            csi.Print(250);
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            Stopwatch sw  = new Stopwatch();
            CubicAlgo csi = new CubicAlgo(googleMapsData);

            sw.Start();
            csi.getJacobianVector();
            sw.Stop();
            Console.Write(sw.Elapsed);
        }