KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
|
Functions | |
template<class TClassType > | |
void | HashCombine (std::size_t &rSeed, const TClassType &rValue) |
This method creates an "unique" hash for the input value. More... | |
|
inline |
This method creates an "unique" hash for the input value.
It comes from boost, taken from here: https://www.boost.org/doc/libs/1_55_0/doc/html/hash/reference.html#boost.hash_combine
TClassType | The type of class to be hashed |
rSeed | This is the seed used to create the hash |
rValue | This is the value to be hashed |