MyraMath
amd.h
Go to the documentation of this file.
1 // ========================================================================= //
2 // This file is part of MyraMath, copyright (c) 2014-2019 by Ryan A Chilton //
3 // and distributed by MyraCore, LLC. See LICENSE.txt for license terms. //
4 // ========================================================================= //
5 
6 #ifndef MYRAMATH_MULTIFRONTAL_SYMBOLIC_AMD_H
7 #define MYRAMATH_MULTIFRONTAL_SYMBOLIC_AMD_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
15 
16 #include <vector>
17 
18 namespace myra {
19 
20 // Forward declarations.
21 class Permutation;
22 class PatternRange;
23 class CGraphRange;
24 class GraphRange;
25 
27 MYRAMATH_EXPORT Permutation amd(const PatternRange& A);
28 MYRAMATH_EXPORT Permutation amd(const CGraphRange& A);
29 MYRAMATH_EXPORT void amd_inplace(const GraphRange& A);
30 
31 } // namespace myra
32 
33 #endif
Permutation amd(const PatternRange &A)
Reorders A for reduced fill-in using approximate minimum degree.
Definition: syntax.dox:1