Skip to content

Commit

Permalink
javadoc error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joris Kinable committed Jun 3, 2020
1 parent 6ab9724 commit bafb5a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Algorithms related to graph cycles.
*
* <h3>Algorithms for enumeration of simple cycles in graphs</h3>
* <h2>Algorithms for enumeration of simple cycles in graphs</h2>
*
* Contains four different algorithms for the enumeration of simple cycles in directed graphs. The
* worst case time complexity of the algorithms is:
Expand Down Expand Up @@ -39,7 +39,7 @@
* University of Utrecht, The Netherlands, 1987.</li>
* </ol>
*
* <h3>Algorithms for the computation of undirected cycle basis</h3>
* <h2>Algorithms for the computation of undirected cycle basis</h2>
*
* <ol>
* <li>A variant of Paton's algorithm {@link org.jgrapht.alg.cycle.PatonCycleBase}, performing a BFS
Expand All @@ -65,7 +65,7 @@
* Cycles in a Graph. ACM Trans. Math. Softw. 8, 1, 26-42, 1982.</li>
* </ol>
*
* <h3>Algorithms for the computation of Eulerian cycles</h3>
* <h2>Algorithms for the computation of Eulerian cycles</h2>
*
* <ol>
* <li>An implementation of {@link org.jgrapht.alg.cycle.HierholzerEulerianCycle Hierholzer}'s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* <p>
* This is an implementation of the 2-opt improvement heuristic algorithm. The algorithm generates
* <em>passes<em> initial tours and then iteratively improves the tours until a local minimum is
* <em>passes</em> initial tours and then iteratively improves the tours until a local minimum is
* reached. In each iteration it applies the best possible 2-opt move which means to find the best
* pair of edges $(i,i+1)$ and $(j,j+1)$ such that replacing them with $(i,j)$ and $(i+1,j+1)$
* minimizes the tour length. The default initial tours use RandomTour, however an alternative
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@
<doctitle>${project.name} ${project.version} API
&lt;img src="https://github.com/jgrapht/jgrapht/blob/master/etc/logo/jgrapht-logo-transparent-cropped.png?raw=true" style="height:100px;float:right" &gt;
</doctitle>
<detectJavaApiLink>false</detectJavaApiLink> <!-- Temporary fix for https://stackoverflow.com/questions/58836862/jdk-11-and-javadoc -->
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
Expand Down

0 comments on commit bafb5a1

Please sign in to comment.