From bb335268152785f718649b2ca04466592913acf5 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 13 Nov 2009 13:27:45 +0000
Subject: [PATCH] pp

---
 Solver/dofManager.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Solver/dofManager.h b/Solver/dofManager.h
index fd2d2fccb4..45802227b5 100644
--- a/Solver/dofManager.h
+++ b/Solver/dofManager.h
@@ -69,7 +69,9 @@ class DofAffineConstraint{
   typename dofTraits<T>::VecType shift;
 };
   
-// data=float, double, complex<double>, smallVec<double>, smallVec<complex<double> >...
+// A manager for degrees of freedoms, templated on the value of a dof
+// (what the functional returns): float, double, complex<double>,
+// fullVecor<double>, ...
 template <class T>
 class dofManager{
  private:
@@ -96,7 +98,7 @@ class dofManager{
     
   // linearSystems
   std::map<const std::string, linearSystem<dataMat>*> _linearSystems;
-  linearSystem<dataMat>* _current;
+  linearSystem<dataMat> *_current;
    
  public:
   dofManager(linearSystem<dataMat> *l) : _current(l) { _linearSystems["A"] = l; }
-- 
GitLab