From eefebc863fff1b9198075bc1587fc24d8a9ab167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=93=E3=81=AE=E4=B8=AD=E4=BA=8C=E7=97=85=E3=81=AB?= =?UTF-8?q?=E7=88=86=E7=84=94=E3=82=92=EF=BC=81?= Date: Fri, 24 May 2024 14:51:35 +0800 Subject: [PATCH] set default weight --- R/application/check_dependency/dependency_graph.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/application/check_dependency/dependency_graph.R b/R/application/check_dependency/dependency_graph.R index e5b459d..19f6fc8 100644 --- a/R/application/check_dependency/dependency_graph.R +++ b/R/application/check_dependency/dependency_graph.R @@ -69,7 +69,8 @@ const dependency_graph = function() { for(file in filenames) { graph |> add.edge( u = md5(`${app_name}://${file}`), - v = app_id + v = app_id, + weight = 1 ); } }