Graphviz 16.0.1~dev.20260815.2250
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 v2.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#pragma once
12
13#include <stddef.h>
14#include <util/api.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#include <neatogen/defs.h>
21#include <neatogen/sgd.h>
22
23PRIVATE void ngdijkstra(int, vtx_data *, int, DistType *);
24PRIVATE void dijkstra_f(int, vtx_data *, int, float *);
25PRIVATE size_t dijkstra_sgd(graph_sgd *, size_t, term_sgd *);
26
27#ifdef __cplusplus
28}
29#endif
macro for API hiding/exposing
#define PRIVATE
Definition api.h:16
PRIVATE void dijkstra_f(int, vtx_data *, int, float *)
Definition dijkstra.c:267
PRIVATE size_t dijkstra_sgd(graph_sgd *, size_t, term_sgd *)
Definition dijkstra.c:298
PRIVATE void ngdijkstra(int, vtx_data *, int, DistType *)
Definition dijkstra.c:155
int DistType
Definition sparsegraph.h:39
Definition sgd.h:11