Skip to content

Commit 27f78b7

Browse files
committed
Fixed javadoc failures
1 parent 3557e89 commit 27f78b7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

util/src/main/java/net/automatalib/util/automata/minimizer/hopcroft/HopcroftMinimization.java

-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ CompactMealy<I,O> minimizeMealy(A mealy, PruningMode pruningMode) {
139139
* Pruning (see above) is performed after computing state equivalences.
140140
*
141141
* @param mealy the Mealy machine to minimize
142-
* @param pruningMode the pruning mode (see above)
143142
* @return a minimized version of the specified Mealy machine
144143
*/
145144
public static <I,O,A extends MealyMachine<?, I, ?, O> & InputAlphabetHolder<I>>

util/src/main/java/net/automatalib/util/automata/random/RandomICAutomatonGenerator.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ public final RandomICAutomatonGenerator<SP, TP> withTransitionProperties(TP ...p
195195
* parameters. Note that the automaton will <b>not</b> be minized.
196196
*
197197
* @param numStates the number of states of the resulting automaton
198-
* @param alphabet the input symbols to consider during generation
199-
* @param the result automaton (should be empty)
198+
* @param inputs the input symbols to consider during generation
199+
* @param result the result automaton (should be empty)
200200
* @param r the randomness source
201201
* @return the result automaton
202202
*/

util/src/main/java/net/automatalib/util/partitionrefinement/Block.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static Iterator<Block> blockListIterator(Block start) {
6969
* belong to a potential sub-class of this block, and those that do not or have not been checked.
7070
* <p>
7171
* This variable will be maintained such that either <code>ptr == -1</code>, or
72-
* <code>{@link #low} <= ptr <= {@link #high}</code>.
72+
* <code>{@link #low} &lt;= ptr &lt;= {@link #high}</code>.
7373
*/
7474
public int ptr = -1;
7575
/**
@@ -119,8 +119,8 @@ public boolean isEmpty() {
119119
* Splits this block, if applicable. If this block cannot be split, {@code null}
120120
* is returned.
121121
* <p>
122-
* A new block (the split result) is created if both <code>{@link #ptr} > {@link #low}</code>
123-
* and <code>{@link #ptr} < {@link #high}</code>. This new block will contain either the elements
122+
* A new block (the split result) is created if both <code>{@link #ptr} &gt; {@link #low}</code>
123+
* and <code>{@link #ptr} &lt; {@link #high}</code>. This new block will contain either the elements
124124
* between {@link #low} (inclusive) and {@link #ptr} (exclusive), or between {@link #ptr} (inclusive)
125125
* and {@link #high} (exclusive), depending on whichever range is smaller. This block will be updated
126126
* to contain the remaining elements.

util/src/main/java/net/automatalib/util/partitionrefinement/PaigeTarjan.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ public static enum WorklistPolicy {
128128
* {@code j}, where <code>0 &lt;= i &lt; {@link #numStates}</code> and
129129
* <code>0 &lt;= j &lt; {@link #numInputs}</code>, the {@code j}-predecessors of {@code i} are
130130
* the elements of {@link #predData} from index
131-
* <code>{@link #predOfsData}[{@link #predOfsDataLow + j*{@link #numStates} + i]</code>, inclusive, to index
132-
* <code>{@link #predOfsData}[{@link #predOfsDataLow + j*{@link #numStates} + i + 1]</code>, exclusive.
131+
* <code>{@link #predOfsData}[{@link #predOfsDataLow} + j*{@link #numStates} + i]</code>, inclusive, to index
132+
* <code>{@link #predOfsData}[{@link #predOfsDataLow} + j*{@link #numStates} + i + 1]</code>, exclusive.
133133
*/
134134
public int[] predData;
135135

0 commit comments

Comments
 (0)