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

org.jbpt.bp.BehaviouralProfile Maven / Gradle / Ivy

package org.jbpt.bp;

import java.util.Collection;
import java.util.List;

import org.jbpt.hypergraph.abs.IEntity;



/**
 * Captures the behavioural profile of a model (e.g., a Petri net) for a given
 * set of entities (e.g. nodes of a Petri net). 
 * 
 * @author matthias.weidlich
 *
 */
public class BehaviouralProfile extends RelSet {
	
	public BehaviouralProfile(M model, List entities) {
		super(model, entities);
		super.lookAhead = RELATION_FAR_LOOKAHEAD;
	}

	public BehaviouralProfile(int size) {
		super(size);
		super.lookAhead = RELATION_FAR_LOOKAHEAD;
	}

	public BehaviouralProfile(M model, Collection entities) {
		super(model, entities);
		super.lookAhead = RELATION_FAR_LOOKAHEAD;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy