-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
GSoC-2020- writing tests and clean code [Week 9] #112
Conversation
|
What is this file for? |
|
Issues with documentation: https://github.com/pgRouting/GSoC-pgRouting/runs/912238094#step:7:224 I dont understand why functions that you didnt do mark an error |
|
What happened? why Prim & Kruskal are messed up? |
src/LTDTree/LTDTree.c
Outdated
| #include "drivers/LTDTree/LTDTree_driver.h" | ||
|
|
||
|
|
||
| PGDLLEXPORT Datum _pgr_lengauer_tarjan_dominator_tree (PG_FUNCTION_ARGS); | ||
| PG_FUNCTION_INFO_V1(_pgr_lengauer_tarjan_dominator_tree ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use camel case
So your function names should be:
_pgr_lengauertarjandominatortree in the C file
and _pgr_lengauerTarjanDominatorTree pgr_lengauerTarjanDominatorTree on the SQL files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to fix the name in all pgTap and docs where I used _pgr_lengauer_tarjan_dominator_tree.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done ma'am
@cvvergara When I was developing two graphs common spanning tree then I put it inside the |
No description provided.