Skip to content

Commit 01b776b

Browse files
committed
return regular modint matrix product test
1 parent c0075cf commit 01b776b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

verify/linalg/prod.test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@
88
using namespace std;
99
using namespace cp_algo::linalg;
1010
using namespace cp_algo::algebra;
11-
using base = dynamic_modint;
1211

1312
const int mod = 998244353;
13+
using base = modint<mod>;
1414

1515
void solve() {
16-
base::switch_mod(mod);
1716
int n, m, k;
1817
cin >> n >> m >> k;
1918
matrix<base> a(n, m), b(m, k);

0 commit comments

Comments
 (0)