Skip to content

Commit f3ad0a7

Browse files
committed
tweak constants
1 parent 7a7aaa2 commit f3ad0a7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

java/src/org/antlr/codebuff/Corpus.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@
1111
public class Corpus {
1212
public static final int FEATURE_VECTOR_RANDOM_SEED = 314159; // need randomness but use same seed to get reproducibility
1313

14-
public static final int NUM_DEPENDENT_VARS = 3;
14+
public static final int NUM_DEPENDENT_VARS = 2;
1515
public static final int INDEX_FEATURE_NEWLINES = 0;
16-
public static final int INDEX_FEATURE_WS = 1;
17-
public static final int INDEX_FEATURE_ALIGN_WITH_PREVIOUS = 2;
16+
public static final int INDEX_FEATURE_ALIGN_WITH_PREVIOUS = 1;
1817

1918
List<InputDocument> documents; // an entry for each X
2019
List<int[]> X;

0 commit comments

Comments
 (0)