aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/generator
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-06-28 11:50:19 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-06-28 11:50:19 +0200
commit5f81f9fe0edd70a4f65a7a84646e704058355833 (patch)
tree40e1b2fb78e32029415901ead4ca377ea5954928 /subprojects/generator
parentchore(deps): bump dependencies (diff)
downloadrefinery-5f81f9fe0edd70a4f65a7a84646e704058355833.tar.gz
refinery-5f81f9fe0edd70a4f65a7a84646e704058355833.tar.zst
refinery-5f81f9fe0edd70a4f65a7a84646e704058355833.zip
refactor(generator): spelling
Diffstat (limited to 'subprojects/generator')
-rw-r--r--subprojects/generator/src/main/java/tools/refinery/generator/ModelGeneratorFactory.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/subprojects/generator/src/main/java/tools/refinery/generator/ModelGeneratorFactory.java b/subprojects/generator/src/main/java/tools/refinery/generator/ModelGeneratorFactory.java
index ca9dd728..3bdc1266 100644
--- a/subprojects/generator/src/main/java/tools/refinery/generator/ModelGeneratorFactory.java
+++ b/subprojects/generator/src/main/java/tools/refinery/generator/ModelGeneratorFactory.java
@@ -38,7 +38,7 @@ public final class ModelGeneratorFactory {
38 38
39 private boolean debugPartialInterpretations; 39 private boolean debugPartialInterpretations;
40 40
41 private boolean partialInterpretationBasedNeighbourhoods; 41 private boolean partialInterpretationBasedNeighborhoods;
42 42
43 private int stateCoderDepth = NeighborhoodCalculator.DEFAULT_DEPTH; 43 private int stateCoderDepth = NeighborhoodCalculator.DEFAULT_DEPTH;
44 44
@@ -52,9 +52,9 @@ public final class ModelGeneratorFactory {
52 return this; 52 return this;
53 } 53 }
54 54
55 public ModelGeneratorFactory partialInterpretationBasedNeighbourhoods( 55 public ModelGeneratorFactory partialInterpretationBasedNeighborhoods(
56 boolean partialInterpretationBasedNeighbourhoods) { 56 boolean partialInterpretationBasedNeighborhoods) {
57 this.partialInterpretationBasedNeighbourhoods = partialInterpretationBasedNeighbourhoods; 57 this.partialInterpretationBasedNeighborhoods = partialInterpretationBasedNeighborhoods;
58 return this; 58 return this;
59 } 59 }
60 60
@@ -83,13 +83,13 @@ public final class ModelGeneratorFactory {
83 } 83 }
84 84
85 private Collection<Concreteness> getRequiredInterpretations() { 85 private Collection<Concreteness> getRequiredInterpretations() {
86 return debugPartialInterpretations || partialInterpretationBasedNeighbourhoods ? 86 return debugPartialInterpretations || partialInterpretationBasedNeighborhoods ?
87 Set.of(Concreteness.PARTIAL, Concreteness.CANDIDATE) : 87 Set.of(Concreteness.PARTIAL, Concreteness.CANDIDATE) :
88 Set.of(Concreteness.CANDIDATE); 88 Set.of(Concreteness.CANDIDATE);
89 } 89 }
90 90
91 private StateCodeCalculatorFactory getStateCoderCalculatorFactory() { 91 private StateCodeCalculatorFactory getStateCoderCalculatorFactory() {
92 return partialInterpretationBasedNeighbourhoods ? 92 return partialInterpretationBasedNeighborhoods ?
93 PartialNeighborhoodCalculator.factory(Concreteness.PARTIAL, stateCoderDepth) : 93 PartialNeighborhoodCalculator.factory(Concreteness.PARTIAL, stateCoderDepth) :
94 NeighborhoodCalculator.factory(stateCoderDepth); 94 NeighborhoodCalculator.factory(stateCoderDepth);
95 } 95 }