From f8ea14f1d9dd0b50e5e7abf900881679e2a63b78 Mon Sep 17 00:00:00 2001
From: Gauthier Becker <gauthierbecker@gmail.com>
Date: Wed, 13 Jul 2011 13:36:01 +0000
Subject: [PATCH] Change the computation of interface key creation to allow the
 use of more than 2 int

---
 Solver/dofManager.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Solver/dofManager.h b/Solver/dofManager.h
index d6fbe7a26f..9f85a86e9f 100644
--- a/Solver/dofManager.h
+++ b/Solver/dofManager.h
@@ -185,7 +185,7 @@ class dofManager{
   {
     if (fixed.find(key) != fixed.end()) return;
     if (constraints.find(key) != constraints.end()) return;
-    if (ghostByDof.find(key) != ghostByDof.end()) return; 
+    if (ghostByDof.find(key) != ghostByDof.end()) return;
 
     std::map<Dof, int> :: iterator it = unknown.find(key);
     if (it == unknown.end()) {
-- 
GitLab