[cig-commits] r11563 - cs/benchmark/cigma/trunk/src

luis at geodynamics.org luis at geodynamics.org
Wed Mar 26 03:27:54 PDT 2008


Author: luis
Date: 2008-03-26 03:27:54 -0700 (Wed, 26 Mar 2008)
New Revision: 11563

Modified:
   cs/benchmark/cigma/trunk/src/Locator.cpp
   cs/benchmark/cigma/trunk/src/Locator.h
Log:
Updated Locator.{h,cpp}


Modified: cs/benchmark/cigma/trunk/src/Locator.cpp
===================================================================
--- cs/benchmark/cigma/trunk/src/Locator.cpp	2008-03-26 10:27:53 UTC (rev 11562)
+++ cs/benchmark/cigma/trunk/src/Locator.cpp	2008-03-26 10:27:54 UTC (rev 11563)
@@ -3,7 +3,7 @@
 
 cigma::Locator::Locator()
 {
-    nsd = 0;
+    ndim = 0;
 }
 
 

Modified: cs/benchmark/cigma/trunk/src/Locator.h
===================================================================
--- cs/benchmark/cigma/trunk/src/Locator.h	2008-03-26 10:27:53 UTC (rev 11562)
+++ cs/benchmark/cigma/trunk/src/Locator.h	2008-03-26 10:27:54 UTC (rev 11563)
@@ -22,14 +22,14 @@
     virtual void initialize(Points *points) = 0;
 
 public:
-    virtual void search(double *globalPoint) = 0;
+    virtual void search(double *point) = 0;
 
 public:
     virtual int n_idx() = 0;
     virtual int idx(int i) = 0;
 
 public:
-    int nsd;    // spatial dimensions
+    int ndim;   // dimensions of point
 };
 
 



More information about the cig-commits mailing list