static void Main(string[] args) { CubicAlgo csi = new CubicAlgo(googleMapsData); csi.getGSVector(); csi.Print(250); }
static void Main(string[] args) { Stopwatch sw = new Stopwatch(); CubicAlgo csi = new CubicAlgo(googleMapsData); sw.Start(); csi.getJacobianVector(); sw.Stop(); Console.Write(sw.Elapsed); }