File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/org/sosy_lab/java_smt/solvers/princess Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 3737import com .google .common .collect .ArrayListMultimap ;
3838import com .google .common .collect .ImmutableList ;
3939import com .google .common .collect .ImmutableSet ;
40- import com .google .common .collect .ImmutableSet .Builder ;
4140import com .google .common .collect .Iterables ;
4241import com .google .common .collect .Multimap ;
4342import java .util .ArrayList ;
@@ -84,7 +83,7 @@ public ImmutableList<ValueAssignment> asList() {
8483 Multimap <IFunApp , ITerm > arrays = getArrays (interpretation );
8584
8685 // then iterate over the model and generate the assignments
87- Builder <ValueAssignment > assignments = ImmutableSet .builder ();
86+ ImmutableSet . Builder <ValueAssignment > assignments = ImmutableSet .builder ();
8887 for (Entry <IExpression , IExpression > entry : asJava (interpretation ).entrySet ()) {
8988 if (!entry .getKey ().toString ().equals ("Rat_denom" ) && !isAbbrev (abbrevs , entry .getKey ())) {
9089 assignments .addAll (getAssignments (entry .getKey (), entry .getValue (), arrays ));
You can’t perform that action at this time.
0 commit comments