Skip to content

Commit 037b01d

Browse files
author
Thomas Weise
committed
Move to Version 0.8.7 and Fixed Several JavaDoc Issues
1 parent 85c8988 commit 037b01d

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.optimizationBenchmarking</groupId>
66
<artifactId>utils-base</artifactId>
7-
<version>0.8.6</version>
7+
<version>0.8.7</version>
88
<packaging>jar</packaging>
99
<name>Base Utilities</name>
1010
<description>This project holds the basic utilities used in all other projects of the Optimization Benchmarking Tool Suite.</description>

src/main/java/org/optimizationBenchmarking/utils/io/paths/PathFinderBuilder.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,9 @@ public final PathFinderBuilder addTextProcessOutputContainsAll(
180180
* one line of output.
181181
*
182182
* @param arguments
183+
* the arguments for the process to be executed
183184
* @param contains
185+
* the strings to be found in the output of the process
184186
* @return this builder
185187
*/
186188
@SuppressWarnings({ "unchecked", "rawtypes" })

src/main/java/org/optimizationBenchmarking/utils/ml/fitting/spec/ParametricUnaryFunction.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,16 @@
1313
* <a href="https://en.wikipedia.org/wiki/Family_of_curves">family of
1414
* curves</a> over a single parameter {@code x} and a set of
1515
* {@link #getParameterCount() m} parameters.
16-
* <blockquote cite="https://en.wikipedia.org/wiki/Family_of_curves">A
17-
* family of curves is a set of curves, each of which is given by a
16+
* <p>
17+
* A family of curves is a set of curves, each of which is given by a
1818
* function or parametrization in which one or more of the parameters is
1919
* variable. In general, the parameter(s) influence the shape of the curve
2020
* in a way that is more complicated than a simple linear transformation.
2121
* Sets of curves given by an implicit relation may also represent families
22-
* of curves.</blockquote>
22+
* of curves.
23+
* <sup><a href="https://en.wikipedia.org/wiki/Family_of_curves">citation
24+
* </a></sup>
25+
* </p>
2326
*/
2427
public abstract class ParametricUnaryFunction implements IMathRenderable {
2528

src/main/java/org/optimizationBenchmarking/utils/predicates/AndPredicate.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ public final boolean equals(final Object o) {
8888
* the list of predicates
8989
* @return the predicate representing the list, or {@code null} if no
9090
* predicate is contained or {@code list==null}.
91+
* @param <T>
92+
* the predicate input element type
9193
*/
9294
@SuppressWarnings({ "unchecked", "rawtypes" })
9395
public static final <T> IPredicate<T> and(
@@ -109,6 +111,8 @@ public static final <T> IPredicate<T> and(
109111
* the inclusive end index
110112
* @return the predicate representing the list, or {@code null} if no
111113
* predicate is contained or {@code list==null}.
114+
* @param <T>
115+
* the predicate input element type
112116
*/
113117
private static final <T> IPredicate<T> __and(
114118
final List<IPredicate<T>> list, final int startInclusive,

0 commit comments

Comments
 (0)