File: defines.h

package info (click to toggle)
ggobi 2.1.11-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 13,208 kB
  • ctags: 6,166
  • sloc: ansic: 53,297; xml: 28,411; sh: 11,791; makefile: 264; sed: 16
file content (25 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef GGV_DEFINES_H

#define METRIC    0
#define NONMETRIC 1

#define KRUSKALSHEPARD 0
#define CLASSIC        1

#define USER_SUPPLIED 0
#define LINK 1
#define ADJACENCY 2
#define EUCLIDIAN 3
#define MANHATTAN 4
#define MAHALANOBIS 5
#define DOTPROD 6
#define COSDIST 7
#define CLOSE 8
#define NDISTTYPES (CLOSE+1)

#define MAXDIMS 13
#define EPSILON .00001

#define GGV_DEFINES_H
#endif