1c64acb979a1295b724d25cde204dca866b4c215
[IRC.git] / Robust / src / Benchmarks / SingleTM / SSCA2 / Globals.java
1 /* =============================================================================
2  *
3  * globals.java
4  *
5  * =============================================================================
6  * For the license of ssca2, please see ssca2/COPYRIGHT
7  * 
8  * ------------------------------------------------------------------------
9  * Unless otherwise noted, the following license applies to STAMP files:
10  * 
11  * Copyright (c) 2007, Stanford University
12  * All rights reserved.
13  * 
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met:
17  * 
18  *     * Redistributions of source code must retain the above copyright
19  *       notice, this list of conditions and the following disclaimer.
20  * 
21  *     * Redistributions in binary form must reproduce the above copyright
22  *       notice, this list of conditions and the following disclaimer in
23  *       the documentation and/or other materials provided with the
24  *       distribution.
25  * 
26  *     * Neither the name of Stanford University nor the names of its
27  *       contributors may be used to endorse or promote products derived
28  *       from this software without specific prior written permission.
29  * 
30  * THIS SOFTWARE IS PROVIDED BY STANFORD UNIVERSITY ``AS IS'' AND ANY
31  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
33  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL STANFORD UNIVERSITY BE LIABLE
34  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
35  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
36  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
37  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
38  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
40  * THE POSSIBILITY OF SUCH DAMAGE.
41  *
42  * =============================================================================
43  */
44
45 public class Globals {
46
47   public Globals() {
48
49   }
50
51   public int SCALE;
52   public int TOT_VERTICES;
53   public int MAX_CLIQUE_SIZE;
54   public int MAX_PARAL_EDGES;
55   public int MAX_INT_WEIGHT;
56   public char[] SOUGHT_STRING;
57   public int MAX_STRLEN;
58   public float PERC_INT_WEIGHTS;
59   public float PROB_UNIDIRECTIONAL;
60   public float PROB_INTERCL_EDGES;
61   public int SUBGR_EDGE_LENGTH;
62   public int MAX_CLUSTER_SIZE;
63   public int MAX_STRLEN;
64   public int K3_DS;
65   public int THREADS;
66 }
67
68 /* =============================================================================
69  *
70  * End of globals.java
71  *
72  * =============================================================================
73  */