0_0_37879307_28232.cpp: In member function 'std::tuple<int, int, MAIN::Matrix> MAIN::Matrix::gauss(int&) const':
0_0_37879307_28232.cpp:185:19: error: converting to 'std::tuple<int, int, MAIN::Matrix>' from initializer list would use explicit constructor 'constexpr std::tuple< <template-parameter-1-1> >::tuple(_UElements&& ...) [with _UElements = {int&, int&, MAIN::Matrix&}; <template-parameter-2-2> = void; _Elements = {int, int, MAIN::Matrix}]'
return {r,p,cur};
^
0_0_37879307_28232.cpp: In member function 'MAIN::Matrix MAIN::Matrix::getadj()':
0_0_37879307_28232.cpp:298:9: error: expected unqualified-id before '[' token
auto [rk,p,mat]=gauss(swap_cnt);
^
0_0_37879307_28232.cpp:299:7: error: 'rk' was not declared in this scope
if(rk<n-1)return Matrix(n,n);
^
0_0_37879307_28232.cpp:300:7: error: 'rk' was not declared in this scope
if(rk==n-1){
^
|