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

soot.jimple.infoflow.memory.reasons.AbortRequestedReason Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package soot.jimple.infoflow.memory.reasons;

import soot.jimple.infoflow.memory.ISolverTerminationReason;

/**
 * Reason for terminating a data flow solver after an external request
 * 
 * @author Steven Arzt
 *
 */
public class AbortRequestedReason implements ISolverTerminationReason {

	@Override
	public ISolverTerminationReason combine(ISolverTerminationReason terminationReason) {
		return new MultiReason(this, terminationReason);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy