All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.evosuite.symbolic.solver.smt.SmtCheckSatQuery 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.LinkedList;
import java.util.List;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public final class SmtCheckSatQuery {

	static Logger logger = LoggerFactory.getLogger(SmtCheckSatQuery.class);

	private final List constantDeclarations;

	private final List functionDeclarations;

	private final List functionDefinitions;

	private final List assertions;

	public SmtCheckSatQuery(List constantDeclarations,
			List functionDeclarations,
			List functionDefinitions,
			List assertions) {
		this.constantDeclarations = constantDeclarations;
		this.functionDeclarations = functionDeclarations;
		this.functionDefinitions = functionDefinitions;
		this.assertions = assertions;
	}

	public SmtCheckSatQuery(List constantDeclarations,
			List assertions) {
		this(constantDeclarations, new LinkedList(),
				new LinkedList(), assertions);
	}

	public SmtCheckSatQuery(List constantDeclarations,
			List functionDefinitions,
			List assertions) {
		this(constantDeclarations, new LinkedList(),
				functionDefinitions, assertions);
	}

	public List getAssertions() {
		return assertions;
	}

	public List getConstantDeclarations() {
		return constantDeclarations;
	}

	public List getFunctionDefinitions() {
		return this.functionDefinitions;
	}

	public List getFunctionDeclarations() {
		return this.functionDeclarations;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy