From 8f4ea8fed300260635e5a8845e309433874af426 Mon Sep 17 00:00:00 2001
From: Nicolas Marsic <nicolas.marsic@gmail.com>
Date: Fri, 27 Jul 2012 14:56:17 +0000
Subject: [PATCH] Assembly debuging

---
 FunctionSpace/BasisTest.cpp   | 8 ++++----
 FunctionSpace/FunctionSpace.h | 4 +++-
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/FunctionSpace/BasisTest.cpp b/FunctionSpace/BasisTest.cpp
index 1080b78418..eafa8a83e8 100644
--- a/FunctionSpace/BasisTest.cpp
+++ b/FunctionSpace/BasisTest.cpp
@@ -15,8 +15,8 @@
 #include "PlotBasis.h"
 
 using namespace std;
-/*
-int main(int argc, char** argv){
+
+int test(int argc, char** argv){
   // Init Gmsh //
   GmshInitialize(argc, argv);
 
@@ -24,7 +24,7 @@ int main(int argc, char** argv){
   Mesh msh(argv[1]);
 
   // Plot Basis //
-  QuadEdgeBasis b(1);
+  HexEdgeBasis b(1);
   
   PlotBasis plot(msh.getGroup(2), b);
   plot.write("basis");
@@ -34,4 +34,4 @@ int main(int argc, char** argv){
   
   return 0;
 }
-*/
+
diff --git a/FunctionSpace/FunctionSpace.h b/FunctionSpace/FunctionSpace.h
index 50ba5165e8..df53bd51b2 100644
--- a/FunctionSpace/FunctionSpace.h
+++ b/FunctionSpace/FunctionSpace.h
@@ -11,7 +11,9 @@
     
     This class represents a Function Space
 
-    @todo Hybrid Mesh
+    @todo 
+    Hybrid Mesh@n
+    Put DofManager::dofFromElement here ??
 */
 
 class FunctionSpace{
-- 
GitLab