Skip to content

Commit

Permalink
change test to more_functional
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo314 committed May 17, 2024
1 parent f6da364 commit a30d275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/yosupo-range-affine-range-sum.1.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int main(void) {
return {1, 0};
}
};
StaticLazySegTree<MI, std::plus<MI>, lazy_segtree::Zero<MI>, Affine, Mapping, Composition, Id> seg(a);
StaticLazySegTree<MI, std::plus<MI>, more_functional::None<MI>, Affine, Mapping, Composition, Id> seg(a);
while(q--) {
int op; std::cin >> op;
if(op == 0) {
Expand All @@ -37,4 +37,4 @@ int main(void) {
std::cout << seg.prod(l, r) << '\n';
}
}
}
}

0 comments on commit a30d275

Please sign in to comment.