Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120014496
mesh_partition_scotch.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 1, 08:52
Size
2 KB
Mime Type
text/x-c++
Expires
Thu, Jul 3, 08:52 (2 d)
Engine
blob
Format
Raw Data
Handle
27126310
Attached To
rAKA akantu
mesh_partition_scotch.hh
View Options
/**
* @file mesh_partition_scotch.hh
* @author Nicolas Richart <nicolas.richart@epfl.ch>
* @date Fri Aug 13 10:00:06 2010
*
* @brief mesh partitioning based on libScotch
*
* @section LICENSE
*
* <insert license here>
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MESH_PARTITION_SCOTCH_HH__
#define __AKANTU_MESH_PARTITION_SCOTCH_HH__
/* -------------------------------------------------------------------------- */
#include "mesh_partition.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
class MeshPartitionScotch : public MeshPartition {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public:
MeshPartitionScotch();
virtual ~MeshPartitionScotch();
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
/// function to print the contain of the class
virtual void printself(std::ostream & stream, int indent = 0) const;
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public:
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private:
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#include "mesh_partition_scotch_inline_impl.cc"
/// standard output stream operator
inline std::ostream & operator <<(std::ostream & stream, const MeshPartitionScotch & _this)
{
_this.printself(stream);
return stream;
}
__END_AKANTU__
#endif /* __AKANTU_MESH_PARTITION_SCOTCH_HH__ */
Event Timeline
Log In to Comment