Graphviz 13.1.2~dev.20250725.0048
Loading...
Searching...
No Matches
dijkstra.h
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#pragma once
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17#include <neatogen/defs.h>
18#include <neatogen/sgd.h>
19
20#if !defined(__CYGWIN__) && defined(__GNUC__) && !defined(__MINGW32__)
21#define INTERNAL __attribute__((visibility("hidden")))
22#else
23#define INTERNAL /* nothing */
24#endif
25
26INTERNAL void ngdijkstra(int, vtx_data *, int, DistType *);
27INTERNAL void dijkstra_f(int, vtx_data *, int, float *);
29
30#undef INTERNAL
31
32#ifdef __cplusplus
33}
34#endif
#define INTERNAL
Definition dijkstra.h:23
INTERNAL int dijkstra_sgd(graph_sgd *, int, term_sgd *)
Definition dijkstra.c:292
INTERNAL void ngdijkstra(int, vtx_data *, int, DistType *)
Definition dijkstra.c:140
INTERNAL void dijkstra_f(int, vtx_data *, int, float *)
Definition dijkstra.c:258
int DistType
Definition sparsegraph.h:43
Definition sgd.h:16