Package | Description |
---|---|
org.processmining.plugins.plg.logic.models | |
org.processmining.plugins.plg.logic.models.distributions |
Modifier and Type | Field and Description |
---|---|
PlgActivity |
PlgActivity.loopOpposite |
Modifier and Type | Method and Description |
---|---|
PlgActivity |
PlgActivity.addNext(PlgActivity destination)
This method adds the correct successor activity.
|
PlgActivity |
Process.askNewActivity()
Asks the process for a new random activity.
|
PlgActivity |
PlgObservation.getActivity()
Get the activity observed
|
PlgActivity |
Process.getFirstActivity()
Gets the first process activity
|
PlgActivity |
PlgPatternFrame.getHead()
Get the head of the pattern
|
PlgActivity |
Process.getLastActivity()
Gets the last process activity
|
PlgActivity |
PlgPatternFrame.getTail()
Get the tail of the pattern
|
PlgActivity |
PlgActivity.inAndUntil(PlgActivity destination)
Inserts in the process a new AND split-join, between the current activity
and the destination activity.
|
PlgActivity |
PlgActivity.inLoopUntil(PlgActivity destination)
Inserts in the process a new loop between the current activity and the
destination activity.
|
PlgActivity |
PlgActivity.inXorUntil(PlgActivity destination)
Inserts in the process a new XOR split-join, between the current activity
and the destination activity.
|
PlgActivity |
Process.searchActivityFromId(java.lang.String activityId)
This method is used to scan the whole set of activities in order to find
the required one.
|
PlgActivity |
Process.searchActivityFromName(java.lang.String activityName)
This method is used to scan the whole set of activities in order to find
the required one.
|
Modifier and Type | Method and Description |
---|---|
java.util.Vector<PlgActivity> |
Process.getActivityList()
Gets the activity list
|
java.util.Map<PlgActivity,java.lang.Double> |
PlgActivity.getProbabilityOfEdges()
This method gets the probability of going to each exiting activity
|
java.util.Set<PlgActivity> |
PlgActivity.getRelationsFrom()
This method returns the set of all incoming activities to the current one
|
java.util.Set<PlgActivity> |
PlgActivity.getRelationsTo()
This method returns the set of all outgoing activities from the current
one
|
Modifier and Type | Method and Description |
---|---|
PlgActivity |
PlgActivity.addNext(PlgActivity destination)
This method adds the correct successor activity.
|
PlgActivity |
PlgActivity.inAndUntil(PlgActivity destination)
Inserts in the process a new AND split-join, between the current activity
and the destination activity.
|
PlgActivity |
PlgActivity.inLoopUntil(PlgActivity destination)
Inserts in the process a new loop between the current activity and the
destination activity.
|
PlgActivity |
PlgActivity.inXorUntil(PlgActivity destination)
Inserts in the process a new XOR split-join, between the current activity
and the destination activity.
|
void |
PlgActivity.removeConnection(PlgActivity destination)
This method removes a connection going from the `this' activity to the
destination one
|
void |
PlgObservation.setActivity(PlgActivity activity)
Set the activity observed
|
void |
Process.setFirstActivity(PlgActivity firstActivity)
Sets the first process activity
|
void |
PlgPatternFrame.setHead(PlgActivity head)
Set the head of the pattern
|
void |
Process.setLastActivity(PlgActivity lastActivity)
Sets the last process activity
|
void |
PlgPatternFrame.setTail(PlgActivity tail)
Set the tail of the pattern
|
Constructor and Description |
---|
PlgObservation(PlgActivity activity,
int startingTime)
Default class constructor
|
PlgPatternFrame(PlgActivity head,
PlgActivity tail)
The default constructor of the pattern frame
|
PlgPatternFrame(PlgActivity head,
PlgActivity tail,
java.lang.Boolean isLoop)
Constructor of the pattern frame
|
Process(java.lang.String name,
PlgActivity starting)
Default class constructor
|
Modifier and Type | Method and Description |
---|---|
static java.util.ArrayList<PlgActivity> |
ProbabilityDistribution.getSortedActivities(java.util.concurrent.ConcurrentHashMap<PlgActivity,java.lang.Double> probabilityOfChoosing)
This method is required to sort the activities according to their
probability
|
Modifier and Type | Method and Description |
---|---|
static java.util.ArrayList<PlgActivity> |
ProbabilityDistribution.getSortedActivities(java.util.concurrent.ConcurrentHashMap<PlgActivity,java.lang.Double> probabilityOfChoosing)
This method is required to sort the activities according to their
probability
|