Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pgr_topologicalSort GSOC-2019 week 1 #7

Merged
merged 33 commits into from
Jun 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a5a69fc
[components] removing unnecesary comments
cvvergara May 20, 2019
6e0d96f
[components] using basegraph graphs
cvvergara May 20, 2019
5b08d2d
[lint] removing a non needed include statement
cvvergara May 21, 2019
b1f1e52
[connectedConponents] is now a function
cvvergara May 21, 2019
660019e
[strongConponents] is now a function
cvvergara May 21, 2019
1487a29
[biconnectedConponents] is now a function
cvvergara May 21, 2019
6568c58
[articulationPoints] is now a function
cvvergara May 21, 2019
fb217cb
[bridges] is now a function
cvvergara May 21, 2019
4764686
[components] separating common function
cvvergara May 21, 2019
90fba2b
[components][lint] making the compilation faster on components
cvvergara May 21, 2019
a990dbf
[components] removing a redundant class
cvvergara May 21, 2019
2fb2867
[components][lint] linting some files on components
cvvergara May 21, 2019
1ee8eef
[components] using C++ goodies on componentsResult
cvvergara May 22, 2019
006d1d1
[components] simplifying code
cvvergara May 23, 2019
1d5c435
[bridges] saving memory on processing
cvvergara May 23, 2019
15b8e6e
[articulationPoints] saving memory on processing
cvvergara May 23, 2019
9327883
[articulationPoints][bridges] removing unnecessary seq colum becuase …
cvvergara May 23, 2019
ba4784d
[components][sql] separating internal functions into internal files
cvvergara May 23, 2019
b5e270f
[components] removing unnecessary debug statements
cvvergara May 23, 2019
96a5702
[components] ading try catch statements
cvvergara May 23, 2019
4dc8885
[Components] removed and unnecessary column n_seq
cvvergara May 23, 2019
661b790
[components] fixing availability
cvvergara May 23, 2019
174746b
[components] standarizing documentation
cvvergara May 23, 2019
0079cca
[documentation][components] removing complex documentation
cvvergara May 24, 2019
e0f6cf2
[documentation] removing unused images
cvvergara May 24, 2019
5e6dadb
[components] Setting components as proposed
cvvergara May 24, 2019
22ab817
[build* fixing buid error on the documentation
cvvergara May 25, 2019
5c34434
[appveyor][fix] error C2899 by removing typename
cvvergara May 27, 2019
e622a2f
Merge pull request #1208 from cvvergara/components-proposed
cvvergara May 30, 2019
68c064a
[toposort] new branch
May 30, 2019
1a926f8
[toposort] add files from old branch
May 30, 2019
e1d85bc
[toposort] move files
May 30, 2019
be258d5
[toposort] forget to change licenses
May 30, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion configuration.conf
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ cpp_common | Y | N | N
dagShortestPath | Y | Y | Y
costFlow | Y | Y | Y
ChPP | Y | Y | Y
spanningTree | Y | Y | Y
spanningTree | Y | Y | Y
mincut | Y | Y | Y
topological_sort | Y | Y | N

#----------------------
# SQL only directories
#----------------------
Expand Down
Loading