-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.h
22 lines (13 loc) · 827 Bytes
/
data.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>
using namespace std;
/********************************************************************/
/************************** CONSTANTS *************************/
/********************************************************************/
// number of binary (spin) variables:
const unsigned int n = 9;
// (optional) INPUT FILES:
const string datafilename = "INPUT/SCOTUS_n9_N895_Data.dat"; // "INPUT/Shapes_n9_Dataset_N1e5.dat"; // Input datafiles
const string basis_BinaryRepresentation_filename = "INPUT/SCOTUS_n9_BestBasis_Binary.dat"; //"INPUT/Shapes_n9_BestBasis_Binary.dat"; // (optional) Input basis file
const string basis_IntegerRepresentation_filename = "INPUT/Shapes_n9_BestBasis_Integer.dat"; // (optional) Input basis file
// OUTPUT FOLDER:
const string OUTPUT_directory = "OUTPUT/";