pub fn map_weighted_with_method(
num_vertices: usize,
edges: &[(usize, usize)],
method: PathDecompositionMethod,
) -> MappingResultExpand description
Map a graph to weighted triangular lattice using a specific path decomposition method.
§Arguments
num_vertices- Number of vertices in the original graphedges- Edge list as (u, v) pairsmethod- Path decomposition method to use
§Returns
A MappingResult containing the grid graph and mapping metadata.