Skip to content

Commit 3787f8a

Browse files
committed
fix compile error
1 parent abae9f9 commit 3787f8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/library_checker_aizu_tests/handmade_tests/fib_matrix_expo.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void check(int64_t n) {
1111
using mat_2_by_2 = Matrix<mi, 2>;
1212
mat_2_by_2 mat;
1313
mat.d = {{{{1, 1}}, {{1, 0}}}};
14-
vector<mi> vec = {1, 0};
14+
array<mi, 2> vec = {1, 0};
1515
int64_t res = fib(n)[0];
1616
assert(res == int(((mat ^ n) * vec)[1]));
1717
}

0 commit comments

Comments
 (0)