namespace omp { public class DOPCalculator { public static void Main(string[] args) { Configurator conf = new(args); double[,] pdops = new double[conf.xsize, conf.ysize]; double min, max; Calculator.PDOPs(pdops, conf, out min, out max); Drawer.Draw(conf, pdops, min, max); } } }