Skip to content

Commit 50f49d0

Browse files
committed
Fixing javadoc syntax errors.
1 parent 7050f21 commit 50f49d0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/main/java/com/github/javabdd/BDD.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* <p>Binary Decision Diagrams (BDDs) are used for efficient computation of many
1616
* common problems. This is done by giving a compact representation and a set of
17-
* efficient operations on boolean functions f: {0,1}^n --> {0,1}.</p>
17+
* efficient operations on boolean functions f: {0,1}^n --&gt; {0,1}.</p>
1818
*
1919
* <p>Use an implementation of BDDFactory to create BDD objects.</p>
2020
*

src/main/java/com/github/javabdd/BDDFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public BDD buildCube(int value, List/*<BDD>*/ variables) {
240240
/**
241241
* <p>Build a cube from an array of variables.</p>
242242
*
243-
* <p>Compare to bdd_ibuildcube./p>
243+
* <p>Compare to bdd_ibuildcube.</p>
244244
*/
245245
public BDD buildCube(int value, int[] variables) {
246246
BDD result = universe();
@@ -921,7 +921,7 @@ public String toString() {
921921
* of variable indices and the new variable order is exactly this sequence.
922922
* The array must contain all the variables defined so far. If, for
923923
* instance the current number of variables is 3 and neworder contains
924-
* [1; 0; 2] then the new variable order is v1<v0<v2.</p>
924+
* [1; 0; 2] then the new variable order is v1 &lt; v0 &lt; v2.</p>
925925
*
926926
* <p>Note that this operation must walk through the node table many times,
927927
* and therefore it is much more efficient to call this when the node table

src/main/java/com/github/javabdd/BDDVarSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public BDDDomain[] getDomains() {
113113
* and the given variable. This constructs a new set; the current BDDVarSet
114114
* is not modified.</p>
115115
*
116-
* @param b variable to add to set
116+
* @param var variable to add to set
117117
* @return a new BDDVarSet that includes the given variable
118118
*/
119119
public abstract BDDVarSet union(int var);
@@ -131,7 +131,7 @@ public BDDDomain[] getDomains() {
131131
* <p>Modifies this BDDVarSet to include the given variable. This modifies
132132
* the current set in place.</p>
133133
*
134-
* @param b variable to add to set
134+
* @param var variable to add to set
135135
* @return this
136136
*/
137137
public abstract BDDVarSet unionWith(int var);

0 commit comments

Comments
 (0)