LAL: Linear Arrangement Library 24.10.00
A library focused on algorithms on linear arrangements of graphs.
|
In bipartite arrangements. More...
Functions | |
template<bool make_arrangement, class graph_t > | |
std::conditional_t< make_arrangement, std::pair< uint64_t, linear_arrangement >, uint64_t > | AEF (const graph_t &g, const properties::bipartite_graph_coloring &c) noexcept |
Maximum Bipartite Arrangement. | |
template<bool make_arrangement, class graph_t > | |
std::conditional_t< make_arrangement, std::pair< uint64_t, linear_arrangement >, uint64_t > | AEF (const graph_t &g) noexcept |
Maximum Bipartite Arrangement. | |
In bipartite arrangements.
|
inlinenodiscardnoexcept |
Maximum Bipartite Arrangement.
Algorithm by Alemany, Ferrer-i-Cancho and Esteban [7].
make_arrangement | Boolean value that indicates whether or not the maximal arrangement should be constructed. |
graph_t | Type of graph. Any subclass of lal::graphs::graph. |
g | Input (bipartite) graph. |
|
inlinenodiscardnoexcept |
Maximum Bipartite Arrangement.
Algorithm by Alemany, Ferrer-i-Cancho and Esteban [7].
make_arrangement | Boolean value that indicates whether or not the maximal arrangement should be constructed. |
graph_t | Type of graph. Any subclass of lal::graphs::graph. |
g | Input (bipartite) graph. |
c | Bipartite coloring of the input graph. |