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

To C++ pg data get, fetch and check #2504

Merged
merged 49 commits into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
38ebae2
[C++] template to get sql query data
cvvergara Apr 5, 2023
964674b
[C++] fetch part from the *_input files
cvvergara Apr 5, 2023
47d5640
[C++/C] get_ part from the *_input files
cvvergara Apr 5, 2023
0d78877
[lint]:broom: removing previousely splitted files (into getters & fet…
cvvergara Apr 5, 2023
423e0f7
[C->C++] get_check_data is used & compiled by c++
cvvergara Apr 5, 2023
beba364
[C++] Adjusted to C++ and reorganized dev-doc
cvvergara Apr 5, 2023
5413860
[C] new function to generate error on postgres
cvvergara Apr 5, 2023
aadadd9
[C++/C] postgres_connection can be included on C++ files
cvvergara Apr 5, 2023
682876a
[dev-doc] adjusted comment on how to use pgr_get_edges
cvvergara Apr 5, 2023
303261c
[build] adjusting the build to new files
cvvergara Apr 5, 2023
5f37498
[C->C++] information about columns processed on c++
cvvergara Apr 5, 2023
d773a44
[C->C++] adjusting info_t to changes
cvvergara Apr 5, 2023
a932a98
[allpairs] Adjusting code to changes
cvvergara Apr 5, 2023
a8c295d
[alpha_shape] Adjusting code to changes
cvvergara Apr 5, 2023
c3b6ec7
[astar] Adjusting code to changes
cvvergara Apr 5, 2023
dcfa7ba
[bdAstar] Adjusting code to changes
cvvergara Apr 5, 2023
cf036b8
[bdDijkstra] Adjusting code to changes
cvvergara Apr 5, 2023
3538dee
[bellman_ford] Adjusting code to changes
cvvergara Apr 5, 2023
f06b164
[breadthFirstSearch] Adjusting code to changes
cvvergara Apr 5, 2023
3cf8d81
[chinese] Adjusting code to changes
cvvergara Apr 5, 2023
3045bb5
[circuits] Adjusting code to changes
cvvergara Apr 5, 2023
951c9ae
[coloring] Adjusting code to changes
cvvergara Apr 5, 2023
7a11f30
[components] Adjusting code to changes
cvvergara Apr 5, 2023
3b5029b
[contraction] Adjusting code to changes
cvvergara Apr 5, 2023
ab76fa4
[dagShortestPath] Adjusting code to changes
cvvergara Apr 5, 2023
21221fb
[dijkstra] Adjusting code to changes
cvvergara Apr 5, 2023
d1fef00
[dominator] Adjusting code to changes
cvvergara Apr 5, 2023
5940dcb
[driving_distance] Adjusting code to changes
cvvergara Apr 5, 2023
287c234
[ksp] Adjusting code to changes
cvvergara Apr 5, 2023
d5968f6
[lineGraph] Adjusting code to changes
cvvergara Apr 5, 2023
c74fe8a
[max_flow] Adjusting code to changes
cvvergara Apr 5, 2023
26e74f6
[mincut] Adjusting code to changes
cvvergara Apr 5, 2023
00494da
[ordering] Adjusting code to changes
cvvergara Apr 5, 2023
8b76a26
[pickDeliver] Adjusting code to changes
cvvergara Apr 5, 2023
244d571
[planar] Adjusting code to changes
cvvergara Apr 5, 2023
ca4a566
[spanningTree] Adjusting code to changes
cvvergara Apr 5, 2023
3537c55
[topologicalSort] Adjusting code to changes
cvvergara Apr 5, 2023
9db409e
[transitiveClosure] Adjusting code to changes
cvvergara Apr 5, 2023
30dac58
[traversal] Adjusting code to changes
cvvergara Apr 5, 2023
72dfd1d
[trsp] Adjusting code to changes
cvvergara Apr 5, 2023
772cf5e
[tsp] Adjusting code to changes
cvvergara Apr 5, 2023
3f0e015
[withPoints] Adjusting code to changes
cvvergara Apr 5, 2023
54b0026
[lint]:broom: removing unused files
cvvergara Apr 5, 2023
2a53b2a
[info_t] refining
cvvergara Apr 10, 2023
5fc60bc
[pgdata_getters] using namespace directives
cvvergara Apr 10, 2023
1f1293b
[get_data] documenting & refining
cvvergara Apr 10, 2023
fcf63d5
[pgdata_fetchers] refining
cvvergara Apr 10, 2023
3e2ea8b
[get_check_data] using namespace directives
cvvergara Apr 10, 2023
d5b317e
[CI] removing windows CI
cvvergara May 4, 2023
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
107 changes: 0 additions & 107 deletions .github/workflows/windows.yml

This file was deleted.

19 changes: 0 additions & 19 deletions include/c_common/README.md

This file was deleted.

47 changes: 0 additions & 47 deletions include/c_common/arrays_input.h

This file was deleted.

4 changes: 4 additions & 0 deletions include/c_common/e_report.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ pgr_notice2(
void
pgr_error(char* error_msg);

/* @brief throws postgres error when first string is not null */
void throw_error(char*, char*);


/*! @brief error with hint
*
* ~~~~{.c}
Expand Down
209 changes: 0 additions & 209 deletions include/c_common/get_check_data.h

This file was deleted.

Loading