Skip to content

Commit 3fc5721

Browse files
committed
#50 Fix formatting issues.
1 parent 85801a1 commit 3fc5721

File tree

1 file changed

+8
-8
lines changed
  • src/main/java/com/github/javabdd

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -595,9 +595,9 @@ public BDD relprod(BDD that, BDDVarSet var) {
595595
*
596596
* @param states The BDD representing the set of states.
597597
* @param vars The BDD representing the set of variables that are relevant to consider for determining successor
598-
* states. This variable set <i>must</i> include all variables that occur in the transition relation BDD. Moreover,
599-
* for every new-state variable that is in {@code vars}, {@code relnext} considers the corresponding old-state
600-
* variable to be relevant as well, regardless of whether it's included in {@code vars} or not.
598+
* states. This variable set <i>must</i> include all variables that occur in the transition relation BDD.
599+
* Moreover, for every new-state variable that is in {@code vars}, {@code relnext} considers the corresponding
600+
* old-state variable to be relevant as well, regardless of whether it's included in {@code vars} or not.
601601
* @return The BDD representing the set of successor states from {@code states}.
602602
*/
603603
public abstract BDD relnext(BDD states, BDDVarSet vars);
@@ -608,7 +608,7 @@ public BDD relprod(BDD that, BDDVarSet var) {
608608
* @param states The BDD representing the set of states.
609609
* @param restriction The BDD representing the restriction to apply to the BDD representing the successor states.
610610
* @param vars The BDD representing the set of relevant variables to consider. See {@link #relnext(BDD, BDDVarSet)
611-
* relnext} for further details.
611+
* relnext} for further details.
612612
* @return The BDD representing the restricted set of successor states from {@code states}.
613613
*/
614614
public abstract BDD relnextIntersection(BDD states, BDD restriction, BDDVarSet vars);
@@ -622,9 +622,9 @@ public BDD relprod(BDD that, BDDVarSet var) {
622622
*
623623
* @param states The BDD representing the set of states.
624624
* @param vars The BDD representing the set of variables that are relevant to consider for determining predecessor
625-
* states. This variable set <i>must</i> include all variables that occur in the transition relation BDD. Moreover,
626-
* for every new-state variable that is in {@code vars}, {@code relprev} considers the corresponding old-state
627-
* variable to be relevant as well, regardless of whether it's included in {@code vars} or not.
625+
* states. This variable set <i>must</i> include all variables that occur in the transition relation BDD.
626+
* Moreover, for every new-state variable that is in {@code vars}, {@code relprev} considers the corresponding
627+
* old-state variable to be relevant as well, regardless of whether it's included in {@code vars} or not.
628628
* @return The BDD representing the set of predecessor states from {@code states}.
629629
*/
630630
public abstract BDD relprev(BDD states, BDDVarSet vars);
@@ -635,7 +635,7 @@ public BDD relprod(BDD that, BDDVarSet var) {
635635
* @param states The BDD representing the set of states.
636636
* @param restriction The BDD representing the restriction to apply to the BDD representing the predecessor states.
637637
* @param vars The BDD representing the set of relevant variables to consider. See {@link #relprev(BDD, BDDVarSet)
638-
* relprev} for further details.
638+
* relprev} for further details.
639639
* @return The BDD representing the restricted set of predecessor states from {@code states}.
640640
*/
641641
public abstract BDD relprevIntersection(BDD states, BDD restriction, BDDVarSet vars);

0 commit comments

Comments
 (0)