/************************************************************************* * 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 #include struct pedge { double wgt; /* weight, telling how many original edges this edge represent. If this edge consists of multiple sections of different weights then this is a lower bound. This only applied for agglomerative bundling */ int npoints;/* number of poly points */ int len;/* length of arra x. len >= npoints */ int dim;/* dim >= 2. Point i is stored from x[i*dim]*/ double edge_length; std::vector x; ///< coordinates of the npoints poly points. Dimension dim*npoints std::vector wgts;/* number of original edges each section represnet. Dimension npoint - 1. This only applied for agglomerative bundling Null for other methods */ }; std::vector edge_bundling(SparseMatrix A, int dim, const std::vector &x, int maxit_outer, double K, int method, int nneighbor, int compatibility_method, int max_recursion, double angle_param, double angle); void pedge_delete(pedge &e); void pedge_wgts_realloc(pedge &e, int n); void pedge_export_gv(FILE *fp, int ne, const std::vector &edges); enum {METHOD_NONE = -1, METHOD_FD, METHOD_INK_AGGLOMERATE, METHOD_INK}; enum {COMPATIBILITY_DIST = 0, COMPATIBILITY_FULL}; pedge pedge_wgt_new(int np, int dim, double *x, double wgt); void pedge_double(pedge &e);