thisisashukla / pgrouting

Repository contains pgRouting library. Development branch is "develop", stable branch is "master"
http://www.pgrouting.org
GNU General Public License v2.0
0 stars 0 forks source link

Meeting June 1: Implement Changes in Template Code and Standardize Array Variable Names #22

Open thisisashukla opened 7 years ago

thisisashukla commented 7 years ago

Implement Changes in Template Code

thisisashukla commented 7 years ago

Standardized Array Variable Names

thisisashukla commented 7 years ago

Pointers on Code

thisisashukla commented 7 years ago

Study the signatures of pgr_contractGraph and pgr_dijkstra_many_to_many

thisisashukla commented 7 years ago

Pointers on creating a new function

thisisashukla commented 7 years ago

Few pointers on Git: Recover Deleted Files

thisisashukla commented 7 years ago

Discussion on the standard for array size variable

A) size_t size_borderVertices = 0; B) size_t size_border_vertices = 0; C) size_t border_vertices_size = 0;

My Reason for choosing B:

Vicky Vergara's Reason for choosing C:

size_t border_vertices_size = 0; prevails as the standard for array size variables

thisisashukla commented 7 years ago

Working of C templates

References: