blob: 135777692f2e4dba9b3c8815a8f0d7566c200bc1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Gabor Bergmann and Daniel Varro
* 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:
* Gabor Bergmann - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.boundary;
import org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.matcher.IPatternMatcherRuntimeContext;
import org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.network.Network;
import org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.network.Receiver;
import org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.remote.Address;
public class GeneralizationFeeder extends Feeder {
/**
* @param receiver
* @param context
* @param network
* @param boundary
*/
public GeneralizationFeeder(Address<? extends Receiver> receiver,
IPatternMatcherRuntimeContext<?> context, Network network,
ReteBoundary<?> boundary) {
super(receiver, context, network, boundary);
// TODO Auto-generated constructor stub
}
/* (non-Javadoc)
* @see org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.boundary.Feeder#feed()
*/
@Override
public void feed() {
context.enumerateAllGeneralizations(pairCrawler());
}
}