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

org.jgrapht.graph.UndirectedMaskSubgraph Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
/*
 * (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.*;

/**
 * An undirected 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 UndirectedMaskSubgraph
    extends MaskSubgraph
    implements UndirectedGraph
{
    /**
     * Create a new undirected {@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 UndirectedMaskSubgraph(UndirectedGraph base, MaskFunctor mask)
    {
        super(base, mask);
    }
}

// End UndirectedMaskSubgraph.java




© 2015 - 2025 Weber Informatics LLC | Privacy Policy