File tree 4 files changed +13
-4
lines changed
src/main/java/org/optimizationBenchmarking/utils
4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<groupId >org.optimizationBenchmarking</groupId >
6
6
<artifactId >utils-base</artifactId >
7
- <version >0.8.6 </version >
7
+ <version >0.8.7 </version >
8
8
<packaging >jar</packaging >
9
9
<name >Base Utilities</name >
10
10
<description >This project holds the basic utilities used in all other projects of the Optimization Benchmarking Tool Suite.</description >
Original file line number Diff line number Diff line change @@ -180,7 +180,9 @@ public final PathFinderBuilder addTextProcessOutputContainsAll(
180
180
* one line of output.
181
181
*
182
182
* @param arguments
183
+ * the arguments for the process to be executed
183
184
* @param contains
185
+ * the strings to be found in the output of the process
184
186
* @return this builder
185
187
*/
186
188
@ SuppressWarnings ({ "unchecked" , "rawtypes" })
Original file line number Diff line number Diff line change 13
13
* <a href="https://en.wikipedia.org/wiki/Family_of_curves">family of
14
14
* curves</a> over a single parameter {@code x} and a set of
15
15
* {@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
18
18
* function or parametrization in which one or more of the parameters is
19
19
* variable. In general, the parameter(s) influence the shape of the curve
20
20
* in a way that is more complicated than a simple linear transformation.
21
21
* 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>
23
26
*/
24
27
public abstract class ParametricUnaryFunction implements IMathRenderable {
25
28
Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ public final boolean equals(final Object o) {
88
88
* the list of predicates
89
89
* @return the predicate representing the list, or {@code null} if no
90
90
* predicate is contained or {@code list==null}.
91
+ * @param <T>
92
+ * the predicate input element type
91
93
*/
92
94
@ SuppressWarnings ({ "unchecked" , "rawtypes" })
93
95
public static final <T > IPredicate <T > and (
@@ -109,6 +111,8 @@ public static final <T> IPredicate<T> and(
109
111
* the inclusive end index
110
112
* @return the predicate representing the list, or {@code null} if no
111
113
* predicate is contained or {@code list==null}.
114
+ * @param <T>
115
+ * the predicate input element type
112
116
*/
113
117
private static final <T > IPredicate <T > __and (
114
118
final List <IPredicate <T >> list , final int startInclusive ,
You can’t perform that action at this time.
0 commit comments