Skip to content

Commit e0cce59

Browse files
committed
Correction to the code.
1 parent 0d21951 commit e0cce59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src_matrix/Test_NullspaceComputation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ std::string process(std::string const &arith, MyMatrix<int> const &M) {
7171
using T = RealField<idx_real_algebraic_field>;
7272
return full_process_type<T>(M);
7373
}
74-
std::cerr << "Failed to find a matching entry for arith\n";
74+
std::cerr << "Failed to find a matching entry for arith=" << arith << "\n";
7575
throw TerminalException{1};
7676
}
7777

@@ -121,7 +121,7 @@ int main() {
121121
// std::vector<std::string> ListArith = {"Fp", "rational<SafeInt64>",
122122
// "rational<long>", "rational", "Qsqrt5", "Qsqrt2"};
123123
std::vector<std::string> ListArith = {"rational<SafeInt64>",
124-
"rational<long>", "rational",
124+
"rational<int64_t>", "rational",
125125
"Qsqrt5", "Qsqrt2"};
126126

127127
std::vector<MyMatrix<int>> ListM;

0 commit comments

Comments
 (0)