12345678910111213141516171819202122232425262728293031323334353637 |
- /*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: Details at https://graphviz.org
- *************************************************************************/
- #pragma once
- #include <stddef.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <neatogen/defs.h>
- extern void fill_neighbors_vec_unweighted(vtx_data *, int vtx,
- int *vtx_vec);
- extern size_t common_neighbors(vtx_data *, int u, int *);
- extern void empty_neighbors_vec(vtx_data * graph, int vtx,
- int *vtx_vec);
- extern DistType **compute_apsp(vtx_data *, int);
- extern DistType **compute_apsp_artificial_weights(vtx_data *, int);
- extern double distance_kD(double **, int, int, int);
- extern void quicksort_place(double *, int *, int);
- extern void quicksort_placef(float *, int *, int, int);
- extern void compute_new_weights(vtx_data * graph, int n);
- extern void restore_old_weights(vtx_data * graph, int n,
- float *old_weights);
- #ifdef __cplusplus
- }
- #endif
|