Skip to content

Commit

Permalink
Scalar handlin error removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
halmaia committed Apr 16, 2024
1 parent 3a6f886 commit 190d95e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -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);



}
}
Expand Down

0 comments on commit 190d95e

Please sign in to comment.