
org.sosy_lab.solver.princess.PrincessInterpolatingProver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-smt Show documentation
Show all versions of java-smt Show documentation
Unified acccess layer to SMT solvers
/*
* JavaSMT is an API wrapper for a collection of SMT solvers.
* This file is part of JavaSMT.
*
* Copyright (C) 2007-2015 Dirk Beyer
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sosy_lab.solver.princess;
import static com.google.common.base.Predicates.in;
import static com.google.common.base.Predicates.not;
import static com.google.common.collect.FluentIterable.from;
import ap.parser.IExpression;
import ap.parser.IFormula;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import org.sosy_lab.common.UniqueIdGenerator;
import org.sosy_lab.solver.SolverException;
import org.sosy_lab.solver.api.BooleanFormula;
import org.sosy_lab.solver.api.InterpolatingProverEnvironment;
import org.sosy_lab.solver.api.Model;
import org.sosy_lab.solver.basicimpl.FormulaCreator;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
class PrincessInterpolatingProver extends PrincessAbstractProver
implements InterpolatingProverEnvironment {
private final List assertedFormulas = new ArrayList<>(); // Collection of termNames
private final Map annotatedTerms = new HashMap<>(); // Collection of termNames
private static final UniqueIdGenerator counter = new UniqueIdGenerator(); // for different indices
PrincessInterpolatingProver(
PrincessFormulaManager pMgr,
FormulaCreator creator) {
super(pMgr, true, creator);
}
@Override
public Integer push(BooleanFormula f) {
Preconditions.checkState(!closed);
push();
return addConstraint(f);
}
@Override
public void pop() {
Preconditions.checkState(!closed);
Integer removed = assertedFormulas.remove(assertedFormulas.size() - 1); // remove last term
annotatedTerms.remove(removed);
assert assertedFormulas.size() == annotatedTerms.size();
stack.pop(1);
}
@Override
public Integer addConstraint(BooleanFormula f) {
Preconditions.checkState(!closed);
int termIndex = counter.getFreshId();
IFormula t = (IFormula) mgr.extractInfo(f);
stack.assertTermInPartition(t, termIndex);
assertedFormulas.add(termIndex);
annotatedTerms.put(termIndex, t);
assert assertedFormulas.size() == annotatedTerms.size();
return termIndex;
}
@Override
public void push() {
Preconditions.checkState(!closed);
stack.push(1);
}
@Override
public BooleanFormula getInterpolant(List pTermNamesOfA) {
Preconditions.checkState(!closed);
Set indexesOfA = new HashSet<>(pTermNamesOfA);
// calc difference: termNamesOfB := assertedFormulas - termNamesOfA
Set indexesOfB = from(assertedFormulas).filter(not(in(indexesOfA))).toSet();
// get interpolant of groups
List itp = stack.getInterpolants(ImmutableList.of(indexesOfA, indexesOfB));
assert itp.size() == 1; // 2 groups -> 1 interpolant
return mgr.encapsulateBooleanFormula(itp.get(0));
}
@Override
public List getSeqInterpolants(final List> pTermNamesOfA) {
Preconditions.checkState(!closed);
// get interpolant of groups
final List itps = stack.getInterpolants(pTermNamesOfA);
final List result = new ArrayList<>();
for (final IFormula itp : itps) {
result.add(mgr.encapsulateBooleanFormula(itp));
}
return result;
}
@Override
public List getTreeInterpolants(
List> partitionedFormulas, int[] startOfSubTree) {
throw new UnsupportedOperationException(
"Direct generation of tree interpolants is not supported.\n"
+ "Use another solver or another strategy for interpolants.");
}
@Override
public Model getModel() throws SolverException {
Preconditions.checkState(!closed);
Preconditions.checkState(!isUnsat(), "model is only available for SAT environments");
assert assertedFormulas.size() == annotatedTerms.size();
final List values = Lists.newArrayList(annotatedTerms.values());
return new PrincessModel(stack.getPartialModel(), creator, values);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy