|
| std::ostream & | operator<< (std::ostream &out, const Eigen::VectorXd &vec) |
| |
| std::ostream & | operator<< (std::ostream &out, const Eigen::Map< const Eigen::VectorXd > &vec) |
| |
| std::ostream & | operator<< (std::ostream &out, const Eigen::MatrixXd &mat) |
| |
| template<typename matrixType > |
| std::string | MatrixToString (const matrixType &mat, const std::string &matrixTypeStr, const std::string &matrixName) |
| |
| template<typename matrixType > |
| std::string | MatrixCollectionToString (const std::vector< matrixType > &matCollection, const std::string &matrixTypeStr, const std::string &matrixName) |
| |
| template<typename matrixType > |
| std::string | MatrixCollectionToString (const std::vector< std::vector< matrixType > > &matCollection, const std::string &matrixTypeStr, const std::string &matrixName) |
| |
| template<typename matrixType > |
| std::string | MatrixCollectionToString (const std::vector< std::vector< std::vector< matrixType > > > &matCollection, const std::string &matrixTypeStr, const std::string &matrixName) |
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::vector< T > &vec) |
| | General print of a vector.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::vector< T * > &vec) |
| | General print of a vector.
|
| |
| template<typename T , size_t s> |
| std::ostream & | operator<< (std::ostream &out, const std::array< T, s > &vec) |
| | General print of an array.
|
| |
| template<typename T , size_t s> |
| std::ostream & | operator<< (std::ostream &out, const std::array< T *, s > &vec) |
| | General print of an array.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::list< T > &listToPrint) |
| | General print of a list.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::list< T * > &listToPrint) |
| | General print of a list.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::unordered_set< T > &setToPrint) |
| | General print of a unordered_set.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::unordered_set< T * > &setToPrint) |
| | General print of a unordered_set.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::set< T > &setToPrint) |
| | General print of a set.
|
| |
| template<typename T > |
| std::ostream & | operator<< (std::ostream &out, const std::set< T * > &setToPrint) |
| | General print of a set.
|
| |
| template<typename map_key , typename map_val > |
| std::ostream & | operator<< (std::ostream &out, const std::map< map_key, map_val > &mapToPrint) |
| | General print of a map.
|
| |
| template<typename map_key , typename map_val > |
| std::ostream & | operator<< (std::ostream &out, const std::map< map_key, map_val * > &mapToPrint) |
| | General print of a map.
|
| |
| template<typename map_key , typename map_val > |
| std::ostream & | operator<< (std::ostream &out, const std::unordered_map< map_key, map_val > &mapToPrint) |
| | General print of a unordered map.
|
| |
| Eigen::MatrixXd | GenerateRandomPoints (const Eigen::MatrixXd &domainVertices, const unsigned int &numPoints, const unsigned int random_seed) |
| |
| void | GenerateVoronoiTassellations2D (const Eigen::MatrixXd &polygonVertices, const unsigned int &numIterations, Eigen::MatrixXd &VoronoiPoints, Gedim::IMeshDAO &mesh) |
| |
| void | GenerateVoronoiTassellations3D (const Eigen::MatrixXd &domain_vertices, const Eigen::MatrixXi &domain_edges, const std::vector< Eigen::MatrixXi > &domain_faces, const unsigned int &num_iterations, Eigen::MatrixXd &VoronoiPoints, Gedim::IMeshDAO &mesh) |
| |