mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
51 lines
921 B
C++
51 lines
921 B
C++
#ifndef FILE_SETI
|
|
#define FILE_SETI
|
|
|
|
|
|
/**************************************************************************/
|
|
/* File: seti.hh */
|
|
/* Author: Joachim Schoeberl */
|
|
/* Date: 20. Mar. 98 */
|
|
/**************************************************************************/
|
|
|
|
namespace netgen
|
|
{
|
|
|
|
/**
|
|
Set of Integers
|
|
*/
|
|
class IndexSet
|
|
{
|
|
Array<int> set;
|
|
BitArray flags;
|
|
public:
|
|
IndexSet (int maxind);
|
|
|
|
~IndexSet ();
|
|
/// increase range to maxind
|
|
void SetMaxIndex (int maxind);
|
|
int IsIn (int ind) const
|
|
{
|
|
return flags.Test (ind);
|
|
}
|
|
|
|
void Add (int ind)
|
|
{
|
|
if (!flags.Test(ind))
|
|
{
|
|
set.Append (ind);
|
|
flags.Set (ind);
|
|
}
|
|
}
|
|
|
|
void Del (int ind);
|
|
void Clear ();
|
|
|
|
const Array<int> & GetArray() { return set; }
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|