
org.sosy_lab.java_smt.basicimpl.AbstractModel 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
The newest version!
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2020 Dirk Beyer
//
// SPDX-License-Identifier: Apache-2.0
package org.sosy_lab.java_smt.basicimpl;
import com.google.common.base.Joiner;
import org.sosy_lab.java_smt.api.Model;
@SuppressWarnings("ClassTypeParameterName")
public abstract class AbstractModel
extends AbstractEvaluator implements Model {
protected AbstractModel(
AbstractProver> prover, FormulaCreator creator) {
super(prover, creator);
}
@Override
public String toString() {
return Joiner.on('\n').join(iterator());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy