/usr/include/hmat/cluster_tree.hpp is in libhmat-oss-dev 1.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | /*
HMat-OSS (HMatrix library, open source software)
Copyright (C) 2014-2015 Airbus Group SAS
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
http://github.com/jeromerobert/hmat-oss
*/
/*! \file
\ingroup HMatrix
\brief Spatial cluster tree for the Dofs.
*/
#ifndef _CLUSTER_TREE_HPP
#define _CLUSTER_TREE_HPP
#include <sstream>
#include "tree.hpp"
#include "clustering.hpp"
#include "coordinates.hpp"
#include "hmat/hmat.h"
#include <vector>
#include <cmath>
namespace hmat {
class IndexSet {
public:
IndexSet() : offset_(-1), size_(0) {}
IndexSet(int offset, int size) : offset_(offset), size_(size) {}
/*! \brief Compare two indices set for equality.
*/
bool operator==(const IndexSet& o) const;
/*! \brief Get the number of indices in this set.
*/
inline int size() const { return size_; }
/*! \brief Get the offset of first index
*/
inline int offset() const { return offset_; }
/*! \brief Return true if this is a subset of o.
\param o IndexSet
\return true if this is a subset of o
*/
bool isSubset(const IndexSet& o) const;
/*! \brief Return true if this is a strict subset of o.
*/
bool isStrictSubset(const IndexSet& o) const {
return isSubset(o) && (!(*this == o));
};
/*! \brief Return o.isSubset(*this)
*/
bool isSuperSet(const IndexSet& o) const;
/*! \brief Return o.isStrictSubset(*this)
*/
bool isStrictSuperSet(const IndexSet& o) const {
return isSuperSet(o) && (!(*this == o));
};
/** Return true if two index sets intersect.
*/
bool intersects(const IndexSet& o) const;
/** Set this as the intersection of two index set */
void intersection(const IndexSet& s1, const IndexSet& s2);
/*! \brief Return a short string describing the content of this IndexSet for debug (like: "[320, 452]")
*/
std::string description() const {
std::ostringstream convert; // stream used for the conversion
convert << "[" << offset() << ", " << offset()+size()-1 << "]" ;
return convert.str();
}
protected:
/// offset of the start of this node's data in indices
int offset_;
/// length of this node's data in indices
int size_;
};
/*! \brief Geometric data.
*/
class DofData {
friend class ClusterData;
public:
explicit DofData(const DofCoordinates& coordinates, int* group_index = NULL);
~DofData();
DofData* copy() const;
inline int size() const { return coordinates_->size(); }
private:
/// Indices array
int *perm_i2e_;
int *perm_e2i_;
int *group_index_;
/// Coordinates
const DofCoordinates* coordinates_;
};
class ClusterData : public IndexSet {
friend class ClusterTree;
public:
ClusterData(const DofData* dofData) : IndexSet(0, dofData->size()), dofData_(dofData) {}
ClusterData(const ClusterData& data) : IndexSet(data), dofData_(data.dofData_) {}
ClusterData(const ClusterData& data, int offset, int size) : IndexSet(offset, size), dofData_(data.dofData_) {}
inline int* indices() const { return dofData_->perm_i2e_; }
inline int* indices_rev() const { return dofData_->perm_e2i_; }
inline const DofCoordinates* coordinates() const { return dofData_->coordinates_; }
inline int* group_index() const { return dofData_->group_index_; }
private:
const DofData* dofData_;
};
/*! \brief Abstract Base Class for the Cluster trees.
This class defines the index set division of a problem. Several divisions
being possible, this is an abstract class. It however only allows bisection of
the index set.
\warning During the tree creation, it is mandatory to call
ClusterTree::divide() on the newly created tree, to really create the tree
structure.
*/
class ClusterTree : public Tree<ClusterTree> {
public:
/*! Data */
ClusterData data;
/*! Opaque pointer which may be used by clustering algorithm */
mutable void* clusteringAlgoData_;
/*! Opaque pointer which may be used by admissibility algorithm */
mutable void* admissibilityAlgoData_;
public:
/*! \brief Create a leaf.
\param _boundingBox bounding box of this leaf
\param clusterData data held by this leaf
\param _threshold max number of indices in a leaf. Used for the recursive division.
*/
explicit ClusterTree(const DofData* dofData);
/* Copy constructor */
ClusterTree(const ClusterTree& other);
virtual ~ClusterTree();
/*! \brief Returns the admissibility parameter eta corresponding to two clusters.
As described in \a ClusterTree::isAdmissibleWith documentation,
this criteria is defined by:
eta = min(diameter(), other->diameter()) / distanceTo(other);
The lower it is, the farther away are the two boxes. It is thus
linked with the compression ratio one can expect from a block, the
lower eta is, the more the block can be compressed. It can be used
as a parameter in a crude a-priori work estimation method.
*/
double getEta(const ClusterTree* other) const;
ClusterTree* slice(int offset, int size) const;
/*! \brief Return a copy to this.
*/
ClusterTree* copy(const ClusterTree* copyFather=NULL) const;
/**
* Transform this cluster tree so it has the same or greater depth
* as the other one.
*/
void sameDepth(const ClusterTree * other);
/*! \brief Return a short string describing the content of this ClusterTree for debug (like: "[320, 452]")
*/
std::string description() const {
return data.description();
}
};
class AxisAlignedBoundingBox
{
public:
explicit AxisAlignedBoundingBox(const ClusterData& node);
AxisAlignedBoundingBox(int dim, const double *bboxMin, const double *bboxMax);
~AxisAlignedBoundingBox();
double diameter() const;
double distanceTo(const AxisAlignedBoundingBox& other) const;
private:
const int dimension_;
public:
double *bbMin, *bbMax;
};
} // end namespace hmat
#endif
|