Skip to content

Commit

Permalink
Fix javadoc warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Oct 13, 2024
1 parent ad5bf67 commit bd49455
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public interface MarkerStrokableFigure extends Figure {
* value: {@code 0}.
* <p>
* References:
* <p>
* <dl>
* <dt>SVG Stroke Properties</dt>
* <dd><a href="http://www.w3.org/TR/SVG/painting.html#StrokeProperties">w3.org</a></dd>
Expand All @@ -47,7 +46,6 @@ public interface MarkerStrokableFigure extends Figure {
* Defines the end cap style. Default value: {@code SQUARE}.
* <p>
* References:
* <p>
* <dl>
* <dt>SVG Stroke Properties</dt>
* <dd><a href="http://www.w3.org/TR/SVG/painting.html#StrokeProperties">w3.org</a></dd>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ private IntersectLinePoint() {
* <li>{@literal 2·a·t1 + b = 0, 0 ≤ t1 ≤ 1 }<br>
* : derivative</li>
* </ol>
* <p>
*
* @param x0 point 0 of the line
* @param y0 point 0 of the line
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ public <V, A, C extends Number & Comparable<C>, P extends OrderedPair<V, V>> Lis
/**
* Given an undirected graph and a cost function, returns a builder
* with the minimum spanning tree.
* <p>
*
* @param graph the graph. This must be an undirected graph
* represented as a directed graph with two identical arrows for each edge.
Expand All @@ -112,7 +111,6 @@ public <V, A, C extends Number & Comparable<C>> SimpleMutableDirectedGraph<V, A>
/**
* Given an undirected graph and a cost function, returns a builder
* with the minimum spanning tree.
* <p>
*
* @param graph the graph. This must be an undirected graph
* represented as a directed graph with two identical arrows for each edge.
Expand Down Expand Up @@ -150,7 +148,6 @@ public <V, A, C extends Number & Comparable<C>> SimpleMutableDirectedGraph<V, A>
* Given a set of vertices and a list of arrows ordered by cost, returns a
* builder with the minimum spanning tree. This is an undirected graph with
* an arrow in each direction.
* <p>
*
* @param <P> the pair data type
* @param vertices the list of vertices
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,6 @@ public void accept(int value) {
}
}

/**
* {@inheritDoc}
*
* @param startVertices the set of start vertices
* @param goalPredicate the goal predicate
* @param nextVerticesFunction the next vertices function
* @param maxDepth the maximal depth (inclusive) of the search
* Must be {@literal >= 0}.
* @param zero the zero cost value
* @param costLimit the cost limit is <b>ignored</b>
* @param costFunction the cost function
* @param sumFunction the sum function for adding two cost values
* @param visited
* @return
*/
@Override
public @Nullable IndexedVertexBackLinkWithCost<C> search(
Iterable<Integer> startVertices,
Expand All @@ -80,7 +65,6 @@ public void accept(int value) {
* @param nextVerticesFunction the next vertices function
* @param visited the set of visited vertices (see {@link AddToIntSet})
* @param maxDepth the maximal depth (inclusive) of the search.
* @return
* @return on success: a back link, otherwise: null
*/
public @Nullable IndexedVertexBackLink search(Iterable<Integer> startVertices,
Expand Down

0 comments on commit bd49455

Please sign in to comment.