From 88ef130e8094364df598faedd898fd07f705726c Mon Sep 17 00:00:00 2001 From: ArrogantGao Date: Fri, 16 Aug 2024 10:32:08 +0800 Subject: [PATCH] update docs --- src/treewidth.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/treewidth.jl b/src/treewidth.jl index 39e1f4d..389d592 100644 --- a/src/treewidth.jl +++ b/src/treewidth.jl @@ -15,7 +15,7 @@ end """ exact_treewidth_method(incidence_list::IncidenceList{VT,ET}, log2_edge_sizes; α::TA = 0.0, temperature::TT = 0.0, nrepeat=1) where {VT,ET,TA,TT} -This function calculates the exact treewidth of a graph using TreeWidthSolver.jl. It takes an incidence list representation of the graph (`incidence_list`) and a dictionary of logarithm base 2 edge sizes (`log2_edge_sizes`) as input. The function also accepts optional parameters `α`, `temperature`, and `nrepeat` with default values of 0.0, 0.0, and 1 respectively, which are parameter of the GreedyMethod used in the contraction process. +This function calculates the exact treewidth of a graph using TreeWidthSolver.jl. It takes an incidence list representation of the graph (`incidence_list`) and a dictionary of logarithm base 2 edge sizes (`log2_edge_sizes`) as input. The function also accepts optional parameters `α`, `temperature`, and `nrepeat` with default values of 0.0, 0.0, and 1 respectively, which are parameter of the GreedyMethod used in the contraction process as a sub optimizer. ## Arguments - `incidence_list`: An incidence list representation of the graph.