Skip to content

Commit 0872289

Browse files
committed
Fix dependency_list
1 parent fcacbc1 commit 0872289

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

expand.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,13 @@
3535
'internal_bit', 'internal_math', 'internal_queue',
3636
'internal_scc', 'internal_type_traits',)
3737
dependency_list = {'convolution': ('internal_bit', 'modint',),
38-
'fenwicktree': ('internal_type_traits',),
39-
'lazysegtree': ('internal_bit',),
38+
'lazysegtree': ('internal_bit', 'segtree'),
4039
'math': ('internal_math',),
4140
'maxflow': ('internal_type_traits', 'internal_queue',),
4241
'mincostflow': ('internal_type_traits',),
43-
'modint': ('internal_math', 'internal_type_traits',),
42+
'modint': ('internal_math',),
4443
'scc': ('internal_scc',),
45-
'segtree': ('internal_bit',),
44+
'segtree': ('internal_bit', 'internal_type_traits',),
4645
'twosat': ('internal_scc',), }
4746
src_path = 'src/'
4847

0 commit comments

Comments
 (0)