Skip to content

Commit bf5ec09

Browse files
authored
Update comments on files. (#78)
1 parent 8d8af0d commit bf5ec09

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

content/graphs/flow-matching/dinic.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
*Author:* Pablo Messina
3-
*Source:* https://github.com/PabloMessina/Competitive-Programming-Material
4-
*Description:* Flow algorithm with complexity $O (|E| dot |V|^2)$
5-
*Status:* Not tested
2+
*Author:* Pablo Messina
3+
*Source:* https://github.com/PabloMessina/Competitive-Programming-Material
4+
*Description:* Flow algorithm with complexity $O (|E| dot |V|^2)$
5+
*Status:* Not tested
66
*/
77
template<class T>
88
struct Dinic {

content/graphs/flow-matching/hlpp.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
*Author:* Abner Vidal
3-
*Description:* Flow algorithm with complexity $O (|V|^2 dot sqrt(|E|))$
4-
*Status:* Tested on CSES
2+
*Author:* Abner Vidal
3+
*Description:* Flow algorithm with complexity $O (|V|^2 dot sqrt(|E|))$
4+
*Status:* Tested on CSES
55
*/
66
template<class T>
77
struct hlpp {

content/graphs/flow-matching/min-cut.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
*Author:* Abner Vidal
3-
*Description:* Recovers the min-cut after running a max flow algorithm.
4-
*Status:* Tested on codeforces
2+
*Author:* Abner Vidal
3+
*Description:* Recovers the min-cut after running a max flow algorithm.
4+
*Status:* Tested on codeforces
55
*/
66
template<class Edge>
77
vector<array<int,2>> min_cut(int s, vector<vector<Edge>> &G){

content/graphs/flow-matching/push-relabel.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
*Author:* Abner Vidal
3-
*Description:* Flow algorithm with complexity $O (|E| dot |V|^2)$
4-
*Status:* Tested on CSES
2+
*Author:* Abner Vidal
3+
*Description:* Flow algorithm with complexity $O (|E| dot |V|^2)$
4+
*Status:* Tested on CSES
55
*/
66
template<class T>
77
struct push_relabel {

0 commit comments

Comments
 (0)