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.
 
 
 
 
 
 

22 lines
320 B

  1. /*!
  2. * \file v12.h
  3. * \brief v1 and v2 part of the exercise header file.
  4. *
  5. * \author
  6. * Christos Choutouridis AEM:8997
  7. * <cchoutou@ece.auth.gr>
  8. */
  9. #ifndef V12_H_
  10. #define V12_H_
  11. #include <impl.hpp>
  12. namespace v12 {
  13. using matrix = Matrix<int, int>;
  14. int triang_count (matrix& A) ;
  15. };
  16. #endif /* V12_H_ */