Skip to content

Commit c1148a6

Browse files
committed
#18 <tt>...</tt> to {@code ...}.
1 parent 472f105 commit c1148a6

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ public BDD relprod(BDD that, BDDVarSet var) {
456456
public abstract BDDVarSet support();
457457

458458
/**
459-
* Returns the result of applying the binary operator <tt>opr</tt> to the two BDDs.
459+
* Returns the result of applying the binary operator {@code opr} to the two BDDs.
460460
*
461461
* <p>
462462
* Compare to bdd_apply.
@@ -469,7 +469,7 @@ public BDD relprod(BDD that, BDDVarSet var) {
469469
public abstract BDD apply(BDD that, BDDFactory.BDDOp opr);
470470

471471
/**
472-
* Makes this BDD be the result of the binary operator <tt>opr</tt> of two BDDs. The "that" BDD is consumed, and can
472+
* Makes this BDD be the result of the binary operator {@code opr} of two BDDs. The "that" BDD is consumed, and can
473473
* no longer be used. Attempting to use the passed in BDD again will result in an exception being thrown.
474474
*
475475
* <p>
@@ -482,8 +482,8 @@ public BDD relprod(BDD that, BDDVarSet var) {
482482
public abstract BDD applyWith(BDD that, BDDFactory.BDDOp opr);
483483

484484
/**
485-
* Applies the binary operator <tt>opr</tt> to two BDDs and then performs a universal quantification of the
486-
* variables from the variable set <tt>var</tt>.
485+
* Applies the binary operator {@code opr} to two BDDs and then performs a universal quantification of the
486+
* variables from the variable set {@code var}.
487487
*
488488
* <p>
489489
* Compare to bdd_appall.
@@ -498,8 +498,8 @@ public BDD relprod(BDD that, BDDVarSet var) {
498498
public abstract BDD applyAll(BDD that, BDDFactory.BDDOp opr, BDDVarSet var);
499499

500500
/**
501-
* Applies the binary operator <tt>opr</tt> to two BDDs and then performs an existential quantification of the
502-
* variables from the variable set <tt>var</tt>.
501+
* Applies the binary operator {@code opr} to two BDDs and then performs an existential quantification of the
502+
* variables from the variable set {@code var}.
503503
*
504504
* <p>
505505
* Compare to bdd_appex.
@@ -514,8 +514,8 @@ public BDD relprod(BDD that, BDDVarSet var) {
514514
public abstract BDD applyEx(BDD that, BDDFactory.BDDOp opr, BDDVarSet var);
515515

516516
/**
517-
* Applies the binary operator <tt>opr</tt> to two BDDs and then performs a unique quantification of the variables
518-
* from the variable set <tt>var</tt>.
517+
* Applies the binary operator {@code opr} to two BDDs and then performs a unique quantification of the variables
518+
* from the variable set {@code var}.
519519
*
520520
* <p>
521521
* Compare to bdd_appuni.
@@ -554,9 +554,9 @@ public BDD relprod(BDD that, BDDVarSet var) {
554554
public abstract BDD fullSatOne();
555555

556556
/**
557-
* Finds one satisfying variable assignment. Finds a minterm in this BDD. The <tt>var</tt> argument is a set of
557+
* Finds one satisfying variable assignment. Finds a minterm in this BDD. The {@code var} argument is a set of
558558
* variables that must be mentioned in the result. The polarity of these variables in the result - in case they are
559-
* undefined in this BDD - are defined by the <tt>pol</tt> parameter. If <tt>pol</tt> is false, then all variables
559+
* undefined in this BDD - are defined by the {@code pol} parameter. If {@code pol} is false, then all variables
560560
* will be in negative form. Otherwise they will be in positive form.
561561
*
562562
* <p>
@@ -723,7 +723,7 @@ public void remove() {
723723
}
724724

725725
/**
726-
* Finds one satisfying assignment of the domain <tt>d</tt> in this BDD and returns that value.
726+
* Finds one satisfying assignment of the domain {@code d} in this BDD and returns that value.
727727
*
728728
* <p>
729729
* Compare to fdd_scanvar.
@@ -818,7 +818,7 @@ public BigInteger[] scanAllVar() {
818818

819819
/**
820820
* Returns an iteration of the satisfying assignments of this BDD. Returns an iteration of minterms. The
821-
* <tt>var</tt> argument is the set of variables that will be mentioned in the result.
821+
* {@code var} argument is the set of variables that will be mentioned in the result.
822822
*
823823
* @param var set of variables to mention in result
824824
* @return an iteration of minterms
@@ -1053,7 +1053,7 @@ public void remove() {
10531053
}
10541054

10551055
/**
1056-
* Returns true if the given BDD variable number is a dont-care. <tt>var</tt> must be a variable in the
1056+
* Returns true if the given BDD variable number is a dont-care. {@code var} must be a variable in the
10571057
* iteration set.
10581058
*
10591059
* @param var variable number to check
@@ -1116,7 +1116,7 @@ public void fastForward(int[] vars) {
11161116
}
11171117

11181118
/**
1119-
* Assuming <tt>d</tt> is a dont-care, skip to the end of the iteration for <tt>d</tt>.
1119+
* Assuming {@code d} is a dont-care, skip to the end of the iteration for {@code d}.
11201120
*
11211121
* @param d BDD domain to fast-forward past
11221122
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* </p>
1818
*
1919
* <p>
20-
* Use <tt>BDDFactory.extDomain()</tt> to create one or more domains with a specified list of sizes.
20+
* Use {@code BDDFactory.extDomain()} to create one or more domains with a specified list of sizes.
2121
* </p>
2222
*
2323
* @see com.github.javabdd.BDDFactory#extDomain(int[])

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ public BDD buildCube(int value, int[] variables) {
266266
}
267267

268268
/**
269-
* Builds a BDD variable set from an integer array. The integer array <tt>varset</tt> holds the variable numbers.
269+
* Builds a BDD variable set from an integer array. The integer array {@code varset} holds the variable numbers.
270270
* The BDD variable set is represented by a conjunction of all the variables in their positive form.
271271
*
272272
* <p>
@@ -380,7 +380,7 @@ public void reset() {
380380

381381
/**
382382
* Set factor by which to increase node table after a garbage collection. The amount of growth is still limited by
383-
* <tt>setMaxIncrease()</tt>.
383+
* {@code setMaxIncrease()}.
384384
*
385385
* @param x factor by which to increase node table after GC
386386
* @return old value
@@ -459,7 +459,7 @@ public int extVarNum(int num) {
459459

460460
/**
461461
* Returns a BDD representing the I'th variable. (One node with the children true and false.) The requested variable
462-
* must be in the (zero-indexed) range defined by <tt>setVarNum</tt>.
462+
* must be in the (zero-indexed) range defined by {@code setVarNum}.
463463
*
464464
* <p>
465465
* Compare to bdd_ithvar.
@@ -472,7 +472,7 @@ public int extVarNum(int num) {
472472

473473
/**
474474
* Returns a BDD representing the negation of the I'th variable. (One node with the children false and true.) The
475-
* requested variable must be in the (zero-indexed) range defined by <tt>setVarNum</tt>.
475+
* requested variable must be in the (zero-indexed) range defined by {@code setVarNum}.
476476
*
477477
* <p>
478478
* Compare to bdd_nithvar.
@@ -1731,7 +1731,7 @@ public BDDDomain getDomain(int i) {
17311731
// TODO: fdd_file_hook, fdd_strm_hook
17321732

17331733
/**
1734-
* Creates a variable ordering from a string. The resulting order can be passed into <tt>setVarOrder()</tt>.
1734+
* Creates a variable ordering from a string. The resulting order can be passed into {@code setVarOrder()}.
17351735
* Example: in the order "A_BxC_DxExF", the bits for A are first, followed by the bits for B and C interleaved,
17361736
* followed by the bits for D, E, and F interleaved.
17371737
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
package com.github.javabdd;
66

77
/**
8-
* Some BDD methods, namely <tt>exist()</tt>, <tt>forall()</tt>, <tt>unique()</tt>, <tt>relprod()</tt>,
9-
* <tt>applyAll()</tt>, <tt>applyEx()</tt>, <tt>applyUni()</tt>, and <tt>satCount()</tt> take a BDDVarSet argument.
8+
* Some BDD methods, namely {@code exist()}, {@code forall()}, {@code unique()}, {@code relprod()},
9+
* {@code applyAll()}, {@code applyEx()}, {@code applyUni()}, and {@code satCount()} take a BDDVarSet argument.
1010
*/
1111
public abstract class BDDVarSet {
1212
/**

0 commit comments

Comments
 (0)