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

fix for Issue1901 Line_graph_full_rt #2012

Merged
merged 2 commits into from
Jul 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions include/c_types/line_graph_full_rt.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# include <stdint.h>
#endif

typedef struct {
struct Line_graph_full_rt {
int64_t id;
int64_t source;
int64_t target;
double cost;
int64_t edge;
} Line_graph_full_rt;
};

#endif // INCLUDE_C_TYPES_LINE_GRAPH_FULL_RT_H_
2 changes: 1 addition & 1 deletion include/drivers/lineGraph/lineGraphFull_driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#endif

#include "c_types/pgr_edge_t.h"
#include "c_types/line_graph_full_rt.h"
typedef struct Line_graph_full_rt Line_graph_full_rt;

#ifdef __cplusplus
extern "C" {
Expand Down
1 change: 1 addition & 0 deletions src/lineGraph/lineGraphFull.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

#include <stdbool.h>
#include "c_common/postgres_connection.h"
#include "c_types/line_graph_full_rt.h"
#include "c_common/debug_macro.h"
#include "c_common/e_report.h"
#include "c_common/time_msg.h"
Expand Down
1 change: 1 addition & 0 deletions src/lineGraph/lineGraphFull_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

#include "dijkstra/pgr_dijkstra.hpp"

#include "c_types/line_graph_full_rt.h"
#include "cpp_common/pgr_alloc.hpp"
#include "cpp_common/pgr_assert.h"

Expand Down