diff --git a/AMDiS/Makefile.in b/AMDiS/Makefile.in
index e9c5bf1ac8d8fe42b6542b15014796a2e5651527..8c5e0ceeb6e625c76635fbf5c7584a48b5700555 100644
--- a/AMDiS/Makefile.in
+++ b/AMDiS/Makefile.in
@@ -140,6 +140,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
 PATH_SEPARATOR = @PATH_SEPARATOR@
 PETSC_DIR = @PETSC_DIR@
 RANLIB = @RANLIB@
+SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
@@ -416,7 +417,7 @@ distdir: $(DISTFILES)
 	      || exit 1; \
 	  fi; \
 	done
-	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
+	-find $(distdir) -type d ! -perm -755 -exec chmod a+rwx,go+rx {} \; -o \
 	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
 	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
 	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
diff --git a/AMDiS/Reinit/src/BoundaryElementDist.cc b/AMDiS/Reinit/src/BoundaryElementDist.cc
index b3a4addebf82cd7734db0e2f8e485af18424d6a5..719a5d1e4535c51504bc730032200e7957ce4918 100644
--- a/AMDiS/Reinit/src/BoundaryElementDist.cc
+++ b/AMDiS/Reinit/src/BoundaryElementDist.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "BoundaryElementDist.h"
 
 void 
diff --git a/AMDiS/Reinit/src/BoundaryElementDist.h b/AMDiS/Reinit/src/BoundaryElementDist.h
index f639392dd8bb9f67568e46ed5128321864f8f551..1ffa2d7b95c138b2a365a9ff6c0d7f2765a01fbf 100644
--- a/AMDiS/Reinit/src/BoundaryElementDist.h
+++ b/AMDiS/Reinit/src/BoundaryElementDist.h
@@ -1,3 +1,23 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
 #ifndef BOUNDARYELEMENTDIST_H
 #define BOUNDARYELEMENTDIST_H
 
diff --git a/AMDiS/Reinit/src/BoundaryElementEdgeDist.cc b/AMDiS/Reinit/src/BoundaryElementEdgeDist.cc
index 73d76a5d0a2161b4cf56160cf9c75e7489580c28..e3715ac9a1c8b26ef4da992007a4add04dbfcb0a 100644
--- a/AMDiS/Reinit/src/BoundaryElementEdgeDist.cc
+++ b/AMDiS/Reinit/src/BoundaryElementEdgeDist.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "BoundaryElementEdgeDist.h"
 
 int 
diff --git a/AMDiS/Reinit/src/BoundaryElementEdgeDist.h b/AMDiS/Reinit/src/BoundaryElementEdgeDist.h
index 3f6ccb2d0d0a4052350db4c21f3becfde22249a6..d5ae12740b2b0e5ad0a9c0bff55b3268499795aa 100644
--- a/AMDiS/Reinit/src/BoundaryElementEdgeDist.h
+++ b/AMDiS/Reinit/src/BoundaryElementEdgeDist.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef BOUNDARYELEMENTEDGEDIST_H
 #define BOUNDARYELEMENTEDGEDIST_H
 
diff --git a/AMDiS/Reinit/src/BoundaryElementLevelSetDist.cc b/AMDiS/Reinit/src/BoundaryElementLevelSetDist.cc
index 69ad306e878fe406e394b722d430206fb286cff7..454c0e1f7867d06a43c00897f83f1f2174b376d6 100644
--- a/AMDiS/Reinit/src/BoundaryElementLevelSetDist.cc
+++ b/AMDiS/Reinit/src/BoundaryElementLevelSetDist.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "BoundaryElementLevelSetDist.h"
 
 int 
diff --git a/AMDiS/Reinit/src/BoundaryElementLevelSetDist.h b/AMDiS/Reinit/src/BoundaryElementLevelSetDist.h
index f5f3f976990c1fec31ed190a47ee9cc7ae0547d1..4a957de6ae7ed939ab293b483d415eb7200e93a9 100644
--- a/AMDiS/Reinit/src/BoundaryElementLevelSetDist.h
+++ b/AMDiS/Reinit/src/BoundaryElementLevelSetDist.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef BOUNDARYELEMENTLEVELSETDIST_H
 #define BOUNDARYELEMENTLEVELSETDIST_H
 
diff --git a/AMDiS/Reinit/src/BoundaryElementNormalDist.cc b/AMDiS/Reinit/src/BoundaryElementNormalDist.cc
index c14f5b9313513ce744d2e7403faccac08e8460e3..6269c02bd579b1b04353761ce18911e7a47afd0f 100644
--- a/AMDiS/Reinit/src/BoundaryElementNormalDist.cc
+++ b/AMDiS/Reinit/src/BoundaryElementNormalDist.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "BoundaryElementNormalDist.h"
 
 int 
diff --git a/AMDiS/Reinit/src/BoundaryElementNormalDist.h b/AMDiS/Reinit/src/BoundaryElementNormalDist.h
index 5d82fd22a88c35af317c33c23b0e600b451fc011..416ad04a27bb09991be41b272e491782a09b4983 100644
--- a/AMDiS/Reinit/src/BoundaryElementNormalDist.h
+++ b/AMDiS/Reinit/src/BoundaryElementNormalDist.h
@@ -1,3 +1,23 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
 #ifndef BOUNDARYELEMENTNORMALDIST_H
 #define BOUNDARYELEMENTNORMALDIST_H
 
diff --git a/AMDiS/Reinit/src/BoundaryElementTopDist.cc b/AMDiS/Reinit/src/BoundaryElementTopDist.cc
index 367337fc1e006f768c91c9240f88e095915cb7b3..12f9aba843f7d444e5df775d55275dd765711247 100644
--- a/AMDiS/Reinit/src/BoundaryElementTopDist.cc
+++ b/AMDiS/Reinit/src/BoundaryElementTopDist.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "BoundaryElementTopDist.h"
 
 int 
diff --git a/AMDiS/Reinit/src/BoundaryElementTopDist.h b/AMDiS/Reinit/src/BoundaryElementTopDist.h
index 1724798f83c6bbd1ea8ae077c469f1429a72e6c5..f75370fb02550a2c780718eb34961d337587e1e2 100644
--- a/AMDiS/Reinit/src/BoundaryElementTopDist.h
+++ b/AMDiS/Reinit/src/BoundaryElementTopDist.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef BOUNDARYELEMENTTOPDIST_H
 #define BOUNDARYELEMENTTOPDIST_H
 
diff --git a/AMDiS/Reinit/src/ElementLevelSet.cc b/AMDiS/Reinit/src/ElementLevelSet.cc
index 5ef6b0763188c8aa2f55c83e9450419e869841f7..9c3e6cc707daf341ff10e94f68e5d4e4bfb8d52b 100644
--- a/AMDiS/Reinit/src/ElementLevelSet.cc
+++ b/AMDiS/Reinit/src/ElementLevelSet.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementLevelSet.h"
 #include "ElInfo.h"
 
diff --git a/AMDiS/Reinit/src/ElementLevelSet.h b/AMDiS/Reinit/src/ElementLevelSet.h
index 0b291c41f84f3441573f5f18de9f58d3e6b08b6c..3e8d8c27c0f22a0114f48f2d8a59fe4795b22277 100644
--- a/AMDiS/Reinit/src/ElementLevelSet.h
+++ b/AMDiS/Reinit/src/ElementLevelSet.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef AMDIS_ELEMENTLEVELSET_H
 #define AMDIS_ELEMENTLEVELSET_H
 
diff --git a/AMDiS/Reinit/src/ElementUpdate.h b/AMDiS/Reinit/src/ElementUpdate.h
index a62839d0ea75ac066e92ae766461e212332c0460..bdd9e07437e8f1291c4eff4052a46c39ddd94944 100644
--- a/AMDiS/Reinit/src/ElementUpdate.h
+++ b/AMDiS/Reinit/src/ElementUpdate.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef ELEMENTUPDATE_H
 #define ELEMENTUPDATE_H
 
diff --git a/AMDiS/Reinit/src/ElementUpdate_2d.cc b/AMDiS/Reinit/src/ElementUpdate_2d.cc
index 4d5584f4cc9026b9af95999b525f330a5e962d7e..b36962100a4ec2e780864073e0fe5dde0f5a2dd0 100644
--- a/AMDiS/Reinit/src/ElementUpdate_2d.cc
+++ b/AMDiS/Reinit/src/ElementUpdate_2d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementUpdate_2d.h"
 
 double ElementUpdate_2d::calcElementUpdate(const FixVec<WorldVector<double> *, VERTEX> &vert,
diff --git a/AMDiS/Reinit/src/ElementUpdate_2d.h b/AMDiS/Reinit/src/ElementUpdate_2d.h
index 4a85a3895e38f54b11b4234d25b5fa031870bace..8fe6f349ce62151cd94c7f157a6d6d60ba2842aa 100644
--- a/AMDiS/Reinit/src/ElementUpdate_2d.h
+++ b/AMDiS/Reinit/src/ElementUpdate_2d.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef ELEMENTUPDATE_2D_H
 #define ELEMENTUPDATE_2D_H
 
diff --git a/AMDiS/Reinit/src/ElementUpdate_3d.cc b/AMDiS/Reinit/src/ElementUpdate_3d.cc
index f21bef58740bb03657bec22ce45ae7074f884a21..aa13858230d2863d3bb42cbd27be0bce65a1fe7a 100644
--- a/AMDiS/Reinit/src/ElementUpdate_3d.cc
+++ b/AMDiS/Reinit/src/ElementUpdate_3d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementUpdate_3d.h"
 
 double 
diff --git a/AMDiS/Reinit/src/ElementUpdate_3d.h b/AMDiS/Reinit/src/ElementUpdate_3d.h
index c58f4dab20cba77de1101150b67bcb0cf176a222..0ee4396986f99ffa92bcebf3653d79315b8a6941 100644
--- a/AMDiS/Reinit/src/ElementUpdate_3d.h
+++ b/AMDiS/Reinit/src/ElementUpdate_3d.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef ELEMENTUPDATE_3D_H
 #define ELEMENTUPDATE_3D_H
 
diff --git a/AMDiS/Reinit/src/HL_SignedDist.cc b/AMDiS/Reinit/src/HL_SignedDist.cc
index 8bbd961a1b4dfb6a93a84c3936ee1843a230ace8..819980d0e31d2a297c652c425fa66dd815fc4f42 100644
--- a/AMDiS/Reinit/src/HL_SignedDist.cc
+++ b/AMDiS/Reinit/src/HL_SignedDist.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "HL_SignedDist.h"
 
 const Flag HL_SignedDist::VEL_EXT                = 0X01L;
diff --git a/AMDiS/Reinit/src/HL_SignedDist.h b/AMDiS/Reinit/src/HL_SignedDist.h
index f76380e647e82951f4f89bf2bf309921149d5bb0..9aa6c8ad283beb9864b3e569f0c8d2a971d65dd3 100644
--- a/AMDiS/Reinit/src/HL_SignedDist.h
+++ b/AMDiS/Reinit/src/HL_SignedDist.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef HL_SIGNEDDIST
 #define HL_SIGNEDDIST
 
diff --git a/AMDiS/Reinit/src/HL_SignedDistBornemann.h b/AMDiS/Reinit/src/HL_SignedDistBornemann.h
index 743095bc4f16dbddf4143bae5a987a750701923c..e72de5338a4494ff0f085b1b08baebbd83f55076 100644
--- a/AMDiS/Reinit/src/HL_SignedDistBornemann.h
+++ b/AMDiS/Reinit/src/HL_SignedDistBornemann.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef HL_SIGNEDDISTBORNEMANN
 #define HL_SIGNEDDISTBORNEMANN
 
diff --git a/AMDiS/Reinit/src/HL_SignedDistLevels.cc b/AMDiS/Reinit/src/HL_SignedDistLevels.cc
index b837ff662bcb305bf8e9d8d27c75287b67ff4606..09d53e6c80d49104d4a2c1c735f13b28d983e2ad 100644
--- a/AMDiS/Reinit/src/HL_SignedDistLevels.cc
+++ b/AMDiS/Reinit/src/HL_SignedDistLevels.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "HL_SignedDistLevels.h"
 
 #include "VelocityExtFromVelocityField.h"
diff --git a/AMDiS/Reinit/src/HL_SignedDistLevels.h b/AMDiS/Reinit/src/HL_SignedDistLevels.h
index 7c3e5fba3cd7ada81e62a7420c6c3ea1dc68a861..38eb9712fce4397bbb86854c80c46351c74b384c 100644
--- a/AMDiS/Reinit/src/HL_SignedDistLevels.h
+++ b/AMDiS/Reinit/src/HL_SignedDistLevels.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef HL_SIGNEDDISTLEVELS
 #define HL_SIGNEDDISTLEVELS
 
diff --git a/AMDiS/Reinit/src/HL_SignedDistTraverse.cc b/AMDiS/Reinit/src/HL_SignedDistTraverse.cc
index 5e1b3ff01f35c2f0ef96f46aa4917907a5d4b77d..3ece9b84763c4edcb57540457d74aa0d2869f5f7 100644
--- a/AMDiS/Reinit/src/HL_SignedDistTraverse.cc
+++ b/AMDiS/Reinit/src/HL_SignedDistTraverse.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "HL_SignedDistTraverse.h"
 #include "VelocityExtFromVelocityField.h"
 
diff --git a/AMDiS/Reinit/src/HL_SignedDistTraverse.h b/AMDiS/Reinit/src/HL_SignedDistTraverse.h
index 32e7b3f5f9717b1d68790d58d7f571d17985b04b..e6deb8dd5dda8d1f3accf4922dc129f81859c2cb 100644
--- a/AMDiS/Reinit/src/HL_SignedDistTraverse.h
+++ b/AMDiS/Reinit/src/HL_SignedDistTraverse.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef HL_SIGNEDDISTTRAVERSE
 #define HL_SIGNEDDISTTRAVERSE
 
diff --git a/AMDiS/Reinit/src/NormEps.cc b/AMDiS/Reinit/src/NormEps.cc
index 93adae672cbcccf4b93e96d5c044947024c336e7..fae6369d1120fc18e6089776c7f6ca174f41d2c2 100644
--- a/AMDiS/Reinit/src/NormEps.cc
+++ b/AMDiS/Reinit/src/NormEps.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "NormEps.h"
 
 double NormEps::eps = 0.0;
diff --git a/AMDiS/Reinit/src/NormEps.h b/AMDiS/Reinit/src/NormEps.h
index 27d6a3fc99ab0775e83ed51b55ac4568014ce962..cfbde947c368231de16cb5f7b366e156f0b6cf5b 100644
--- a/AMDiS/Reinit/src/NormEps.h
+++ b/AMDiS/Reinit/src/NormEps.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef NORMEPS_H
 #define NORMEPS_H
  
diff --git a/AMDiS/Reinit/src/VelocityExt.cc b/AMDiS/Reinit/src/VelocityExt.cc
index d7ca70b23fd9f4d00b7a2d46b88182c196401774..451e6921c04c20fb00589002d17dcc833a9cedbb 100644
--- a/AMDiS/Reinit/src/VelocityExt.cc
+++ b/AMDiS/Reinit/src/VelocityExt.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "VelocityExt.h"
 
 void 
diff --git a/AMDiS/Reinit/src/VelocityExt.h b/AMDiS/Reinit/src/VelocityExt.h
index 65debf8e4c678d51d12e01a561b4e9b1381044f1..1b73b5b8fd77b43b63e937532fe3d6ed790f3677 100644
--- a/AMDiS/Reinit/src/VelocityExt.h
+++ b/AMDiS/Reinit/src/VelocityExt.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef VELOCITYEXT_H
 #define VELOCITYEXT_H
 
diff --git a/AMDiS/Reinit/src/VelocityExtFromVelocityField.cc b/AMDiS/Reinit/src/VelocityExtFromVelocityField.cc
index d90c25b4fb01c421d4c969035eebd47fcf5020b4..c41bc4b935df3714784c52373f8ce94cfba6260a 100644
--- a/AMDiS/Reinit/src/VelocityExtFromVelocityField.cc
+++ b/AMDiS/Reinit/src/VelocityExtFromVelocityField.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "VelocityExtFromVelocityField.h"
 
 // double NormEps::eps = 0.0;
diff --git a/AMDiS/Reinit/src/VelocityExtFromVelocityField.h b/AMDiS/Reinit/src/VelocityExtFromVelocityField.h
index 4cea13e9b5676625af9afb63ffee2cd39e7a052c..f6b86c34830d82b77aabe1e8050636f5155179af 100644
--- a/AMDiS/Reinit/src/VelocityExtFromVelocityField.h
+++ b/AMDiS/Reinit/src/VelocityExtFromVelocityField.h
@@ -1,3 +1,24 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+
 #ifndef VELOCITYEXTFROMVELOCITYFIELD_H
 #define VELOCITYEXTFROMVELOCITYFIELD_H
 
diff --git a/AMDiS/aclocal.m4 b/AMDiS/aclocal.m4
index c6b83dae620f453eff109d72b180b3a18307599f..6cec4be818e153e5623e6e61d48999b94d619b09 100644
--- a/AMDiS/aclocal.m4
+++ b/AMDiS/aclocal.m4
@@ -1578,10 +1578,27 @@ linux*)
   # before this can be enabled.
   hardcode_into_libs=yes
 
+  # find out which ABI we are using
+  libsuff=
+  case "$host_cpu" in
+  x86_64*|s390x*|powerpc64*)
+    echo '[#]line __oline__ "configure"' > conftest.$ac_ext
+    if AC_TRY_EVAL(ac_compile); then
+      case `/usr/bin/file conftest.$ac_objext` in
+      *64-bit*)
+        libsuff=64
+        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
+        ;;
+      esac
+    fi
+    rm -rf conftest*
+    ;;
+  esac
+
   # Append ld.so.conf contents to the search path
   if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
+    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
   fi
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
@@ -4288,6 +4305,9 @@ CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
 # Is the compiler the GNU C compiler?
 with_gcc=$_LT_AC_TAGVAR(GCC, $1)
 
+gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
+gcc_ver=\`gcc -dumpversion\`
+
 # An ERE matcher.
 EGREP=$lt_EGREP
 
@@ -4421,11 +4441,11 @@ striplib=$lt_striplib
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
+predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
+postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -4437,7 +4457,7 @@ postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
+compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -4517,7 +4537,7 @@ variables_saved_for_relink="$variables_saved_for_relink"
 link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
@@ -6353,6 +6373,7 @@ do
     done
   done
 done
+IFS=$as_save_IFS
 lt_ac_max=0
 lt_ac_count=0
 # Add /usr/xpg4/bin/sed as it is typically found on Solaris
@@ -6385,6 +6406,7 @@ for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
 done
 ])
 SED=$lt_cv_path_SED
+AC_SUBST([SED])
 AC_MSG_RESULT([$SED])
 ])
 
diff --git a/AMDiS/bin/Makefile.in b/AMDiS/bin/Makefile.in
index 1cb3e3d56490d4de0abff355248e81abb96e85fd..87d3753824ae2d5a976ca84e9d59c1c3f60a4dd2 100644
--- a/AMDiS/bin/Makefile.in
+++ b/AMDiS/bin/Makefile.in
@@ -422,6 +422,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
 PATH_SEPARATOR = @PATH_SEPARATOR@
 PETSC_DIR = @PETSC_DIR@
 RANLIB = @RANLIB@
+SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
diff --git a/AMDiS/compositeFEM/src/CFE_Integration.cc b/AMDiS/compositeFEM/src/CFE_Integration.cc
index 011340c8496d738b7cd20eedadff8097ff9dac22..f9fc9a15efb3d69b41183de7cf5975ed9a78d731 100644
--- a/AMDiS/compositeFEM/src/CFE_Integration.cc
+++ b/AMDiS/compositeFEM/src/CFE_Integration.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "CFE_Integration.h"
 #include "Mesh.h"
 #include "SurfaceQuadrature.h"
diff --git a/AMDiS/compositeFEM/src/CFE_Integration.h b/AMDiS/compositeFEM/src/CFE_Integration.h
index 395954e53d7d970442f31dd8bd6ab153be832de8..8e8a4ade0c1f205a8d76c32e44b7309c204851e6 100644
--- a/AMDiS/compositeFEM/src/CFE_Integration.h
+++ b/AMDiS/compositeFEM/src/CFE_Integration.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CFE_Integration.h */
 
diff --git a/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.cc b/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.cc
index e37d00084d7ab9a4f8bb0701f1984d6f00bbc812..c49207e46418f62e143239be4edca944f6a818dc 100644
--- a/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.cc
+++ b/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <vector>
 #include "CFE_NormAndErrorFcts.h"
 #include "Mesh.h"
diff --git a/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h b/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h
index 4477c12b72bac6d227856fa3856bacc0b5e2cbea..561f646f986758cc61cfd9e9f1059f80c38ce57c 100644
--- a/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h
+++ b/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CFE_NormAndErrorFcts.h */
 
diff --git a/AMDiS/compositeFEM/src/CompositeFEMMethods.cc b/AMDiS/compositeFEM/src/CompositeFEMMethods.cc
index bcfe554b713f445f57c260da85623624bc82d6cb..227b2d83f08f97bd88af82f35fedcc84688e0eb7 100644
--- a/AMDiS/compositeFEM/src/CompositeFEMMethods.cc
+++ b/AMDiS/compositeFEM/src/CompositeFEMMethods.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "BasisFunction.h"
 #include "DOFAdmin.h"
 #include "Element.h"
diff --git a/AMDiS/compositeFEM/src/CompositeFEMMethods.h b/AMDiS/compositeFEM/src/CompositeFEMMethods.h
index da2a81fad4a811697a2983fe0be48062194265ba..1fa4e49ba33fb41b8b69971dffcb40fd87a70616 100644
--- a/AMDiS/compositeFEM/src/CompositeFEMMethods.h
+++ b/AMDiS/compositeFEM/src/CompositeFEMMethods.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CompositeFEMMethods.h */
 
diff --git a/AMDiS/compositeFEM/src/CompositeFEMOperator.cc b/AMDiS/compositeFEM/src/CompositeFEMOperator.cc
index a3b262989aceffa640186e3cd7b7d9aa5d88138a..ce4b67c5a36b381499ee81f62c189cf786fe8dec 100644
--- a/AMDiS/compositeFEM/src/CompositeFEMOperator.cc
+++ b/AMDiS/compositeFEM/src/CompositeFEMOperator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <boost/numeric/mtl/mtl.hpp>
 #include "CompositeFEMOperator.h"
 #include "OpenMP.h"
diff --git a/AMDiS/compositeFEM/src/CompositeFEMOperator.h b/AMDiS/compositeFEM/src/CompositeFEMOperator.h
index c43f0b28bdc5b29a2ffd48bc505ec56c47fcf954..b7346873487b10b868bfa43fd303ec4c817f0e37 100644
--- a/AMDiS/compositeFEM/src/CompositeFEMOperator.h
+++ b/AMDiS/compositeFEM/src/CompositeFEMOperator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CompositeFEMOperator.h */
 
diff --git a/AMDiS/compositeFEM/src/ElementLevelSet.cc b/AMDiS/compositeFEM/src/ElementLevelSet.cc
index b42b1b2f3b2e087c647e1e15b1c6fd1e815d2ba1..580b7c8fd1df49483f6b608058b77be41544d8a4 100644
--- a/AMDiS/compositeFEM/src/ElementLevelSet.cc
+++ b/AMDiS/compositeFEM/src/ElementLevelSet.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementLevelSet.h"
 #include "ElInfo.h"
 
diff --git a/AMDiS/compositeFEM/src/ElementLevelSet.h b/AMDiS/compositeFEM/src/ElementLevelSet.h
index 236c41ac66df284b165a8a0b9622fca50ba23c5c..16656bc41546de2392e2fe041758af077f884776 100644
--- a/AMDiS/compositeFEM/src/ElementLevelSet.h
+++ b/AMDiS/compositeFEM/src/ElementLevelSet.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementLevelSet.h */
 
diff --git a/AMDiS/compositeFEM/src/LevelSetAdaptMesh.cc b/AMDiS/compositeFEM/src/LevelSetAdaptMesh.cc
index e3a341a03bff4aac01e06cbc09c4f5d02a756dbe..fe8162a37a79b7d29bfe85d245c95a836b72137f 100644
--- a/AMDiS/compositeFEM/src/LevelSetAdaptMesh.cc
+++ b/AMDiS/compositeFEM/src/LevelSetAdaptMesh.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Traverse.h"
 
 #include "ElementLevelSet.h"
diff --git a/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h b/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h
index bdfbe6ade80f7f7aa450d95d51ac9e3f95e54eb3..5d1c5d199a092914d271225a42be28c4f3b807e8 100644
--- a/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h
+++ b/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file LevelSetAdaptMesh.h */
 
diff --git a/AMDiS/compositeFEM/src/PenaltyOperator.cc b/AMDiS/compositeFEM/src/PenaltyOperator.cc
index ff22effb51ff0751077a400f021bf9a315602c6f..ceb6413d7081989fce3d6f8d6e8781312ad56535 100644
--- a/AMDiS/compositeFEM/src/PenaltyOperator.cc
+++ b/AMDiS/compositeFEM/src/PenaltyOperator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "PenaltyOperator.h"
 #include "SurfaceOperator.h"
 
diff --git a/AMDiS/compositeFEM/src/PenaltyOperator.h b/AMDiS/compositeFEM/src/PenaltyOperator.h
index 25b7b835e2be002eec5fc16f556f2b52f77ad2be..79b88c4a3abac9830f88b5455ac098915ef523aa 100644
--- a/AMDiS/compositeFEM/src/PenaltyOperator.h
+++ b/AMDiS/compositeFEM/src/PenaltyOperator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PenaltyOperator.h */
 
diff --git a/AMDiS/compositeFEM/src/SubElementAssembler.cc b/AMDiS/compositeFEM/src/SubElementAssembler.cc
index 89a92d2f628d28c3a3cb06607522a082d3133cd0..a42289c9772f21719a19639dde897a69a8c2d90a 100644
--- a/AMDiS/compositeFEM/src/SubElementAssembler.cc
+++ b/AMDiS/compositeFEM/src/SubElementAssembler.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <vector>
 #include <boost/numeric/mtl/mtl.hpp>
 #include "SubElementAssembler.h"
diff --git a/AMDiS/compositeFEM/src/SubElementAssembler.h b/AMDiS/compositeFEM/src/SubElementAssembler.h
index 5a649d9d79d7fded1d1112b73d0ef91d8013d375..d46c30b9a9e695f830211b13bc47257339fc3bd1 100644
--- a/AMDiS/compositeFEM/src/SubElementAssembler.h
+++ b/AMDiS/compositeFEM/src/SubElementAssembler.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SubElementAssembler.h */
 
diff --git a/AMDiS/compositeFEM/src/SubPolytope.cc b/AMDiS/compositeFEM/src/SubPolytope.cc
index 388d89010751d294e8792ad1783ecba6b053260f..0d41130c70b64bd1cb902bfa20f32a4356d716bd 100644
--- a/AMDiS/compositeFEM/src/SubPolytope.cc
+++ b/AMDiS/compositeFEM/src/SubPolytope.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElInfo.h"
 #include "FixVec.h"
 #include "SubElInfo.h"
diff --git a/AMDiS/compositeFEM/src/SubPolytope.h b/AMDiS/compositeFEM/src/SubPolytope.h
index 271055bbe4c4fcc7e0e5adfad053b3ebad71961e..014143f53343b288b096a5c5989eb20febcd243d 100644
--- a/AMDiS/compositeFEM/src/SubPolytope.h
+++ b/AMDiS/compositeFEM/src/SubPolytope.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SubPolytope.h */
 
diff --git a/AMDiS/compositeFEM/src/TranslateLsFct.h b/AMDiS/compositeFEM/src/TranslateLsFct.h
index 6bc8b3050814c2bd67516169f80aa141dd578f91..ea0336b43142d42b5ff1a31ae1fc5aac7a768281 100644
--- a/AMDiS/compositeFEM/src/TranslateLsFct.h
+++ b/AMDiS/compositeFEM/src/TranslateLsFct.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file TranslateLsFct.h */
 
diff --git a/AMDiS/compositeFEM/src/compositeFEM.h b/AMDiS/compositeFEM/src/compositeFEM.h
index fcac485f34528a389527b49f47c422dbf0073872..26540ffb114635e014dbbd112fca0d97c4d71a79 100644
--- a/AMDiS/compositeFEM/src/compositeFEM.h
+++ b/AMDiS/compositeFEM/src/compositeFEM.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file compositeFEM.h */
 
diff --git a/AMDiS/configure b/AMDiS/configure
index c6071d46c070984269d53ca1ff68f61ec41bb219..8b1a4c6a63a012446290af63489b01c6594d7f05 100755
--- a/AMDiS/configure
+++ b/AMDiS/configure
@@ -462,7 +462,7 @@ ac_includes_default="\
 # include <unistd.h>
 #endif"
 
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT AMDIS_DEBUG_TRUE AMDIS_DEBUG_FALSE CXX CC AMDIS_INTEL_TRUE AMDIS_INTEL_FALSE AMDIS_OPENMP_TRUE AMDIS_OPENMP_FALSE OPENMP_FLAG MPI_DIR PETSC_DIR USE_PARALLEL_AMDIS_TRUE USE_PARALLEL_AMDIS_FALSE USE_PARALLEL_DOMAIN_AMDIS_TRUE USE_PARALLEL_DOMAIN_AMDIS_FALSE ENABLE_UMFPACK_TRUE ENABLE_UMFPACK_FALSE ENABLE_MKL_TRUE ENABLE_MKL_FALSE DUNE_DIR ENABLE_DUNE_TRUE ENABLE_DUNE_FALSE ENABLE_BOOST_TRUE ENABLE_BOOST_FALSE CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LIBOBJS LTLIBOBJS'
+ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT AMDIS_DEBUG_TRUE AMDIS_DEBUG_FALSE CXX CC AMDIS_INTEL_TRUE AMDIS_INTEL_FALSE AMDIS_OPENMP_TRUE AMDIS_OPENMP_FALSE OPENMP_FLAG MPI_DIR PETSC_DIR USE_PARALLEL_AMDIS_TRUE USE_PARALLEL_AMDIS_FALSE USE_PARALLEL_DOMAIN_AMDIS_TRUE USE_PARALLEL_DOMAIN_AMDIS_FALSE ENABLE_UMFPACK_TRUE ENABLE_UMFPACK_FALSE ENABLE_MKL_TRUE ENABLE_MKL_FALSE DUNE_DIR ENABLE_DUNE_TRUE ENABLE_DUNE_FALSE ENABLE_BOOST_TRUE ENABLE_BOOST_FALSE CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os SED EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LIBOBJS LTLIBOBJS'
 ac_subst_files=''
 
 # Initialize some variables set by options.
@@ -3967,6 +3967,7 @@ do
     done
   done
 done
+IFS=$as_save_IFS
 lt_ac_max=0
 lt_ac_count=0
 # Add /usr/xpg4/bin/sed as it is typically found on Solaris
@@ -4001,6 +4002,7 @@ done
 fi
 
 SED=$lt_cv_path_SED
+
 echo "$as_me:$LINENO: result: $SED" >&5
 echo "${ECHO_T}$SED" >&6
 
@@ -4441,7 +4443,7 @@ ia64-*-hpux*)
   ;;
 *-*-irix6*)
   # Find out which ABI we are using.
-  echo '#line 4444 "configure"' > conftest.$ac_ext
+  echo '#line 4446 "configure"' > conftest.$ac_ext
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
@@ -5576,7 +5578,7 @@ fi
 
 
 # Provide some information about the compiler.
-echo "$as_me:5579:" \
+echo "$as_me:5581:" \
      "checking for Fortran 77 compiler version" >&5
 ac_compiler=`set X $ac_compile; echo $2`
 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
@@ -6639,11 +6641,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:6642: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:6644: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:6646: \$? = $ac_status" >&5
+   echo "$as_me:6648: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -6907,11 +6909,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:6910: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:6912: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:6914: \$? = $ac_status" >&5
+   echo "$as_me:6916: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -7011,11 +7013,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:7014: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:7016: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:7018: \$? = $ac_status" >&5
+   echo "$as_me:7020: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -8476,10 +8478,31 @@ linux*)
   # before this can be enabled.
   hardcode_into_libs=yes
 
+  # find out which ABI we are using
+  libsuff=
+  case "$host_cpu" in
+  x86_64*|s390x*|powerpc64*)
+    echo '#line 8485 "configure"' > conftest.$ac_ext
+    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; then
+      case `/usr/bin/file conftest.$ac_objext` in
+      *64-bit*)
+        libsuff=64
+        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
+        ;;
+      esac
+    fi
+    rm -rf conftest*
+    ;;
+  esac
+
   # Append ld.so.conf contents to the search path
   if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
+    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
   fi
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
@@ -9356,7 +9379,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<EOF
-#line 9359 "configure"
+#line 9382 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -9456,7 +9479,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<EOF
-#line 9459 "configure"
+#line 9482 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -9787,6 +9810,9 @@ CC=$lt_compiler
 # Is the compiler the GNU C compiler?
 with_gcc=$GCC
 
+gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
+gcc_ver=\`gcc -dumpversion\`
+
 # An ERE matcher.
 EGREP=$lt_EGREP
 
@@ -9920,11 +9946,11 @@ striplib=$lt_striplib
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=$lt_predep_objects
+predep_objects=\`echo $lt_predep_objects | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=$lt_postdep_objects
+postdep_objects=\`echo $lt_postdep_objects | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -9936,7 +9962,7 @@ postdeps=$lt_postdeps
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path
+compiler_lib_search_path=\`echo $lt_compiler_lib_search_path | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -10016,7 +10042,7 @@ variables_saved_for_relink="$variables_saved_for_relink"
 link_all_deplibs=$link_all_deplibs
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
@@ -11796,11 +11822,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:11799: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:11825: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:11803: \$? = $ac_status" >&5
+   echo "$as_me:11829: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -11900,11 +11926,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:11903: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:11929: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:11907: \$? = $ac_status" >&5
+   echo "$as_me:11933: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -12432,10 +12458,31 @@ linux*)
   # before this can be enabled.
   hardcode_into_libs=yes
 
+  # find out which ABI we are using
+  libsuff=
+  case "$host_cpu" in
+  x86_64*|s390x*|powerpc64*)
+    echo '#line 12465 "configure"' > conftest.$ac_ext
+    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; then
+      case `/usr/bin/file conftest.$ac_objext` in
+      *64-bit*)
+        libsuff=64
+        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
+        ;;
+      esac
+    fi
+    rm -rf conftest*
+    ;;
+  esac
+
   # Append ld.so.conf contents to the search path
   if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
+    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
   fi
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
@@ -12819,6 +12866,9 @@ CC=$lt_compiler_CXX
 # Is the compiler the GNU C compiler?
 with_gcc=$GCC_CXX
 
+gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
+gcc_ver=\`gcc -dumpversion\`
+
 # An ERE matcher.
 EGREP=$lt_EGREP
 
@@ -12952,11 +13002,11 @@ striplib=$lt_striplib
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=$lt_predep_objects_CXX
+predep_objects=\`echo $lt_predep_objects_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=$lt_postdep_objects_CXX
+postdep_objects=\`echo $lt_postdep_objects_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -12968,7 +13018,7 @@ postdeps=$lt_postdeps_CXX
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
+compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_CXX | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -13048,7 +13098,7 @@ variables_saved_for_relink="$variables_saved_for_relink"
 link_all_deplibs=$link_all_deplibs_CXX
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
@@ -13470,11 +13520,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:13473: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:13523: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:13477: \$? = $ac_status" >&5
+   echo "$as_me:13527: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -13574,11 +13624,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:13577: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:13627: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:13581: \$? = $ac_status" >&5
+   echo "$as_me:13631: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -15019,10 +15069,31 @@ linux*)
   # before this can be enabled.
   hardcode_into_libs=yes
 
+  # find out which ABI we are using
+  libsuff=
+  case "$host_cpu" in
+  x86_64*|s390x*|powerpc64*)
+    echo '#line 15076 "configure"' > conftest.$ac_ext
+    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; then
+      case `/usr/bin/file conftest.$ac_objext` in
+      *64-bit*)
+        libsuff=64
+        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
+        ;;
+      esac
+    fi
+    rm -rf conftest*
+    ;;
+  esac
+
   # Append ld.so.conf contents to the search path
   if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
+    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
   fi
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
@@ -15406,6 +15477,9 @@ CC=$lt_compiler_F77
 # Is the compiler the GNU C compiler?
 with_gcc=$GCC_F77
 
+gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
+gcc_ver=\`gcc -dumpversion\`
+
 # An ERE matcher.
 EGREP=$lt_EGREP
 
@@ -15539,11 +15613,11 @@ striplib=$lt_striplib
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=$lt_predep_objects_F77
+predep_objects=\`echo $lt_predep_objects_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=$lt_postdep_objects_F77
+postdep_objects=\`echo $lt_postdep_objects_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -15555,7 +15629,7 @@ postdeps=$lt_postdeps_F77
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path_F77
+compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_F77 | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -15635,7 +15709,7 @@ variables_saved_for_relink="$variables_saved_for_relink"
 link_all_deplibs=$link_all_deplibs_F77
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
@@ -15777,11 +15851,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:15780: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:15854: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:15784: \$? = $ac_status" >&5
+   echo "$as_me:15858: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -16045,11 +16119,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:16048: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:16122: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>conftest.err)
    ac_status=$?
    cat conftest.err >&5
-   echo "$as_me:16052: \$? = $ac_status" >&5
+   echo "$as_me:16126: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s "$ac_outfile"; then
      # The compiler can only warn and ignore the option if not recognized
      # So say no if there are warnings other than the usual output.
@@ -16149,11 +16223,11 @@ else
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:16152: $lt_compile\"" >&5)
+   (eval echo "\"\$as_me:16226: $lt_compile\"" >&5)
    (eval "$lt_compile" 2>out/conftest.err)
    ac_status=$?
    cat out/conftest.err >&5
-   echo "$as_me:16156: \$? = $ac_status" >&5
+   echo "$as_me:16230: \$? = $ac_status" >&5
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
    then
      # The compiler can only warn and ignore the option if not recognized
@@ -17614,10 +17688,31 @@ linux*)
   # before this can be enabled.
   hardcode_into_libs=yes
 
+  # find out which ABI we are using
+  libsuff=
+  case "$host_cpu" in
+  x86_64*|s390x*|powerpc64*)
+    echo '#line 17695 "configure"' > conftest.$ac_ext
+    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+  (eval $ac_compile) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; then
+      case `/usr/bin/file conftest.$ac_objext` in
+      *64-bit*)
+        libsuff=64
+        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
+        ;;
+      esac
+    fi
+    rm -rf conftest*
+    ;;
+  esac
+
   # Append ld.so.conf contents to the search path
   if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
+    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
   fi
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
@@ -18001,6 +18096,9 @@ CC=$lt_compiler_GCJ
 # Is the compiler the GNU C compiler?
 with_gcc=$GCC_GCJ
 
+gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
+gcc_ver=\`gcc -dumpversion\`
+
 # An ERE matcher.
 EGREP=$lt_EGREP
 
@@ -18134,11 +18232,11 @@ striplib=$lt_striplib
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=$lt_predep_objects_GCJ
+predep_objects=\`echo $lt_predep_objects_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=$lt_postdep_objects_GCJ
+postdep_objects=\`echo $lt_postdep_objects_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -18150,7 +18248,7 @@ postdeps=$lt_postdeps_GCJ
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ
+compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_GCJ | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -18230,7 +18328,7 @@ variables_saved_for_relink="$variables_saved_for_relink"
 link_all_deplibs=$link_all_deplibs_GCJ
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
@@ -18482,6 +18580,9 @@ CC=$lt_compiler_RC
 # Is the compiler the GNU C compiler?
 with_gcc=$GCC_RC
 
+gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
+gcc_ver=\`gcc -dumpversion\`
+
 # An ERE matcher.
 EGREP=$lt_EGREP
 
@@ -18615,11 +18716,11 @@ striplib=$lt_striplib
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=$lt_predep_objects_RC
+predep_objects=\`echo $lt_predep_objects_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=$lt_postdep_objects_RC
+postdep_objects=\`echo $lt_postdep_objects_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -18631,7 +18732,7 @@ postdeps=$lt_postdeps_RC
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path_RC
+compiler_lib_search_path=\`echo $lt_compiler_lib_search_path_RC | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -18711,7 +18812,7 @@ variables_saved_for_relink="$variables_saved_for_relink"
 link_all_deplibs=$link_all_deplibs_RC
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
@@ -19635,6 +19736,7 @@ s,@host@,$host,;t t
 s,@host_cpu@,$host_cpu,;t t
 s,@host_vendor@,$host_vendor,;t t
 s,@host_os@,$host_os,;t t
+s,@SED@,$SED,;t t
 s,@EGREP@,$EGREP,;t t
 s,@LN_S@,$LN_S,;t t
 s,@ECHO@,$ECHO,;t t
diff --git a/AMDiS/libtool b/AMDiS/libtool
index 95d2fe8903c9787ee9c06e44082aec7d871eaa1b..b2a4d8db3d71e3d759ecd35ce85adc086a048cff 100755
--- a/AMDiS/libtool
+++ b/AMDiS/libtool
@@ -30,10 +30,10 @@
 # the same distribution terms that you use for the rest of that program.
 
 # A sed program that does not truncate output.
-SED="/usr/bin/sed"
+SED="/bin/sed"
 
 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
-Xsed="/usr/bin/sed -e 1s/^X//"
+Xsed="/bin/sed -e 1s/^X//"
 
 # The HP-UX ksh and POSIX shell print the target directory to stdout
 # if CDPATH is set.
@@ -44,7 +44,7 @@ available_tags=" CXX F77"
 
 # ### BEGIN LIBTOOL CONFIG
 
-# Libtool was configured on host deimos101:
+# Libtool was configured on host NWRW15:
 
 # Shell to use when invoking shell scripts.
 SHELL="/bin/sh"
@@ -66,12 +66,12 @@ fast_install=yes
 
 # The host system.
 host_alias=
-host=x86_64-unknown-linux-gnu
+host=i686-pc-linux-gnu
 host_os=linux-gnu
 
 # The build system.
 build_alias=
-build=x86_64-unknown-linux-gnu
+build=i686-pc-linux-gnu
 build_os=linux-gnu
 
 # An echo program that does not interpret backslashes.
@@ -82,22 +82,25 @@ AR="ar"
 AR_FLAGS="cru"
 
 # A C compiler.
-LTCC="/licsoft/libraries/openmpi/1.2.6/64bit/bin/mpicc"
+LTCC="gcc"
 
 # LTCC compiler flags.
 LTCFLAGS="-g -O2"
 
 # A language-specific compiler.
-CC="/licsoft/libraries/openmpi/1.2.6/64bit/bin/mpicc"
+CC="gcc"
 
 # Is the compiler the GNU C compiler?
 with_gcc=yes
 
+gcc_dir=`gcc -print-file-name=. | /bin/sed 's,/\.$,,'`
+gcc_ver=`gcc -dumpversion`
+
 # An ERE matcher.
 EGREP="grep -E"
 
 # The linker used to build libraries.
-LD="/usr/x86_64-suse-linux/bin/ld -m elf_x86_64"
+LD="/usr/bin/ld"
 
 # Whether we need hard or soft links.
 LN_S="ln -s"
@@ -171,7 +174,7 @@ dlopen_self=unknown
 dlopen_self_static=unknown
 
 # Compiler flag to prevent dynamic linking.
-link_static_flag=""
+link_static_flag="-static"
 
 # Compiler flag to turn off builtin functions.
 no_builtin_flag=" -fno-builtin"
@@ -229,11 +232,11 @@ striplib="strip --strip-unneeded"
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=""
+predep_objects=`echo "" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=""
+postdep_objects=`echo "" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -245,7 +248,7 @@ postdeps=""
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=""
+compiler_lib_search_path=`echo "" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method="pass_all"
@@ -325,10 +328,10 @@ variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COM
 link_all_deplibs=unknown
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=" /fastfs/wir/local/lib/x86_64-suse-linux/4.1.2/ /fastfs/wir/local/lib/../lib64/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/ /usr/lib/gcc/x86_64-suse-linux/4.1.2/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib/x86_64-suse-linux/4.1.2/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib/../lib64/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../x86_64-suse-linux/4.1.2/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../lib64/ /lib/x86_64-suse-linux/4.1.2/ /lib/../lib64/ /usr/lib/x86_64-suse-linux/4.1.2/ /usr/lib/../lib64/ /fastfs/wir/local/lib/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../ /lib/ /usr/lib/"
+sys_lib_search_path_spec=`echo " /u/witkowski/local/lib/i386-redhat-linux/4.1.2/ /u/witkowski/local/lib/ /u/witkowski/local/intel/mkl/10.0.1.014/lib/32/i386-redhat-linux/4.1.2/ /u/witkowski/local/intel/mkl/10.0.1.014/lib/32/ /usr/lib/gcc/i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../i386-redhat-linux/lib/i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../i386-redhat-linux/lib/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../ /lib/i386-redhat-linux/4.1.2/ /lib/ /usr/lib/i386-redhat-linux/4.1.2/ /usr/lib/" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Run-time system search path for libraries
-sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib64/Xaw3d /usr/X11R6/lib64 /usr/X11R6/lib/Xaw3d /usr/X11R6/lib /usr/x86_64-suse-linux/lib /usr/local/lib64 /usr/local/lib /opt/kde3/lib64 /opt/kde3/lib /opt/gnome/lib64 /opt/gnome/lib /lib64 /lib /usr/lib64 /usr/lib /opt/cluster/intel/cce/9.1.042/lib /opt/cluster/intel/fce/9.1.036/lib /opt/cluster/Pathscale3.0/lib/2.9.99 /opt/cluster/Pathscale3.0/lib/2.9.99/32 /work/licsoft/compilers/pgi/linux86-64/6.2/lib /work/licsoft/compilers/pgi/linux86-64/6.2/libso "
+sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/lib/mysql /usr/lib/octave-2.9.9 /usr/lib/qt-3.3/lib /usr/lib/qt4/lib /usr/lib/xulrunner-1.9.2 "
 
 # Fix the shell variable $srcfile for the compiler.
 fix_srcfile_path=""
@@ -6760,7 +6763,7 @@ build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
 # End:
 # ### BEGIN LIBTOOL TAG CONFIG: CXX
 
-# Libtool was configured on host deimos101:
+# Libtool was configured on host NWRW15:
 
 # Shell to use when invoking shell scripts.
 SHELL="/bin/sh"
@@ -6782,12 +6785,12 @@ fast_install=yes
 
 # The host system.
 host_alias=
-host=x86_64-unknown-linux-gnu
+host=i686-pc-linux-gnu
 host_os=linux-gnu
 
 # The build system.
 build_alias=
-build=x86_64-unknown-linux-gnu
+build=i686-pc-linux-gnu
 build_os=linux-gnu
 
 # An echo program that does not interpret backslashes.
@@ -6798,22 +6801,25 @@ AR="ar"
 AR_FLAGS="cru"
 
 # A C compiler.
-LTCC="/licsoft/libraries/openmpi/1.2.6/64bit/bin/mpicc"
+LTCC="gcc"
 
 # LTCC compiler flags.
 LTCFLAGS="-g -O2"
 
 # A language-specific compiler.
-CC="/licsoft/libraries/openmpi/1.2.6/64bit/bin/mpicxx"
+CC="g++"
 
 # Is the compiler the GNU C compiler?
 with_gcc=yes
 
+gcc_dir=`gcc -print-file-name=. | /bin/sed 's,/\.$,,'`
+gcc_ver=`gcc -dumpversion`
+
 # An ERE matcher.
 EGREP="grep -E"
 
 # The linker used to build libraries.
-LD="/usr/x86_64-suse-linux/bin/ld -m elf_x86_64"
+LD="/usr/bin/ld"
 
 # Whether we need hard or soft links.
 LN_S="ln -s"
@@ -6887,7 +6893,7 @@ dlopen_self=unknown
 dlopen_self_static=unknown
 
 # Compiler flag to prevent dynamic linking.
-link_static_flag=""
+link_static_flag="-static"
 
 # Compiler flag to turn off builtin functions.
 no_builtin_flag=" -fno-builtin"
@@ -6942,11 +6948,11 @@ striplib="strip --strip-unneeded"
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects="/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-suse-linux/4.1.2/crtbeginS.o"
+predep_objects=`echo "/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crti.o /usr/lib/gcc/i386-redhat-linux/4.1.2/crtbeginS.o" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects="/usr/lib64/gcc/x86_64-suse-linux/4.1.2/crtendS.o /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../lib64/crtn.o"
+postdep_objects=`echo "/usr/lib/gcc/i386-redhat-linux/4.1.2/crtendS.o /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crtn.o" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -6954,11 +6960,11 @@ predeps=""
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdeps="-lmpi_cxx -lmpi -lopen-rte -lopen-pal -libverbs -lrt -lnuma -ldl -lnsl -lutil -ldl -lstdc++ -lm -lgcc_s -lpthread -lc -lgcc_s"
+postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s"
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path="-L/usr/lib64 -L/licsoft/libraries/openmpi/1.2.6/64bit/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.1.2 -L/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/fastfs/wir/local/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../.."
+compiler_lib_search_path=`echo "-L/u/witkowski/local/lib -L/u/witkowski/local/intel/mkl/10.0.1.014/lib/32 -L/usr/lib/gcc/i386-redhat-linux/4.1.2 -L/usr/lib/gcc/i386-redhat-linux/4.1.2 -L/usr/lib/gcc/i386-redhat-linux/4.1.2/../../.." | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method="pass_all"
@@ -7038,10 +7044,10 @@ variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COM
 link_all_deplibs=unknown
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=" /fastfs/wir/local/lib/x86_64-suse-linux/4.1.2/ /fastfs/wir/local/lib/../lib64/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/ /usr/lib/gcc/x86_64-suse-linux/4.1.2/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib/x86_64-suse-linux/4.1.2/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib/../lib64/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../x86_64-suse-linux/4.1.2/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../lib64/ /lib/x86_64-suse-linux/4.1.2/ /lib/../lib64/ /usr/lib/x86_64-suse-linux/4.1.2/ /usr/lib/../lib64/ /fastfs/wir/local/lib/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/lib/ /usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../ /lib/ /usr/lib/"
+sys_lib_search_path_spec=`echo " /u/witkowski/local/lib/i386-redhat-linux/4.1.2/ /u/witkowski/local/lib/ /u/witkowski/local/intel/mkl/10.0.1.014/lib/32/i386-redhat-linux/4.1.2/ /u/witkowski/local/intel/mkl/10.0.1.014/lib/32/ /usr/lib/gcc/i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../i386-redhat-linux/lib/i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../i386-redhat-linux/lib/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../i386-redhat-linux/4.1.2/ /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../ /lib/i386-redhat-linux/4.1.2/ /lib/ /usr/lib/i386-redhat-linux/4.1.2/ /usr/lib/" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Run-time system search path for libraries
-sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib64/Xaw3d /usr/X11R6/lib64 /usr/X11R6/lib/Xaw3d /usr/X11R6/lib /usr/x86_64-suse-linux/lib /usr/local/lib64 /usr/local/lib /opt/kde3/lib64 /opt/kde3/lib /opt/gnome/lib64 /opt/gnome/lib /lib64 /lib /usr/lib64 /usr/lib /opt/cluster/intel/cce/9.1.042/lib /opt/cluster/intel/fce/9.1.036/lib /opt/cluster/Pathscale3.0/lib/2.9.99 /opt/cluster/Pathscale3.0/lib/2.9.99/32 /work/licsoft/compilers/pgi/linux86-64/6.2/lib /work/licsoft/compilers/pgi/linux86-64/6.2/libso "
+sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/lib/mysql /usr/lib/octave-2.9.9 /usr/lib/qt-3.3/lib /usr/lib/qt4/lib /usr/lib/xulrunner-1.9.2 "
 
 # Fix the shell variable $srcfile for the compiler.
 fix_srcfile_path=""
@@ -7065,7 +7071,7 @@ include_expsyms=""
 
 # ### BEGIN LIBTOOL TAG CONFIG: F77
 
-# Libtool was configured on host deimos101:
+# Libtool was configured on host NWRW15:
 
 # Shell to use when invoking shell scripts.
 SHELL="/bin/sh"
@@ -7087,12 +7093,12 @@ fast_install=yes
 
 # The host system.
 host_alias=
-host=x86_64-unknown-linux-gnu
+host=i686-pc-linux-gnu
 host_os=linux-gnu
 
 # The build system.
 build_alias=
-build=x86_64-unknown-linux-gnu
+build=i686-pc-linux-gnu
 build_os=linux-gnu
 
 # An echo program that does not interpret backslashes.
@@ -7103,7 +7109,7 @@ AR="ar"
 AR_FLAGS="cru"
 
 # A C compiler.
-LTCC="/licsoft/libraries/openmpi/1.2.6/64bit/bin/mpicc"
+LTCC="gcc"
 
 # LTCC compiler flags.
 LTCFLAGS="-g -O2"
@@ -7112,13 +7118,16 @@ LTCFLAGS="-g -O2"
 CC="g77"
 
 # Is the compiler the GNU C compiler?
-with_gcc=
+with_gcc=yes
+
+gcc_dir=`gcc -print-file-name=. | /bin/sed 's,/\.$,,'`
+gcc_ver=`gcc -dumpversion`
 
 # An ERE matcher.
 EGREP="grep -E"
 
 # The linker used to build libraries.
-LD="/usr/x86_64-suse-linux/bin/ld -m elf_x86_64"
+LD="/usr/bin/ld"
 
 # Whether we need hard or soft links.
 LN_S="ln -s"
@@ -7250,11 +7259,11 @@ striplib="strip --strip-unneeded"
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=""
+predep_objects=`echo "" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=""
+postdep_objects=`echo "" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -7266,7 +7275,7 @@ postdeps=""
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=""
+compiler_lib_search_path=`echo "" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method="pass_all"
@@ -7346,10 +7355,10 @@ variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COM
 link_all_deplibs=unknown
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=" /fastfs/wir/local/lib/x86_64-suse-linux/3.3.5/ /fastfs/wir/local/lib/ /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/ /usr/lib/gcc/x86_64-suse-linux/3.3.5/ /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/lib/x86_64-suse-linux/3.3.5/ /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/lib/ /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../x86_64-suse-linux/3.3.5/ /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../ /lib/x86_64-suse-linux/3.3.5/ /lib/ /usr/lib/x86_64-suse-linux/3.3.5/ /usr/lib/"
+sys_lib_search_path_spec=`echo " /u/witkowski/local/lib/i386-redhat-linux/3.4.6/ /u/witkowski/local/lib/ /u/witkowski/local/intel/mkl/10.0.1.014/lib/32/i386-redhat-linux/3.4.6/ /u/witkowski/local/intel/mkl/10.0.1.014/lib/32/ /usr/lib/gcc/i386-redhat-linux/3.4.6/ /usr/lib/gcc/i386-redhat-linux/3.4.6/ /usr/lib/gcc/i386-redhat-linux/3.4.6/../../../../i386-redhat-linux/lib/i386-redhat-linux/3.4.6/ /usr/lib/gcc/i386-redhat-linux/3.4.6/../../../../i386-redhat-linux/lib/ /usr/lib/gcc/i386-redhat-linux/3.4.6/../../../i386-redhat-linux/3.4.6/ /usr/lib/gcc/i386-redhat-linux/3.4.6/../../../ /lib/i386-redhat-linux/3.4.6/ /lib/ /usr/lib/i386-redhat-linux/3.4.6/ /usr/lib/" | $SED -e "s@${gcc_dir}@\${gcc_dir}@g;s@${gcc_ver}@\${gcc_ver}@g"`
 
 # Run-time system search path for libraries
-sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib64/Xaw3d /usr/X11R6/lib64 /usr/X11R6/lib/Xaw3d /usr/X11R6/lib /usr/x86_64-suse-linux/lib /usr/local/lib64 /usr/local/lib /opt/kde3/lib64 /opt/kde3/lib /opt/gnome/lib64 /opt/gnome/lib /lib64 /lib /usr/lib64 /usr/lib /opt/cluster/intel/cce/9.1.042/lib /opt/cluster/intel/fce/9.1.036/lib /opt/cluster/Pathscale3.0/lib/2.9.99 /opt/cluster/Pathscale3.0/lib/2.9.99/32 /work/licsoft/compilers/pgi/linux86-64/6.2/lib /work/licsoft/compilers/pgi/linux86-64/6.2/libso "
+sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/lib/mysql /usr/lib/octave-2.9.9 /usr/lib/qt-3.3/lib /usr/lib/qt4/lib /usr/lib/xulrunner-1.9.2 "
 
 # Fix the shell variable $srcfile for the compiler.
 fix_srcfile_path=""
diff --git a/AMDiS/license.opensource.txt b/AMDiS/license.opensource.txt
new file mode 100644
index 0000000000000000000000000000000000000000..47033766f1c9f1c49c2ebc77aaa7cd09419ee6d8
--- /dev/null
+++ b/AMDiS/license.opensource.txt
@@ -0,0 +1,50 @@
+Software License for AMDiS (Adaptive Multi-Dimensional Simulations)
+
+Copyright (c) 2010 Dresden University of Technology
+
+All rights reserved.
+Authors: Simon Vey, Thomas Witkowski et al.
+
+This file is part of AMDiS
+
+Dresden University of Technology -- short TUD -- and SimuNova UG have the exclusive
+rights to license this product under the following license.
+
+Usage is permitted provided that the following conditions are met:
+	1.      The usage in academic institutions and private use is granted free of charge 
+		without limitations.
+	2. 	The permission for commercial use is granted by TUD's Institute of Scientific 
+		Computing represented by Axel Voigt (axel.voigt at tu-dresden.de or by mail to 
+		Axel Voigt, TU Dresden, 01062 Dresden, Germany).
+
+Redistribution in source and binary forms, with or without modification, are permitted 
+provided that the following conditions are met:
+	1.      The permission for redistribution is granted by TUD's Institute of Scientific 
+		Computing represented by Axel Voigt (axel.voigt at tu-dresden.de or by mail
+		to Axel Voigt, TU Dresden, 01062 Dresden, Germany).
+	2.  	All redistributions of source code must retain the above copyright notice, 
+		the list of authors in the original source code, this list of conditions and 
+		the disclaimer listed in this license;
+	3.  	All redistributions in binary form must reproduce the above copyright notice, 
+		this list of conditions and the disclaimer listed in this license in the 
+		documentation and/or other materials provided with the distribution.
+	4.  	The name "AMDiS shall not be used to endorse or promote products derived from 
+		this software without prior written permission from TUD. For 
+		written permission, please contact TUD's Institute of Scientific Computing.
+	5.  	Products derived from this software may not be called "AMDiS", nor may "AMDiS" 
+		appear in their name, without prior written permission of TUD's Institute of 
+		Scientific Computing.
+
+TUD provides no reassurances that the source code provided does not infringe the patent or any 
+other intellectual property rights of any other entity. TUD disclaims any liability to any 
+recipient for claims brought by any other entity based on infringement of intellectual property 
+rights or otherwise. 
+
+LICENSEE UNDERSTANDS THAT AMDIS IS PROVIDED "AS IS" FOR WHICH NO WARRANTIES AS TO CAPABILITIES 
+OR ACCURACY ARE MADE. DRESDEN UNIVERSITY OF TECHNOLOGY GIVES NO WARRANTIES AND MAKES NO 
+REPRESENTATION THAT AMDIS IS FREE OF INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER 
+PROPRIETARY RIGHTS.  DRESDEN UNIVERSITY OF TECHNOLOGY MAKES NO WARRANTIES THAT AMDIS IS FREE 
+FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP DOORS", "WORMS", OR OTHER HARMFUL CODE. LICENSEE 
+ASSUMES THE ENTIRE RISK AS TO THE PERFORMANCE OF AMDIS AND/OR ASSOCIATED MATERIALS, AND TO THE 
+PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING AMDIS.
+
diff --git a/AMDiS/src/AMDiS.h b/AMDiS/src/AMDiS.h
index db24bd61c92a7366c7be6fcbf7ca522ae2b7db81..fb99516da6f57f0626c9fda270f1c5a83b9bd63c 100644
--- a/AMDiS/src/AMDiS.h
+++ b/AMDiS/src/AMDiS.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file AMDiS.h */
+
 #ifndef AMDIS_H
 #define AMDIS_H
 
diff --git a/AMDiS/src/AMDiS_fwd.h b/AMDiS/src/AMDiS_fwd.h
index 686225f7d0b94aa305c50ee4a1f522c3a6983ebc..98306066cc5a3103057874aa1c233d0df3ea9f38 100644
--- a/AMDiS/src/AMDiS_fwd.h
+++ b/AMDiS/src/AMDiS_fwd.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file AMDiS_fwd.h */
 
diff --git a/AMDiS/src/AbstractFunction.h b/AMDiS/src/AbstractFunction.h
index 70eb3522ad60d2c2c9150f1b8599d610446b0f56..1004bb1ce24951e54021a3cb37af0a2dc00d98c5 100644
--- a/AMDiS/src/AbstractFunction.h
+++ b/AMDiS/src/AbstractFunction.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file AbstractFunction.h */
 
diff --git a/AMDiS/src/AdaptBase.cc b/AMDiS/src/AdaptBase.cc
index 3a32618a76e01098da59c0824698dc4b96735741..a1fe0eb56b879d120855dfeb15bbb56b5d10ea67 100644
--- a/AMDiS/src/AdaptBase.cc
+++ b/AMDiS/src/AdaptBase.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "AdaptBase.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/AdaptBase.h b/AMDiS/src/AdaptBase.h
index 410363a511347b35922f63f8041016dc4131c385..213d4a677714a297a65074dbcdde8f0d5cef7b99 100644
--- a/AMDiS/src/AdaptBase.h
+++ b/AMDiS/src/AdaptBase.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file AdaptBase.h */
 
diff --git a/AMDiS/src/AdaptInfo.cc b/AMDiS/src/AdaptInfo.cc
index bbdf0477b3df787dabc098b54677737aef15f13c..b062491d11056760bcdfe61a203d020731455127 100644
--- a/AMDiS/src/AdaptInfo.cc
+++ b/AMDiS/src/AdaptInfo.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "boost/lexical_cast.hpp"
 #include "AdaptInfo.h"
 #include "Serializer.h"
diff --git a/AMDiS/src/AdaptInfo.h b/AMDiS/src/AdaptInfo.h
index ca668ec1c57f00ddbff8354b425b8d690af3c7ad..52b33ace40f74eea77cf1088ba9c652afd047597 100644
--- a/AMDiS/src/AdaptInfo.h
+++ b/AMDiS/src/AdaptInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file AdaptInfo.h */
 
diff --git a/AMDiS/src/AdaptInstationary.cc b/AMDiS/src/AdaptInstationary.cc
index b7ab98c1d6969bacfe967b9104e5b55aec00d402..f41b12605008e3700ab2ad83fcaa7a21a954d113 100644
--- a/AMDiS/src/AdaptInstationary.cc
+++ b/AMDiS/src/AdaptInstationary.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "AdaptInstationary.h"
 #include "Parameters.h"
 #include "Estimator.h"
diff --git a/AMDiS/src/AdaptInstationary.h b/AMDiS/src/AdaptInstationary.h
index 7c7092dc843a55777888a7aa28a877d7b0d79dc2..34e785b5c663c8954a4bc31f359d42e286facba9 100644
--- a/AMDiS/src/AdaptInstationary.h
+++ b/AMDiS/src/AdaptInstationary.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file AdaptInstationary.h */
 
diff --git a/AMDiS/src/AdaptStationary.cc b/AMDiS/src/AdaptStationary.cc
index 52352e41f4d9fe28d95ae2e8b3468f4ebd2aa472..ddd91a170ca3a7395de7045e5fbb6a0928c51147 100644
--- a/AMDiS/src/AdaptStationary.cc
+++ b/AMDiS/src/AdaptStationary.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "AdaptStationary.h"
 #include "Parameters.h"
 #include "Estimator.h"
diff --git a/AMDiS/src/AdaptStationary.h b/AMDiS/src/AdaptStationary.h
index 32afc62d3dccffaeade9c4e08cc106f1d5b95fbd..25b8fc4b47637b7be74403c980e709deaca6ef4c 100644
--- a/AMDiS/src/AdaptStationary.h
+++ b/AMDiS/src/AdaptStationary.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file AdaptStationary.h */
 
diff --git a/AMDiS/src/Assembler.cc b/AMDiS/src/Assembler.cc
index b4b540bd74ed111c11b5aaccee8b83cde917eb39..ba8b2182e8097f619198c6d6e3e9fb31f1991cc5 100644
--- a/AMDiS/src/Assembler.cc
+++ b/AMDiS/src/Assembler.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <vector>
 #include <algorithm>
 #include <boost/numeric/mtl/mtl.hpp>
diff --git a/AMDiS/src/Assembler.h b/AMDiS/src/Assembler.h
index 97e7f904711e6400c92049415d152f8cad666b10..3ded21f9180542a6432e111cd958096cdcdc049b 100644
--- a/AMDiS/src/Assembler.h
+++ b/AMDiS/src/Assembler.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Assembler.h */
 
diff --git a/AMDiS/src/BallProject.h b/AMDiS/src/BallProject.h
index 3c59ec93636afb234b62291e3b307e37a3983d2d..31cc90d233f18001791b45dd380eec45bcb8410b 100644
--- a/AMDiS/src/BallProject.h
+++ b/AMDiS/src/BallProject.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file BallProject.h */
 
diff --git a/AMDiS/src/BasisFunction.cc b/AMDiS/src/BasisFunction.cc
index 70fa2a02965fa8c2b43ca8d6fd26c141492c92f4..4cc38a80ca206a28e4922767d41dfc1fe6566ff6 100644
--- a/AMDiS/src/BasisFunction.cc
+++ b/AMDiS/src/BasisFunction.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 
 #include "FixVec.h"
diff --git a/AMDiS/src/BasisFunction.h b/AMDiS/src/BasisFunction.h
index b4fe87bfa1e564b14e2691f5c9f47dde9d042e4c..6274740bcacac21dbe66bd643c9292447a058474 100644
--- a/AMDiS/src/BasisFunction.h
+++ b/AMDiS/src/BasisFunction.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file BasisFunction.h */
 
diff --git a/AMDiS/src/Boundary.cc b/AMDiS/src/Boundary.cc
index 7627d128deb8a5fd373366ce43c4936c6bb0cf78..e12d795589570fbcc781dfffb46f5098518948f7 100644
--- a/AMDiS/src/Boundary.cc
+++ b/AMDiS/src/Boundary.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Boundary.h"
 #include "FixVec.h"
 #include "Parameters.h"
diff --git a/AMDiS/src/Boundary.h b/AMDiS/src/Boundary.h
index de6f23209d6514f01473415b2723fdda1774a7f0..4cd2f7736f88603f6ed67662f3f1f373aad7bf0a 100644
--- a/AMDiS/src/Boundary.h
+++ b/AMDiS/src/Boundary.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Boundary.h */
 
diff --git a/AMDiS/src/BoundaryCondition.h b/AMDiS/src/BoundaryCondition.h
index 14e08395377ffcb5ccd69e8d018c068e4b91bb87..e74d980eff225ab14797e2115b7dd24a33f10f77 100644
--- a/AMDiS/src/BoundaryCondition.h
+++ b/AMDiS/src/BoundaryCondition.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file BoundaryCondition.h */
 
diff --git a/AMDiS/src/BoundaryManager.cc b/AMDiS/src/BoundaryManager.cc
index b868ca603c31ef8632c8b1b56ff74c32eb6d1fc5..72d9f5a66eff8729ae3b79c8d952384a549e7221 100644
--- a/AMDiS/src/BoundaryManager.cc
+++ b/AMDiS/src/BoundaryManager.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "FiniteElemSpace.h"
 #include "BoundaryManager.h"
 #include "DOFIndexed.h"
diff --git a/AMDiS/src/BoundaryManager.h b/AMDiS/src/BoundaryManager.h
index c9f391a0c5daebae407c74ae8466920008e24533..685c9a33ea9c004f6a88a95da2f2fe1284ad9a53 100644
--- a/AMDiS/src/BoundaryManager.h
+++ b/AMDiS/src/BoundaryManager.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file BoundaryManager.h */
 
diff --git a/AMDiS/src/Cholesky.cc b/AMDiS/src/Cholesky.cc
index 50f5ef58cc3126f7c9884fa265930b3d6e47e78e..09b23421829edb7f7a64f7e0f9c09e6ca27bd811 100644
--- a/AMDiS/src/Cholesky.cc
+++ b/AMDiS/src/Cholesky.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Cholesky.h"
 
 bool Cholesky::factorization(Matrix<double> *A, Vector<double> *p)
diff --git a/AMDiS/src/Cholesky.h b/AMDiS/src/Cholesky.h
index 520ad59671dc15f0ab657ef5936a8db8854d1817..ea82ce452be33a740640d8967bbc8ca68108d504 100644
--- a/AMDiS/src/Cholesky.h
+++ b/AMDiS/src/Cholesky.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Cholesky.h */
 
diff --git a/AMDiS/src/CoarseningManager.cc b/AMDiS/src/CoarseningManager.cc
index 5bae9d5626c7c6fdcfd03cc2c49c8775420097f7..14b26a68a31b7f8730129e3addcbb69b3d28b875 100644
--- a/AMDiS/src/CoarseningManager.cc
+++ b/AMDiS/src/CoarseningManager.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "CoarseningManager.h"
 #include "Mesh.h"
 #include "AdaptStationary.h"
diff --git a/AMDiS/src/CoarseningManager.h b/AMDiS/src/CoarseningManager.h
index f1103401cec3dfc01ae8ad16e18e6f13e63a9e41..c472dd7f7f4f1d6a64922458ba074ae33cc06e8c 100644
--- a/AMDiS/src/CoarseningManager.h
+++ b/AMDiS/src/CoarseningManager.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CoarseningManager.h */
 
diff --git a/AMDiS/src/CoarseningManager1d.cc b/AMDiS/src/CoarseningManager1d.cc
index 07714f53e5636c4110c921a0992baa5e486aafbb..37a62db0a96235f7186bbfb6041ec479eeab447a 100644
--- a/AMDiS/src/CoarseningManager1d.cc
+++ b/AMDiS/src/CoarseningManager1d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "CoarseningManager1d.h"
 #include "Mesh.h"
 #include "AdaptStationary.h"
diff --git a/AMDiS/src/CoarseningManager1d.h b/AMDiS/src/CoarseningManager1d.h
index e92e4236dd1a2c46cd4de45722c2f4487730bf64..2997739c75458ffa070b3228c7fc5cd250c71909 100644
--- a/AMDiS/src/CoarseningManager1d.h
+++ b/AMDiS/src/CoarseningManager1d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CoarseningManager1d.h */
 
diff --git a/AMDiS/src/CoarseningManager2d.cc b/AMDiS/src/CoarseningManager2d.cc
index e3d321cb5ee2112be97f3e0e148a2216e0f18248..17250d23e1edf22e9d0b933ad83de9b4ca25dd42 100644
--- a/AMDiS/src/CoarseningManager2d.cc
+++ b/AMDiS/src/CoarseningManager2d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "CoarseningManager2d.h"
 #include "Mesh.h"
 #include "AdaptStationary.h"
diff --git a/AMDiS/src/CoarseningManager2d.h b/AMDiS/src/CoarseningManager2d.h
index 35ca78112d8330065f6eaeb36e27f29f881696c9..1a9c07071db93b4f29aee09d4d305efe484c58b4 100644
--- a/AMDiS/src/CoarseningManager2d.h
+++ b/AMDiS/src/CoarseningManager2d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CoarseningManager2d.h */
 
diff --git a/AMDiS/src/CoarseningManager3d.cc b/AMDiS/src/CoarseningManager3d.cc
index 051fccb2809e105df310530ac91bfb92aad79202..8b91217a54a31c52bc5c9da5aef2babb0b3b718c 100644
--- a/AMDiS/src/CoarseningManager3d.cc
+++ b/AMDiS/src/CoarseningManager3d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "CoarseningManager3d.h"
 #include "Mesh.h"
 #include "AdaptStationary.h"
diff --git a/AMDiS/src/CoarseningManager3d.h b/AMDiS/src/CoarseningManager3d.h
index 5fbbdcfa42c6b3cf5f2c3880ea15a18f8464f818..56d37304e2e05df213641e1b40b9de288fcd2ff7 100644
--- a/AMDiS/src/CoarseningManager3d.h
+++ b/AMDiS/src/CoarseningManager3d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CoarseningManager3d.h */
 
diff --git a/AMDiS/src/ComponentTraverseInfo.cc b/AMDiS/src/ComponentTraverseInfo.cc
index 3ee7cb140f843548f834aaf2c5073a45a85de764..99f96cf45ab3741bcada9433c0fae8861e528e23 100644
--- a/AMDiS/src/ComponentTraverseInfo.cc
+++ b/AMDiS/src/ComponentTraverseInfo.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ComponentTraverseInfo.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/ComponentTraverseInfo.h b/AMDiS/src/ComponentTraverseInfo.h
index b7123c935900a7e6ee8c89fa7ac4b6b49c3dbe98..f8f38eba2c73eecd1fa3f43cf41f12a45b82230d 100644
--- a/AMDiS/src/ComponentTraverseInfo.h
+++ b/AMDiS/src/ComponentTraverseInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ComponentTraverseInfo.h */
 
diff --git a/AMDiS/src/CouplingTimeInterface.h b/AMDiS/src/CouplingTimeInterface.h
index c74538cc122a3f3c5c62259074cfc673eced0644..4eeb3374758581d484da4ee09f5dbafd18ff9b43 100644
--- a/AMDiS/src/CouplingTimeInterface.h
+++ b/AMDiS/src/CouplingTimeInterface.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CouplingTimeInterface.h */
 
diff --git a/AMDiS/src/CreatorInterface.h b/AMDiS/src/CreatorInterface.h
index ad286593354b15b604c84bd37c713c71c3f3a376..66496badfa17dfc238ad962847340f5cc8b840d8 100644
--- a/AMDiS/src/CreatorInterface.h
+++ b/AMDiS/src/CreatorInterface.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CreatorInterface.h */
 
diff --git a/AMDiS/src/CreatorMap.cc b/AMDiS/src/CreatorMap.cc
index 4e1801641ce59a3f4bd8d9340e8fb84afc46d982..1e75e934836208818ae662ce2b9acbdcec05aa85 100644
--- a/AMDiS/src/CreatorMap.cc
+++ b/AMDiS/src/CreatorMap.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "CreatorMap.h"
 #include "OEMSolver.h"
 #include "ITL_Solver.h"
diff --git a/AMDiS/src/CreatorMap.h b/AMDiS/src/CreatorMap.h
index 50eacabd80383e21728c75312b17ea183f613cc3..0f7434bb2f2c27b88991f9a67e44a32b7976717d 100644
--- a/AMDiS/src/CreatorMap.h
+++ b/AMDiS/src/CreatorMap.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CreatorMap.h */
 
diff --git a/AMDiS/src/CreatorMap.hh b/AMDiS/src/CreatorMap.hh
index ff3700c88b6121833ad1ffa2257ace76499c90b8..fcf31b876a726fbe396148114d01b35255169462 100644
--- a/AMDiS/src/CreatorMap.hh
+++ b/AMDiS/src/CreatorMap.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <map>
 
 namespace AMDiS {
diff --git a/AMDiS/src/CylinderProject.h b/AMDiS/src/CylinderProject.h
index 07a5ce0a8d1a9afc33b2d7023b059093e5264402..56907306cdc075f38def765d756c8910657a3c38 100644
--- a/AMDiS/src/CylinderProject.h
+++ b/AMDiS/src/CylinderProject.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file CylinderProject.h */
 
diff --git a/AMDiS/src/DOFAdmin.cc b/AMDiS/src/DOFAdmin.cc
index 245af645ec751c68c082ebaa4ac308e7c9933193..dfc074843555867e43e2aba494ac8b17e4de69d1 100644
--- a/AMDiS/src/DOFAdmin.cc
+++ b/AMDiS/src/DOFAdmin.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 
 #include "QPsiPhi.h"
diff --git a/AMDiS/src/DOFAdmin.h b/AMDiS/src/DOFAdmin.h
index e0abf97e4c0784c1c1d32a5a300281c9b9577a33..6feb59f26cb88f26769694be5f3a9bc222ccc389 100644
--- a/AMDiS/src/DOFAdmin.h
+++ b/AMDiS/src/DOFAdmin.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DOFAdmin.h */
 
diff --git a/AMDiS/src/DOFContainer.h b/AMDiS/src/DOFContainer.h
index 12e3935389d4d79b71241006ed0cae42e7afd4cf..a504d091510d44d83f26acb8573dfff4be6deaef 100644
--- a/AMDiS/src/DOFContainer.h
+++ b/AMDiS/src/DOFContainer.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DOFContainer.h */
 
diff --git a/AMDiS/src/DOFIndexed.cc b/AMDiS/src/DOFIndexed.cc
index 1ebda0599fff51433e9046fd5a82054668c152ed..77cd9b546fbb9a53e1b3afcd2484c06ecaca71c1 100644
--- a/AMDiS/src/DOFIndexed.cc
+++ b/AMDiS/src/DOFIndexed.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "DOFIndexed.h"
 #include "DOFMatrix.h"
 
diff --git a/AMDiS/src/DOFIndexed.h b/AMDiS/src/DOFIndexed.h
index 5386dc5430c07e892c703014498a8047fadbd610..aa141317cb07ce2662ef99d5fc04de4600e72f3e 100644
--- a/AMDiS/src/DOFIndexed.h
+++ b/AMDiS/src/DOFIndexed.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DOFIndexed.h */
 
diff --git a/AMDiS/src/DOFIterator.h b/AMDiS/src/DOFIterator.h
index 7917ee5ae9aa907cc63fbf426a7d4053db03f36a..ea97dcef5676106c1df99ad549604db42b9d95ce 100644
--- a/AMDiS/src/DOFIterator.h
+++ b/AMDiS/src/DOFIterator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DOFIterator.h */
 
diff --git a/AMDiS/src/DOFMatrix.cc b/AMDiS/src/DOFMatrix.cc
index 10c05cf502d5b2f02c0eedc6cb7e187e376d2f94..1d4298d82ba9fb127fd0beb6ba59151add59403a 100644
--- a/AMDiS/src/DOFMatrix.cc
+++ b/AMDiS/src/DOFMatrix.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 #include <boost/numeric/mtl/mtl.hpp>
 #include "DOFMatrix.h"
diff --git a/AMDiS/src/DOFMatrix.h b/AMDiS/src/DOFMatrix.h
index 30945b2e5c1a28b19c5e7a90354668ee51dfde41..82d45e3c70f536aa6172cc1d727573487b046fd0 100644
--- a/AMDiS/src/DOFMatrix.h
+++ b/AMDiS/src/DOFMatrix.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DOFMatrix.h */
 
diff --git a/AMDiS/src/DOFVector.cc b/AMDiS/src/DOFVector.cc
index b3af07b76eeb7dbb8247efafdc753ff5439808d0..c5bad9dc1c6a216fb00af6b7a3557f7dd0ec5626 100644
--- a/AMDiS/src/DOFVector.cc
+++ b/AMDiS/src/DOFVector.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <boost/numeric/mtl/mtl.hpp>
 #include "DOFVector.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/DOFVector.h b/AMDiS/src/DOFVector.h
index 1e6037ec7d789859a0cf66c29d7aa4ef6132d2e2..e0ed5cb19215627294c25882e727f8266bcccaa6 100644
--- a/AMDiS/src/DOFVector.h
+++ b/AMDiS/src/DOFVector.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DOFVector.h */
 
diff --git a/AMDiS/src/DOFVector.hh b/AMDiS/src/DOFVector.hh
index aade68b620754b5fd1e6278fd68938d923f2a31a..95ad682cccb1f90513e18828bc9c9d0375899534 100644
--- a/AMDiS/src/DOFVector.hh
+++ b/AMDiS/src/DOFVector.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <list>
 #include <algorithm>
 #include <math.h>
diff --git a/AMDiS/src/Debug.cc b/AMDiS/src/Debug.cc
index 7c4513bb7bbd8f5c9b91c0bcac00698eb8e687c2..0e715f6ea0764e8ab6df87186bade2cdcf9c4178 100644
--- a/AMDiS/src/Debug.cc
+++ b/AMDiS/src/Debug.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <iostream>
 #include <fstream>
 #include <boost/lexical_cast.hpp>
diff --git a/AMDiS/src/Debug.h b/AMDiS/src/Debug.h
index a965f658dbb3cac321b193c3227c97f3468a671b..458027214c813375dda671ca660e0f312c27b850 100644
--- a/AMDiS/src/Debug.h
+++ b/AMDiS/src/Debug.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Debug.h */
 
diff --git a/AMDiS/src/DirichletBC.cc b/AMDiS/src/DirichletBC.cc
index db69cff0eb99f750e73c1c287b84c78ef1f6003f..010dd2d3fa4a720da2ef9b91eade4b67ce10e207 100644
--- a/AMDiS/src/DirichletBC.cc
+++ b/AMDiS/src/DirichletBC.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "DirichletBC.h"
 #include "ElInfo.h"
 #include "BasisFunction.h"
diff --git a/AMDiS/src/DirichletBC.h b/AMDiS/src/DirichletBC.h
index 0c827e1068baa8d985c7ab286620355c0283e571..956cdad4bf983abe4beb3d7fb1e6582f3fb0efff 100644
--- a/AMDiS/src/DirichletBC.h
+++ b/AMDiS/src/DirichletBC.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DirichletBC.h */
 
diff --git a/AMDiS/src/DualTraverse.cc b/AMDiS/src/DualTraverse.cc
index 709f34c1c945e2ed7801b688bff46342ae7ba61d..9a1e3bee26be40c7b7fdc81bdc4d687f41d70c90 100644
--- a/AMDiS/src/DualTraverse.cc
+++ b/AMDiS/src/DualTraverse.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "DualTraverse.h"
 #include "Mesh.h"
 #include "ElInfo.h"
diff --git a/AMDiS/src/DualTraverse.h b/AMDiS/src/DualTraverse.h
index 8226414014cc2828246ae0517b84eea2e475b3ca..daff0fabab14e5a473d0013788f4effd94740270 100644
--- a/AMDiS/src/DualTraverse.h
+++ b/AMDiS/src/DualTraverse.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DualTraverse.h */
 
diff --git a/AMDiS/src/ElInfo.cc b/AMDiS/src/ElInfo.cc
index a979dc81379ed3b07f1abc2e7569ff2ad6d468fe..fb213ef43fc6a1ae7b826e5b12c78aa670703285 100644
--- a/AMDiS/src/ElInfo.cc
+++ b/AMDiS/src/ElInfo.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElInfo.h"
 #include "BasisFunction.h"
 #include "Element.h"
diff --git a/AMDiS/src/ElInfo.h b/AMDiS/src/ElInfo.h
index ad6e1017017acb326391fb87aaa3470d93d48591..e722b6e8461f425decd1ac498c34568215fd02cd 100644
--- a/AMDiS/src/ElInfo.h
+++ b/AMDiS/src/ElInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElInfo.h */
 
diff --git a/AMDiS/src/ElInfo1d.cc b/AMDiS/src/ElInfo1d.cc
index 5581a0a518677298d843c24de66303735d95948b..a7cb7d9cae8c0e37fe25b8e7466478b755b566b3 100644
--- a/AMDiS/src/ElInfo1d.cc
+++ b/AMDiS/src/ElInfo1d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElInfo1d.h"
 #include "BasisFunction.h"
 #include "Element.h"
diff --git a/AMDiS/src/ElInfo1d.h b/AMDiS/src/ElInfo1d.h
index a04047e14a56b80be49cea793fb77efcb8f68fa7..7bfefb6e3084283e005e33cc7c6c6e0819463896 100644
--- a/AMDiS/src/ElInfo1d.h
+++ b/AMDiS/src/ElInfo1d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElInfo1d.h */
 
diff --git a/AMDiS/src/ElInfo2d.cc b/AMDiS/src/ElInfo2d.cc
index 7839cfc43327c7db395b9ba5ac3e1477a2b9ad8c..1d6aa035726506eceb1dcf6b408c702c6bfb1dc1 100644
--- a/AMDiS/src/ElInfo2d.cc
+++ b/AMDiS/src/ElInfo2d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElInfo2d.h"
 #include "BasisFunction.h"
 #include "Element.h"
diff --git a/AMDiS/src/ElInfo2d.h b/AMDiS/src/ElInfo2d.h
index f50115c68392c035d08894c1843bfe37a271b390..2187e6d056f4961d49b60bd191074fc7b782a765 100644
--- a/AMDiS/src/ElInfo2d.h
+++ b/AMDiS/src/ElInfo2d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElInfo2d.h */
 
diff --git a/AMDiS/src/ElInfo3d.cc b/AMDiS/src/ElInfo3d.cc
index 2a3148be16fd82e5bb76620d74f3f1b05032592b..83a05c56bc70767474794b0046865d2d19124a15 100644
--- a/AMDiS/src/ElInfo3d.cc
+++ b/AMDiS/src/ElInfo3d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <typeinfo>
 
 #include "ElInfo3d.h"
diff --git a/AMDiS/src/ElInfo3d.h b/AMDiS/src/ElInfo3d.h
index ef9e150925d0456f894b47983a7b331847a6183d..1e061d8803b0cc262e96f52ab404250a01da4d86 100644
--- a/AMDiS/src/ElInfo3d.h
+++ b/AMDiS/src/ElInfo3d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElInfo3d.h */
 
diff --git a/AMDiS/src/ElInfoStack.cc b/AMDiS/src/ElInfoStack.cc
index 1486ea4b0f39839e087c9c157c8042821c03c54a..3497d6fa300c9c77a3239f2f2c5bbfa08d721e02 100644
--- a/AMDiS/src/ElInfoStack.cc
+++ b/AMDiS/src/ElInfoStack.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElInfoStack.h"
 #include "Mesh.h"
 
diff --git a/AMDiS/src/ElInfoStack.h b/AMDiS/src/ElInfoStack.h
index 730aafc45765add557e1a58c636185405180d214..943f7a6c7532a7933557f4e38fe7200a70275f6f 100644
--- a/AMDiS/src/ElInfoStack.h
+++ b/AMDiS/src/ElInfoStack.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElInfo.h */
 
diff --git a/AMDiS/src/Element.cc b/AMDiS/src/Element.cc
index 1537994af8f48adae5c2f65cec4170d1bf1c7982..7a5e20579965e2bee92026bf344ead165f639527 100644
--- a/AMDiS/src/Element.cc
+++ b/AMDiS/src/Element.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Element.h"
 #include "DOFAdmin.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/Element.h b/AMDiS/src/Element.h
index 05f9e57da98bf0b425f0951440175d9635c5acad..78f78d32f8a5925a9997780adf859f35b8c2ddc5 100644
--- a/AMDiS/src/Element.h
+++ b/AMDiS/src/Element.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Element.h */
 
diff --git a/AMDiS/src/ElementData.cc b/AMDiS/src/ElementData.cc
index ee81220a7bd680d092eb562fcd3bf4fb00761b3a..9cb908fd36c085b33e0711a1379d1118f0d13e44 100644
--- a/AMDiS/src/ElementData.cc
+++ b/AMDiS/src/ElementData.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementData.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/ElementData.h b/AMDiS/src/ElementData.h
index 85c3e2c07e36e9c97543d428dfe236f89767a49c..09fb8e3079cc7194c700aed0f0070e4ee3c83b5d 100644
--- a/AMDiS/src/ElementData.h
+++ b/AMDiS/src/ElementData.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementData.h */
 
diff --git a/AMDiS/src/ElementDofIterator.cc b/AMDiS/src/ElementDofIterator.cc
index 957c4ae542c6000d5cb1b519c0bee7917674db1d..d9a34df8d7d83a7b6e7b32f9ec6388752df860b4 100644
--- a/AMDiS/src/ElementDofIterator.cc
+++ b/AMDiS/src/ElementDofIterator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementDofIterator.h"
 #include "Mesh.h"
 #include "DOFAdmin.h"
diff --git a/AMDiS/src/ElementDofIterator.h b/AMDiS/src/ElementDofIterator.h
index f16d5b7174083eac80fd0cc1ea8c05eb25c91ef2..90600367f4c749c80be17ae25692f4179abad3c1 100644
--- a/AMDiS/src/ElementDofIterator.h
+++ b/AMDiS/src/ElementDofIterator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementDofIterator.h */
 
diff --git a/AMDiS/src/ElementFunction.h b/AMDiS/src/ElementFunction.h
index 256bd32f0cc98cdab8a7a4efbcd44e6d0124f591..5463c204d77d789ae734821a9c492d5c7dd956e5 100644
--- a/AMDiS/src/ElementFunction.h
+++ b/AMDiS/src/ElementFunction.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementFunction.h */
 
diff --git a/AMDiS/src/ElementInfo.h b/AMDiS/src/ElementInfo.h
index d837104434f066cf7552374887b1bbfcf96846fc..d10a0b251c764a2415ea3fa0ae98437f7f4f1a2f 100644
--- a/AMDiS/src/ElementInfo.h
+++ b/AMDiS/src/ElementInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementInfo.h */
 
diff --git a/AMDiS/src/ElementRegion_ED.h b/AMDiS/src/ElementRegion_ED.h
index a9fa95b240625f1e6bd33cee8213fe43a57ad312..eec88deb8e3c5d303cbdfeba31e85208b3723346 100644
--- a/AMDiS/src/ElementRegion_ED.h
+++ b/AMDiS/src/ElementRegion_ED.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementRegionED.h */
 
diff --git a/AMDiS/src/EmptyElementData.h b/AMDiS/src/EmptyElementData.h
index 70b1718decd9754ffda1754717d25457477420b5..660a18c9eec720f016212c41976632fdba6f6282 100644
--- a/AMDiS/src/EmptyElementData.h
+++ b/AMDiS/src/EmptyElementData.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file EmptyElementData.h */
 
diff --git a/AMDiS/src/Error.h b/AMDiS/src/Error.h
index 81c9eaaa34bb7a800f6236711927412dfdd4edbc..61af95643e547b09fec66b9ab405005abea5384f 100644
--- a/AMDiS/src/Error.h
+++ b/AMDiS/src/Error.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Error.h */
 
diff --git a/AMDiS/src/Error.hh b/AMDiS/src/Error.hh
index f7d81ede9ae9f2482a866847af9e6dd2c27e2522..7fcbaecd895da65e5bdf67f1923e1634496d9744 100644
--- a/AMDiS/src/Error.hh
+++ b/AMDiS/src/Error.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Mesh.h"
 #include "Parametric.h"
 #include "Quadrature.h"
diff --git a/AMDiS/src/Estimator.cc b/AMDiS/src/Estimator.cc
index 337984b5638923429a4b4d894d354e6fbe3133c1..449cd262d6796060d24d8fe2d6eab36ab5f1d1e2 100644
--- a/AMDiS/src/Estimator.cc
+++ b/AMDiS/src/Estimator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Estimator.h"
 #include "Traverse.h"
 #include "Parameters.h"
diff --git a/AMDiS/src/Estimator.h b/AMDiS/src/Estimator.h
index e8a4e937e5e8f437017ef97260ad297f968d7543..fa819d655fe9edd2d0439594a8fa0195e69d1d2f 100644
--- a/AMDiS/src/Estimator.h
+++ b/AMDiS/src/Estimator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Estimator.h */
 
diff --git a/AMDiS/src/FiniteElemSpace.cc b/AMDiS/src/FiniteElemSpace.cc
index 631a0ffa03caf5da4c873e0811dce1429fccb5bb..3df125c43561dfe24c24d54719dcc60c4ed5d311 100644
--- a/AMDiS/src/FiniteElemSpace.cc
+++ b/AMDiS/src/FiniteElemSpace.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "FiniteElemSpace.h"
 #include "DOFAdmin.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/FiniteElemSpace.h b/AMDiS/src/FiniteElemSpace.h
index 50cff004cb0dade1243ede74b865e8f58655146a..c0d2a4420064ccfb42c9fa3b34dfd9c098bc7f16 100644
--- a/AMDiS/src/FiniteElemSpace.h
+++ b/AMDiS/src/FiniteElemSpace.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file FiniteElemSpace.h */
 
diff --git a/AMDiS/src/FirstOrderAssembler.cc b/AMDiS/src/FirstOrderAssembler.cc
index 847908c89b0c3e53232dde319912b031f6c1fa1c..2b543bf22a07e59b9f1be51bd3d0949defe525c2 100644
--- a/AMDiS/src/FirstOrderAssembler.cc
+++ b/AMDiS/src/FirstOrderAssembler.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <vector>
 #include <boost/numeric/mtl/mtl.hpp>
 #include "Assembler.h"
diff --git a/AMDiS/src/FirstOrderAssembler.h b/AMDiS/src/FirstOrderAssembler.h
index b84b4146531c5a22439e40fd6bbbaf50622fb74a..aa398fd6dba51fbf56e67d9a9e4a9d2e625d8025 100644
--- a/AMDiS/src/FirstOrderAssembler.h
+++ b/AMDiS/src/FirstOrderAssembler.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file FirstOrderAssembler.h */
+
 #ifndef AMDIS_FIRST_ORDER_ASSEMBLER_H
 #define AMDIS_FIRST_ORDER_ASSEMBLER_H
 
diff --git a/AMDiS/src/FirstOrderTerm.cc b/AMDiS/src/FirstOrderTerm.cc
index 8380049e17c0654f3485de106eb6fe44784fdbee..ec34f630c40895c1bea0889300a08cb2770cee01 100644
--- a/AMDiS/src/FirstOrderTerm.cc
+++ b/AMDiS/src/FirstOrderTerm.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "FirstOrderTerm.h"
 #include "DOFVector.h"
 
diff --git a/AMDiS/src/FirstOrderTerm.h b/AMDiS/src/FirstOrderTerm.h
index fc2b126c3f85b3e9e95a077075ad779c72f89580..ace037e00314c9563cad9d14c33b0b83ab52be98 100644
--- a/AMDiS/src/FirstOrderTerm.h
+++ b/AMDiS/src/FirstOrderTerm.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file FirstOrderTerm.h */
 
diff --git a/AMDiS/src/FixVec.cc b/AMDiS/src/FixVec.cc
index 6073c5524fd08423051f84aa5b6d104e3841010f..6209ea20230d16b57f07438af45d599618f985fa 100644
--- a/AMDiS/src/FixVec.cc
+++ b/AMDiS/src/FixVec.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <stdarg.h>
 #include "FixVec.h"
 
diff --git a/AMDiS/src/FixVec.h b/AMDiS/src/FixVec.h
index 8d8e7c8d0d37f18d2fcf9bfb42a4c067589d06c1..85ea2714149ff264c63257c1be3962278d389845 100644
--- a/AMDiS/src/FixVec.h
+++ b/AMDiS/src/FixVec.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file FixVec.h */
 
diff --git a/AMDiS/src/FixVec.hh b/AMDiS/src/FixVec.hh
index 7ccf9b0f60b2dca615b246921cf473b5caf1cfc2..5990c026eed0944be5c7b8087d7be07e6871c5f7 100644
--- a/AMDiS/src/FixVec.hh
+++ b/AMDiS/src/FixVec.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 namespace AMDiS {
 
   template<typename T>
diff --git a/AMDiS/src/FixVecConvert.h b/AMDiS/src/FixVecConvert.h
index 4fddd19be1767162b6f32fc10e640e2095a7a832..5372621412fee2cc88029f06b93fa44139a79ef5 100644
--- a/AMDiS/src/FixVecConvert.h
+++ b/AMDiS/src/FixVecConvert.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file FixVecConvert.h */
 
diff --git a/AMDiS/src/Flag.h b/AMDiS/src/Flag.h
index 7df80bc8fd34956cd9fbab542130582a4bebb790..c337746552b1a9d26e81197a1df6f3d843c382cc 100644
--- a/AMDiS/src/Flag.h
+++ b/AMDiS/src/Flag.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Flagh.h */
 
diff --git a/AMDiS/src/Global.cc b/AMDiS/src/Global.cc
index e5c02d9cea01179d044c054eaa99edf2b6394588..8a6b942fb92502adadfcf0304bfd76b4eada7c5c 100644
--- a/AMDiS/src/Global.cc
+++ b/AMDiS/src/Global.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <stdarg.h>
 #include <stdio.h>
 #include <sstream>
diff --git a/AMDiS/src/Global.h b/AMDiS/src/Global.h
index 30bf3c4d0b6b0cabfc342acf8bb88d14e8f44fa8..a1de627262d0b48c765115e7ef71fbcc7186209e 100644
--- a/AMDiS/src/Global.h
+++ b/AMDiS/src/Global.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Global.h */
 
diff --git a/AMDiS/src/GlobalDOFNumbering.cc b/AMDiS/src/GlobalDOFNumbering.cc
index b8edf8da54df7e5459d4b9fe198b8c5fdf9886e7..aa66e5994a4e2cc5d966232a10916a44286e7a69 100644
--- a/AMDiS/src/GlobalDOFNumbering.cc
+++ b/AMDiS/src/GlobalDOFNumbering.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "GlobalDOFNumbering.h"
 #include "MeshStructure.h"
 
diff --git a/AMDiS/src/GlobalDOFNumbering.h b/AMDiS/src/GlobalDOFNumbering.h
index 12b258aca7d7f21f44ab6acb7cae5c1dd8c6387f..95dd8b1973fd9e64b426ba6e74c2bb8b0fac2439 100644
--- a/AMDiS/src/GlobalDOFNumbering.h
+++ b/AMDiS/src/GlobalDOFNumbering.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file GlobalDOFNumbering.h */
 
diff --git a/AMDiS/src/GlobalElementNumbering.cc b/AMDiS/src/GlobalElementNumbering.cc
index cd08923472396c87b47bc47d0e15ca984b8704e7..88807f8493c0a8a0f1d112a5549b32ada92533d4 100644
--- a/AMDiS/src/GlobalElementNumbering.cc
+++ b/AMDiS/src/GlobalElementNumbering.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "GlobalElementNumbering.h"
 #include "MeshStructure.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/GlobalElementNumbering.h b/AMDiS/src/GlobalElementNumbering.h
index 5fb863f02d5000451396b5d7f29d0d8e5b116ced..6a76e95548a0c432cddc2a8f5bdd7476616ec39d 100644
--- a/AMDiS/src/GlobalElementNumbering.h
+++ b/AMDiS/src/GlobalElementNumbering.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file GlobalElementNumbering.h */
 
diff --git a/AMDiS/src/ITL_OEMSolver.h b/AMDiS/src/ITL_OEMSolver.h
index b2a859e393fd234cb5fd49f8480177d2c787ce47..2983ac57bfc48e50038a550b9ff0c16e6bc800f0 100644
--- a/AMDiS/src/ITL_OEMSolver.h
+++ b/AMDiS/src/ITL_OEMSolver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ITL_OEMSolver.h */
 
diff --git a/AMDiS/src/ITL_Preconditioner.h b/AMDiS/src/ITL_Preconditioner.h
index 1471c3e264b43dfc4073a790d6cc5180400ae9f2..d62f87f5d4daae0dc76b29de1bfef7c84306ca54 100644
--- a/AMDiS/src/ITL_Preconditioner.h
+++ b/AMDiS/src/ITL_Preconditioner.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ITL_Preconditioner.h */
 
diff --git a/AMDiS/src/ITL_Solver.h b/AMDiS/src/ITL_Solver.h
index fb1774ddb71fdae4aadc8156ef82330d4efaef15..787903da60917538cea2e8904ec5a7aa29866699 100644
--- a/AMDiS/src/ITL_Solver.h
+++ b/AMDiS/src/ITL_Solver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ITL_Preconditioner.h */
 
diff --git a/AMDiS/src/Lagrange.cc b/AMDiS/src/Lagrange.cc
index 754aa16714dee769713f925570b2c3765f3d6038..7fa578c90e8fcb6e008336e5310d83a8ce749b5e 100644
--- a/AMDiS/src/Lagrange.cc
+++ b/AMDiS/src/Lagrange.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <stdio.h>
 #include <algorithm>
 #include <list>
diff --git a/AMDiS/src/Lagrange.h b/AMDiS/src/Lagrange.h
index 4eb3b1ad5d0c185a0452dce2fc17b0f3817ab7e6..16c2e98aaa38360b6eea74dc65b9818b22f0c170 100644
--- a/AMDiS/src/Lagrange.h
+++ b/AMDiS/src/Lagrange.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Lagrange.h */
 
diff --git a/AMDiS/src/LeafData.cc b/AMDiS/src/LeafData.cc
index 7d2b3456f0f68301e716f15035021adf021369e2..bda635c6f0e4ff12876130a8b3b14ce3d3afe404 100644
--- a/AMDiS/src/LeafData.cc
+++ b/AMDiS/src/LeafData.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "LeafData.h"
 #include "Element.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/LeafData.h b/AMDiS/src/LeafData.h
index 4966318f0e3c724582c5dd4db5912240480695e8..788c794961ccb28791cdfdf58e41b8663c2cc297 100644
--- a/AMDiS/src/LeafData.h
+++ b/AMDiS/src/LeafData.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file LeafData.h */
 
diff --git a/AMDiS/src/Line.cc b/AMDiS/src/Line.cc
index ae5295f82e0c0c0facaf2ae8cc31dfc190757986..7a64da49c9a906c66b874275ea7e990e10450dc7 100644
--- a/AMDiS/src/Line.cc
+++ b/AMDiS/src/Line.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Line.h"
 #include "DOFAdmin.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/Line.h b/AMDiS/src/Line.h
index 8d42925eb8bb4f1b8bb95ed0b863888bd02d85d2..f41e9bec05e8651b7c70385cbd0ebd57b92f5fb5 100644
--- a/AMDiS/src/Line.h
+++ b/AMDiS/src/Line.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Line.h */
 
diff --git a/AMDiS/src/MacroElement.cc b/AMDiS/src/MacroElement.cc
index fb23bc693c22f341554efc4be2f212097bf6b200..ddc6a1a872a2b8e37d06090f29f8a50aa396feaa 100644
--- a/AMDiS/src/MacroElement.cc
+++ b/AMDiS/src/MacroElement.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <string>
 #include <map>
 #include "MacroElement.h"
diff --git a/AMDiS/src/MacroElement.h b/AMDiS/src/MacroElement.h
index 284f66938c496a366af32aa0d9e2758745644cc2..aed36d5239e765a4d765928d09adfb60e26863a3 100644
--- a/AMDiS/src/MacroElement.h
+++ b/AMDiS/src/MacroElement.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MacroElement.h */
 
diff --git a/AMDiS/src/Marker.cc b/AMDiS/src/Marker.cc
index 51d791dc5020ef27f9aed63310bce4191a6a31df..eedc48e3088beced529eadc99ddd6557469d13f1 100644
--- a/AMDiS/src/Marker.cc
+++ b/AMDiS/src/Marker.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Marker.h"
 
 #ifdef HAVE_PARALLEL_DOMAIN_AMDIS
diff --git a/AMDiS/src/Marker.h b/AMDiS/src/Marker.h
index f8fd6c97128bc7fd7914fcb4967f1dde835f93e3..edf4926c6c14573b760252088b7af8743676d034 100644
--- a/AMDiS/src/Marker.h
+++ b/AMDiS/src/Marker.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Marker.h */
 
diff --git a/AMDiS/src/MathFunctions.h b/AMDiS/src/MathFunctions.h
index 31edf00f39583cc758ef80b8a953de084fd2fff7..7067585277e0bb50e69d09fb5bb7ec59138ef3db 100644
--- a/AMDiS/src/MathFunctions.h
+++ b/AMDiS/src/MathFunctions.h
@@ -1,21 +1,22 @@
 #ifndef AMDIS_MATHFUNCTIONS_H
 #define AMDIS_MATHFUNCTIONS_H
 
-#include "Global.h"
-#include <limits>
-
-using namespace std;
-namespace AMDiS {
-  //converts signed distance to phasefield
-  inline double Phi1(double r, double eps) { return 0.5 * (1 - tanh(3 * r / eps)); }
-  inline double Phi2(double r, double eps) { return 0.5 * (1 + tanh(3 * r / eps)); }
-  
-  //levelset: positive (1) in the set, negative (-1) outside, zero on the boundary
-  inline double LevelSet(double r)
   {
     if (r < 0)
       return 1;
     if (r > 0)
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
       return -1;
     return 0;
   }
diff --git a/AMDiS/src/MatrixVector.h b/AMDiS/src/MatrixVector.h
index c628f452029f1615ea5d0ae241b357a462b4e7fb..e7e1525658d0a1e520c88149e6ec989cc24675ae 100644
--- a/AMDiS/src/MatrixVector.h
+++ b/AMDiS/src/MatrixVector.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MatrixVector.h */
 
diff --git a/AMDiS/src/Mesh.cc b/AMDiS/src/Mesh.cc
index 7950608e2d28c53ef19109223aacac3d80a89118..1ada139d8cf59a81471525c4268bccbb5ad865ea 100644
--- a/AMDiS/src/Mesh.cc
+++ b/AMDiS/src/Mesh.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 #include <set>
 #include <map>
diff --git a/AMDiS/src/Mesh.h b/AMDiS/src/Mesh.h
index 8107fe882d8138651cb546250913f2a65c70924a..49fe7d4061d9e69d0780e4a2bf2b48f5db54c0ed 100644
--- a/AMDiS/src/Mesh.h
+++ b/AMDiS/src/Mesh.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Mesh.h */
 
@@ -649,22 +650,22 @@ namespace AMDiS {
     //**************************************************************************
 
     ///
-    static const Flag CALL_EVERY_EL_PREORDER;      
+    static const Flag CALL_EVERY_EL_PREORDER;
 
     ///
-    static const Flag CALL_EVERY_EL_INORDER;     
+    static const Flag CALL_EVERY_EL_INORDER;
 
     ///
-    static const Flag CALL_EVERY_EL_POSTORDER;    
+    static const Flag CALL_EVERY_EL_POSTORDER;
 
     ///
-    static const Flag CALL_LEAF_EL;   
+    static const Flag CALL_LEAF_EL;
 
     ///
-    static const Flag CALL_LEAF_EL_LEVEL;  
+    static const Flag CALL_LEAF_EL_LEVEL;
 
     ///
-    static const Flag CALL_EL_LEVEL; 
+    static const Flag CALL_EL_LEVEL;
 
     ///
     static const Flag CALL_MG_LEVEL;
diff --git a/AMDiS/src/MeshStructure.cc b/AMDiS/src/MeshStructure.cc
index f9440744f7c9595e33bdb8eaa0d0c9696a3120d5..dc54ab8a05dffc8e5e81458f5753c23cc1f27b9d 100644
--- a/AMDiS/src/MeshStructure.cc
+++ b/AMDiS/src/MeshStructure.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "MeshStructure.h"
 #include "MeshStructure_ED.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/MeshStructure.h b/AMDiS/src/MeshStructure.h
index 73a14116b9c9e3c45d93e409851a08179667306e..f062fcee8905f662409ae025e80c7a40b33539ec 100644
--- a/AMDiS/src/MeshStructure.h
+++ b/AMDiS/src/MeshStructure.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == Amdis - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MeshStructure.h */
 
diff --git a/AMDiS/src/MeshStructure_ED.h b/AMDiS/src/MeshStructure_ED.h
index f086228a9c1bf3d257843d6a6d543e7c1133a704..fb288947cb379a16bd58c3b0ef0dff4d2528b77c 100644
--- a/AMDiS/src/MeshStructure_ED.h
+++ b/AMDiS/src/MeshStructure_ED.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MeshStructure.h */
 
diff --git a/AMDiS/src/MpCCIAdapter.cc b/AMDiS/src/MpCCIAdapter.cc
index cc655f27f99f4bfae52e314a1c29ae04349183ab..1977df18f057ad883c20a5d46a255808ee6f4517 100644
--- a/AMDiS/src/MpCCIAdapter.cc
+++ b/AMDiS/src/MpCCIAdapter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "MpCCIAdapter.h"
 #include "FiniteElemSpace.h"
 #include "SMIAdapter.h"
diff --git a/AMDiS/src/MpCCIAdapter.h b/AMDiS/src/MpCCIAdapter.h
index 0e55263736fff64bb3a8aa781998df40acfa5c94..e80665c47bf1ce3209f8b1723f63b4783bb4b275 100644
--- a/AMDiS/src/MpCCIAdapter.h
+++ b/AMDiS/src/MpCCIAdapter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MpCCIAdapter.h */
 
diff --git a/AMDiS/src/Newton.h b/AMDiS/src/Newton.h
index 390af4d7a90760d25022f97ebf7a34ba11869215..74e127246ef53d285ce57456dd40b6caf0fc02c6 100644
--- a/AMDiS/src/Newton.h
+++ b/AMDiS/src/Newton.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Newton.h */
 
diff --git a/AMDiS/src/Newton.hh b/AMDiS/src/Newton.hh
index 032bc97cc87e238553dc4116f81706064cdbad98..90f9d1da3960dd068e4375b921f04d1f91ad07b3 100644
--- a/AMDiS/src/Newton.hh
+++ b/AMDiS/src/Newton.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "OEMSolver.h"
 #include "NonLinUpdater.h"
 
diff --git a/AMDiS/src/NewtonS.h b/AMDiS/src/NewtonS.h
index e358a38dea2ca53aa60ee8ea084c561f07a78a7a..404a86805fa2c7c77407299f127fd39ebbe61800 100644
--- a/AMDiS/src/NewtonS.h
+++ b/AMDiS/src/NewtonS.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file NewtonS.h */
 
diff --git a/AMDiS/src/NewtonS.hh b/AMDiS/src/NewtonS.hh
index 84052c9f179f492aa8c25b42622949881c911a69..ba960cb9df69f0e812c4a57299115ccedf5b55cc 100644
--- a/AMDiS/src/NewtonS.hh
+++ b/AMDiS/src/NewtonS.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "NonLinUpdater.h"
 #include <algorithm>
 
diff --git a/AMDiS/src/NonLinSolver.h b/AMDiS/src/NonLinSolver.h
index 79d83ef58da1330455258d16362f8d774afef071..fe70f09438050a0c32e8e959aba489de61934ed2 100644
--- a/AMDiS/src/NonLinSolver.h
+++ b/AMDiS/src/NonLinSolver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file NonLinSolver.h */
 
diff --git a/AMDiS/src/NonLinSolver.hh b/AMDiS/src/NonLinSolver.hh
index 506e89a80d0783e68fbdb08c6a9df10d8710293c..a941c8175aa5ede3cf1a829374ac74d110098eb5 100644
--- a/AMDiS/src/NonLinSolver.hh
+++ b/AMDiS/src/NonLinSolver.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "OEMSolver.h"
 #include "Parameters.h"
 
diff --git a/AMDiS/src/NonLinUpdater.cc b/AMDiS/src/NonLinUpdater.cc
index 24ac6e9f0503ecf46d89912fb4c2e009058fa2be..eb0aadff9e0c0b785b1760d4d1d399304786818c 100644
--- a/AMDiS/src/NonLinUpdater.cc
+++ b/AMDiS/src/NonLinUpdater.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "NonLinUpdater.h"
 #include "Global.h"
 #include "DOFMatrix.h"
diff --git a/AMDiS/src/NonLinUpdater.h b/AMDiS/src/NonLinUpdater.h
index 403596354b35f7fda09a9c2e57962c1ece803cc2..3419f39e004a500bb7c15ed63e72ca49dac76dfe 100644
--- a/AMDiS/src/NonLinUpdater.h
+++ b/AMDiS/src/NonLinUpdater.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file NonLinUpdater.h */
 
diff --git a/AMDiS/src/OEMSolver.h b/AMDiS/src/OEMSolver.h
index e551d19dcfdc79a07def8e5d5c1b17463afbc502..331e631eebc980ffef33536d16a19ff959fa30ee 100644
--- a/AMDiS/src/OEMSolver.h
+++ b/AMDiS/src/OEMSolver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file OEMSolver.h */
 
diff --git a/AMDiS/src/OpenMP.h b/AMDiS/src/OpenMP.h
index 3486fac97da5a9d19a3864b778b8987b98c1cb93..a3da384688d2f7ea0f15a2d3649590e2d351c172 100644
--- a/AMDiS/src/OpenMP.h
+++ b/AMDiS/src/OpenMP.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file OpenMP.h */
+
 #ifndef AMDIS_OPENMP_H
 #define AMDIS_OPENMP_H
 
diff --git a/AMDiS/src/Operator.cc b/AMDiS/src/Operator.cc
index 251d5fd6ba0044e6174f0af2474983ab8352492b..6ef9f206e325a0990723619a3866493c8e876b1b 100644
--- a/AMDiS/src/Operator.cc
+++ b/AMDiS/src/Operator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Operator.h"
 #include "ElInfo.h"
 #include "Assembler.h"
diff --git a/AMDiS/src/Operator.h b/AMDiS/src/Operator.h
index 6fb4d43a6513c8d5bc4ce7d2c833783de0b9ad4e..368e2b04adb25dd6cae2ce705ea00716426af291 100644
--- a/AMDiS/src/Operator.h
+++ b/AMDiS/src/Operator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Operator.h */
 
diff --git a/AMDiS/src/Operator.hh b/AMDiS/src/Operator.hh
index 96dacf076857d74e8255ccc69c9a8c039935430f..0399065160bc8fe026250f212fbf4de45b4c8492 100644
--- a/AMDiS/src/Operator.hh
+++ b/AMDiS/src/Operator.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 namespace AMDiS {
 
   template <typename T>
diff --git a/AMDiS/src/OperatorTerm.cc b/AMDiS/src/OperatorTerm.cc
index cfff39ae4046c9a6860d82d227065eecbd9a2ad4..4edb840c7eb6cf2b31df7193628388989afae5a3 100644
--- a/AMDiS/src/OperatorTerm.cc
+++ b/AMDiS/src/OperatorTerm.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "OperatorTerm.h"
 #include "ElInfo.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/OperatorTerm.h b/AMDiS/src/OperatorTerm.h
index d96e0919a3cefc8f3515a51f709140f7c30882cc..541ce1062c1493cb60117e1edd07bce2f26be072 100644
--- a/AMDiS/src/OperatorTerm.h
+++ b/AMDiS/src/OperatorTerm.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file OperatorTerm.h */
 
diff --git a/AMDiS/src/OperatorTerm.hh b/AMDiS/src/OperatorTerm.hh
index 0c7c82ba3fe893a7868359bb944cf7388f5dbca6..ff6a15fb78735e1ad0a58cdd017b3407c3b42c8b 100644
--- a/AMDiS/src/OperatorTerm.hh
+++ b/AMDiS/src/OperatorTerm.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElInfo.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/Parameters.cc b/AMDiS/src/Parameters.cc
index da889fd9cdad60b6f0d594e832cdb522f450f2b0..c04502a7ed49f8cd00965328dbf07ff4bc451619 100644
--- a/AMDiS/src/Parameters.cc
+++ b/AMDiS/src/Parameters.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <fstream>
 #include <sstream>
 #include <algorithm>
diff --git a/AMDiS/src/Parameters.h b/AMDiS/src/Parameters.h
index 575cfb641e026679c499dc7561e3ae97d041c2ed..732a5425a3daa07d89cb3fe7d04ed91063562280 100644
--- a/AMDiS/src/Parameters.h
+++ b/AMDiS/src/Parameters.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Parameters.h */
 
diff --git a/AMDiS/src/Parametric.cc b/AMDiS/src/Parametric.cc
index ee443be29f5a61bd471425dcd112b9affed77898..1f05210834d2c0dd20194db87060bbb83fa7ab01 100644
--- a/AMDiS/src/Parametric.cc
+++ b/AMDiS/src/Parametric.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Parametric.h"
 #include "ElInfo.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/Parametric.h b/AMDiS/src/Parametric.h
index 31828e5bed33211d4a63304add520fc3fe97a7e5..eb0ca1c57e360b6502f30b4613d1ff5883a0a899 100644
--- a/AMDiS/src/Parametric.h
+++ b/AMDiS/src/Parametric.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Parametric.h */
 
diff --git a/AMDiS/src/PardisoSolver.cc b/AMDiS/src/PardisoSolver.cc
index 5de2b2566052ee0036355b46aea9a124608f892f..9c5e1369b024cf4b04782b248e4471e89ad9a2c0 100644
--- a/AMDiS/src/PardisoSolver.cc
+++ b/AMDiS/src/PardisoSolver.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "PardisoSolver.h"
 #include "SystemVector.h"
 #include "MatVecMultiplier.h"
diff --git a/AMDiS/src/PardisoSolver.h b/AMDiS/src/PardisoSolver.h
index 716a260fbd2923eab7dc032a6d8bc9db7118cf6c..933df80bfd3e53a58cd5eb221d0f244e03a78bac 100644
--- a/AMDiS/src/PardisoSolver.h
+++ b/AMDiS/src/PardisoSolver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PardisoSolver.h */
 
diff --git a/AMDiS/src/PardisoSolver.hh b/AMDiS/src/PardisoSolver.hh
index 15bf194febe9af172df2b00ba28298248527f6f7..414d0d8240f2d97ccaa464acd36ac428052738e7 100644
--- a/AMDiS/src/PardisoSolver.hh
+++ b/AMDiS/src/PardisoSolver.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "PardisoSolver.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/PeriodicBC.cc b/AMDiS/src/PeriodicBC.cc
index ddf4f2abff807532b97554941934fb6fd1245490..f6685ad3d350a5af3dd92546de384d45d67ebc35 100644
--- a/AMDiS/src/PeriodicBC.cc
+++ b/AMDiS/src/PeriodicBC.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "PeriodicBC.h"
 #include "BasisFunction.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/PeriodicBC.h b/AMDiS/src/PeriodicBC.h
index 05015d842da3d13e36aef400ad4d90f7ca088d69..a437f8d392b1d99c81f4436235975be020cb975d 100644
--- a/AMDiS/src/PeriodicBC.h
+++ b/AMDiS/src/PeriodicBC.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PeriodicBC.h */
 
diff --git a/AMDiS/src/PeriodicConnection.h b/AMDiS/src/PeriodicConnection.h
index e3c08becdc7dcc6ec1a7e155cbf82d2870cfeace..1964ab38e0f04ffffaf6fe6f44adf5f84d4d8160 100644
--- a/AMDiS/src/PeriodicConnection.h
+++ b/AMDiS/src/PeriodicConnection.h
@@ -1,21 +1,22 @@
 #ifndef AMDIS_PERIODICCONNECTION_H
 #define AMDIS_PERIODICCONNECTION_H
 
-#include "FixVec.h"
-
-namespace AMDiS {
-
-  class Element;
-
-  class PeriodicConnection 
-  {
-  public:
-    PeriodicConnection(int dim;
-		       Element *el0,
 		       Element *el1,
 		       DimVec<int> &vertices0,
 		       DimVec<int> &vertices1) 
     {
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
       FUNCNAME("PeriodicConnection::PeriodicConnection()");
       TEST_EXIT(el0)("element0 not set\n");
       TEST_EXIT(el1)("element1 not set\n");
diff --git a/AMDiS/src/PeriodicInfo.h b/AMDiS/src/PeriodicInfo.h
index 30d16d1fe6cf551a5c1600fc64723a2833e38a23..965ae2e014b57d3cd51d9d56aaa270a8da32ba73 100644
--- a/AMDiS/src/PeriodicInfo.h
+++ b/AMDiS/src/PeriodicInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PeriodicInfo.h */
 
diff --git a/AMDiS/src/PeriodicMap.h b/AMDiS/src/PeriodicMap.h
index 346b93fa2d8c886c0e346f3f08549e2070ab5cb0..dac987dfa102d9c581870a94e55da6dbaab6db67 100644
--- a/AMDiS/src/PeriodicMap.h
+++ b/AMDiS/src/PeriodicMap.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PeriodicMap.h */
 
diff --git a/AMDiS/src/ProblemImplicit.cc b/AMDiS/src/ProblemImplicit.cc
index bf347b567b20122a89adc774de3af7f7b44d76dd..84ade4f07f43cf09a152d159d59ba21892d5e646 100644
--- a/AMDiS/src/ProblemImplicit.cc
+++ b/AMDiS/src/ProblemImplicit.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ProblemImplicit.h"
 #include "MathFunctions.h"
 
diff --git a/AMDiS/src/ProblemImplicit.h b/AMDiS/src/ProblemImplicit.h
index ba4648fb887f2ecbe13a657b65831d727dc08aae..af965a848c193036c361888c894dfe648ff1483a 100644
--- a/AMDiS/src/ProblemImplicit.h
+++ b/AMDiS/src/ProblemImplicit.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemImplicit.h */
 
diff --git a/AMDiS/src/ProblemInstat.cc b/AMDiS/src/ProblemInstat.cc
index 4bdf5b45d4bd1b51afc147d7329ac8f0b726cf37..3338ed827527b868eaf5ec401d3cf205d33b21ae 100644
--- a/AMDiS/src/ProblemInstat.cc
+++ b/AMDiS/src/ProblemInstat.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ProblemInstat.h"
 #include "io/FileWriter.h"
 #include "AdaptStationary.h"
diff --git a/AMDiS/src/ProblemInstat.h b/AMDiS/src/ProblemInstat.h
index 3ed097243e8282ce770536f9819006017607d497..aff82e6daecb08aef4eebfc309052bec3f8be73d 100644
--- a/AMDiS/src/ProblemInstat.h
+++ b/AMDiS/src/ProblemInstat.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemInstat.h */
 
diff --git a/AMDiS/src/ProblemInterpolScal.cc b/AMDiS/src/ProblemInterpolScal.cc
index 8c4f2bf0ff8dd8dd7f9386bf691895c30eaa6ba0..79d9897eb23745aeeeee88791957e9ca3342f80a 100644
--- a/AMDiS/src/ProblemInterpolScal.cc
+++ b/AMDiS/src/ProblemInterpolScal.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ProblemInterpolScal.h"
 #include "Mesh.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/ProblemInterpolScal.h b/AMDiS/src/ProblemInterpolScal.h
index cbfd76a3fb2a1a7a8fa5871833558c3633ab6fef..139c6c22ce6f22bb5cb5dce229d31243f2856625 100644
--- a/AMDiS/src/ProblemInterpolScal.h
+++ b/AMDiS/src/ProblemInterpolScal.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemInterpolScal.h */
 
diff --git a/AMDiS/src/ProblemInterpolVec.cc b/AMDiS/src/ProblemInterpolVec.cc
index ccb5d1dfcfb958061256c23cd4c956257b6e73bf..ba87c92829df705fc32874b326926e134db1c8dd 100644
--- a/AMDiS/src/ProblemInterpolVec.cc
+++ b/AMDiS/src/ProblemInterpolVec.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ProblemInterpolVec.h"
 #include "Mesh.h"
 #include "Error.h"
diff --git a/AMDiS/src/ProblemInterpolVec.h b/AMDiS/src/ProblemInterpolVec.h
index 8c3bb079d5eaf09374904524c40fd23976ddc0c2..b204fd9703009fc5b3ee1e386c1173dc43671f25 100644
--- a/AMDiS/src/ProblemInterpolVec.h
+++ b/AMDiS/src/ProblemInterpolVec.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemInterpolVec.h */
 
diff --git a/AMDiS/src/ProblemIterationInterface.h b/AMDiS/src/ProblemIterationInterface.h
index e4ff70513033b219118ae5a48d1dfed927b0b0e0..0737ad978b3ffec3df0e4e3de8226bf03405f26c 100644
--- a/AMDiS/src/ProblemIterationInterface.h
+++ b/AMDiS/src/ProblemIterationInterface.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemIterationInterface.h */
 
diff --git a/AMDiS/src/ProblemNonLin.cc b/AMDiS/src/ProblemNonLin.cc
index 59e13b629ab97fbd6795bfa3c9a01e41bccd57b7..7106c3ed40f46923931605e538e578a2b1797c18 100644
--- a/AMDiS/src/ProblemNonLin.cc
+++ b/AMDiS/src/ProblemNonLin.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ProblemNonLin.h"
 #include "NonLinSolver.h"
 #include "CreatorMap.h"
diff --git a/AMDiS/src/ProblemNonLin.h b/AMDiS/src/ProblemNonLin.h
index 7cc35c71fefe8a913caedf513b940f4b25e01703..82928fb0593da3447046a0ff3f65ce8b73c0b87f 100644
--- a/AMDiS/src/ProblemNonLin.h
+++ b/AMDiS/src/ProblemNonLin.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemNonLin.h */
 
diff --git a/AMDiS/src/ProblemScal.cc b/AMDiS/src/ProblemScal.cc
index 18157ce64adad26c65d5e30c6e613f5f2bac9720..43a2e174bd942ff9390e8c1deea7b78f9ceef3ae 100644
--- a/AMDiS/src/ProblemScal.cc
+++ b/AMDiS/src/ProblemScal.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ProblemScal.h"
 #include "AbstractFunction.h"
 #include "DirichletBC.h"
diff --git a/AMDiS/src/ProblemScal.h b/AMDiS/src/ProblemScal.h
index 545c50f28647a77c2db0177ccb441481ea4f2365..c8fa25fe56f2130a60f5d3e3546044fe6e68c06b 100644
--- a/AMDiS/src/ProblemScal.h
+++ b/AMDiS/src/ProblemScal.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemScal.h */
 
diff --git a/AMDiS/src/ProblemStatBase.h b/AMDiS/src/ProblemStatBase.h
index 1caf7ece7abb0ba061293b745238c7f426201b2e..ce544ea6cb9cdf3223fa97351a87113219fec0bb 100644
--- a/AMDiS/src/ProblemStatBase.h
+++ b/AMDiS/src/ProblemStatBase.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemStatBase.h */
 
diff --git a/AMDiS/src/ProblemTimeInterface.h b/AMDiS/src/ProblemTimeInterface.h
index 5a68d00a1b5c4a1fb987e0397fbb7cc374e79543..cb9c2e2e42f6817ffeca911c06fece0ab65a6704 100644
--- a/AMDiS/src/ProblemTimeInterface.h
+++ b/AMDiS/src/ProblemTimeInterface.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemTimeInterface.h */
 
diff --git a/AMDiS/src/ProblemVec.cc b/AMDiS/src/ProblemVec.cc
index beb0c02d55e0d86ca88a811b3d97d68d349cb380..dca638316311d7379d4cd796871e80084fa4bfdb 100644
--- a/AMDiS/src/ProblemVec.cc
+++ b/AMDiS/src/ProblemVec.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <sstream>
 #include <boost/lexical_cast.hpp>
 #include "ProblemVec.h"
diff --git a/AMDiS/src/ProblemVec.h b/AMDiS/src/ProblemVec.h
index b93778049b61a366238e7c5c974e6bf1e132c74a..3f00a348b8a41e1de3e0fccfa6a85822b6237746 100644
--- a/AMDiS/src/ProblemVec.h
+++ b/AMDiS/src/ProblemVec.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemVec.h */
 
diff --git a/AMDiS/src/ProblemVecDbg.cc b/AMDiS/src/ProblemVecDbg.cc
index ec83a4e00aaacd5fe305b648299f491dd63d9338..1ddd7af81d936848751c98db5abc77dfe2816ce0 100644
--- a/AMDiS/src/ProblemVecDbg.cc
+++ b/AMDiS/src/ProblemVecDbg.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <map>
 #include <utility>
 #include "ProblemVecDbg.h"
diff --git a/AMDiS/src/ProblemVecDbg.h b/AMDiS/src/ProblemVecDbg.h
index 80758f0b529fb6804f219f4efb741cd01a4c4fb9..7e6db5c20c4f9025f87eb6245c48fd3da40c8207 100644
--- a/AMDiS/src/ProblemVecDbg.h
+++ b/AMDiS/src/ProblemVecDbg.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ProblemVecDbg.h */
 
diff --git a/AMDiS/src/Projection.cc b/AMDiS/src/Projection.cc
index 184dc50d1eaaed05af23b1871d5ea5e357ce9af7..22c55b668f3d1077ff8a9cff160d4fd5d7e6b86a 100644
--- a/AMDiS/src/Projection.cc
+++ b/AMDiS/src/Projection.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Projection.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/Projection.h b/AMDiS/src/Projection.h
index 7d2c9550b71417b2abac995366b5e346de7c1d5b..c19f5c996f1a0ca347f90e69f3f3b58bff5bf82a 100644
--- a/AMDiS/src/Projection.h
+++ b/AMDiS/src/Projection.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Projection.h */
 
diff --git a/AMDiS/src/QPInfo.cc b/AMDiS/src/QPInfo.cc
index 93047902d7afbb2b20b1f9a82e5f0b703566d466..1e0598975ee85918ad0d154676454a16ac1d82c2 100644
--- a/AMDiS/src/QPInfo.cc
+++ b/AMDiS/src/QPInfo.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "QPInfo.h"
 #include "Quadrature.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/QPInfo.h b/AMDiS/src/QPInfo.h
index dac5de3600b3d18014f70a3c62912ea1651c8bf2..4a8b3d5c94a17c759b1bbacb47da0c9888d55abd 100644
--- a/AMDiS/src/QPInfo.h
+++ b/AMDiS/src/QPInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file QPInfo.h */
 
diff --git a/AMDiS/src/QPsiPhi.cc b/AMDiS/src/QPsiPhi.cc
index 4d976d0ad5758d24dcd9f9f62dce5bbc69efbc3e..263845ed9b3b236c454d5f7bd0f48f8f2430399a 100644
--- a/AMDiS/src/QPsiPhi.cc
+++ b/AMDiS/src/QPsiPhi.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 #include <functional>
 
diff --git a/AMDiS/src/QPsiPhi.h b/AMDiS/src/QPsiPhi.h
index 9f9bc58675f66429e8f1186aa693c36a525cefcb..c285a3d88a51cc79a799a855393321ab8bbe62ea 100644
--- a/AMDiS/src/QPsiPhi.h
+++ b/AMDiS/src/QPsiPhi.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file QPsiPhi.h */
 
diff --git a/AMDiS/src/Quadrature.cc b/AMDiS/src/Quadrature.cc
index e47c5e7cd388bf09b480f9b2202a01fad60da7ad..19e9a27cfdddb6f602cc9bf830c7bc3b3ef0efae 100644
--- a/AMDiS/src/Quadrature.cc
+++ b/AMDiS/src/Quadrature.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Quadrature.h"
 #include "FixVec.h"
 #include "AbstractFunction.h"
diff --git a/AMDiS/src/Quadrature.h b/AMDiS/src/Quadrature.h
index aa7037db7009e34ff8e440b040864f3ac5fbca4e..fd3fc7c1d37e547660f5b1856bde86454f81aee6 100644
--- a/AMDiS/src/Quadrature.h
+++ b/AMDiS/src/Quadrature.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Quadrature.h */
 
diff --git a/AMDiS/src/Quadrature.hh b/AMDiS/src/Quadrature.hh
index be08be4b7e2a0e6856bd3a6242428b8cffb1b630..7c4b3725a3b8542b504be34213f4205854b121ff 100644
--- a/AMDiS/src/Quadrature.hh
+++ b/AMDiS/src/Quadrature.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 namespace AMDiS {
 
   /****************************************************************************/
diff --git a/AMDiS/src/RCNeighbourList.cc b/AMDiS/src/RCNeighbourList.cc
index 4cc0ce8a0be08d6f61bf22ba081f1987e92342c5..bc8832500ea2cac9544854ad6bc46dcd8ca7ee04 100644
--- a/AMDiS/src/RCNeighbourList.cc
+++ b/AMDiS/src/RCNeighbourList.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RCNeighbourList.h"
 #include "Element.h"
 #include "Line.h"
diff --git a/AMDiS/src/RCNeighbourList.h b/AMDiS/src/RCNeighbourList.h
index 777db447ae3145dbec41320139fb101bbf2fefa4..174c84a5f4490798505d96d141ba8e9d058c526f 100644
--- a/AMDiS/src/RCNeighbourList.h
+++ b/AMDiS/src/RCNeighbourList.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RCNeighbourList.h */
 
diff --git a/AMDiS/src/Recovery.cc b/AMDiS/src/Recovery.cc
index e262efc0813cf306a4a6a9bad10424282ec51876..bd29d133976d1913f02f6aa793bcb19f75c988b3 100644
--- a/AMDiS/src/Recovery.cc
+++ b/AMDiS/src/Recovery.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Recovery.h"
 
 RecoveryStructure& RecoveryStructure::operator=(const RecoveryStructure& rhs) 
diff --git a/AMDiS/src/Recovery.h b/AMDiS/src/Recovery.h
index 7fa0a0feec5dcfd997a40b22d6a8d4639d646d17..5d928b1fba14909b5c83b0a82969ba99317e2cf5 100644
--- a/AMDiS/src/Recovery.h
+++ b/AMDiS/src/Recovery.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Recovery.h */
 
diff --git a/AMDiS/src/RecoveryEstimator.cc b/AMDiS/src/RecoveryEstimator.cc
index f2f506be07f43f6f349b9714368d96b798cce9a5..501ee0a2f28cba72b28f8a59543a888c30b24604 100644
--- a/AMDiS/src/RecoveryEstimator.cc
+++ b/AMDiS/src/RecoveryEstimator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RecoveryEstimator.h"
 #include "Parameters.h"
 
diff --git a/AMDiS/src/RecoveryEstimator.h b/AMDiS/src/RecoveryEstimator.h
index 510510bc26606f302bc817d5c4b0a64df6ed09a5..636c37b860f5812cbb93e1bbb729946af1939471 100644
--- a/AMDiS/src/RecoveryEstimator.h
+++ b/AMDiS/src/RecoveryEstimator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RecoveryEstimator.h */
 
diff --git a/AMDiS/src/RefinementManager.cc b/AMDiS/src/RefinementManager.cc
index 4cf5a6fe36510c019060917c2b686aad453f9ad1..a48a57d5721d4c158bd007e94e371548963e62e4 100644
--- a/AMDiS/src/RefinementManager.cc
+++ b/AMDiS/src/RefinementManager.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RefinementManager.h"
 #include "Mesh.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/RefinementManager.h b/AMDiS/src/RefinementManager.h
index b3167c59924681774895c6f93d8187ee29c16619..558a021cb1f94aa78b72472dd6747c135f0053da 100644
--- a/AMDiS/src/RefinementManager.h
+++ b/AMDiS/src/RefinementManager.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RefinementManager.h */
 
diff --git a/AMDiS/src/RefinementManager1d.cc b/AMDiS/src/RefinementManager1d.cc
index e53bc43a3024afa2b816bc600f42f8a09d3e9851..d26cf5038e9955b2be81887eb4326a0b60e0a8d0 100644
--- a/AMDiS/src/RefinementManager1d.cc
+++ b/AMDiS/src/RefinementManager1d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RefinementManager.h"
 #include "Mesh.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/RefinementManager1d.h b/AMDiS/src/RefinementManager1d.h
index 1cdf052aefafbd9583ab7e90c4db19992e766cf3..754e88980dfa609736abb4f5175496569c5125db 100644
--- a/AMDiS/src/RefinementManager1d.h
+++ b/AMDiS/src/RefinementManager1d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RefinementManager1d.h */
 
diff --git a/AMDiS/src/RefinementManager2d.cc b/AMDiS/src/RefinementManager2d.cc
index 70d49dd711306e6cad914afb4ff110b38002c08b..d730ca9faacd1d9ed9b3c730684fd530e449ef11 100644
--- a/AMDiS/src/RefinementManager2d.cc
+++ b/AMDiS/src/RefinementManager2d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RefinementManager.h"
 #include "Mesh.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/RefinementManager2d.h b/AMDiS/src/RefinementManager2d.h
index fdcf032b541e9e770e82d29ca61ddd069ba4bf74..3ce0cd83de4de4a3a7a72d874ba1aeed628f2522 100644
--- a/AMDiS/src/RefinementManager2d.h
+++ b/AMDiS/src/RefinementManager2d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RefinementManager2d.h */
 
diff --git a/AMDiS/src/RefinementManager3d.cc b/AMDiS/src/RefinementManager3d.cc
index cbced11779090151fa1257c7fb40b1fb4fa5399d..b5f2ad0e657380ea74e7f6248a1ee050010fed55 100644
--- a/AMDiS/src/RefinementManager3d.cc
+++ b/AMDiS/src/RefinementManager3d.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RefinementManager.h"
 #include "Mesh.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/RefinementManager3d.h b/AMDiS/src/RefinementManager3d.h
index 270f239fb749b9d5eed59f7744428bb7d38f7ed0..0815a4ceb275274ccf317752a9871b7bac0733ce 100644
--- a/AMDiS/src/RefinementManager3d.h
+++ b/AMDiS/src/RefinementManager3d.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RefinementManager3d.h */
 
diff --git a/AMDiS/src/ResidualEstimator.cc b/AMDiS/src/ResidualEstimator.cc
index aabbb8f0c04bfa450fe2ed309ba8c16b5f3eaa6a..c03689d8a6ca34c4ab1a305365fe46b0b547ca77 100644
--- a/AMDiS/src/ResidualEstimator.cc
+++ b/AMDiS/src/ResidualEstimator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ResidualEstimator.h"
 #include "Operator.h"
 #include "DOFMatrix.h"
diff --git a/AMDiS/src/ResidualEstimator.h b/AMDiS/src/ResidualEstimator.h
index ddba9399f6a50566f6fb65e461d1db62166b37ac..182e4ddf557cdf6eca50145004fbbf6341838cc8 100644
--- a/AMDiS/src/ResidualEstimator.h
+++ b/AMDiS/src/ResidualEstimator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ResidualEstimator.h */
 
diff --git a/AMDiS/src/ResidualParallelEstimator.cc b/AMDiS/src/ResidualParallelEstimator.cc
index 7523f67231de378e78067a974cb00890c998adc9..8c69696e6f3055ad5f1ad8a057991fa2218a6885 100644
--- a/AMDiS/src/ResidualParallelEstimator.cc
+++ b/AMDiS/src/ResidualParallelEstimator.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ResidualParallelEstimator.h"
 #include "ResidualEstimator.h"
 #include "TraverseParallel.h"
diff --git a/AMDiS/src/ResidualParallelEstimator.h b/AMDiS/src/ResidualParallelEstimator.h
index 6b66ad8b77b683d943b0579bde6fb6017a6ecb5e..b2bb9384db2bbd209cc0b65a4f69b1acf5bebb75 100644
--- a/AMDiS/src/ResidualParallelEstimator.h
+++ b/AMDiS/src/ResidualParallelEstimator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ResidualParallelEstimator.h */
 
diff --git a/AMDiS/src/RobinBC.cc b/AMDiS/src/RobinBC.cc
index ed6871bda45fe6584b48e59e548b6f5742201322..1935bf8035a6b09fe537d67c904b9cfa56b142f6 100644
--- a/AMDiS/src/RobinBC.cc
+++ b/AMDiS/src/RobinBC.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "RobinBC.h"
 #include "Estimator.h"
 #include "Assembler.h"
diff --git a/AMDiS/src/RobinBC.h b/AMDiS/src/RobinBC.h
index 1014313d5f74218f99857ca299a4847f52459c36..4bbbac481b002f3ecbdfd6bb2bda76d3df7ae54d 100644
--- a/AMDiS/src/RobinBC.h
+++ b/AMDiS/src/RobinBC.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RobinBC.h */
 
diff --git a/AMDiS/src/RobinBC.hh b/AMDiS/src/RobinBC.hh
index f9a49ba86932be557a2edaa78a3b0f3a4ba95177..f60d96d9d8cb980bed7f8fb72e591ab376f5ebcb 100644
--- a/AMDiS/src/RobinBC.hh
+++ b/AMDiS/src/RobinBC.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Estimator.h"
 #include "Assembler.h"
 
diff --git a/AMDiS/src/SMIAdapter.cc b/AMDiS/src/SMIAdapter.cc
index 5e0c68cf6d7fe30988fcd323c06caf1a50ddfcf0..6c3d6320cd618508d5fa8dfac24acacab27688c7 100644
--- a/AMDiS/src/SMIAdapter.cc
+++ b/AMDiS/src/SMIAdapter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "SMIAdapter.h"
 #include "Mesh.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/SMIAdapter.h b/AMDiS/src/SMIAdapter.h
index eb177fd144a3b404cdfd740131717e6bfb1d6935..5f6bbe6d20193dd95dd9e1dc8e5e0e65e21a49bb 100644
--- a/AMDiS/src/SMIAdapter.h
+++ b/AMDiS/src/SMIAdapter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SMIAdapter.h */
 
diff --git a/AMDiS/src/ScalableQuadrature.cc b/AMDiS/src/ScalableQuadrature.cc
index 22558e8de0c6f83eabba8dc4cf7ba1e3addf66fe..e2ef10bc4f1e7708b0c360fa1f1c7009d8336bb9 100644
--- a/AMDiS/src/ScalableQuadrature.cc
+++ b/AMDiS/src/ScalableQuadrature.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ScalableQuadrature.h"
 #include "SubElInfo.h"
 
diff --git a/AMDiS/src/ScalableQuadrature.h b/AMDiS/src/ScalableQuadrature.h
index e99457bc04e2b1cb1684585e6b52b7245cc418af..c6d63434d89fe0e63776ecf3482f82a10c7103db 100644
--- a/AMDiS/src/ScalableQuadrature.h
+++ b/AMDiS/src/ScalableQuadrature.h
@@ -1,3 +1,23 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
 /** \file ScalableQuadrature.h */
 
 #ifndef AMDIS_SCALABLEQUADRATURE_H
diff --git a/AMDiS/src/SecondOrderAssembler.cc b/AMDiS/src/SecondOrderAssembler.cc
index c5cb2b7f3dc6aea0552a6f8f36399254e3c5f83d..683fc2e528d63a5a533fe9d29218585e7c113d70 100644
--- a/AMDiS/src/SecondOrderAssembler.cc
+++ b/AMDiS/src/SecondOrderAssembler.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <vector>
 #include <boost/numeric/mtl/mtl.hpp>
 #include "Assembler.h"
diff --git a/AMDiS/src/SecondOrderAssembler.h b/AMDiS/src/SecondOrderAssembler.h
index b61680380e35c38f8003b503745fe7446c435246..e3da7f5618ddf9e0366cf0de5db0c0a0f6561c81 100644
--- a/AMDiS/src/SecondOrderAssembler.h
+++ b/AMDiS/src/SecondOrderAssembler.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file SecondOrderAssembler.h */
+
 #ifndef AMDIS_SECOND_ORDER_ASSEMBLER_H
 #define AMDIS_SECOND_ORDER_ASSEMBLER_H
 
diff --git a/AMDiS/src/SecondOrderTerm.cc b/AMDiS/src/SecondOrderTerm.cc
index e9fc26a80be888bf9c7ee7e051d9f003baade388..57af28831f7a497b2716139330a34227578981da 100644
--- a/AMDiS/src/SecondOrderTerm.cc
+++ b/AMDiS/src/SecondOrderTerm.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "SecondOrderTerm.h"
 #include "DOFVector.h"
 
diff --git a/AMDiS/src/SecondOrderTerm.h b/AMDiS/src/SecondOrderTerm.h
index deaf11b14a94590e7b182d436ea9ac4261dc3f18..d2ad39918d259d9ca41767dddf4c8454a7e5841b 100644
--- a/AMDiS/src/SecondOrderTerm.h
+++ b/AMDiS/src/SecondOrderTerm.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SecondOrderTerm.h */
 
diff --git a/AMDiS/src/Serializable.h b/AMDiS/src/Serializable.h
index 6eb12125028eab89bfa15c276a52c737c8652142..582183ba57a65a344c36de7aa880197f243f0d2f 100644
--- a/AMDiS/src/Serializable.h
+++ b/AMDiS/src/Serializable.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Serializable.h */
 
diff --git a/AMDiS/src/Serializer.cc b/AMDiS/src/Serializer.cc
index 1f2579c037ac20303a1864d50b67bc7095387aa0..a4e1842f52c087472fca8ee668754a5d3c02b019 100644
--- a/AMDiS/src/Serializer.cc
+++ b/AMDiS/src/Serializer.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Serializer.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/Serializer.h b/AMDiS/src/Serializer.h
index cb5249a3a17141a591b19f3b46dedb428c83b172..4ef1a77223c8a0586b1bfd3096d1fb863bb16f3a 100644
--- a/AMDiS/src/Serializer.h
+++ b/AMDiS/src/Serializer.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Serializer.h */
 
diff --git a/AMDiS/src/SolutionDataStorage.h b/AMDiS/src/SolutionDataStorage.h
index 054b20343d8f0ac6cb163b1ba3fc694df398e925..1d7fd6f7c7f95dc42ab9f0553d80e8becdb52f9f 100644
--- a/AMDiS/src/SolutionDataStorage.h
+++ b/AMDiS/src/SolutionDataStorage.h
@@ -1,21 +1,22 @@
 #ifndef AMDIS_SOLUTION_DATA_STORAGE_H
 #define AMDIS_SOLUTION_DATA_STORAGE_H
 
-#include <iostream>
-#include <fstream>
-#include <vector>
-#include <map>
-#include "DOFVector.h"
-#include "SystemVector.h"
-#include "Parameters.h"
-
-namespace AMDiS {
-
-  template<typename T>
   struct SolutionHelper
   {
     typedef FiniteElemSpace* type;
   };
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
   template <>
   struct SolutionHelper<SystemVector>
diff --git a/AMDiS/src/SolutionDataStorage.hh b/AMDiS/src/SolutionDataStorage.hh
index 3b5d82f69040064c94c0e03e47d61e27a9a0bf90..2d8ea1367b9b6213140f718e3d35d8bedb254301 100644
--- a/AMDiS/src/SolutionDataStorage.hh
+++ b/AMDiS/src/SolutionDataStorage.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <iostream>
 #include <sstream>
 
diff --git a/AMDiS/src/SolverMatrix.h b/AMDiS/src/SolverMatrix.h
index c22588f3eaa5bb280d37155f0a608caa8e91bd6a..1fe1ae321387cdde86fad71d7e8da88ffa9c8873 100644
--- a/AMDiS/src/SolverMatrix.h
+++ b/AMDiS/src/SolverMatrix.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SolverMatrix.h */
 
diff --git a/AMDiS/src/StandardProblemIteration.cc b/AMDiS/src/StandardProblemIteration.cc
index e62268014dab1944c05030725b9d36c8fac34662..b8f2b613823be6eeb2e6ac77f44d93e034ab3a3f 100644
--- a/AMDiS/src/StandardProblemIteration.cc
+++ b/AMDiS/src/StandardProblemIteration.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "StandardProblemIteration.h"
 #include "AdaptInfo.h"
 #include "ProblemStatBase.h"
diff --git a/AMDiS/src/StandardProblemIteration.h b/AMDiS/src/StandardProblemIteration.h
index 3bea2ab7da62c5b1b06b4d3587c2a2af85c467c7..bd04b9d58f7301704315fe36cf8dcc3952baf0cc 100644
--- a/AMDiS/src/StandardProblemIteration.h
+++ b/AMDiS/src/StandardProblemIteration.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file StandardProblemIteration.h */
 
diff --git a/AMDiS/src/SubAssembler.cc b/AMDiS/src/SubAssembler.cc
index c3fbdf53caa35905ef207128f86eed9af0b3b1fd..ed6725a7fb0c4bdb7ea5836f5381682e6c4eca4c 100644
--- a/AMDiS/src/SubAssembler.cc
+++ b/AMDiS/src/SubAssembler.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "SubAssembler.h"
 #include "Assembler.h"
 #include "FiniteElemSpace.h"
diff --git a/AMDiS/src/SubAssembler.h b/AMDiS/src/SubAssembler.h
index 8ddd7daae05bab44c03e3fd8133a85c676c71b7b..b69a4bf9be2a984d4c3e786956b13b23d63ae499 100644
--- a/AMDiS/src/SubAssembler.h
+++ b/AMDiS/src/SubAssembler.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file SubAssembler.h */
+
 #ifndef AMDIS_SUB_ASSEMBLER_H
 #define AMDIS_SUB_ASSEMBLER_H
 
diff --git a/AMDiS/src/SubAssembler.hh b/AMDiS/src/SubAssembler.hh
index 0063e5b441f02eb40daed040b562055def5ac4cd..daf144e04610f3a474d25a04b5d2a16f0895230a 100644
--- a/AMDiS/src/SubAssembler.hh
+++ b/AMDiS/src/SubAssembler.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Quadrature.h"
 #include "FiniteElemSpace.h"
 #include "ElInfo.h"
diff --git a/AMDiS/src/SubElInfo.cc b/AMDiS/src/SubElInfo.cc
index e36db4696e2b749570aaa443b36986c1f54a4d38..a4148944135ed07699626fac2e1c9ac000555940 100644
--- a/AMDiS/src/SubElInfo.cc
+++ b/AMDiS/src/SubElInfo.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "SubElInfo.h"
 #include "ElInfo.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/SubElInfo.h b/AMDiS/src/SubElInfo.h
index de48bdc5e69645f2f41bef4eeb585d58b55f02b7..0364005666052a1c7ef4f9cd7660c308f4484c97 100644
--- a/AMDiS/src/SubElInfo.h
+++ b/AMDiS/src/SubElInfo.h
@@ -1,3 +1,23 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
 /** \file SubElInfo.h */
 
 #ifndef AMDIS_SUBELINFO_H
diff --git a/AMDiS/src/SubQuadrature.cc b/AMDiS/src/SubQuadrature.cc
index 513373bee1501f25e4e8da5a63f3386d3dac9c59..7cfacb5e249a54586da336cbcbabaf9194c84e49 100644
--- a/AMDiS/src/SubQuadrature.cc
+++ b/AMDiS/src/SubQuadrature.cc
@@ -1 +1,13 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "SubQuadrature.h"
diff --git a/AMDiS/src/SubQuadrature.h b/AMDiS/src/SubQuadrature.h
index f06b1d4a08cc6a333e0e0dc1aad5fd30ce40a3b9..ca35261297449eef343453e0096657ecffa7f5c9 100644
--- a/AMDiS/src/SubQuadrature.h
+++ b/AMDiS/src/SubQuadrature.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SubQuadrature.h */
 
diff --git a/AMDiS/src/SurfaceAssembler.h b/AMDiS/src/SurfaceAssembler.h
index a3582ab992e50705c03b096fec42fe8a010765b5..3cceec165b897bff4dc460b33217364ecb59d0a5 100644
--- a/AMDiS/src/SurfaceAssembler.h
+++ b/AMDiS/src/SurfaceAssembler.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SurfaceAssembler.h */
 
diff --git a/AMDiS/src/SurfaceOperator.h b/AMDiS/src/SurfaceOperator.h
index 6cc4ea164b9475ad1ee1adae6c26a731333c0363..c907eaedda9085cea803a631b91e9cfb37d97054 100644
--- a/AMDiS/src/SurfaceOperator.h
+++ b/AMDiS/src/SurfaceOperator.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SurfaceOperator.h */
 
diff --git a/AMDiS/src/SurfaceQuadrature.cc b/AMDiS/src/SurfaceQuadrature.cc
index 2b1990d3d321c03b337640c3495c16f5d717deda..907b51ed2dbd46114d3e9a15283769cccf818fdb 100644
--- a/AMDiS/src/SurfaceQuadrature.cc
+++ b/AMDiS/src/SurfaceQuadrature.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 
 #include "SurfaceQuadrature.h"
diff --git a/AMDiS/src/SurfaceQuadrature.h b/AMDiS/src/SurfaceQuadrature.h
index 9a977e6e6ae57f9974909cc02c9d0cf438644860..a5c1797e284976641cbe4ef2539e9648bcc39ea9 100644
--- a/AMDiS/src/SurfaceQuadrature.h
+++ b/AMDiS/src/SurfaceQuadrature.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SurfaceQuadrature.h */
 
diff --git a/AMDiS/src/SurfaceRegion_ED.h b/AMDiS/src/SurfaceRegion_ED.h
index 7d262e33c8690ed1f0d1c9cf5520d58baef80ce2..6890243e9c9da1dccd8d53a68c8c31217860bfc2 100644
--- a/AMDiS/src/SurfaceRegion_ED.h
+++ b/AMDiS/src/SurfaceRegion_ED.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SurfaceRegion_ED.h */
 
diff --git a/AMDiS/src/SystemVector.h b/AMDiS/src/SystemVector.h
index 864a3952e1ec49e24592f672c2a978e4d0ba0ab0..ccf557aec380386b770e0cbb32c267eb33d1476a 100644
--- a/AMDiS/src/SystemVector.h
+++ b/AMDiS/src/SystemVector.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file SystemVector.h */
 
diff --git a/AMDiS/src/Tetrahedron.cc b/AMDiS/src/Tetrahedron.cc
index 87d48feab8f6f08da94a6bf5b2ec257c45669545..5372118a0b02b444a23ff8ae8cd730a6815e6eea 100644
--- a/AMDiS/src/Tetrahedron.cc
+++ b/AMDiS/src/Tetrahedron.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Tetrahedron.h"
 #include "DOFAdmin.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/Tetrahedron.h b/AMDiS/src/Tetrahedron.h
index 1ac2cf382f0a1a3676026497f3e57957765717b5..1a3f274f3235edd4f5877754562e1bfe58d0a406 100644
--- a/AMDiS/src/Tetrahedron.h
+++ b/AMDiS/src/Tetrahedron.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Tetrahedron.h */
 
diff --git a/AMDiS/src/TimedObject.h b/AMDiS/src/TimedObject.h
index a4879d170363205da9187adb4fc937a4c96ca1ff..9859282d3e979852f7b8e68c18e15535adf1d20b 100644
--- a/AMDiS/src/TimedObject.h
+++ b/AMDiS/src/TimedObject.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file TimedObject.h */
 
diff --git a/AMDiS/src/Traverse.cc b/AMDiS/src/Traverse.cc
index 60937dd97d73e3c90f6f11a67203ca8c1c7a5c98..250718e348ddacd3b36ae2eed835cec450ed982d 100644
--- a/AMDiS/src/Traverse.cc
+++ b/AMDiS/src/Traverse.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Traverse.h"
 #include "Element.h"
 #include "Line.h"
diff --git a/AMDiS/src/Traverse.h b/AMDiS/src/Traverse.h
index 8752b834ad0d9baaff77ed4da9a43651967d079a..42c0d86be6641762125b3b66912b17a88e3e05d8 100644
--- a/AMDiS/src/Traverse.h
+++ b/AMDiS/src/Traverse.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Traverse.h */
 
diff --git a/AMDiS/src/TraverseParallel.cc b/AMDiS/src/TraverseParallel.cc
index 8b5334e656bc21dafd3641d3ed3b6a15e12b1c62..f5fb591f2e40513372f2b07a980916f22281b537 100644
--- a/AMDiS/src/TraverseParallel.cc
+++ b/AMDiS/src/TraverseParallel.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "TraverseParallel.h"
 #include "OpenMP.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/TraverseParallel.h b/AMDiS/src/TraverseParallel.h
index 44046eaaa0179047bc78cdffbb98f334db0f7499..f3c7f77847244ba53f5be6fbb81609efc3fabb27 100644
--- a/AMDiS/src/TraverseParallel.h
+++ b/AMDiS/src/TraverseParallel.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file TraverseParallel.h */
 
diff --git a/AMDiS/src/Triangle.cc b/AMDiS/src/Triangle.cc
index 671d66a22fbba0563202212d926421ec70278ec6..a60cc4368630ed93e3c939aa38c62ca1eab04a71 100644
--- a/AMDiS/src/Triangle.cc
+++ b/AMDiS/src/Triangle.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "Triangle.h"
 #include "DOFAdmin.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/Triangle.h b/AMDiS/src/Triangle.h
index 7b52cde1976394e52979fd6687d0f5596621ff2b..ef141a0189c6298b6847bd280470e840615db605 100644
--- a/AMDiS/src/Triangle.h
+++ b/AMDiS/src/Triangle.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Triangle.h */
 
diff --git a/AMDiS/src/UmfPackSolver.h b/AMDiS/src/UmfPackSolver.h
index c68a4db8e7246a77646910b875690f9dc3618c66..c8f6e5eda56341db42032bd352cd47074163cfaf 100644
--- a/AMDiS/src/UmfPackSolver.h
+++ b/AMDiS/src/UmfPackSolver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file UmfPackSolver.h */
 
diff --git a/AMDiS/src/VertexInfo.h b/AMDiS/src/VertexInfo.h
index 41cf0aec283098d11f2ad51a29f6111306a697a7..ea39c734dfa73cd6b3b4a5872259f4e10e5a3a4a 100644
--- a/AMDiS/src/VertexInfo.h
+++ b/AMDiS/src/VertexInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file VertexInfo.h */
 
diff --git a/AMDiS/src/VertexVector.cc b/AMDiS/src/VertexVector.cc
index 4f17a8ec5dd0f7bca2e9f6f752a8e36a0305fb4a..3544a529057832fc67ac1fb2000e63005d11aa5b 100644
--- a/AMDiS/src/VertexVector.cc
+++ b/AMDiS/src/VertexVector.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "VertexVector.h"
 #include "DOFAdmin.h"
 #include "DOFIterator.h"
diff --git a/AMDiS/src/VertexVector.h b/AMDiS/src/VertexVector.h
index 392b5b2eb891e02e3bfe98ce5a842a9f9c0bc0c1..725d3d1208ebb4e969bfdc284190203b5d7cac49 100644
--- a/AMDiS/src/VertexVector.h
+++ b/AMDiS/src/VertexVector.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file VertexVector.h */
+
 #ifndef AMDIS_VERTEXVECTOR_H
 #define AMDIS_VERTEXVECTOR_H
 
diff --git a/AMDiS/src/ZeroOrderAssembler.cc b/AMDiS/src/ZeroOrderAssembler.cc
index a771684dab49dbb97ead5aa1ee7f534187552582..a0cba42562425c91625c7a5f3f433522baeb1780 100644
--- a/AMDiS/src/ZeroOrderAssembler.cc
+++ b/AMDiS/src/ZeroOrderAssembler.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <vector>
 #include <boost/numeric/mtl/mtl.hpp>
 #include "Assembler.h"
diff --git a/AMDiS/src/ZeroOrderAssembler.h b/AMDiS/src/ZeroOrderAssembler.h
index 49005137e47a65e0df2d723214b2e286e3304755..c14e129d407a1a8959295beedad75ecd832d0c0c 100644
--- a/AMDiS/src/ZeroOrderAssembler.h
+++ b/AMDiS/src/ZeroOrderAssembler.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file ZeroOrderAssembler.h */
+
 #ifndef AMDIS_ZERO_ORDER_ASSEMBLER_H
 #define AMDIS_ZERO_ORDER_ASSEMBLER_H
 
diff --git a/AMDiS/src/ZeroOrderTerm.cc b/AMDiS/src/ZeroOrderTerm.cc
index 94a8b112dc1c74b20981a6b352f5fecee384a178..6b49ad447796f7a03bbf399f4f37b90c53a725af 100644
--- a/AMDiS/src/ZeroOrderTerm.cc
+++ b/AMDiS/src/ZeroOrderTerm.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ZeroOrderTerm.h"
 #include "DOFVector.h"
 
diff --git a/AMDiS/src/ZeroOrderTerm.h b/AMDiS/src/ZeroOrderTerm.h
index 0a6054a7e55beed819fa2e366050f8fd9250c9a5..7de5bb70d06df8170012c4071649644b73e2f29a 100644
--- a/AMDiS/src/ZeroOrderTerm.h
+++ b/AMDiS/src/ZeroOrderTerm.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ZeroOrderTerm.h */
 
diff --git a/AMDiS/src/io/ArhReader.cc b/AMDiS/src/io/ArhReader.cc
index 48e84bdbaa9db0f39df2b3a7a5c2e8551807c913..465750ef76b25d02fac43de78b608fe40fdf1114 100644
--- a/AMDiS/src/io/ArhReader.cc
+++ b/AMDiS/src/io/ArhReader.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <fstream>
 #include <stdint.h>
 
diff --git a/AMDiS/src/io/ArhReader.h b/AMDiS/src/io/ArhReader.h
index f95f74930fa68a49f4f455181728d235fbd443c2..15a895474e7916fca71663ac779a042b4b26fe73 100644
--- a/AMDiS/src/io/ArhReader.h
+++ b/AMDiS/src/io/ArhReader.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == Amdis - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut für Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ArhReader.h */
 
diff --git a/AMDiS/src/io/ArhWriter.cc b/AMDiS/src/io/ArhWriter.cc
index 0fe46f7b2d7633bf0ac987ae5ef7f4ea4bbf6fd7..196f685f4eb9711ff239615e8fe2711d17b9c435 100644
--- a/AMDiS/src/io/ArhWriter.cc
+++ b/AMDiS/src/io/ArhWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <fstream>
 #include <stdint.h>
 
diff --git a/AMDiS/src/io/ArhWriter.h b/AMDiS/src/io/ArhWriter.h
index e8c56d32c6857a8b629df050dd53746d46571f56..67ca01c2a670a6960013cf47e64ce763877c0379 100644
--- a/AMDiS/src/io/ArhWriter.h
+++ b/AMDiS/src/io/ArhWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == Amdis - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut für Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ArhWriter.h */
 
diff --git a/AMDiS/src/io/DataCollector.cc b/AMDiS/src/io/DataCollector.cc
index ce824dd9507e8e5ec8719c4893a939d283c6432d..6c20185634e8dc775450ea5d4a54701dd674a99a 100644
--- a/AMDiS/src/io/DataCollector.cc
+++ b/AMDiS/src/io/DataCollector.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "DataCollector.h"
 #include "Traverse.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/io/DataCollector.h b/AMDiS/src/io/DataCollector.h
index 35826204a3d3447378c8baaccc6d893c0d899ab2..5a6a821e112eaf695309fc30124219ffa139844d 100644
--- a/AMDiS/src/io/DataCollector.h
+++ b/AMDiS/src/io/DataCollector.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file DataCollector.h */
 
diff --git a/AMDiS/src/io/ElementFileWriter.cc b/AMDiS/src/io/ElementFileWriter.cc
index d24054d2180d1380ad7eff7d3612599c4b25924a..d12624474409276c303e558296ebd8b22c71a034 100644
--- a/AMDiS/src/io/ElementFileWriter.cc
+++ b/AMDiS/src/io/ElementFileWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementFileWriter.h"
 #include "BasisFunction.h"
 #include "Parameters.h"
diff --git a/AMDiS/src/io/ElementFileWriter.h b/AMDiS/src/io/ElementFileWriter.h
index 0d8731ebd13f80c7fe1f8517741c9f25a466157a..4af6c3dbf1a67ae909725b4c4ec4f21b0d97daa6 100644
--- a/AMDiS/src/io/ElementFileWriter.h
+++ b/AMDiS/src/io/ElementFileWriter.h
@@ -1,3 +1,25 @@
+// ============================================================================
+// ==                                                                        ==
+// == AMDiS - Adaptive multidimensional simulations                          ==
+// ==                                                                        ==
+// ==  http://www.amdis-fem.org                                              ==
+// ==                                                                        ==
+// ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
+
+/** \file ElementFileWriter.h */
+
 #ifndef ELEMENTFILEWRITER_H
 #define ELEMENTFILEWRITER_H
 
diff --git a/AMDiS/src/io/FileWriter.cc b/AMDiS/src/io/FileWriter.cc
index 7bd5d001e74fd7231ea651401596c1908f5489e6..7783b96319a8ac8e402cf8beb9876a0dadc136a6 100644
--- a/AMDiS/src/io/FileWriter.cc
+++ b/AMDiS/src/io/FileWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "boost/lexical_cast.hpp"
 #include "FileWriter.h"
 #include "SystemVector.h"
diff --git a/AMDiS/src/io/FileWriter.h b/AMDiS/src/io/FileWriter.h
index 099bdab65550308b0b4543d021d987ed5e6a4b43..c4906cea7154bcb441844c6f3328be4259fe1eb4 100644
--- a/AMDiS/src/io/FileWriter.h
+++ b/AMDiS/src/io/FileWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file FileWriter.h */
 
diff --git a/AMDiS/src/io/GNUPlotWriter.cc b/AMDiS/src/io/GNUPlotWriter.cc
index 488654b237de209f0cfa5555e3526a17754bcd15..02483b8ca0096b31756566134876a69d3b334faa 100644
--- a/AMDiS/src/io/GNUPlotWriter.cc
+++ b/AMDiS/src/io/GNUPlotWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "GNUPlotWriter.h"
 #include "FiniteElemSpace.h"
 #include "DOFVector.h"
diff --git a/AMDiS/src/io/GNUPlotWriter.h b/AMDiS/src/io/GNUPlotWriter.h
index cddc1baba5a6e9898f660f7fd4e4efb92e013379..737220fbcaf90d95353dadce521b2e77b6421ccf 100644
--- a/AMDiS/src/io/GNUPlotWriter.h
+++ b/AMDiS/src/io/GNUPlotWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file GNUPlotWriter.h */
 
diff --git a/AMDiS/src/io/GridWriter.h b/AMDiS/src/io/GridWriter.h
index bc45f71cb8621515c94dc5c5de83bf07cd2c0d05..553da77a2e6385a3fa5b7b737a400de70158fc3c 100644
--- a/AMDiS/src/io/GridWriter.h
+++ b/AMDiS/src/io/GridWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file GridWriter.h */
 
diff --git a/AMDiS/src/io/GridWriter.hh b/AMDiS/src/io/GridWriter.hh
index afbc0b19bb577705b00b07d9e44315c742e2251f..97115301803615104d4286336f7577a51a8a9b85 100644
--- a/AMDiS/src/io/GridWriter.hh
+++ b/AMDiS/src/io/GridWriter.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <fstream>
 
 #include "FixVec.h"
diff --git a/AMDiS/src/io/MacroInfo.cc b/AMDiS/src/io/MacroInfo.cc
index 2b75f4caf7cc1d84f0be5761c5cb0c2dca406775..c0ae8aea05a64f9c50c29523a31a4e448ba210b4 100644
--- a/AMDiS/src/io/MacroInfo.cc
+++ b/AMDiS/src/io/MacroInfo.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "MacroInfo.h"
 #include "Mesh.h"
 #include "MacroReader.h"
diff --git a/AMDiS/src/io/MacroInfo.h b/AMDiS/src/io/MacroInfo.h
index a9cbadcaa835d1898f5da45a91e0be7ead8c6988..df9d3d55bef156891ec5ce7954a916a1b15b829a 100644
--- a/AMDiS/src/io/MacroInfo.h
+++ b/AMDiS/src/io/MacroInfo.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut für Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MacroInfo.h */
 
diff --git a/AMDiS/src/io/MacroReader.cc b/AMDiS/src/io/MacroReader.cc
index 9ad90cf04b8ea3ad27687db5ea6ac4b8a3b8d4f9..315949953a4acf8f0e06b00cda8fee5152b7cb0a 100644
--- a/AMDiS/src/io/MacroReader.cc
+++ b/AMDiS/src/io/MacroReader.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "MacroReader.h"
 #include "MacroWriter.h"
 #include "MacroElement.h"
diff --git a/AMDiS/src/io/MacroReader.h b/AMDiS/src/io/MacroReader.h
index ce6127f05e611e570e01a6beb71360e5ad7f6e5f..75b251e7e8eb5a30bb171119d3725aef041d09b3 100644
--- a/AMDiS/src/io/MacroReader.h
+++ b/AMDiS/src/io/MacroReader.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MacroReader.h */
 
diff --git a/AMDiS/src/io/MacroWriter.cc b/AMDiS/src/io/MacroWriter.cc
index ce27abdb36c99803a2a88fee4e1336647bfe0785..fdef7a238d814ac81f0dc91ffeb5220c4c159b58 100644
--- a/AMDiS/src/io/MacroWriter.cc
+++ b/AMDiS/src/io/MacroWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <fstream>
 
 #include "MacroWriter.h"
diff --git a/AMDiS/src/io/MacroWriter.h b/AMDiS/src/io/MacroWriter.h
index bff18f7bc2ae76e03af4d3f6b759fbc3d2d6e97d..9d85225522345ee6fab6c59449c0d085dc52ac99 100644
--- a/AMDiS/src/io/MacroWriter.h
+++ b/AMDiS/src/io/MacroWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MacroWriter.h */
 
diff --git a/AMDiS/src/io/PngWriter.cc b/AMDiS/src/io/PngWriter.cc
index 3e6f83f830af782173eb7385f064aafd93b992f0..e6f8d7a31e59f9e48fa2f5c02f77106e6acc1a6c 100644
--- a/AMDiS/src/io/PngWriter.cc
+++ b/AMDiS/src/io/PngWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #ifdef HAVE_PNG
 
 #include <float.h>
diff --git a/AMDiS/src/io/PngWriter.h b/AMDiS/src/io/PngWriter.h
index 81c10446b0b40e7f969073c7dcc5e1675c8108f6..8c93ae456bb17261bb7f1ff1e97b3786c1300ecc 100644
--- a/AMDiS/src/io/PngWriter.h
+++ b/AMDiS/src/io/PngWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PngWriter.h */
 
diff --git a/AMDiS/src/io/PovrayWriter.cc b/AMDiS/src/io/PovrayWriter.cc
index 72f032a9443f294f300916aa44d5857263998beb..32b94e8dbe6e8f9ccd937b1f053d22542d129f06 100644
--- a/AMDiS/src/io/PovrayWriter.cc
+++ b/AMDiS/src/io/PovrayWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "PovrayWriter.h"
 #include "DOFVector.h"
 #include <fstream>
diff --git a/AMDiS/src/io/PovrayWriter.h b/AMDiS/src/io/PovrayWriter.h
index 7d9a1b1d5a865a1d6c92ae0b3277cd0c0341375f..0d08cc7b7c78842ac8028717385d1f0775aeed27 100644
--- a/AMDiS/src/io/PovrayWriter.h
+++ b/AMDiS/src/io/PovrayWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file FileWriter.h */
 
diff --git a/AMDiS/src/io/ValueReader.cc b/AMDiS/src/io/ValueReader.cc
index 7235ef6dd2f1195a4f27c3477568b0a02b7a629d..85dd82c2d255a73935a8ca89d4998dbcd0b0209f 100644
--- a/AMDiS/src/io/ValueReader.cc
+++ b/AMDiS/src/io/ValueReader.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <cstring>
 #include "ValueReader.h"
 #include "MacroReader.h"
diff --git a/AMDiS/src/io/ValueReader.h b/AMDiS/src/io/ValueReader.h
index c5fd784087728b5478f1edcf5e4a17224795b4d8..7b97bec31702b937336ec6f5cb490701f72b55af 100644
--- a/AMDiS/src/io/ValueReader.h
+++ b/AMDiS/src/io/ValueReader.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ValueReader.h */
 
diff --git a/AMDiS/src/io/ValueWriter.cc b/AMDiS/src/io/ValueWriter.cc
index 452df7fa684c3f188932a6a45adb911180d58b1d..6b57ae275ffcc03b61b9db6046ad0dc7cdb52815 100644
--- a/AMDiS/src/io/ValueWriter.cc
+++ b/AMDiS/src/io/ValueWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 #include <cstring>
 
diff --git a/AMDiS/src/io/ValueWriter.h b/AMDiS/src/io/ValueWriter.h
index 03f3701f790fd2a5ce5115d706dda391efd81477..d8e50d44d93e97cc36be53854d2b94a9d01a060c 100644
--- a/AMDiS/src/io/ValueWriter.h
+++ b/AMDiS/src/io/ValueWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ValueWriter.h */
 
diff --git a/AMDiS/src/io/VtkWriter.cc b/AMDiS/src/io/VtkWriter.cc
index d4eab046d0b0ab58198fd13c556898708f953126..41db97c3cf895a51a82a5c16fac4f9180caa9cb1 100644
--- a/AMDiS/src/io/VtkWriter.cc
+++ b/AMDiS/src/io/VtkWriter.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <stdio.h>
 #include <string>
 #include <fstream>
diff --git a/AMDiS/src/io/VtkWriter.h b/AMDiS/src/io/VtkWriter.h
index a4418d0994f13039db6c99ca349967d0a879f4af..a10939b08e945d97a3776eee1a3320701867b76d 100644
--- a/AMDiS/src/io/VtkWriter.h
+++ b/AMDiS/src/io/VtkWriter.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file VtkWriter.h */
 
diff --git a/AMDiS/src/io/VtkWriter.hh b/AMDiS/src/io/VtkWriter.hh
index 010a1c8df2ec862ac802251b27f81fd53923c6b6..473c028ef4d3753494ef26fb52f3bd4be5a90eb2 100644
--- a/AMDiS/src/io/VtkWriter.hh
+++ b/AMDiS/src/io/VtkWriter.hh
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <list>
 #include <vector>
 #include "DOFVector.h"
diff --git a/AMDiS/src/parallel/ElementObjectData.cc b/AMDiS/src/parallel/ElementObjectData.cc
index a6a5d89b505400113c7cea4ea851127eb9e32b96..065f1224ca8ddd9a0de39fd59e5f17c8622a9b4a 100644
--- a/AMDiS/src/parallel/ElementObjectData.cc
+++ b/AMDiS/src/parallel/ElementObjectData.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ElementObjectData.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/parallel/ElementObjectData.h b/AMDiS/src/parallel/ElementObjectData.h
index 7672f51d4a52022a05b33ba2f1cbaf4711304588..7975644a3d79c0c7167c437a0ba9764b4733cde6 100644
--- a/AMDiS/src/parallel/ElementObjectData.h
+++ b/AMDiS/src/parallel/ElementObjectData.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ElementObjectData.h */
 
diff --git a/AMDiS/src/parallel/InteriorBoundary.cc b/AMDiS/src/parallel/InteriorBoundary.cc
index 61bc95fac073f6eb5d3b4eae15bd71556dcfe4cc..e483ba7eb93e2504f2f9820682055cbb98905b04 100644
--- a/AMDiS/src/parallel/InteriorBoundary.cc
+++ b/AMDiS/src/parallel/InteriorBoundary.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "InteriorBoundary.h"
 #include "FiniteElemSpace.h"
 #include "BasisFunction.h"
diff --git a/AMDiS/src/parallel/InteriorBoundary.h b/AMDiS/src/parallel/InteriorBoundary.h
index 7cd8938895c9de78b7781acc7e334e9d06a7ca8d..ccbdbc5b5e690bca8e5919264bbf225bc43b248e 100644
--- a/AMDiS/src/parallel/InteriorBoundary.h
+++ b/AMDiS/src/parallel/InteriorBoundary.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file InteriorBoundary.h */
 
diff --git a/AMDiS/src/parallel/MeshDistributor.cc b/AMDiS/src/parallel/MeshDistributor.cc
index 187950aa6b5981b6d264ec2979a90e51e4c35d8a..a352e290bead20e1a6899cd5a18d6309b50e3a88 100644
--- a/AMDiS/src/parallel/MeshDistributor.cc
+++ b/AMDiS/src/parallel/MeshDistributor.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <algorithm>
 #include <iostream>
 #include <fstream>
diff --git a/AMDiS/src/parallel/MeshDistributor.h b/AMDiS/src/parallel/MeshDistributor.h
index 195afa71ed2080986f3322c67d338fb278e5e2ac..3eac43f564f89021f743e9f608f3b292497a6975 100644
--- a/AMDiS/src/parallel/MeshDistributor.h
+++ b/AMDiS/src/parallel/MeshDistributor.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MeshDistributor.h */
 
diff --git a/AMDiS/src/parallel/MeshManipulation.cc b/AMDiS/src/parallel/MeshManipulation.cc
index 3ac1be257c5102b2ec5afdbe8e04c96b34a522d2..f894f5515b3425e074f23ae04a85e005ef36ff1b 100644
--- a/AMDiS/src/parallel/MeshManipulation.cc
+++ b/AMDiS/src/parallel/MeshManipulation.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "parallel/MeshManipulation.h"
 #include "Mesh.h"
 #include "Traverse.h"
diff --git a/AMDiS/src/parallel/MeshManipulation.h b/AMDiS/src/parallel/MeshManipulation.h
index 8fb4741d9466309725d3ec11bb4a413ab43d65d9..03ec50b0b89cee8f5e36e8e6c6800c09b0a84a5d 100644
--- a/AMDiS/src/parallel/MeshManipulation.h
+++ b/AMDiS/src/parallel/MeshManipulation.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut für Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MeshManipulation.h */
 
diff --git a/AMDiS/src/parallel/MpiHelper.cc b/AMDiS/src/parallel/MpiHelper.cc
index ff0d193c9dcf81b888be5151ab8c962311fdfd7a..629fa2cfb75ffa8b3cce1585c6141ed0c50f10a2 100644
--- a/AMDiS/src/parallel/MpiHelper.cc
+++ b/AMDiS/src/parallel/MpiHelper.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "MpiHelper.h"
 
 #ifdef HAVE_PARALLEL_DOMAIN_AMDIS
diff --git a/AMDiS/src/parallel/MpiHelper.h b/AMDiS/src/parallel/MpiHelper.h
index e77e6c8d51fd854eeedd819a1cab8bf0dc3d3f09..de15d0395d0b680193eebe51b271b1d5f2f014cf 100644
--- a/AMDiS/src/parallel/MpiHelper.h
+++ b/AMDiS/src/parallel/MpiHelper.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file MpiHelper.h */
 
diff --git a/AMDiS/src/parallel/Mtl4Solver.h b/AMDiS/src/parallel/Mtl4Solver.h
index a9b34d614ba1e59050a6008da0f127ca645e36cb..e3043edce8834faab3a026c9b59237404c6186de 100644
--- a/AMDiS/src/parallel/Mtl4Solver.h
+++ b/AMDiS/src/parallel/Mtl4Solver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file Mtl4Solver.h */
 
diff --git a/AMDiS/src/parallel/ParMetisPartitioner.cc b/AMDiS/src/parallel/ParMetisPartitioner.cc
index 183e6760c87bb8c6d8d7d242edc0656d163edaec..c2f61e562ba9a2a7e3d2d812e7bd8aae8600eff1 100644
--- a/AMDiS/src/parallel/ParMetisPartitioner.cc
+++ b/AMDiS/src/parallel/ParMetisPartitioner.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include <queue>
 #include "ParMetisPartitioner.h"
 #include "Mesh.h"
diff --git a/AMDiS/src/parallel/ParMetisPartitioner.h b/AMDiS/src/parallel/ParMetisPartitioner.h
index 12ad24c85805aee98065aba2565eb34f10091f38..90317aa157c97841eeaf4a109dcbdd06b3f66740 100644
--- a/AMDiS/src/parallel/ParMetisPartitioner.h
+++ b/AMDiS/src/parallel/ParMetisPartitioner.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ParMetisPartitioner.h */
 
diff --git a/AMDiS/src/parallel/ParallelDebug.cc b/AMDiS/src/parallel/ParallelDebug.cc
index c5096fe01c7c27b2a15b1d3f239e8555562e92f3..f44144ceeeb1b724d835dac85f104c124b9d6907 100644
--- a/AMDiS/src/parallel/ParallelDebug.cc
+++ b/AMDiS/src/parallel/ParallelDebug.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "ParallelDebug.h"
 #include "MeshDistributor.h"
 #include "ProblemVec.h"
diff --git a/AMDiS/src/parallel/ParallelDebug.h b/AMDiS/src/parallel/ParallelDebug.h
index 86d26467aafa4f7b875306548b7c75f46c66e360..a9f472c0d5d16086ec2e0fd2638c85ff1aa6f448 100644
--- a/AMDiS/src/parallel/ParallelDebug.h
+++ b/AMDiS/src/parallel/ParallelDebug.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ParallelDebug.h */
 
diff --git a/AMDiS/src/parallel/ParallelProblemStatBase.h b/AMDiS/src/parallel/ParallelProblemStatBase.h
index 23730b1e197d9f7068df15438aa6645c70743755..cd201e6ba9cde346151fba899ebf0a2f7aed58b0 100644
--- a/AMDiS/src/parallel/ParallelProblemStatBase.h
+++ b/AMDiS/src/parallel/ParallelProblemStatBase.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file ParallelProblemStatBase.h */
 
diff --git a/AMDiS/src/parallel/PetscSolver.cc b/AMDiS/src/parallel/PetscSolver.cc
index 0623bbcd73f1e4325d64f976fa5d6e8984765c40..b72fc74ba6ab5a3005f403a9df3acbaa1ca07179 100644
--- a/AMDiS/src/parallel/PetscSolver.cc
+++ b/AMDiS/src/parallel/PetscSolver.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "parallel/PetscSolver.h"
 #include "parallel/StdMpi.h"
 #include "parallel/ParallelDebug.h"
diff --git a/AMDiS/src/parallel/PetscSolver.h b/AMDiS/src/parallel/PetscSolver.h
index 44f049c55110a5ceff954126bbdb8fb4dbeddb28..77d4ecfdd5cf45d4b69b9f7ed34e04f53ced4740 100644
--- a/AMDiS/src/parallel/PetscSolver.h
+++ b/AMDiS/src/parallel/PetscSolver.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file PetscSolver.h */
 
diff --git a/AMDiS/src/parallel/StdMpi.cc b/AMDiS/src/parallel/StdMpi.cc
index 91602ca19c49099fde79805b9d8281f3f861597e..a95c2d5c28ed31b401667fb96dd0cd6f1d0a2816 100644
--- a/AMDiS/src/parallel/StdMpi.cc
+++ b/AMDiS/src/parallel/StdMpi.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "StdMpi.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/parallel/StdMpi.h b/AMDiS/src/parallel/StdMpi.h
index 4855d7aecac290c605e07dd3fe8b5571fdac59f3..213145d64c0d56dc7666351eea39c9f8b2a8a203 100644
--- a/AMDiS/src/parallel/StdMpi.h
+++ b/AMDiS/src/parallel/StdMpi.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file StdMpi.h */
 
diff --git a/AMDiS/src/time/RosenbrockAdaptInstationary.cc b/AMDiS/src/time/RosenbrockAdaptInstationary.cc
index 2bfb626ff94c3b0bb5f2ca82640f5d5f702d6404..64a9d391c08919c16078ddef2a5d055de4574d3b 100644
--- a/AMDiS/src/time/RosenbrockAdaptInstationary.cc
+++ b/AMDiS/src/time/RosenbrockAdaptInstationary.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "time/RosenbrockAdaptInstationary.h"
 #include "AdaptInfo.h"
 #include "ProblemTimeInterface.h"
diff --git a/AMDiS/src/time/RosenbrockAdaptInstationary.h b/AMDiS/src/time/RosenbrockAdaptInstationary.h
index 2fa917b4fd31fa0f52dca4c0e2c77380a50d8d04..97b5b68329f7627327e1168033281073cd0ec1d5 100644
--- a/AMDiS/src/time/RosenbrockAdaptInstationary.h
+++ b/AMDiS/src/time/RosenbrockAdaptInstationary.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RosenbrockAdaptInstationary.h */
 
diff --git a/AMDiS/src/time/RosenbrockMethod.cc b/AMDiS/src/time/RosenbrockMethod.cc
index 2efed80e9b0ad0b2f03ba3c7cb344fde9686e47c..45f9345c4f43159e2a2623fa4d8050c626536182 100644
--- a/AMDiS/src/time/RosenbrockMethod.cc
+++ b/AMDiS/src/time/RosenbrockMethod.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "time/RosenbrockMethod.h"
 
 namespace AMDiS {
diff --git a/AMDiS/src/time/RosenbrockMethod.h b/AMDiS/src/time/RosenbrockMethod.h
index 777b0295e3c76749b3ce41a9537285ee6738dc1b..e719ab7726649e67698e2ed746611cb7d889d550 100644
--- a/AMDiS/src/time/RosenbrockMethod.h
+++ b/AMDiS/src/time/RosenbrockMethod.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RosenbrochMethod.h */
 
diff --git a/AMDiS/src/time/RosenbrockStationary.cc b/AMDiS/src/time/RosenbrockStationary.cc
index e1abde9e084a2cde2c76d483f0a529c19b470e36..7bed9ea8ea038cf1baec964f0e598762f0870b45 100644
--- a/AMDiS/src/time/RosenbrockStationary.cc
+++ b/AMDiS/src/time/RosenbrockStationary.cc
@@ -1,3 +1,15 @@
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 #include "time/RosenbrockStationary.h"
 #include "ProblemVec.h"
 #include "SystemVector.h"
diff --git a/AMDiS/src/time/RosenbrockStationary.h b/AMDiS/src/time/RosenbrockStationary.h
index 254551a7eba7ec3cfcae70c13661a9b9b2c95b13..36358b4f361d1e2c90475040396f3519c61ce3a3 100644
--- a/AMDiS/src/time/RosenbrockStationary.h
+++ b/AMDiS/src/time/RosenbrockStationary.h
@@ -2,20 +2,21 @@
 // ==                                                                        ==
 // == AMDiS - Adaptive multidimensional simulations                          ==
 // ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  TU Dresden                                                            ==
-// ==                                                                        ==
-// ==  Institut f�r Wissenschaftliches Rechnen                               ==
-// ==  Zellescher Weg 12-14                                                  ==
-// ==  01069 Dresden                                                         ==
-// ==  germany                                                               ==
-// ==                                                                        ==
-// ============================================================================
-// ==                                                                        ==
-// ==  https://gforge.zih.tu-dresden.de/projects/amdis/                      ==
+// ==  http://www.amdis-fem.org                                              ==
 // ==                                                                        ==
 // ============================================================================
+//
+// Software License for AMDiS
+//
+// Copyright (c) 2010 Dresden University of Technology 
+// All rights reserved.
+// Authors: Simon Vey, Thomas Witkowski et al.
+//
+// This file is part of AMDiS
+//
+// See also license.opensource.txt in the distribution.
+
+
 
 /** \file RosenbrockStationary.h */