org.jgrapht.graph.DirectedMaskSubgraph Maven / Gradle / Ivy
/*
* (C) Copyright 2007-2016, by France Telecom and Contributors.
*
* JGraphT : a free Java graph-theory library
*
* This program and the accompanying materials are dual-licensed under
* either
*
* (a) the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation, or (at your option) any
* later version.
*
* or (per the licensee's choosing)
*
* (b) the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation.
*/
package org.jgrapht.graph;
import org.jgrapht.*;
/**
* A directed graph that is a {@link MaskSubgraph} on another graph.
*
* @param the graph vertex type
* @param the graph edge type
*
* @author Guillaume Boulmier
* @since July 5, 2007
*/
public class DirectedMaskSubgraph
extends MaskSubgraph
implements DirectedGraph
{
/**
* Create a new directed {@link MaskSubgraph} of another graph.
*
* @param base the base graph
* @param mask vertices and edges to exclude in the subgraph. If a vertex/edge is masked, it is
* as if it is not in the subgraph.
*/
public DirectedMaskSubgraph(DirectedGraph base, MaskFunctor mask)
{
super(base, mask);
}
}
// End DirectedMaskSubgraph.java
© 2015 - 2025 Weber Informatics LLC | Privacy Policy