Use clang-format

This commit is contained in:
stefiosif
2024-08-03 13:14:42 +03:00
parent d216a9611f
commit 3951db7ff9
17 changed files with 262 additions and 287 deletions

View File

@@ -4,15 +4,13 @@
#include "algorithm/decremental_reachability.h"
namespace algo {
template<typename T>
template <typename T>
class DynamicReachability : public DecrementalReachability<T> {
// Insert edge e(u,v) and maintain the transitive closure matrix
virtual void insert(const T& c, const std::vector<T>& vertices) =0;
virtual void insert(const T &c, const std::vector<T> &vertices) = 0;
};
} // namespace algo
#endif