Skip to content

Commit 720ccad

Browse files
committed
more documentation.
1 parent c7a93d2 commit 720ccad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/org/sosy_lab/java_smt/api/FormulaManager.java

+4
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ <T extends Formula> T makeApplication(
161161
/**
162162
* Apply a tactic which performs formula transformation. The available tactics depend on the used
163163
* solver.
164+
*
165+
* @throws InterruptedException If the solver is interrupted.
166+
* @throws SolverException If the solver fails to apply the tactic.
164167
*/
165168
BooleanFormula applyTactic(BooleanFormula input, Tactic tactic)
166169
throws InterruptedException, SolverException;
@@ -175,6 +178,7 @@ BooleanFormula applyTactic(BooleanFormula input, Tactic tactic)
175178
*
176179
* @param input The input formula
177180
* @return Simplified version of the formula
181+
* @throws InterruptedException If the solver is interrupted.
178182
*/
179183
<T extends Formula> T simplify(T input) throws InterruptedException;
180184

0 commit comments

Comments
 (0)