Zoltan2
|
ND is a serial ordering algorithm for graphs or sparse matrices that runs on the local graph for the node. ND computes a nested dissection based ordering recursively by computing edge separators and then computing a vertex cover based on the resulting boundary graph (from a bipartite matching of that boundary graph).
ND is currently an experimental method. In order to use, add "-D Zoltan2_ENABLE_Experimental:BOOL=ON" to cmake options.
ND expects a Zoltan2::GraphModel object.
In order to enable ND:
The following parameters are used by the ND algorithm:
An ND solution is a permutation, currently given as a list of local ids.
Zoltan2_AlgND.hpp is the source file for ND.