Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
general.c
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#include <math.h>
12#include <stdbool.h>
13#include <stddef.h>
14#include <sparse/general.h>
15#include <errno.h>
16#include <util/alloc.h>
17
18#ifdef DEBUG
19double _statistics[10];
20#endif
21
22double drand(void){
23 return rand()/(double) RAND_MAX;
24}
25
26double* vector_subtract_to(int n, double *x, double *y){
27 /* y = x-y */
28 int i;
29 for (i = 0; i < n; i++) y[i] = x[i] - y[i];
30 return y;
31}
32double vector_product(int n, double *x, double *y){
33 double res = 0;
34 int i;
35 for (i = 0; i < n; i++) res += x[i]*y[i];
36 return res;
37}
38
39double* vector_saxpy(int n, double *x, double *y, double beta){
40 /* y = x+beta*y */
41 int i;
42 for (i = 0; i < n; i++) y[i] = x[i] + beta*y[i];
43 return y;
44}
45
46double* vector_saxpy2(int n, double *x, double *y, double beta){
47 /* x = x+beta*y */
48 int i;
49 for (i = 0; i < n; i++) x[i] = x[i] + beta*y[i];
50 return x;
51}
52
53void vector_float_take(int n, float *v, int m, int *p, float **u){
54 /* take m elements v[p[i]]],i=1,...,m and oput in u */
55 int i;
56
57 if (!*u) *u = gv_calloc(m, sizeof(float));
58
59 for (i = 0; i < m; i++) {
60 assert(p[i] < n && p[i] >= 0);
61 (void)n;
62 (*u)[i] = v[p[i]];
63 }
64
65}
66
67static int comp_ascend(const void *s1, const void *s2){
68 const double *ss1 = s1;
69 const double *ss2 = s2;
70
71 if (ss1[0] > ss2[0]){
72 return 1;
73 } else if (ss1[0] < ss2[0]){
74 return -1;
75 }
76 return 0;
77}
78
79static int comp_ascend_int(const void *s1, const void *s2){
80 const int *ss1 = s1;
81 const int *ss2 = s2;
82
83 if (ss1[0] > ss2[0]){
84 return 1;
85 } else if (ss1[0] < ss2[0]){
86 return -1;
87 }
88 return 0;
89}
90
91void vector_ordering(int n, double *v, int **p){
92 /* give the position of the smallest, second smallest etc in vector v.
93 results in p. If *p == NULL, p is assigned.
94 */
95
96 int i;
97
98 if (!*p) *p = gv_calloc(n, sizeof(int));
99 double *u = gv_calloc(2 * n, sizeof(double));
100
101 for (i = 0; i < n; i++) {
102 u[2*i+1] = i;
103 u[2*i] = v[i];
104 }
105
106 qsort(u, n, sizeof(double)*2, comp_ascend);
107
108 for (i = 0; i < n; i++) (*p)[i] = (int) u[2*i+1];
109 free(u);
110}
111
112void vector_sort_int(int n, int *v){
113 qsort(v, n, sizeof(int), comp_ascend_int);
114}
115
116double distance_cropped(double *x, int dim, int i, int j){
117 double dist = distance(x, dim, i, j);
118 return fmax(dist, MINDIST);
119}
120
121double distance(double *x, int dim, int i, int j){
122 int k;
123 double dist = 0.;
124 for (k = 0; k < dim; k++) dist += (x[i*dim+k] - x[j*dim + k])*(x[i*dim+k] - x[j*dim + k]);
125 dist = sqrt(dist);
126 return dist;
127}
128
129double point_distance(double *p1, double *p2, int dim){
130 int i;
131 double dist;
132 dist = 0;
133 for (i = 0; i < dim; i++) dist += (p1[i] - p2[i])*(p1[i] - p2[i]);
134 return sqrt(dist);
135}
136
137char *strip_dir(char *s){
138 bool first = true;
139 if (!s) return s;
140 for (size_t i = strlen(s); ; i--) {
141 if (first && s[i] == '.') {/* get rid of .mtx */
142 s[i] = '\0';
143 first = false;
144 }
145 if (s[i] == '/') return &s[i+1];
146 if (i == 0) {
147 break;
148 }
149 }
150 return s;
151}
Memory allocation wrappers that exit on failure.
static void * gv_calloc(size_t nmemb, size_t size)
Definition alloc.h:26
#define MINDIST
Definition circular.c:16
static double dist(int dim, double *x, double *y)
double * vector_saxpy(int n, double *x, double *y, double beta)
Definition general.c:39
double drand(void)
Definition general.c:22
double * vector_saxpy2(int n, double *x, double *y, double beta)
Definition general.c:46
char * strip_dir(char *s)
Definition general.c:137
void vector_ordering(int n, double *v, int **p)
Definition general.c:91
double distance(double *x, int dim, int i, int j)
Definition general.c:121
double vector_product(int n, double *x, double *y)
Definition general.c:32
static int comp_ascend_int(const void *s1, const void *s2)
Definition general.c:79
void vector_float_take(int n, float *v, int m, int *p, float **u)
Definition general.c:53
void vector_sort_int(int n, int *v)
Definition general.c:112
double * vector_subtract_to(int n, double *x, double *y)
Definition general.c:26
double distance_cropped(double *x, int dim, int i, int j)
Definition general.c:116
double point_distance(double *p1, double *p2, int dim)
Definition general.c:129
static int comp_ascend(const void *s1, const void *s2)
Definition general.c:67
void free(void *)
static const int dim
NEATOPROCS_API void s1(graph_t *, node_t *)
Definition stuff.c:671
Definition grammar.c:93