From 8ba51e146ad9805f3e2c7e1698a9e604f1dd2379 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 29 Aug 2024 17:39:06 +0200 Subject: todos --- content/graph/reroot.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'content') diff --git a/content/graph/reroot.cpp b/content/graph/reroot.cpp index f908d52..b3571f1 100644 --- a/content/graph/reroot.cpp +++ b/content/graph/reroot.cpp @@ -3,14 +3,14 @@ // To remove weights, remove every "w" and "W" and fix errors struct Reroot { - using D = /todo/; // dp value - using A = /todo/ (often D); // value from a vertex's child(ren) - // (A,agg,e) commutative monoid + using D = /*todo*/; // dp value + using A = /*todo(often D)*/; //value from a vertex's child(ren) + //(A,agg,e) commutative monoid - A e = /todo/; - A fromChild(int v, int c, auto w, D dp_c) { /todo/ } - static A agg(A a, A b) { /todo/ } - D fin(int v, A chilsAgg) { /todo/ } + A e = /*todo*/; + A fromChild(int v, int c, auto w, D dp_c) { /*todo*/ } + static A agg(A a, A b) { /*todo*/ } + D fin(int v, A chilsAgg) { /*todo*/ } vector dp; -- cgit v1.2.3