From 190d95ec9b2640e22b1b4e9c57d5266ec23f3263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Halmai?= Date: Tue, 16 Apr 2024 19:36:14 +0200 Subject: [PATCH] Scalar handlin error removed. --- Program.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Program.cs b/Program.cs index 59a5b4d..7d228ce 100644 --- a/Program.cs +++ b/Program.cs @@ -1,14 +1,18 @@ namespace GeoSIMD { - internal class Program + internal static class Program { - - static void Main(string[] args) + static void Main() { double[] a = [double.NaN, 40, 0, 99, 1, 2, 3, 4, 7, 2, double.NaN, 40, 0, 99, 1, 2, 3, 4, 7, 2]; double[] b = new double[a.Length]; a.CopyTo(b, 0); - //GeoSIMD.WGS84_WebMercator(a); + + + + //GeoSIMD.WGS84_WebMercator(a); + + } }