22 lines
306 B
C++
22 lines
306 B
C++
/*!
|
|
* \file v3.h
|
|
* \brief v3 part of the exercise header file.
|
|
*
|
|
* \author
|
|
* Christos Choutouridis AEM:8997
|
|
* <cchoutou@ece.auth.gr>
|
|
*/
|
|
#ifndef V3_H_
|
|
#define V3_H_
|
|
|
|
#include <impl.hpp>
|
|
|
|
namespace v3 {
|
|
|
|
using matrix = SpMat<int, int>;
|
|
|
|
int triang_count (matrix& A);
|
|
|
|
};
|
|
#endif /* V3_H_ */
|