getfem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Getfem-commits] (no subject)


From: Liang Jin Lim
Subject: [Getfem-commits] (no subject)
Date: Thu, 17 May 2018 11:40:54 -0400 (EDT)

branch: ignore_empty_integration_points
commit d5cebf00a9e3db80c66ab11b2249bc9ec11a859d
Author: lj <address@hidden>
Date:   Thu May 17 17:40:48 2018 +0200

    Use consistent type.
---
 src/getfem_integration.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/getfem_integration.cc b/src/getfem_integration.cc
index 6e4b8f6..32a4826 100644
--- a/src/getfem_integration.cc
+++ b/src/getfem_integration.cc
@@ -253,7 +253,7 @@ namespace getfem {
     GMM_ASSERT1(!valid, "Impossible to modify a valid integration method.");
     if (gmm::abs(w) > 1.0E-15 || include_empty) {
       ++f;
-      if (gmm::abs(w) <= 1.0E-15) w = 0.0;
+      if (gmm::abs(w) <= 1.0E-15) w = scalar_type(0);
       GMM_ASSERT1(f <= cvr->structure()->nb_faces(), "Wrong argument.");
       size_type i = pt_to_store[f].search_node(pt);
       if (i == size_type(-1)) {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]