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

boomerang.WeightedForwardQuery Maven / Gradle / Ivy

There is a newer version: 3.2.2
Show newest version
/**
 * ***************************************************************************** Copyright (c) 2018
 * Fraunhofer IEM, Paderborn, Germany. This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * 

SPDX-License-Identifier: EPL-2.0 * *

Contributors: Johannes Spaeth - initial API and implementation * ***************************************************************************** */ package boomerang; import boomerang.scene.ControlFlowGraph.Edge; import boomerang.scene.Val; import wpds.impl.Weight; public class WeightedForwardQuery extends ForwardQuery { private final W weight; public WeightedForwardQuery(Edge stmt, Val variable, W weight) { super(stmt, variable); this.weight = weight; } public W weight() { return weight; } ; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy