blob: d6ff1f4944a9cd39c07cf6d13178acd2401d0c33 [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 ContainmentFeeder extends Feeder {
/**
* @param receiver
* @param context
* @param network
* @param boundary
*/
public ContainmentFeeder(Address<? extends Receiver> receiver,
IPatternMatcherRuntimeContext<?> context, Network network,
ReteBoundary<?> boundary) {
super(receiver, context, network, boundary);
// TODO Auto-generated constructor stub
}
@Override
public void feed() {
context.enumerateAllUnaryContainments(pairCrawler());
}
}