A triangle counting assignment for A.U.TH Parallel and distributed systems class.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*!
- * \file v12.h
- * \brief v1 and v2 part of the exercise header file.
- *
- * \author
- * Christos Choutouridis AEM:8997
- * <cchoutou@ece.auth.gr>
- */
- #ifndef V12_H_
- #define V12_H_
-
- #include <impl.hpp>
-
- namespace v12 {
-
- using matrix = Matrix<int, int>;
-
- int triang_count (matrix& A) ;
-
- };
- #endif /* V12_H_ */
|