diff --git a/AMDiS/compositeFEM/src/CFE_Integration.h b/AMDiS/compositeFEM/src/CFE_Integration.h index a9963f8991da8daf6a24ab682edb627ca5cbcdfa..395954e53d7d970442f31dd8bd6ab153be832de8 100644 --- a/AMDiS/compositeFEM/src/CFE_Integration.h +++ b/AMDiS/compositeFEM/src/CFE_Integration.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file CFE_Integration.h */ + #ifndef AMDIS_CFE_INTEGRATION_H #define AMDIS_CFE_INTEGRATION_H @@ -10,10 +31,7 @@ namespace AMDiS { class CFE_Integration { public: - /** - * Calculates integral of function f on domain where level set function - * is negative. - */ + /// Calculates integral of function f on domain where level set function is negative. static double integrate_onNegLs(ElementFunction<double> *f, ElementLevelSet *elLS, int deg = 1, @@ -29,9 +47,7 @@ namespace AMDiS { int deg = 1, Quadrature *q = NULL); protected: - /** - * Calculates determinant for surface given through surfVert. - */ + /// Calculates determinant for surface given through surfVert. static double calcSurfaceDet(ElInfo *loc_elInfo, VectorOfFixVecs<DimVec<double> > &surfVert); }; diff --git a/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h b/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h index 79e7c2532b0a663442e43ce0ad2be13119287b32..4477c12b72bac6d227856fa3856bacc0b5e2cbea 100644 --- a/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h +++ b/AMDiS/compositeFEM/src/CFE_NormAndErrorFcts.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file CFE_NormAndErrorFcts.h */ + #ifndef AMDIS_CFE_NORMANDERRORFCTS_H #define AMDIS_CFE_NORMANDERRORFCTS_H @@ -15,222 +36,168 @@ namespace AMDiS { class ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementNorm(Quadrature *q_) : q(q_), nQPts(0) { if (q) nQPts = q->getNumPoints(); - }; + } - /** - * Destructor. - */ - virtual ~ElementNorm() - {}; + /// Destructor. + virtual ~ElementNorm() {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. virtual double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0) = 0; - /** - * Sets quadrature to q_. - */ - inline void setQuadrature(Quadrature *q_) { + /// Sets quadrature to q_. + inline void setQuadrature(Quadrature *q_) + { q = q_; nQPts = q->getNumPoints(); - }; + } protected: - /** - * Quadrature formula. - */ + /// Quadrature formula. Quadrature *q; - /** - * Number of quadrature points. - */ + /// Number of quadrature points. int nQPts; }; class ElementL1Norm_Analyt : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementL1Norm_Analyt(Quadrature *q_, AbstractFunction<double, WorldVector<double> > *f_) : ElementNorm(q_), f(f_) - {}; + {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); protected: - /** - * Abstract function for which norm is calculated. - */ + /// Abstract function for which norm is calculated. AbstractFunction<double, WorldVector<double> > *f; }; class ElementL2Norm_Analyt : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementL2Norm_Analyt(Quadrature *q_, AbstractFunction<double, WorldVector<double> > *f_) : ElementNorm(q_), f(f_) - {}; + {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); protected: - /** - * Abstract function for which norm is calculated. - */ + /// Abstract function for which norm is calculated. AbstractFunction<double, WorldVector<double> > *f; }; class ElementH1Norm_Analyt : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementH1Norm_Analyt(Quadrature *q_, AbstractFunction<WorldVector<double>, WorldVector<double> > *grd_, int dim_) : ElementNorm(q_), grd(grd_), dim(dim_) - {}; + {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); protected: - /** - * Abstract function for which norm is calculated. - */ + /// Abstract function for which norm is calculated. AbstractFunction<WorldVector<double>, WorldVector<double> > *grd; - /** - * Mesh dimension. - */ + /// Mesh dimension. int dim; }; class ElementL1Norm_DOF : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementL1Norm_DOF(Quadrature *q_, DOFVector<double> *dofVec_) : ElementNorm(q_), dofVec(dofVec_) - {}; + {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); protected: - /** - * DOF vector for which norm is calculated. - */ + /// DOF vector for which norm is calculated. DOFVector<double> *dofVec; }; class ElementL2Norm_DOF : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementL2Norm_DOF(Quadrature *q_, DOFVector<double> *dofVec_) : ElementNorm(q_), dofVec(dofVec_) - {}; + {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); protected: - /** - * DOF vector for which norm is calculated. - */ + /// DOF vector for which norm is calculated. DOFVector<double> *dofVec; }; class ElementH1Norm_DOF : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementH1Norm_DOF(Quadrature *q_, DOFVector<double> *dofVec_, int dim_) : ElementNorm(q_), dofVec(dofVec_), dim(dim_) - {}; + {} - /** - * Calculates element norm on elInfo. - */ + /// Calculates element norm on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); protected: - /** - * DOF vector for which norm is calculated. - */ + /// DOF vector for which norm is calculated. DOFVector<double> *dofVec; - /** - * Mesh dimension. - */ + /// Mesh dimension. int dim; }; class ElementL2Err : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementL2Err(Quadrature *q_, AbstractFunction<double, WorldVector<double> > *u_, DOFVector<double> *uh_, @@ -240,49 +207,37 @@ namespace AMDiS { uh(uh_), relErr(relErr_), nrmU(0.0) - {}; + {} - /** - * Calculates element error on elInfo. - */ + /// Calculates element error on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); - /** - * Get norm of u. - */ - inline double getNormU() const { + /// Get norm of u. + inline double getNormU() const + { return nrmU; - }; + } + protected: - /** - * Abstract function for which error is calculated. - */ + /// Abstract function for which error is calculated. AbstractFunction<double, WorldVector<double> > *u; - /** - * DOF vector for which error is calculated. - */ + /// DOF vector for which error is calculated. DOFVector<double> *uh; - /** - * Indicates whether relative (1) or absolute error (0) is calculated. - */ + /// Indicates whether relative (1) or absolute error (0) is calculated. int relErr; - /** - * Norm of u in case relative error is calculated. - */ + /// Norm of u in case relative error is calculated. double nrmU; }; class ElementH1Err : public ElementNorm { public: - /** - * Constructor. - */ + /// Constructor. ElementH1Err(Quadrature *q_, AbstractFunction<WorldVector<double>, WorldVector<double> > *grdu_, DOFVector<double> *uh_, @@ -294,52 +249,36 @@ namespace AMDiS { relErr(relErr_), nrmGrdU(0.0), dim(dim_) - {}; + {} - /** - * Calculates element error on elInfo. - */ + /// Calculates element error on elInfo. double calcElNorm(ElInfo *elInfo, const double &det, const double &fac = 1.0); - /** - * Get norm of grdu. - */ - inline double getNormGrdU() const { + /// Get norm of grdu. + inline double getNormGrdU() const + { return nrmGrdU; - }; + } protected: - /** - * Abstract function for which norm is calculated. - */ + /// Abstract function for which norm is calculated. AbstractFunction<WorldVector<double>, WorldVector<double> > *grdu; - /** - * DOF vector for which error is calculated. - */ + /// DOF vector for which error is calculated. DOFVector<double> *uh; - /** - * Indicates whether relative (1) or absolute error (0) is calculated. - */ + /// Indicates whether relative (1) or absolute error (0) is calculated. int relErr; - /** - * Norm of grdu in case relative error is calculated. - */ + /// Norm of grdu in case relative error is calculated. double nrmGrdU; - /** - * Mesh dimension. - */ + /// Mesh dimension. int dim; }; - ///////////////////////////////////////////////////////////////////////////// - ///// class CFE_NormAndErrorFcts //////////////////////////////////////////// - ///////////////////////////////////////////////////////////////////////////// class CFE_NormAndErrorFcts { public: @@ -361,32 +300,27 @@ namespace AMDiS { // 0 : all elements cut by the zero level set // 1 : complete mesh // ======================================================================== - static double L1Norm_Analyt( - AbstractFunction<double, WorldVector<double> > *f, + static double L1Norm_Analyt(AbstractFunction<double, WorldVector<double> > *f, ElementLevelSet *elLS, int domainFlag, int deg = 1, Quadrature* q = NULL); - static double L2Norm_Analyt( - AbstractFunction<double, WorldVector<double> > *f, + static double L2Norm_Analyt(AbstractFunction<double, WorldVector<double> > *f, ElementLevelSet *elLS, int domainFlag, int deg = 2, Quadrature* q = NULL); - static double L2NormSquare_Analyt( - AbstractFunction<double, WorldVector<double> > *f, + static double L2NormSquare_Analyt(AbstractFunction<double, WorldVector<double> > *f, ElementLevelSet *elLS, int domainFlag, int deg = 2, Quadrature* q = NULL); - static double H1Norm_Analyt( - AbstractFunction<WorldVector<double>, WorldVector<double> > *grd, + static double H1Norm_Analyt(AbstractFunction<WorldVector<double>, WorldVector<double> > *grd, ElementLevelSet *elLS, int domainFlag, int deg = 0, Quadrature* q = NULL); - static double H1NormSquare_Analyt( - AbstractFunction<WorldVector<double>, WorldVector<double> > *grd, + static double H1NormSquare_Analyt(AbstractFunction<WorldVector<double>, WorldVector<double> > *grd, ElementLevelSet *elLS, int domainFlag, int deg = 0, @@ -519,9 +453,7 @@ namespace AMDiS { int deg, Quadrature* q); - /** - * Calculate norm on subpolytope. - */ + /// Calculate norm on subpolytope. static double calcSubPolNorm(ElInfo *elInfo, SubPolytope *subPolytope, ElementNorm *elNorm, @@ -529,24 +461,16 @@ namespace AMDiS { const double &subPolFac = 1.0); protected: - /** - * Absolute L2 error (last L2 error calculation !). - */ + /// Absolute L2 error (last L2 error calculation !). static double L2_err_abs; - /** - * L2 norm of correct solution u (last L2 error calculation !). - */ + /// L2 norm of correct solution u (last L2 error calculation !). static double L2_u_norm; - /** - * Absolute H1 error (last H1 error calculation !). - */ + /// Absolute H1 error (last H1 error calculation !). static double H1_err_abs; - /** - * H1 norm of correct solution u (last H1 error calculation !). - */ + /// H1 norm of correct solution u (last H1 error calculation !). static double H1_u_norm; }; diff --git a/AMDiS/compositeFEM/src/CompositeFEMMethods.h b/AMDiS/compositeFEM/src/CompositeFEMMethods.h index 41f9eafdc54b3f45ea3aaadccbb8146cd88f45dd..da2a81fad4a811697a2983fe0be48062194265ba 100644 --- a/AMDiS/compositeFEM/src/CompositeFEMMethods.h +++ b/AMDiS/compositeFEM/src/CompositeFEMMethods.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file CompositeFEMMethods.h */ + #ifndef AMDIS_COMPOSITEFEMMETHODS_H #define AMDIS_COMPOSITEFEMMETHODS_H @@ -10,11 +31,8 @@ using namespace AMDiS; class CompositeFEMMethods { - public: - /** - * Set all dof-values on domain with positive level set function values - * to val. - */ +public: + /// Set all dof-values on domain with positive level set function values to val. static void setPosLsToVal( DOFVector<double> *dof, const double &val, diff --git a/AMDiS/compositeFEM/src/CompositeFEMOperator.h b/AMDiS/compositeFEM/src/CompositeFEMOperator.h index bf76e3ae3dfa848cd0f0ed0e0798e97ec9a50f97..63e8b18ce82b6c12639f16971a0ea74836defa85 100644 --- a/AMDiS/compositeFEM/src/CompositeFEMOperator.h +++ b/AMDiS/compositeFEM/src/CompositeFEMOperator.h @@ -1,3 +1,22 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + /** \file CompositeFEMOperator.h */ #ifndef AMDIS_COMPOSITEFEMOPERATOR_H @@ -43,16 +62,14 @@ public: elLS(elLS_), subElementAssembler(NULL), elStatus(ElementLevelSet::LEVEL_SET_UNDEFINED) - {}; + {} - /** - * Empty Destructor. - */ + /// Destructor. ~CompositeFEMOperator() { if (subElementAssembler) delete subElementAssembler; - }; + } /** * Calculates the element matrix for this ElInfo and adds it multiplied by diff --git a/AMDiS/compositeFEM/src/ElementLevelSet.h b/AMDiS/compositeFEM/src/ElementLevelSet.h index 953ac9ec03b58d223500f55e2e48ce0c5602e30c..236c41ac66df284b165a8a0b9622fca50ba23c5c 100644 --- a/AMDiS/compositeFEM/src/ElementLevelSet.h +++ b/AMDiS/compositeFEM/src/ElementLevelSet.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file ElementLevelSet.h */ + #ifndef AMDIS_ELEMENTLEVELSET_H #define AMDIS_ELEMENTLEVELSET_H @@ -57,9 +78,7 @@ using namespace std; class ElementLevelSet { public: - /** - * Constructor. - */ + /// Constructor. ElementLevelSet(const char *name_, ElementFunction<double> *lSFct_, Mesh *mesh_) @@ -85,12 +104,11 @@ public: mesh = mesh_; dim = mesh->getDim(); - elIntersecPoints = - new VectorOfFixVecs<DimVec<double> >(dim, - MAX_INTERSECTION_POINTS, - NO_INIT); - elVertexStatusVec = new int[dim+1]; - elVertexLevelSetVec = new double[dim+1]; + elIntersecPoints = new VectorOfFixVecs<DimVec<double> >(dim, + MAX_INTERSECTION_POINTS, + NO_INIT); + elVertexStatusVec = new int[dim + 1]; + elVertexLevelSetVec = new double[dim + 1]; int setElementLevelSetTol = 0; GET_PARAMETER(0, name + "->set ElementLevelSet tolerances", "%d", @@ -107,9 +125,7 @@ public: } } - /** - * Destructor. - */ + /// Destructor. ~ElementLevelSet() { if (elVertexStatusVec) @@ -150,12 +166,14 @@ public: const bool doCalcIntersecPts_ = true); /// Gets value of level set function at point given in barycentric coordinates. - inline const double calcLevelSetFct(const DimVec<double>& bary) { + inline const double calcLevelSetFct(const DimVec<double>& bary) + { return (*lSFct)(bary); } /// Resets level set information on element. - inline void resetElement() { + inline void resetElement() + { FUNCNAME("ElementLevelSet::resetElement"); numElVertexInterior = 0; @@ -165,18 +183,16 @@ public: elStatus = LEVEL_SET_UNDEFINED; } - /** - * Defines current element (elInfo). - */ - inline void setElement(const ElInfo *elInfo_) { + /// Defines current element (elInfo). + inline void setElement(const ElInfo *elInfo_) + { elInfo = elInfo_; resetElement(); } - /** - * Set level_set_domain. - */ - inline void setLevelSetDomain(int status_) { + /// Set level_set_domain. + inline void setLevelSetDomain(int status_) + { TEST_EXIT(status_ == LEVEL_SET_INTERIOR || status_ == LEVEL_SET_EXTERIOR || @@ -184,95 +200,93 @@ public: level_set_domain = status_; } - /** - * Functions to set tolerances for intersection point calculation. - */ - inline void setLsValTol(double tol) {LS_VAL_TOL = tol;}; - inline void setLsValMin(double min) {LS_VAL_MIN = min;}; - inline void setSpBaryTol(double tol) {SP_BARY_TOL = tol;}; + /// Function to set tolerances for intersection point calculation. + inline void setLsValTol(double tol) + { + LS_VAL_TOL = tol; + } - /** - * Get level_set_domain. - */ - inline const int& getLevelSetDomain() const { + /// Function to set tolerances for intersection point calculation. + inline void setLsValMin(double min) + { + LS_VAL_MIN = min; + } + + /// Function to set tolerances for intersection point calculation. + inline void setSpBaryTol(double tol) + { + SP_BARY_TOL = tol; + } + + /// Get level_set_domain. + inline const int& getLevelSetDomain() const + { return level_set_domain; } - /** - * Get LevelSet-Status of element. - */ - inline const int& getElementLevelSetStatus() const { + /// Get LevelSet-Status of element. + inline const int& getElementLevelSetStatus() const + { return elStatus; } - /** - * Get number of vertices which are intersection points. - */ - inline const int& getNumVertIntPoints() const { + /// Get number of vertices which are intersection points. + inline const int& getNumVertIntPoints() const + { FUNCNAME("ElementLevelSet::getNumVertIntPoints"); TEST_EXIT(numElVertexBoundary == 0)("numElVertexBoundary should be zero!\n"); return numElVertexBoundary; - }; + } - /** - * Get vector elVertexStatusVec. - */ - inline const int *getElVertStatusVec() const { + /// Get vector elVertexStatusVec. + inline const int *getElVertStatusVec() const + { return elVertexStatusVec; } - /** - * Get i-th component of vector elVertexLevelSetVec. - */ - inline const double getElVertLevelSetVec(const int i) const { + /// Get i-th component of vector elVertexLevelSetVec. + inline const double getElVertLevelSetVec(const int i) const + { return elVertexLevelSetVec[i]; } - /** - * Get vector elVertexLevelSetVec. - */ - inline const double *getElVertLevelSetVec() const { + /// Get vector elVertexLevelSetVec. + inline const double *getElVertLevelSetVec() const + { return elVertexLevelSetVec; } - /** - * Get levelSetFct. - */ - inline ElementFunction<double> *getLevelSetFct() const { + /// Get levelSetFct. + inline ElementFunction<double> *getLevelSetFct() const + { return lSFct; } - /** - * Get mesh. - */ - inline Mesh *getMesh() const { + /// Get mesh. + inline Mesh *getMesh() const + { return mesh; } - /** - * Get dim. - */ - inline int getDim() const { + /// Get dim. + inline int getDim() const + { return dim; } - /** - * Get the intersection points. - */ - inline VectorOfFixVecs<DimVec<double> > *getElIntersecPoints() const { + /// Get the intersection points. + inline VectorOfFixVecs<DimVec<double> > *getElIntersecPoints() const + { return elIntersecPoints; } - /** - * Get number of intersection points. - */ - inline int getNumElIntersecPoints() const { + /// Get number of intersection points. + inline int getNumElIntersecPoints() const + { return numIntersecPoints; } - /** - * Calculate exterior normal to intersection plane. - */ + /// Calculate exterior normal to intersection plane. void calcIntersecNormal(WorldVector<double> &normal); /** @@ -293,9 +307,7 @@ public: int getVertexPos(const DimVec<double> barCoords); protected: - /** - * Calculates level set value of each vertex of element. - */ + /// Calculates level set value of each vertex of element. void calculateElementLevelSetVal(); /** @@ -341,49 +353,33 @@ protected: */ void sortIntersecPoints_4IP3D(); - /** - * Calculate exterior normal to intersection plane for dimension 2. - */ + /// Calculate exterior normal to intersection plane for dimension 2. void calcIntersecNormal_2d(WorldVector<double> &normal); - /** - * Calculate exterior normal to intersection plane for dimension 3. - */ + /// Calculate exterior normal to intersection plane for dimension 3. void calcIntersecNormal_3d(WorldVector<double> &normal); public: - /** - * Constants characterizing element position with respect to zero level set. - */ + /// Constants characterizing element position with respect to zero level set. static const int LEVEL_SET_INTERIOR = -1; static const int LEVEL_SET_BOUNDARY = 0; static const int LEVEL_SET_EXTERIOR = 1; static const int LEVEL_SET_UNDEFINED = -2; protected: - /** - * Name of this object. - */ + /// Name of this object. std::string name; - /** - * Level set function. - */ + /// Level set function. ElementFunction<double> *lSFct; - /** - * Mesh. - */ + /// Mesh. Mesh *mesh; - /** - * elInfo of element. - */ + /// elInfo of element. const ElInfo *elInfo; - /** - * Pointer to last element processed calculations on whithin this class. - */ + /// Pointer to last element processed calculations on whithin this class. Element *lastEl; /** @@ -394,10 +390,7 @@ protected: */ int level_set_domain; - /** - * Dimension of the problem. dim + 1 is the number of vertices - * of element. - */ + /// Dimension of the problem. dim + 1 is the number of vertices of element. int dim; /** @@ -406,14 +399,10 @@ protected: */ VectorOfFixVecs<DimVec<double> > *elIntersecPoints; - /** - * Number of intersection points. - */ + /// Number of intersection points. int numIntersecPoints; - /** - * LevelSet-Status of element. - */ + /// LevelSet-Status of element. int elStatus; /** @@ -422,14 +411,10 @@ protected: */ int *elVertexStatusVec; - /** - * Stores for each vertex of element the level set of the vertex. - */ + /// Stores for each vertex of element the level set of the vertex. double *elVertexLevelSetVec; - /** - * Number of vertices in element with level set status LEVEL_SET_INTERIOR. - */ + /// Number of vertices in element with level set status LEVEL_SET_INTERIOR. int numElVertexInterior; /** @@ -439,9 +424,7 @@ protected: */ int numElVertexBoundary; - /** - * Number of vertices in element with level set status LEVEL_SET_EXTERIOR. - */ + /// Number of vertices in element with level set status LEVEL_SET_EXTERIOR. int numElVertexExterior; /** @@ -480,9 +463,7 @@ protected: */ double SP_BARY_TOL; - /* - * Maximum number of intersection points. - */ + /// Maximum number of intersection points. static const int MAX_INTERSECTION_POINTS = 4; }; diff --git a/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h b/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h index da3093dfcf9cbbbd00a1f69d04bde7b9681e9b31..bdfbe6ade80f7f7aa450d95d51ac9e3f95e54eb3 100644 --- a/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h +++ b/AMDiS/compositeFEM/src/LevelSetAdaptMesh.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file LevelSetAdaptMesh.h */ + #ifndef AMDIS_LEVELSETADAPTMESH_H #define AMDIS_LEVELSETADAPTMESH_H @@ -13,10 +34,8 @@ using namespace AMDiS; class LevelSetAdaptMesh { - public: - /** - * Constructor. - */ +public: + /// Constructor. LevelSetAdaptMesh(ProblemStatBase *prob_, Mesh *mesh_, ElementLevelSet *elLS_, @@ -27,16 +46,16 @@ class LevelSetAdaptMesh bool bandAtInterf_ = false, double bandSize_ = -1.0) : prob(prob_), - mesh(mesh_), - elLS(elLS_), - sizeInterf(sizeInterf_), - sizeNegLs(sizeNegLs_), - sizePosLs(sizePosLs_), - onlyInterfRef(onlyInterfRef_), - bandAtInterf(bandAtInterf_), - bandSize(bandSize_), - dim(mesh->getDim()) - {}; + mesh(mesh_), + elLS(elLS_), + sizeInterf(sizeInterf_), + sizeNegLs(sizeNegLs_), + sizePosLs(sizePosLs_), + onlyInterfRef(onlyInterfRef_), + bandAtInterf(bandAtInterf_), + bandSize(bandSize_), + dim(mesh->getDim()) + {} /** * Calculates sizes sizeInterf, sizeNegLs, sizePosLs and bandSize @@ -49,9 +68,7 @@ class LevelSetAdaptMesh double &sizePosLs_, double &bandSize_); - /** - * Sets sizeInterf, sizeNegLs, sizePosLs and bandSize. - */ + /// Sets sizeInterf, sizeNegLs, sizePosLs and bandSize. void setElementSizes(double &sizeInterf_, double &sizeNegLs_, double &sizePosLs_, @@ -64,13 +81,10 @@ class LevelSetAdaptMesh sizePosLs = sizePosLs_; bandSize = bandSize_; - TEST_EXIT(bandSize > 0 || bandAtInterf == false) - ("illegal band size!\n"); - }; + TEST_EXIT(bandSize > 0 || bandAtInterf == false)("illegal band size!\n"); + } - /** - * Sets bandSize. - */ + /// Sets bandSize. void setBandSize(double &bandSize_) { FUNCNAME("LevelSetAdaptMesh::setBandSize()"); @@ -79,29 +93,22 @@ class LevelSetAdaptMesh bandAtInterf = true; bandSize = bandSize_; - }; + } - /** - * Adapts mesh to the appropriate element sizes. - */ + /// Adapts mesh to the appropriate element sizes. void adaptMesh(AdaptInfo *adaptInfo); - /** - * Get sizeInterf. - */ - inline double getSizeInterf() { + /// Get sizeInterf. + inline double getSizeInterf() + { return sizeInterf; - }; + } protected: - /** - * Element mark function in case no band around the interface is used. - */ + /// Element mark function in case no band around the interface is used. void markElement_noBand(ElInfo *elInfo); - /** - * Element mark function in case a band around the interface is used. - */ + /// Element mark function in case a band around the interface is used. void markElement_Band(ElInfo *elInfo); /** @@ -117,20 +124,13 @@ class LevelSetAdaptMesh int calculateElementStatusBand(ElInfo *elInfo); protected: - /** - * Problem for mesh adaption which gives refinement and coarsening manager. - */ + /// Problem for mesh adaption which gives refinement and coarsening manager. ProblemStatBase *prob; - /** - * Mesh to be adapted. - */ + /// Mesh to be adapted. Mesh *mesh; - /** - * Holds the level set function and functionalities on intersection point - * calculation. - */ + /// Holds the level set function and functionalities on intersection point calculation. ElementLevelSet *elLS; /** @@ -162,9 +162,7 @@ class LevelSetAdaptMesh */ bool bandAtInterf; - /** - * Defines bandwidth if band around interface is used. - */ + /// Defines bandwidth if band around interface is used. double bandSize; /** @@ -183,15 +181,10 @@ class LevelSetAdaptMesh static const int LS_ADAPT_MESH_IN_BAND = 0; static const int LS_ADAPT_MESH_EXTERIOR = 1; - /** - * Dimension of the mesh. - */ + /// Dimension of the mesh. int dim; - /** - * Variables used in adaptMesh(), markElement_Band() and - * markElement_noBand(). - */ + /// Variables used in adaptMesh(), markElement_Band() and markElement_noBand(). bool doRefine; bool doCoarsen; bool refinementMarkIsSet; diff --git a/AMDiS/compositeFEM/src/PenaltyOperator.h b/AMDiS/compositeFEM/src/PenaltyOperator.h index 634cd549b93ad7f2fc34f02c8398958b8520eaf1..974b282e461d6655a0f7d9602ee5a149c04ecd58 100644 --- a/AMDiS/compositeFEM/src/PenaltyOperator.h +++ b/AMDiS/compositeFEM/src/PenaltyOperator.h @@ -1,3 +1,22 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + /** \file PenaltyOperator.h */ #ifndef AMDIS_PENALTYOPERATOR_H @@ -10,26 +29,17 @@ #include "ElementLevelSet.h" namespace AMDiS { - class ElInfo; - class FiniteElemSpace; + class ElInfo; + class FiniteElemSpace; } using namespace AMDiS; using namespace std; -// =========================================================================== -// ===== class PenaltyOperator =============================================== -// =========================================================================== -// -// Class Description: -// -// =========================================================================== class PenaltyOperator : public Operator { public: - /** - * Constructor. - */ + /// Constructor. PenaltyOperator(Flag operatorType_, ElementLevelSet *elLS_, double factor_, @@ -49,20 +59,15 @@ public: ("ElementLevelSet not initialized!\n"); tempCoords = new VectorOfFixVecs<DimVec<double> >(dim, dim, NO_INIT); - }; + } - /** - * Destructor. - */ + /// Destructor. ~PenaltyOperator() { - if (surfaceOp) { - delete surfaceOp; - } -/* if (dim == 3) { */ - delete tempCoords; -/* } */ - }; + if (surfaceOp) + delete surfaceOp; + delete tempCoords; + } /** * Calculates the element matrix for this ElInfo and adds it multiplied by @@ -88,10 +93,7 @@ public: double factor = 1.0); protected: - - /** - * Calculate coefficient of the penalty term. - */ + /// Calculate coefficient of the penalty term. double getPenaltyCoeff(const ElInfo *elInfo); protected: @@ -114,9 +116,7 @@ protected: */ double eps; - /** - * Factor needed for eps. - */ + /// Factor needed for eps. double factor; /** @@ -126,24 +126,16 @@ protected: */ bool penaltyCoeffFlag; - /** - * Surface operator for surface integration - */ + /// Surface operator for surface integration SurfaceOperator *surfaceOp; - /** - * Problem Dimension. - */ + /// Problem Dimension. int dim; - /** - * Degree of basis functions. - */ + /// Degree of basis functions. int degree; - /** - * Variables used for calculation. - */ + /// Variables used for calculation. VectorOfFixVecs<DimVec<double> > *tempCoords; }; diff --git a/AMDiS/compositeFEM/src/SubElementAssembler.h b/AMDiS/compositeFEM/src/SubElementAssembler.h index a6c016c1ef4aaec691840830896e62038eeb5825..95aa4548c13fd88d12fb558e638e13d6f71ad3ba 100644 --- a/AMDiS/compositeFEM/src/SubElementAssembler.h +++ b/AMDiS/compositeFEM/src/SubElementAssembler.h @@ -1,3 +1,22 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + /** \file SubElementAssembler.h */ #ifndef AMDIS_SUBELEMENTASSEMBLER_H diff --git a/AMDiS/compositeFEM/src/SubPolytope.h b/AMDiS/compositeFEM/src/SubPolytope.h index e4dbbe10a58696f5abbc07a3a7a6eb7c9570261d..271055bbe4c4fcc7e0e5adfad053b3ebad71961e 100644 --- a/AMDiS/compositeFEM/src/SubPolytope.h +++ b/AMDiS/compositeFEM/src/SubPolytope.h @@ -1,3 +1,22 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + /** \file SubPolytope.h */ #ifndef AMDIS_SUBPOLYTOPE_H @@ -72,43 +91,37 @@ namespace AMDiS { int numIntPoints_, const int &indexElVertInPol_ = 0); - /** - * Destructor - */ - ~SubPolytope() { - for (int i = 0; i < numSubElements; i++) { + /// Destructor + ~SubPolytope() + { + for (int i = 0; i < numSubElements; i++) delete subElements[i]; - } - }; + } - /** - * Returns begin of vector subElements. - */ - inline std::vector<SubElInfo *>::iterator getSubElementsBegin() { + /// Returns begin of vector subElements. + inline std::vector<SubElInfo *>::iterator getSubElementsBegin() + { return subElements.begin(); } - /** - * Returns end of vector subElements. - */ - inline std::vector<SubElInfo *>::iterator getSubElementsEnd() { + /// Returns end of vector subElements. + inline std::vector<SubElInfo *>::iterator getSubElementsEnd() + { return subElements.end(); } - /** - * Returns num-th subelement of polytope. - */ - inline SubElInfo* getSubElement(int num) { + /// Returns num-th subelement of polytope. + inline SubElInfo* getSubElement(int num) + { FUNCNAME("SubPolytope::getSubElement()"); TEST_EXIT(num <= numSubElements)("invalid index for subelement"); return subElements[num]; } - /** - * Returns the number of subelements of the polytope. - */ - inline int getNumSubElements() { + /// Returns the number of subelements of the polytope. + inline int getNumSubElements() + { return numSubElements; } @@ -157,36 +170,25 @@ namespace AMDiS { void createSubElementsForPolytope3D(int indexElVertInPol); protected: - - /** - * elInfo of the element containing the polytope - */ + /// elInfo of the element containing the polytope const ElInfo *elInfo; /** - * Intersection points with the element in barycentric coordinates with - * respect to element + * Intersection points with the element in barycentric coordinates with + * respect to element */ VectorOfFixVecs<DimVec<double> > *intPoints; - /** - * Number of intersection points - */ + /// Number of intersection points int numIntPoints; - /** - * List of the subelements of subpolytope - */ + /// List of the subelements of subpolytope std::vector<SubElInfo *> subElements; - /** - * Number of subelements - */ + /// Number of subelements int numSubElements; - /** - * Dimension of the polytope - */ + /// Dimension of the polytope int dim; }; } diff --git a/AMDiS/compositeFEM/src/TranslateLsFct.h b/AMDiS/compositeFEM/src/TranslateLsFct.h index 0f8541cd96bf01d0e9a51d56eb405bc300b30b2d..2e138b981d0009e0df109525802d97160a25fbc0 100644 --- a/AMDiS/compositeFEM/src/TranslateLsFct.h +++ b/AMDiS/compositeFEM/src/TranslateLsFct.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file TranslateLsFct.h */ + #ifndef AMDIS_TRANSLATELSFCT_H #define AMDIS_TRANSLATELSFCT_H @@ -9,16 +30,13 @@ using namespace AMDiS; template<typename T> class TranslateLsFct : public ElementFunction<T> { - public: - /** - * Constructor - */ - TranslateLsFct(ElementFunction<T> *f_, - double c_) +public: + /// Constructor + TranslateLsFct(ElementFunction<T> *f_, double c_) : ElementFunction<T>(), - f(f_), - c(c_) - {}; + f(f_), + c(c_) + {} /** * evaluation at given coordinates. @@ -26,21 +44,17 @@ class TranslateLsFct : public ElementFunction<T> * Defines new level set function. Zero level set of this level set * function is level set c of level set function f. */ - const T& operator()(const DimVec<double>& bary) const { - + const T& operator()(const DimVec<double>& bary) const + { f->setElInfo(elInfo_); return ((*f)(bary) - c); - }; + }; - protected: - /** - * Level set function which is translated. - */ +protected: + /// Level set function which is translated. ElementFunction<T> *f; - /** - * Translation parameter. - */ + /// Translation parameter. double c; }; diff --git a/AMDiS/compositeFEM/src/compositeFEM.h b/AMDiS/compositeFEM/src/compositeFEM.h index b78d737e190499f789f0ba43d66d300c8c7d4f6b..fcac485f34528a389527b49f47c422dbf0073872 100644 --- a/AMDiS/compositeFEM/src/compositeFEM.h +++ b/AMDiS/compositeFEM/src/compositeFEM.h @@ -1,3 +1,24 @@ +// ============================================================================ +// == == +// == 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/ == +// == == +// ============================================================================ + +/** \file compositeFEM.h */ + #ifndef AMDIS_COMPOSITEFEM_H #define AMDIS_COMPOSITEFEM_H #include "CFE_Integration.h" diff --git a/AMDiS/src/AMDiS_fwd.h b/AMDiS/src/AMDiS_fwd.h index 5300fe20d43149e19dbdaf80141fe658c30a6d9b..8834a3f6c4262c57718886419149567bb13caa73 100644 --- a/AMDiS/src/AMDiS_fwd.h +++ b/AMDiS/src/AMDiS_fwd.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/AbstractFunction.h b/AMDiS/src/AbstractFunction.h index cd6cc151914ef9084643fa764156ca12ee86e6de..70eb3522ad60d2c2c9150f1b8599d610446b0f56 100644 --- a/AMDiS/src/AbstractFunction.h +++ b/AMDiS/src/AbstractFunction.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/AdaptBase.h b/AMDiS/src/AdaptBase.h index fe67f2d42bffffb913c5a267d34e5cbd7e27ae65..8776c9f1e549886b219086b0b57bda4b445525db 100644 --- a/AMDiS/src/AdaptBase.h +++ b/AMDiS/src/AdaptBase.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/AdaptInfo.h b/AMDiS/src/AdaptInfo.h index a638f8764ccb97cc272edd5a0d9b6a3b9aa6b597..92de1757128c95a67454430745579631f1c4e8f1 100644 --- a/AMDiS/src/AdaptInfo.h +++ b/AMDiS/src/AdaptInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/AdaptInstationary.h b/AMDiS/src/AdaptInstationary.h index ae8cf8636d9b557c48fae906ed7ddeaea6c21ee7..7adf1660716cefe778886bafc539f4f31ea3a588 100644 --- a/AMDiS/src/AdaptInstationary.h +++ b/AMDiS/src/AdaptInstationary.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/AdaptStationary.h b/AMDiS/src/AdaptStationary.h index 76a803cff18bf1d4aa7372284202a5830f3a1c96..77b897f738f891b41bb214aac74684fd8cd20adb 100644 --- a/AMDiS/src/AdaptStationary.h +++ b/AMDiS/src/AdaptStationary.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Assembler.h b/AMDiS/src/Assembler.h index 1d95440b5caea0d43c14b5c9febf0a160e4f80d5..37a84e27e67f91a10edb6d3c07e9bdae3e5fe12c 100644 --- a/AMDiS/src/Assembler.h +++ b/AMDiS/src/Assembler.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/BallProject.h b/AMDiS/src/BallProject.h index ab15be8252fed86ae8f8c3f14d9f8759573ce44e..3c59ec93636afb234b62291e3b307e37a3983d2d 100644 --- a/AMDiS/src/BallProject.h +++ b/AMDiS/src/BallProject.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/BasisFunction.h b/AMDiS/src/BasisFunction.h index c0592107eb75295e59f23928aba052ca895ccc9d..3eb7b05e46aedfd57c12dfd2627dba310dbdb5fe 100644 --- a/AMDiS/src/BasisFunction.h +++ b/AMDiS/src/BasisFunction.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Boundary.h b/AMDiS/src/Boundary.h index c054e45af7f124b0ba3c69302952a2b3582a8904..de6f23209d6514f01473415b2723fdda1774a7f0 100644 --- a/AMDiS/src/Boundary.h +++ b/AMDiS/src/Boundary.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/BoundaryCondition.h b/AMDiS/src/BoundaryCondition.h index 94a8371adb28b43f8bf02c05f97ea6d53c08aa67..b48e407c4fc054d6ab25a593cb67dee7deb4be16 100644 --- a/AMDiS/src/BoundaryCondition.h +++ b/AMDiS/src/BoundaryCondition.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/BoundaryManager.h b/AMDiS/src/BoundaryManager.h index 13bfd66d259bcc899a665745f9db55b839692539..a027d680fbdf60dd9162fd284906e721861de368 100644 --- a/AMDiS/src/BoundaryManager.h +++ b/AMDiS/src/BoundaryManager.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Cholesky.h b/AMDiS/src/Cholesky.h index fdd3b0df9c082b71215326709fb6cdea7b4ed0a5..520ad59671dc15f0ab657ef5936a8db8854d1817 100644 --- a/AMDiS/src/Cholesky.h +++ b/AMDiS/src/Cholesky.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CoarseningManager.h b/AMDiS/src/CoarseningManager.h index b9c7bfbd8250aaa2eae3a9b716716e4320342a19..94ab64e1c90cf57f64dcceebe83b16527665b676 100644 --- a/AMDiS/src/CoarseningManager.h +++ b/AMDiS/src/CoarseningManager.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CoarseningManager1d.h b/AMDiS/src/CoarseningManager1d.h index 2f9ee142c3f9df118188f38ab208f3fb63cba469..e92e4236dd1a2c46cd4de45722c2f4487730bf64 100644 --- a/AMDiS/src/CoarseningManager1d.h +++ b/AMDiS/src/CoarseningManager1d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CoarseningManager2d.h b/AMDiS/src/CoarseningManager2d.h index eb976b1a2fefd941c756785c7d1e79f53195055e..35ca78112d8330065f6eaeb36e27f29f881696c9 100644 --- a/AMDiS/src/CoarseningManager2d.h +++ b/AMDiS/src/CoarseningManager2d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CoarseningManager3d.h b/AMDiS/src/CoarseningManager3d.h index faf4f9576bf48a87e91c80f28172a97af05d61de..5fbbdcfa42c6b3cf5f2c3880ea15a18f8464f818 100644 --- a/AMDiS/src/CoarseningManager3d.h +++ b/AMDiS/src/CoarseningManager3d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ComponentTraverseInfo.h b/AMDiS/src/ComponentTraverseInfo.h index f5e27e1b44e2532a704ec4e8feda06a8a3d421f5..4eb511cd61e3e2656f08b025326f9ae3706592cb 100644 --- a/AMDiS/src/ComponentTraverseInfo.h +++ b/AMDiS/src/ComponentTraverseInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ConditionalEstimator.h b/AMDiS/src/ConditionalEstimator.h index 76441d34d31a4b7e843e091ba1b91e8fd9a46b80..c44d9123d4fa55a22c132d3be0da7f57e0b891e4 100644 --- a/AMDiS/src/ConditionalEstimator.h +++ b/AMDiS/src/ConditionalEstimator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ConditionalMarker.h b/AMDiS/src/ConditionalMarker.h index 619a015bf73e39fbe0710a95ddc6471d78f393fe..ee1f8ae5cc1f0cb3a3bc883578b57c54d518c13b 100644 --- a/AMDiS/src/ConditionalMarker.h +++ b/AMDiS/src/ConditionalMarker.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CouplingTimeInterface.h b/AMDiS/src/CouplingTimeInterface.h index b64650b68640640107fec2960857bb7dd70f70ff..c74538cc122a3f3c5c62259074cfc673eced0644 100644 --- a/AMDiS/src/CouplingTimeInterface.h +++ b/AMDiS/src/CouplingTimeInterface.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CreatorInterface.h b/AMDiS/src/CreatorInterface.h index ba2b411601ef85a4e10781d11d8acae1b32fa4e4..ad286593354b15b604c84bd37c713c71c3f3a376 100644 --- a/AMDiS/src/CreatorInterface.h +++ b/AMDiS/src/CreatorInterface.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CreatorMap.h b/AMDiS/src/CreatorMap.h index 1c64d507ddbada5a4ac140ed40a61af2901d8e3d..50eacabd80383e21728c75312b17ea183f613cc3 100644 --- a/AMDiS/src/CreatorMap.h +++ b/AMDiS/src/CreatorMap.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/CylinderProject.h b/AMDiS/src/CylinderProject.h index 886bc76c23f5b19a2c658813d03677cbaa6665ed..07a5ce0a8d1a9afc33b2d7023b059093e5264402 100644 --- a/AMDiS/src/CylinderProject.h +++ b/AMDiS/src/CylinderProject.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DOFAdmin.h b/AMDiS/src/DOFAdmin.h index 255bd3d35b1c9ea8f27fab7d9819c98bf6be4485..098251aa58d166aec9a0c1e36e3278daf9558d39 100644 --- a/AMDiS/src/DOFAdmin.h +++ b/AMDiS/src/DOFAdmin.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DOFContainer.h b/AMDiS/src/DOFContainer.h index 39f310e50d5c54dbcec80d9c173fd0d96b6bf0a2..65d66bf80e252e5213236afa3e9311b9de7b3a57 100644 --- a/AMDiS/src/DOFContainer.h +++ b/AMDiS/src/DOFContainer.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DOFIndexed.h b/AMDiS/src/DOFIndexed.h index 101ccb15d156d9a0ae8ce1d5b49e1b28d9e933ae..4a209e4adc74b32d9d9ad5ece2683ea516875087 100644 --- a/AMDiS/src/DOFIndexed.h +++ b/AMDiS/src/DOFIndexed.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DOFIterator.h b/AMDiS/src/DOFIterator.h index 95e9552518f3fde6c03cb18e0b720c811478c6e0..534914d209b61fe9a2a26442663187f164917132 100644 --- a/AMDiS/src/DOFIterator.h +++ b/AMDiS/src/DOFIterator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DOFMatrix.h b/AMDiS/src/DOFMatrix.h index 2d67a90d09d61c910c02ae45e41b8fe9e6942590..2838cb1731e893e917acd3f86070e28399d773f5 100644 --- a/AMDiS/src/DOFMatrix.h +++ b/AMDiS/src/DOFMatrix.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DOFVector.h b/AMDiS/src/DOFVector.h index 47d016f7ee19d0ca9921b359883a66880c5a878a..4107f4d02b276931f22fc669225d55b47c4622bc 100644 --- a/AMDiS/src/DOFVector.h +++ b/AMDiS/src/DOFVector.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DataCollector.h b/AMDiS/src/DataCollector.h index 11a9270cbd4e672207379812c22cd710a2d0ef58..19073164a92677efba88e7ba9bab05a35018ac4b 100644 --- a/AMDiS/src/DataCollector.h +++ b/AMDiS/src/DataCollector.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DirichletBC.h b/AMDiS/src/DirichletBC.h index fc59f594a5f1eab1de0d44d3decf331c27d48dc2..23ae3d8560155f119111d97dc5831ba602c2519f 100644 --- a/AMDiS/src/DirichletBC.h +++ b/AMDiS/src/DirichletBC.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/DualTraverse.h b/AMDiS/src/DualTraverse.h index fc2d1ae4edfba168ce6f66a1a9b7d2e87f60bcc3..bce6ccf6871abc2de92bf6ba015e66d21f8a0230 100644 --- a/AMDiS/src/DualTraverse.h +++ b/AMDiS/src/DualTraverse.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElInfo.h b/AMDiS/src/ElInfo.h index 3ec7e4911eecb7e51f26ae184dd31d1eca8894b1..b2d25eda28a14855ae44f16789007ff5258b4c5f 100644 --- a/AMDiS/src/ElInfo.h +++ b/AMDiS/src/ElInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElInfo1d.h b/AMDiS/src/ElInfo1d.h index bee73440fd70bb014d1695d7469b0b04aff582da..e3327af1cfe50f31fe53d04f23538092c2cf4366 100644 --- a/AMDiS/src/ElInfo1d.h +++ b/AMDiS/src/ElInfo1d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElInfo2d.h b/AMDiS/src/ElInfo2d.h index 797597ef5507340627525b684ef96b86ed67d7ab..e0141092979794e90a4160a1921ba8a5f9ab6dc3 100644 --- a/AMDiS/src/ElInfo2d.h +++ b/AMDiS/src/ElInfo2d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElInfo3d.h b/AMDiS/src/ElInfo3d.h index 9560e0600b0f592c790366b011a328eb598f9036..1e219b789d021f8286674f188562ad58ad6c704f 100644 --- a/AMDiS/src/ElInfo3d.h +++ b/AMDiS/src/ElInfo3d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElInfoStack.h b/AMDiS/src/ElInfoStack.h index b528c0a4b8ebc78aaac5f35024024cfd150a17d4..730aafc45765add557e1a58c636185405180d214 100644 --- a/AMDiS/src/ElInfoStack.h +++ b/AMDiS/src/ElInfoStack.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Element.h b/AMDiS/src/Element.h index 15a06b956036300b612fa11a84d4f82a22362233..bde0de6e7a82c9085de5f8d01644c714b6cdb895 100644 --- a/AMDiS/src/Element.h +++ b/AMDiS/src/Element.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElementData.h b/AMDiS/src/ElementData.h index e58dc1c237e09782a847bee848312f1373bd80a5..8284951f0c6524e89c840a1d33a8a2995a91a1a6 100644 --- a/AMDiS/src/ElementData.h +++ b/AMDiS/src/ElementData.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElementDofIterator.h b/AMDiS/src/ElementDofIterator.h index 718632a2e5982e8c31ebcdb956e3b73a8510125b..f4931a94e63854583f3e1089f948050b7d4b85c0 100644 --- a/AMDiS/src/ElementDofIterator.h +++ b/AMDiS/src/ElementDofIterator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElementFunction.h b/AMDiS/src/ElementFunction.h index d5d04a72e2704e58d95cd43b672c8ead56a930b4..5a6232cb49d10d0bc165f2e240bba016e8247803 100644 --- a/AMDiS/src/ElementFunction.h +++ b/AMDiS/src/ElementFunction.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElementInfo.h b/AMDiS/src/ElementInfo.h index 26b30b4aae010a536c0c2e77dba09f0a28d2d8c1..d837104434f066cf7552374887b1bbfcf96846fc 100644 --- a/AMDiS/src/ElementInfo.h +++ b/AMDiS/src/ElementInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ElementRegion_ED.h b/AMDiS/src/ElementRegion_ED.h index 1bad3f68b393a42df2ed104a34134199e27efdbf..9be6dee5ccb08b14df7d8d738249a155f795b4a2 100644 --- a/AMDiS/src/ElementRegion_ED.h +++ b/AMDiS/src/ElementRegion_ED.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/EmptyElementData.h b/AMDiS/src/EmptyElementData.h index 8ebc8fc90891099a6a0d56823a163125b020be29..70b1718decd9754ffda1754717d25457477420b5 100644 --- a/AMDiS/src/EmptyElementData.h +++ b/AMDiS/src/EmptyElementData.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Error.h b/AMDiS/src/Error.h index 810cc908f546000a4885529e7a0c4ad7b4a230b6..e92a0656aef5fb27fe73c9b6cea380ea84eb6514 100644 --- a/AMDiS/src/Error.h +++ b/AMDiS/src/Error.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Estimator.h b/AMDiS/src/Estimator.h index 95069c622fcce7f07f454dcf3a8c34935c18e869..1a0e9cedec23852cfe929ebffb745667e7f61480 100755 --- a/AMDiS/src/Estimator.h +++ b/AMDiS/src/Estimator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/FileWriter.h b/AMDiS/src/FileWriter.h index e7397bb4310f76853b04ae7616c5ab5927f69ce9..6c7af70c134dc3734d1db3e961bb9d7c5b1f2a39 100644 --- a/AMDiS/src/FileWriter.h +++ b/AMDiS/src/FileWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/FiniteElemSpace.h b/AMDiS/src/FiniteElemSpace.h index 8317b3f06a085e694d949ba80af8f0ed8e0cbb2f..81a95708d34a954396eab70b52b3c1d4fb8f8898 100644 --- a/AMDiS/src/FiniteElemSpace.h +++ b/AMDiS/src/FiniteElemSpace.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/FixVec.h b/AMDiS/src/FixVec.h index a785ac338472c4a7a286376664e8fb8b86efa959..c079aa8e8f6d09bd26316c2cfb0948ed40d8e6e3 100644 --- a/AMDiS/src/FixVec.h +++ b/AMDiS/src/FixVec.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/FixVecConvert.h b/AMDiS/src/FixVecConvert.h index 470d5de7989adfb3ce0bde78e1704db5f0570ff4..ad9d710e0ffa46f023cb3f94be8b77c30c5dbd22 100644 --- a/AMDiS/src/FixVecConvert.h +++ b/AMDiS/src/FixVecConvert.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Flag.h b/AMDiS/src/Flag.h index 15524ffc899323fdb97aad3a2c64d9842c29fabd..7df80bc8fd34956cd9fbab542130582a4bebb790 100644 --- a/AMDiS/src/Flag.h +++ b/AMDiS/src/Flag.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/GNUPlotWriter.h b/AMDiS/src/GNUPlotWriter.h index bd4b9cc6434caa5643ffbd22f1c438b165ccc1a7..cddc1baba5a6e9898f660f7fd4e4efb92e013379 100644 --- a/AMDiS/src/GNUPlotWriter.h +++ b/AMDiS/src/GNUPlotWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Global.h b/AMDiS/src/Global.h index baff98cf183396e3b824498223b3000b2ded9f40..c32a1504345f3c298d1dca86948fa1e2af0b3547 100644 --- a/AMDiS/src/Global.h +++ b/AMDiS/src/Global.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/GlobalDOFNumbering.h b/AMDiS/src/GlobalDOFNumbering.h index dede578d78094e5ad413632f737b6c4d0f78384a..12b258aca7d7f21f44ab6acb7cae5c1dd8c6387f 100644 --- a/AMDiS/src/GlobalDOFNumbering.h +++ b/AMDiS/src/GlobalDOFNumbering.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/GlobalElementNumbering.h b/AMDiS/src/GlobalElementNumbering.h index c2e9a280bca2486aecd918eb19ae7d3a1f86f7c5..5fb863f02d5000451396b5d7f29d0d8e5b116ced 100644 --- a/AMDiS/src/GlobalElementNumbering.h +++ b/AMDiS/src/GlobalElementNumbering.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/GridWriter.h b/AMDiS/src/GridWriter.h index 0cce47b9d6c56746f5f94f0f0fbfb5d5bb34b691..1c3187940ab2c4e456202b8fc4b2d838dfdd63c6 100644 --- a/AMDiS/src/GridWriter.h +++ b/AMDiS/src/GridWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ITL_OEMSolver.h b/AMDiS/src/ITL_OEMSolver.h index 29c7d2ff5d791e646638c61885da02701913ebff..5a730c858e214ef6d9cb05f6367de32d91ce0818 100644 --- a/AMDiS/src/ITL_OEMSolver.h +++ b/AMDiS/src/ITL_OEMSolver.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ @@ -87,10 +87,11 @@ namespace AMDiS { virtual ~Creator() {} /// Returns a new CGSolver object. - OEMSolver* create() { + OEMSolver* create() + { return new ITL_OEMSolver<ITLSolver>(this->name); } - }; + } }; @@ -137,7 +138,8 @@ namespace AMDiS { virtual ~Creator() {} /// Returns a new CGSolver object. - OEMSolver* create() { + OEMSolver* create() + { return new ITL_OEMSolver_para<ITLSolver>(this->name); } }; diff --git a/AMDiS/src/ITL_Preconditioner.h b/AMDiS/src/ITL_Preconditioner.h index a4cfd67b2c3118dd019579c9834f720cada1d8ee..91bcf146d9ffd597fd34a17ea5197472dd347d86 100644 --- a/AMDiS/src/ITL_Preconditioner.h +++ b/AMDiS/src/ITL_Preconditioner.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ITL_Solver.h b/AMDiS/src/ITL_Solver.h index b533f471a2310b695162497618234f136506710f..558dcd0d7fa27a5d73f1d2bb068a7cd8912160ac 100644 --- a/AMDiS/src/ITL_Solver.h +++ b/AMDiS/src/ITL_Solver.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/InteriorBoundary.h b/AMDiS/src/InteriorBoundary.h index a595db4aaca8f0cf1b4acb26d7f3973ce52b2c7f..148ccb347ce51471b48508fcb5f3e5d56a6590e2 100644 --- a/AMDiS/src/InteriorBoundary.h +++ b/AMDiS/src/InteriorBoundary.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Lagrange.h b/AMDiS/src/Lagrange.h index cc1d9e8261efb6b43b4c4c68b4abeecc08932027..abb7bfe23f3239375ea2e53ae21f8146bae684a3 100644 --- a/AMDiS/src/Lagrange.h +++ b/AMDiS/src/Lagrange.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/LeafData.h b/AMDiS/src/LeafData.h index 1d3161d760fa760d3c57860c28226f19dbbd64d1..4f30374088460af97fb37b45cccd63f78301fe01 100644 --- a/AMDiS/src/LeafData.h +++ b/AMDiS/src/LeafData.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Line.h b/AMDiS/src/Line.h index ed09dd452a74fb413d3e7bb59f5359629edab4cc..cd6ef9d88e613f0bd83c1d9de14256baf732058d 100644 --- a/AMDiS/src/Line.h +++ b/AMDiS/src/Line.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MacroElement.h b/AMDiS/src/MacroElement.h index 8a14e0f720468adf161d7fb7c9a89207a1d47fff..53fe9bafbbe326301092ba78bcf49c33b4d575e3 100644 --- a/AMDiS/src/MacroElement.h +++ b/AMDiS/src/MacroElement.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MacroReader.h b/AMDiS/src/MacroReader.h index ac45558517f9c579dca94df3111003546863625b..0b0b430c6ae705a1a69542767ba5c124222fb7a1 100644 --- a/AMDiS/src/MacroReader.h +++ b/AMDiS/src/MacroReader.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MacroWriter.h b/AMDiS/src/MacroWriter.h index b0c6f653a834e73588249040bfc739f7d1be950c..bff18f7bc2ae76e03af4d3f6b759fbc3d2d6e97d 100644 --- a/AMDiS/src/MacroWriter.h +++ b/AMDiS/src/MacroWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Marker.h b/AMDiS/src/Marker.h index a80ee7f54d8727665b45e9253aace067c1708d66..441fe9d7a63be69f8b98c00effc8cc2ef036d564 100644 --- a/AMDiS/src/Marker.h +++ b/AMDiS/src/Marker.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MatrixVector.h b/AMDiS/src/MatrixVector.h index 42f2068b065483ac9a651bdba0afa5633de136bb..12e2909895d1ddad32de7248916aae0a6f9824ca 100644 --- a/AMDiS/src/MatrixVector.h +++ b/AMDiS/src/MatrixVector.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Mesh.h b/AMDiS/src/Mesh.h index 015e5aed4918d3ef7fc685dc992ed4cc057a1e19..2b13ff975ddbfdc9bd4170571d980e1d7c2a595b 100644 --- a/AMDiS/src/Mesh.h +++ b/AMDiS/src/Mesh.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MeshStructure.h b/AMDiS/src/MeshStructure.h index 39c6a17da148dbdd299d58c61f189c6457599cab..92ef5a5cb25022c88f69ca998801ef6249b9b2c5 100644 --- a/AMDiS/src/MeshStructure.h +++ b/AMDiS/src/MeshStructure.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MeshStructure_ED.h b/AMDiS/src/MeshStructure_ED.h index 8c811d347fe2a723dac02d18b09535633d993a60..5a74ee057ecd214c0a2f63bd1efe4cf4c75378ec 100644 --- a/AMDiS/src/MeshStructure_ED.h +++ b/AMDiS/src/MeshStructure_ED.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/MpCCIAdapter.h b/AMDiS/src/MpCCIAdapter.h index 2cd241dd561f6011c2c946da314ebcda46a11cf9..0e55263736fff64bb3a8aa781998df40acfa5c94 100644 --- a/AMDiS/src/MpCCIAdapter.h +++ b/AMDiS/src/MpCCIAdapter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Newton.h b/AMDiS/src/Newton.h index 30908b45cdd0869f28e3049620b2d8f4e899dc01..390af4d7a90760d25022f97ebf7a34ba11869215 100644 --- a/AMDiS/src/Newton.h +++ b/AMDiS/src/Newton.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/NewtonS.h b/AMDiS/src/NewtonS.h index 1b0ca16f49f8ad432fb5225ebe7e6cf6c7dab4a1..e358a38dea2ca53aa60ee8ea084c561f07a78a7a 100644 --- a/AMDiS/src/NewtonS.h +++ b/AMDiS/src/NewtonS.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/NonLinSolver.h b/AMDiS/src/NonLinSolver.h index 17c84ae067a6f884c42df9f45f1db679b8005db9..79d83ef58da1330455258d16362f8d774afef071 100644 --- a/AMDiS/src/NonLinSolver.h +++ b/AMDiS/src/NonLinSolver.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/NonLinUpdater.h b/AMDiS/src/NonLinUpdater.h index 4f4154401f5fe6696a83cd179cba54fca99d3d45..403596354b35f7fda09a9c2e57962c1ece803cc2 100644 --- a/AMDiS/src/NonLinUpdater.h +++ b/AMDiS/src/NonLinUpdater.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/OEMSolver.h b/AMDiS/src/OEMSolver.h index 557623b7f0912d53e83bc65cdc1140497b1cd338..356963f473b6922689dafbc0e64a08f31dd2f91d 100644 --- a/AMDiS/src/OEMSolver.h +++ b/AMDiS/src/OEMSolver.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Operator.h b/AMDiS/src/Operator.h index 82c1f97f37a55244c5ef766a7c51e7f066d5bdf6..cfeacab52c7fa182b6b111e70d16d8335dcdec75 100644 --- a/AMDiS/src/Operator.h +++ b/AMDiS/src/Operator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ParMetisPartitioner.h b/AMDiS/src/ParMetisPartitioner.h index 07f3d97c382e26fd1dc2782d0b1223d3e0860666..edf28a8376c6e832da486b289bb79e3a189e8631 100644 --- a/AMDiS/src/ParMetisPartitioner.h +++ b/AMDiS/src/ParMetisPartitioner.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ParallelDomainBase.h b/AMDiS/src/ParallelDomainBase.h index 7cd8acc95a6d5f9557cfe13c0f91d7bc0ee3ac46..60bfd19e1b4182ad1c5fcb5f7bc60a822b875fcc 100644 --- a/AMDiS/src/ParallelDomainBase.h +++ b/AMDiS/src/ParallelDomainBase.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ParallelDomainScal.h b/AMDiS/src/ParallelDomainScal.h index 485cd1ba849e8cac7efd78e57e20be7535ec78da..226e32a8f67b63c26f30207397ec3802c0916a40 100644 --- a/AMDiS/src/ParallelDomainScal.h +++ b/AMDiS/src/ParallelDomainScal.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ParallelDomainVec.h b/AMDiS/src/ParallelDomainVec.h index d4e44614f9649c951385fb53d7b966d2c6f56537..0d81d547bffc7d9c64c101945839f93cc2025964 100644 --- a/AMDiS/src/ParallelDomainVec.h +++ b/AMDiS/src/ParallelDomainVec.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ParallelError.h b/AMDiS/src/ParallelError.h index 693952ba8e4acf220ff3db081a497fd3dcdead41..df92ed5a1edc37572e53f75dcd22d42f07cd16f7 100644 --- a/AMDiS/src/ParallelError.h +++ b/AMDiS/src/ParallelError.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ParallelProblem.h b/AMDiS/src/ParallelProblem.h index 7d15423c57044cd071b704dea88ca42b6ecf2a8b..8b271e8dbd59bf8b25c5716bce7288b6549bd7fb 100644 --- a/AMDiS/src/ParallelProblem.h +++ b/AMDiS/src/ParallelProblem.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Parameters.h b/AMDiS/src/Parameters.h index eb2cc8353a7ce3f0e7924f43f54bc78b380f289d..d7e691f8a9c86afa45f7d6a7bac33d7576da2f67 100644 --- a/AMDiS/src/Parameters.h +++ b/AMDiS/src/Parameters.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Parametric.h b/AMDiS/src/Parametric.h index 70630b72e3048871e4c62e8a2e2c149f119f906d..31828e5bed33211d4a63304add520fc3fe97a7e5 100644 --- a/AMDiS/src/Parametric.h +++ b/AMDiS/src/Parametric.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/PardisoSolver.h b/AMDiS/src/PardisoSolver.h index c0ad4c734656694a7f6a09ac7fb0b18c47e367ed..716a260fbd2923eab7dc032a6d8bc9db7118cf6c 100644 --- a/AMDiS/src/PardisoSolver.h +++ b/AMDiS/src/PardisoSolver.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/PartitionElementData.h b/AMDiS/src/PartitionElementData.h index 1a717cf8c9bf2944c5ce18db759ebdf41593dbd0..72fd10fc51837419999180e838a55134a5c31322 100644 --- a/AMDiS/src/PartitionElementData.h +++ b/AMDiS/src/PartitionElementData.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/PeriodicBC.h b/AMDiS/src/PeriodicBC.h index ec5de0a7075413857f617cda3955d64c0549009f..f0444f166e71b3247f68773bba8b5f933c61bc9b 100644 --- a/AMDiS/src/PeriodicBC.h +++ b/AMDiS/src/PeriodicBC.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/PeriodicInfo.h b/AMDiS/src/PeriodicInfo.h index 3c7bae6d3df0f21eb68729b9fec65fad48c23222..30d16d1fe6cf551a5c1600fc64723a2833e38a23 100644 --- a/AMDiS/src/PeriodicInfo.h +++ b/AMDiS/src/PeriodicInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/PeriodicMap.h b/AMDiS/src/PeriodicMap.h index 4b85ff94e33afa8d40f8a6fcd9e4d2a2b235224c..346b93fa2d8c886c0e346f3f08549e2070ab5cb0 100644 --- a/AMDiS/src/PeriodicMap.h +++ b/AMDiS/src/PeriodicMap.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/PngWriter.h b/AMDiS/src/PngWriter.h index 21103d14de68c5f8a947824040e66799aeff8f89..c4934e5301eebed205bc921e8fde0ca5dba7d97c 100644 --- a/AMDiS/src/PngWriter.h +++ b/AMDiS/src/PngWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemInstat.h b/AMDiS/src/ProblemInstat.h index c724fdee437d7244e44b0deb5d32464d8bbc2b2f..e4c40bd18420e7272b2e721a5b6c24053b02a37c 100644 --- a/AMDiS/src/ProblemInstat.h +++ b/AMDiS/src/ProblemInstat.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemInterpolScal.h b/AMDiS/src/ProblemInterpolScal.h index 0f0adfc2a2f854f9a5375db45a9b7cfb00d0c103..e9af69b1646d732fe75024c6f2d27e1c448ed142 100644 --- a/AMDiS/src/ProblemInterpolScal.h +++ b/AMDiS/src/ProblemInterpolScal.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemInterpolVec.h b/AMDiS/src/ProblemInterpolVec.h index 3869c1e65a5787c0f89ec1f3b007f02a3c8a1c8c..34e6b4772b340ae54121696cddef1c6ca66a6e52 100644 --- a/AMDiS/src/ProblemInterpolVec.h +++ b/AMDiS/src/ProblemInterpolVec.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemIterationInterface.h b/AMDiS/src/ProblemIterationInterface.h index d991bbd73317e1d8110c75de8ea114e5e41b0992..e4ff70513033b219118ae5a48d1dfed927b0b0e0 100644 --- a/AMDiS/src/ProblemIterationInterface.h +++ b/AMDiS/src/ProblemIterationInterface.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemNonLin.h b/AMDiS/src/ProblemNonLin.h index f0315a0d68af839a327525b09b11c08514eeadd1..7cc35c71fefe8a913caedf513b940f4b25e01703 100644 --- a/AMDiS/src/ProblemNonLin.h +++ b/AMDiS/src/ProblemNonLin.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemScal.h b/AMDiS/src/ProblemScal.h index d0824b58bbd3f0b198c806bc41beb0f4484be6cb..2538decc8d8c02259a8da5519408e426621b5c9d 100644 --- a/AMDiS/src/ProblemScal.h +++ b/AMDiS/src/ProblemScal.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemStatBase.h b/AMDiS/src/ProblemStatBase.h index 075ddf282d103402e2e58d6de6b7caa0e8ca5e88..1caf7ece7abb0ba061293b745238c7f426201b2e 100644 --- a/AMDiS/src/ProblemStatBase.h +++ b/AMDiS/src/ProblemStatBase.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemTimeInterface.h b/AMDiS/src/ProblemTimeInterface.h index cb5600b47ace4c62d475dcecc94c72b9bf014fd7..602d6e769083c8a6af7d38a4c86606ad9e4f1fe2 100644 --- a/AMDiS/src/ProblemTimeInterface.h +++ b/AMDiS/src/ProblemTimeInterface.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ProblemVec.h b/AMDiS/src/ProblemVec.h index 7a4de800d96664e65b838865606532a531374c17..3445d0b3f2da8d58e84cf94c026942398f4133ca 100644 --- a/AMDiS/src/ProblemVec.h +++ b/AMDiS/src/ProblemVec.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Projection.h b/AMDiS/src/Projection.h index b953ae51933f490e4e14c03536f9d3b7ce13a3c4..af8b62cbf5261d189359667adab128f74c520798 100644 --- a/AMDiS/src/Projection.h +++ b/AMDiS/src/Projection.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/QPInfo.h b/AMDiS/src/QPInfo.h index e379ec4de9b9965e020430ef0ad41ec838392e00..dac5de3600b3d18014f70a3c62912ea1651c8bf2 100644 --- a/AMDiS/src/QPInfo.h +++ b/AMDiS/src/QPInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/QPsiPhi.h b/AMDiS/src/QPsiPhi.h index 3be1018d03f77b2a14538f08363ce0c4429edebe..9f9bc58675f66429e8f1186aa693c36a525cefcb 100644 --- a/AMDiS/src/QPsiPhi.h +++ b/AMDiS/src/QPsiPhi.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Quadrature.h b/AMDiS/src/Quadrature.h index 96ff7eddffb6ac86973035c51dd541cd483d47f0..dc648db082a38f2a0bcdfb4e813f03388d2b736f 100644 --- a/AMDiS/src/Quadrature.h +++ b/AMDiS/src/Quadrature.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RCNeighbourList.h b/AMDiS/src/RCNeighbourList.h index c5a9cac0ac9f7752bfd6d57a194cf7c83de39a7d..777db447ae3145dbec41320139fb101bbf2fefa4 100644 --- a/AMDiS/src/RCNeighbourList.h +++ b/AMDiS/src/RCNeighbourList.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Recovery.h b/AMDiS/src/Recovery.h index 4927955bc1591d89c19d627c468ab80e5d90b1b5..498189d75c6daf2bd5ecd6475174a5181667a10c 100644 --- a/AMDiS/src/Recovery.h +++ b/AMDiS/src/Recovery.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RecoveryEstimator.h b/AMDiS/src/RecoveryEstimator.h index ead7f5e43a50871ebf1861d04dda82b69572d3ea..510510bc26606f302bc817d5c4b0a64df6ed09a5 100644 --- a/AMDiS/src/RecoveryEstimator.h +++ b/AMDiS/src/RecoveryEstimator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RefinementManager.h b/AMDiS/src/RefinementManager.h index 82013c82f66056adc2001fac7bfb6eb87eb21cc8..bc88662a953e56eac6ba801c85e88dbbba92d049 100644 --- a/AMDiS/src/RefinementManager.h +++ b/AMDiS/src/RefinementManager.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RefinementManager1d.h b/AMDiS/src/RefinementManager1d.h index f556eb3a897513b487cb4faf160b432bbff3c326..9a9bae8ee66ef77669c9d6f9a017da14a1cf6038 100644 --- a/AMDiS/src/RefinementManager1d.h +++ b/AMDiS/src/RefinementManager1d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RefinementManager2d.h b/AMDiS/src/RefinementManager2d.h index e6ad02dc7a4ca48a8a64a325b28b9100454de66e..1b9bc2423fdea52522ca9d600751cbc105b8c9df 100644 --- a/AMDiS/src/RefinementManager2d.h +++ b/AMDiS/src/RefinementManager2d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RefinementManager3d.h b/AMDiS/src/RefinementManager3d.h index b2561609ac2203ad7f49087f8ad61ed385b784f8..401bc31109e28f05e0210f9972b5be614c037a78 100644 --- a/AMDiS/src/RefinementManager3d.h +++ b/AMDiS/src/RefinementManager3d.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ResidualEstimator.h b/AMDiS/src/ResidualEstimator.h index a2ac7a85bcb3d378d1a533d62343f894d4c1d72c..e21d18af473a775a80990db180b4dff3c9f5e601 100644 --- a/AMDiS/src/ResidualEstimator.h +++ b/AMDiS/src/ResidualEstimator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ResidualParallelEstimator.h b/AMDiS/src/ResidualParallelEstimator.h index 3dac6ff0b88377d9985e82b738dad3c49ea17621..6b66ad8b77b683d943b0579bde6fb6017a6ecb5e 100644 --- a/AMDiS/src/ResidualParallelEstimator.h +++ b/AMDiS/src/ResidualParallelEstimator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/RobinBC.h b/AMDiS/src/RobinBC.h index 3b7996bfd798719c4fbfbcd52ab9f847131c921c..8ca31d37881fb42e2b4b7538de66ceeaf0670dc4 100644 --- a/AMDiS/src/RobinBC.h +++ b/AMDiS/src/RobinBC.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SMIAdapter.h b/AMDiS/src/SMIAdapter.h index 2659712a4319e684994e17d3d16a31558ddf3165..130c43f2d210de0ed9d6ef2203146522bbe601a8 100644 --- a/AMDiS/src/SMIAdapter.h +++ b/AMDiS/src/SMIAdapter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Serializable.h b/AMDiS/src/Serializable.h index 9bba368dffbd5ca1589772cba53b2cf1014d01ef..6eb12125028eab89bfa15c276a52c737c8652142 100644 --- a/AMDiS/src/Serializable.h +++ b/AMDiS/src/Serializable.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Serializer.h b/AMDiS/src/Serializer.h index 10fdc45d4a9d84c816abdda327de92e842f90cd2..f2bf3f86dc727ae4a9bd298fd1f05f4bff817083 100644 --- a/AMDiS/src/Serializer.h +++ b/AMDiS/src/Serializer.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SolverMatrix.h b/AMDiS/src/SolverMatrix.h index ef996f40c734037cc66f86b006dbb14ff7e4470f..43077aa794395d36a526cacf2763fbbf8b596247 100644 --- a/AMDiS/src/SolverMatrix.h +++ b/AMDiS/src/SolverMatrix.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/StandardProblemIteration.h b/AMDiS/src/StandardProblemIteration.h index 555b215784d9f2668dcc5d3441be9bef82098cfe..3bea2ab7da62c5b1b06b4d3587c2a2af85c467c7 100644 --- a/AMDiS/src/StandardProblemIteration.h +++ b/AMDiS/src/StandardProblemIteration.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SubQuadrature.h b/AMDiS/src/SubQuadrature.h index 78f3ed98eaacd3853650f46d57cf7d02eab270b0..f06b1d4a08cc6a333e0e0dc1aad5fd30ce40a3b9 100644 --- a/AMDiS/src/SubQuadrature.h +++ b/AMDiS/src/SubQuadrature.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SurfaceAssembler.h b/AMDiS/src/SurfaceAssembler.h index f320f57365362a05ebc56226e2162b08383ce1b4..35e3ca12a04b06520238e89609ecbdd9437008f6 100644 --- a/AMDiS/src/SurfaceAssembler.h +++ b/AMDiS/src/SurfaceAssembler.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SurfaceOperator.h b/AMDiS/src/SurfaceOperator.h index ea28bb91026dfca937652234ac6e781968bc62cb..f341ea4c31d5c06eb9939ab52db8d971a12937d3 100644 --- a/AMDiS/src/SurfaceOperator.h +++ b/AMDiS/src/SurfaceOperator.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SurfaceQuadrature.h b/AMDiS/src/SurfaceQuadrature.h index 004c7bad6737b4eeab8c6337aada8779724803d3..2a3e156afe2e61b29b7d7c1a692999d57af28efa 100644 --- a/AMDiS/src/SurfaceQuadrature.h +++ b/AMDiS/src/SurfaceQuadrature.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SurfaceRegion_ED.h b/AMDiS/src/SurfaceRegion_ED.h index 4ddb4650613c278a0fdc28b68bd138622d87092c..ca8f3246636930391725db87196ea1ca2792ae80 100644 --- a/AMDiS/src/SurfaceRegion_ED.h +++ b/AMDiS/src/SurfaceRegion_ED.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/SystemVector.h b/AMDiS/src/SystemVector.h index 326394009f2c777c09b3ef1442f37825e8137e41..afb69325b3dc4f34996f069d53a905997a9efafa 100644 --- a/AMDiS/src/SystemVector.h +++ b/AMDiS/src/SystemVector.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/TecPlotWriter.h b/AMDiS/src/TecPlotWriter.h index ad2a481182f466392676ea05d5eba870477ee040..c7ea4625fc6e59d768c4b53c9ce8901434c69dd3 100644 --- a/AMDiS/src/TecPlotWriter.h +++ b/AMDiS/src/TecPlotWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Tetrahedron.h b/AMDiS/src/Tetrahedron.h index 25797552eba2be60a34beae1c89d4c6b418ff4f4..a9e3195b054bdded71876fbd53b630d49a737aa1 100644 --- a/AMDiS/src/Tetrahedron.h +++ b/AMDiS/src/Tetrahedron.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/TimedObject.h b/AMDiS/src/TimedObject.h index 7731144b794461bc7f1f8dcb3f91552d0609202b..d29aa32860344d665df6b76fa7e3dd262e2b7226 100644 --- a/AMDiS/src/TimedObject.h +++ b/AMDiS/src/TimedObject.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Traverse.h b/AMDiS/src/Traverse.h index f2e3e42195a1e7d988b124d9737cb029926cddb1..751de9693743ab94511de9908791ab253c7ca850 100644 --- a/AMDiS/src/Traverse.h +++ b/AMDiS/src/Traverse.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/TraverseParallel.h b/AMDiS/src/TraverseParallel.h index 744e7f0523f806af95cdaf236a9ef38ee591bb52..ff0d8c2f7142a6440ffbcc1ae8b5643faa702552 100644 --- a/AMDiS/src/TraverseParallel.h +++ b/AMDiS/src/TraverseParallel.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/Triangle.h b/AMDiS/src/Triangle.h index fa8b2f64c39eeb3b6669d2649ec67eae5e8976d4..9a6c3c2519e87e65ee4b2db35c6d865ccce22363 100644 --- a/AMDiS/src/Triangle.h +++ b/AMDiS/src/Triangle.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/UmfPackSolver.h b/AMDiS/src/UmfPackSolver.h index ce280451451576f2c5765b500ac7b06864bb770a..04453a6b50914cd74ff3572d7b4a776bb54d0bb0 100644 --- a/AMDiS/src/UmfPackSolver.h +++ b/AMDiS/src/UmfPackSolver.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ValueReader.h b/AMDiS/src/ValueReader.h index 7b0af6e065aa2422bfae4a3b61c51e4f38fb0998..c5fd784087728b5478f1edcf5e4a17224795b4d8 100644 --- a/AMDiS/src/ValueReader.h +++ b/AMDiS/src/ValueReader.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/ValueWriter.h b/AMDiS/src/ValueWriter.h index a1375863891002f9e6c068ae661aa9993f32b0fd..03f3701f790fd2a5ce5115d706dda391efd81477 100644 --- a/AMDiS/src/ValueWriter.h +++ b/AMDiS/src/ValueWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/VertexInfo.h b/AMDiS/src/VertexInfo.h index 5337385235d74728012626ff8a89a81e44445fd9..41cf0aec283098d11f2ad51a29f6111306a697a7 100644 --- a/AMDiS/src/VertexInfo.h +++ b/AMDiS/src/VertexInfo.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/VtkWriter.h b/AMDiS/src/VtkWriter.h index 3bb807b3ecaee0ed235970bfb2fd81156ca13266..12243da0c21935239839acdbeb1c903bde18d01b 100644 --- a/AMDiS/src/VtkWriter.h +++ b/AMDiS/src/VtkWriter.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/parareal/AdaptParaReal.cc b/AMDiS/src/parareal/AdaptParaReal.cc index 283009b6029a5749885728ed9c1615f9705e56a1..8ba8d9105e44e4e7f8ee08160ac207ac32e2d51f 100644 --- a/AMDiS/src/parareal/AdaptParaReal.cc +++ b/AMDiS/src/parareal/AdaptParaReal.cc @@ -5,7 +5,8 @@ namespace AMDiS { int AdaptParaReal::adapt() { // Compute number of coarse and fine time stages. - int coarseStages = static_cast<int>(round(adaptInfo->getEndTime() / coarseTimestep)); + int coarseStages = + static_cast<int>(round(adaptInfo->getEndTime() / coarseTimestep)); int fineStages = static_cast<int>(round(coarseTimestep / fineTimestep)); // First, sequentially calculate first approximation on coarse time grid. diff --git a/AMDiS/src/parareal/AdaptParaReal.h b/AMDiS/src/parareal/AdaptParaReal.h index d24b0cca582165b76a186631a680d168520b07a1..2f452a973d94bbe49c5d2954c952772519208275 100644 --- a/AMDiS/src/parareal/AdaptParaReal.h +++ b/AMDiS/src/parareal/AdaptParaReal.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ diff --git a/AMDiS/src/parareal/ProblemBase.h b/AMDiS/src/parareal/ProblemBase.h index 0163199435efc4b687a31dfeb7b6a53924e4515e..181f0ca1912bc82cdeb52e5b529f9d827fc4b69b 100644 --- a/AMDiS/src/parareal/ProblemBase.h +++ b/AMDiS/src/parareal/ProblemBase.h @@ -4,16 +4,16 @@ // == == // ============================================================================ // == == -// == crystal growth group == +// == TU Dresden == // == == -// == Stiftung caesar == -// == Ludwig-Erhard-Allee 2 == -// == 53175 Bonn == +// == Institut f�r Wissenschaftliches Rechnen == +// == Zellescher Weg 12-14 == +// == 01069 Dresden == // == germany == // == == // ============================================================================ // == == -// == http://www.caesar.de/cg/AMDiS == +// == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================