Skip to content

Commit 15ff49d

Browse files
committed
be more specific about Tuple class (was throwing errors)
1 parent e21ff60 commit 15ff49d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

impl/Model.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public abstract class Model
1919

2020
protected bool init = false;
2121

22-
Tuple<int, int>[] stack;
22+
Eppy.Tuple<int, int>[] stack;
2323
int stacksize;
2424

2525
protected System.Random random;
@@ -68,7 +68,7 @@ void Init()
6868
sumsOfWeightLogWeights = new double[FMX * FMY];
6969
entropies = new double[FMX * FMY];
7070

71-
stack = new Tuple<int, int>[wave.Length * T];
71+
stack = new Eppy.Tuple<int, int>[wave.Length * T];
7272
stacksize = 0;
7373
}
7474

@@ -184,7 +184,7 @@ protected void Ban(int i, int t)
184184

185185
int[] comp = compatible[i][t];
186186
for (int d = 0; d < 4; d++) comp[d] = 0;
187-
stack[stacksize] = new Tuple<int, int>(i, t);
187+
stack[stacksize] = new Eppy.Tuple<int, int>(i, t);
188188
stacksize++;
189189

190190
double sum = sumsOfWeights[i];

0 commit comments

Comments
 (0)