Romasmi / cpp-practice

0 stars 0 forks source link

Замечания по программе MultMatrix #11

Closed alexey-malov closed 5 years ago

alexey-malov commented 5 years ago
alexey-malov commented 5 years ago
alexey-malov commented 5 years ago
bool SetMatrix(const string& filename, Matrix& matrix)
bool SetMatrix(istream& input, Matrix& matrix)
alexey-malov commented 5 years ago
bool IsEquialBoundaryRowsSize(const Matrix& matrix)
{
    return matrix.front().size() == matrix.back().size();
}