![JAR search and dependency download from the Maven repository](/logo.png)
org.evosuite.symbolic.solver.smt.SmtQuery Maven / Gradle / Ivy
The newest version!
/**
* Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
* contributors
*
* This file is part of EvoSuite.
*
* EvoSuite is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3.0 of the License, or
* (at your option) any later version.
*
* EvoSuite is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EvoSuite. If not, see .
*/
package org.evosuite.symbolic.solver.smt;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public final class SmtQuery {
static Logger logger = LoggerFactory.getLogger(SmtQuery.class);
private final List constantDeclarations = new ArrayList();
private final List functionDeclarations = new ArrayList();
private final List functionDefinitions = new ArrayList();
private final List assertions = new ArrayList();
private final Map options = new HashMap();
private String smtLogic;
public SmtQuery() {
}
public void addConstantDeclaration(SmtConstantDeclaration constDecl) {
this.constantDeclarations.add(constDecl);
}
public void addFunctionDefinition(SmtFunctionDefinition funcDef) {
this.functionDefinitions.add(funcDef);
}
public void addFunctionDeclaration(SmtFunctionDeclaration funcDecl) {
this.functionDeclarations.add(funcDecl);
}
public void addAssertion(SmtAssertion smtAssert) {
this.assertions.add(smtAssert);
}
public List getAssertions() {
return assertions;
}
public List getConstantDeclarations() {
return constantDeclarations;
}
public List getFunctionDefinitions() {
return this.functionDefinitions;
}
public List getFunctionDeclarations() {
return this.functionDeclarations;
}
public void setLogic(String smtLogic) {
this.smtLogic = smtLogic;
}
public void addOption(String optionName, String optionValue) {
this.options.put(optionName, optionValue);
}
public boolean hasLogic() {
return smtLogic!=null;
}
public String getLogic() {
return smtLogic;
}
public Set getOptions() {
return this.options.keySet();
}
public String getOptionValue(String optionName) {
return this.options.get(optionName);
}
public String toString() {
SmtQueryPrinter printer = new SmtQueryPrinter();
String str = printer.print(this);
return str;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy