A triangle counting assignment for A.U.TH Parallel and distributed systems class.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

22 行
306 B

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