-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobalsv.h
More file actions
42 lines (32 loc) · 1.39 KB
/
Copy pathglobalsv.h
File metadata and controls
42 lines (32 loc) · 1.39 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#pragma once
#include "stdafx.h"
extern unsigned long MVS; // value that represents a Missing Value
extern unsigned short g_output; // 1 - matlab; 2 - python
// ----- Variables for the search of the biclusters -----
extern int g_rnew;
extern unsigned g_cont;
extern pair<data_t, row_t> *g_RWp;
extern ofstream g_filebics;
// -------------------------------------------------------
// ---- Variables for the clique search ----
extern bool **g_Adj;
extern queue<clique_t> g_cliques;
// -----------------------------------------
// ----- Variables for the search of CVC biclusters in OPSM -----
extern row_t *g_RW[2];
// Obs:g_RW[0] is also used RIn-Close_CVC
// --------------------------------------------------------------
// ----- Variables for the search using class labels -----
extern unsigned short *g_classes;
extern unsigned short g_maxLabel;
extern double g_minConf;
extern unsigned short g_ignoreLabel;
// --------------------------------------------------------------
// ----- Variable for the experiments about memory RAM usage -----
extern long int g_ram;
// ---------------------------------------------------------------
// ----- Variables for the function RCVC_IsCanonical2 ------------
extern row_t *g_epai;
extern bool *g_rms;
extern data_t *g_menorF, *g_maiorF, *g_menorv, *g_maiorv;
// ---------------------------------------------------------------