NeoPZ
pzsloan.h
Go to the documentation of this file.
1 
6 #ifndef TPZSLOAN_H
7 #define TPZSLOAN_H
8 
9 #include "TPZRenumbering.h"
10 
11 #ifndef BORLAND
12 #include "sloan.h"
13 #else
14 #include "sloan\\sloan.h"
15 #endif
16 
21 class TPZSloan : public TPZRenumbering {
22  public:
23 
24  virtual void Resequence(TPZVec<int64_t> &perm, TPZVec<int64_t> &iperm);
25 
26  private:
27 
29 
30 public:
31 
33  fMaxNodesElement(27)
34  {
35  }
36  TPZSloan(int NElements, int NNodes);
37 
38  virtual ~TPZSloan()
39  {
40  }
41 
42 };
43 
44 #endif
45 
virtual void Resequence(TPZVec< int64_t > &perm, TPZVec< int64_t > &iperm)
Definition: pzsloan.cpp:20
Contains the TPZRenumbering class which defines the behavior to implementing node sequence numbering ...
virtual ~TPZSloan()
Definition: pzsloan.h:38
This abstract class which defines the behavior which derived classes need to implement for implement...
int fMaxNodesElement
Definition: pzsloan.h:28
TPZSloan()
Definition: pzsloan.h:32
Interface to sloan subrotines. Utility.
Definition: pzsloan.h:21