Skip to content

Commit

Permalink
Fix Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
TiloW committed Apr 22, 2015
1 parent ab13953 commit d34cd63
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/main/java/proof/exception/InvalidCoverageException.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package proof.exception;

import proof.validator.BranchCoverageValidator;

/**
* Should only be thrown by {@link BranchConverageValidator}.
* Should only be thrown by {@link BranchCoverageValidator}.
*
* Represents an error in the variable configuration of the branching tree.
*
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/proof/exception/InvalidGraphException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package proof.exception;

import proof.data.Graph;

/**
* Thrown when a constructed {@link Graph} turns out to be invalid. This might be due to ambiguous
* edges or missing edges.
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/proof/exception/InvalidPathException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package proof.exception;

import proof.data.Path;

/**
* Thrown whenever a parsed Kuratowski {@link Path} turns out to be invalid.
*/
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/proof/validator/ConstraintValidator.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ public class ConstraintValidator implements ObjectValidator {
/**
* Creates a new constraint validator.
*
* @param fixedVariables The branching variables
* @param numberOfSegments The maximum number of segments per edge (i.e. the optimal solution)
* @param graph The original graph we are working on (without any crossings)
* @param fixedVariables The branching variables
*/
public ConstraintValidator(Graph graph, Map<CrossingIndex, Boolean> fixedVariables) {
this.fixedVariables = fixedVariables;
Expand Down

0 comments on commit d34cd63

Please sign in to comment.