Skip to content
Snippets Groups Projects
Commit 94d9930d authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

some bug fixes that cause linker errors


git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@1209 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent b81ed7da
No related branches found
No related tags found
No related merge requests found
......@@ -271,3 +271,9 @@ MacroGhostHexa( BuilderIF & bi, MacroGhostInfoHexa* allp, const hface4_GEO * fac
// here. This is ok because of the hasFaceEmpty class (gitter_sti.h)
// which acts as empty boundary.
}
// instantiation
class MacroGhostBuilder ;
class MacroGhostTetra ;
class MacroGhostHexa ;
......@@ -206,10 +206,10 @@ private:
void splitISO8 () ;
protected:
inline myhedge1_t * subedge1 (int,int) ;
inline const myhedge1_t * subedge1 (int,int) const ;
inline myhface4_t * subface4 (int,int) ;
inline const myhface4_t * subface4 (int,int) const ;
myhedge1_t * subedge1 (int,int) ;
const myhedge1_t * subedge1 (int,int) const ;
myhface4_t * subface4 (int,int) ;
const myhface4_t * subface4 (int,int) const ;
public:
// Constructor for macro elements
......
// (c) Robert Kloefkorn 2010
#ifndef GITTER_IMPL_H_INCLUDED
#define GITTER_IMPL_H_INCLUDED
#include "gitter_impl.h"
......@@ -648,4 +646,3 @@ void GitterBasisImpl :: printMemUsage ()
cout << "\n" ;
}
}
#endif // GITTER_IMPL_H_INCLUDED
......@@ -1090,6 +1090,19 @@ Periodic3Top < A > :: getGhost ( int nr ) const
return _ghostPair[nr];
}
template < class A > inline void Periodic3Top < A > :: backupCMode (ostream & os) const {
// Das backup im alten Stil, d.h. levelweise die Verfeinerungsregeln
// vom Gitter runterschreiben. Diese Technik wird nur f"ur das backup
// noch unterst"utzt, um die Daten mit "alteren Konstruktionen visual.
// zu k"onnen.
os << getrule () << " " ;
return ;
}
template < class A > inline void Periodic3Top < A > :: backup (ostream & os) const
{
doBackup( os );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment