Skip to content

Commit a7d447e

Browse files
committed
increase visibility to allow CPAchecker direct access to SMTInterpol.
The newer version of LassoRanker requires more methods from the the SMTInterpol API. Thus we need to have the possibility to access it from outside.
1 parent c80dbbd commit a7d447e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/org/sosy_lab/java_smt/solvers/smtinterpol/SmtInterpolEnvironment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
* set a logfile for all Smt-Queries (default "smtinterpol.smt2").
7878
*/
7979
@Options(prefix = "solver.smtinterpol")
80-
class SmtInterpolEnvironment {
80+
public class SmtInterpolEnvironment {
8181

8282
/** SMTInterpol does not allow to use key-functions as identifiers. */
8383
private static final ImmutableSet<String> UNSUPPORTED_IDENTIFIERS =

src/org/sosy_lab/java_smt/solvers/smtinterpol/SmtInterpolFormulaManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
import org.sosy_lab.java_smt.api.visitors.FormulaVisitor;
4444
import org.sosy_lab.java_smt.basicimpl.AbstractFormulaManager;
4545

46-
class SmtInterpolFormulaManager
46+
public class SmtInterpolFormulaManager
4747
extends AbstractFormulaManager<Term, Sort, SmtInterpolEnvironment, FunctionSymbol> {
4848

4949
SmtInterpolFormulaManager(

0 commit comments

Comments
 (0)