[cig-commits] commit: Fix a mixed up order of arguments bug when calling quad_offset_interpolate

Mercurial hg at geodynamics.org
Wed May 4 16:49:09 PDT 2011


changeset:   242:6d53f7477782
user:        Walter Landry <wlandry at caltech.edu>
date:        Wed May 04 16:47:21 2011 -0700
files:       src/V_Boundary_Refine/Update_V_2D.C
description:
Fix a mixed up order of arguments bug when calling quad_offset_interpolate


diff -r 5be19b3ab704 -r 6d53f7477782 src/V_Boundary_Refine/Update_V_2D.C
--- a/src/V_Boundary_Refine/Update_V_2D.C	Tue May 03 17:49:43 2011 -0700
+++ b/src/V_Boundary_Refine/Update_V_2D.C	Wed May 04 16:47:21 2011 -0700
@@ -69,7 +69,7 @@ void SAMRAI::geom::V_Boundary_Refine::Up
 
       double dv_fine_minus, dv_fine_plus;
 
-      quad_offset_interpolate(dv_plus,dv_minus,dv_center,
+      quad_offset_interpolate(dv_plus,dv_center,dv_minus,
                               dv_fine_plus,dv_fine_minus);
 
       hier::Index offset(ip_s*2);



More information about the CIG-COMMITS mailing list