blob: 95f3be2f2645ba5e1117be6079d60303ad5700f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 University of Illinois at Urbana-Champaign and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* UIUC - Initial API and implementation
*******************************************************************************/
package org.eclipse.rephraserengine.core.preservation;
import java.util.Collection;
import org.eclipse.rephraserengine.core.vpg.IVPGNode;
import org.eclipse.rephraserengine.core.vpg.VPGEdge;
/**
*
* @author Jeff Overbey
*/
final class MergePreservationAnalyzer<A, T, R extends IVPGNode<T>> extends PreservationAnalyzer<A, T, R>
{
public MergePreservationAnalyzer(
Collection<VPGEdge<A,T,R>> initialEdges,
Collection<VPGEdge<A,T,R>> finalEdges,
PreservationRuleset ruleset)
{
super(initialEdges, finalEdges, ruleset);
}
}