Uses of Class
com.netgrif.application.engine.petrinet.domain.PetriNetObject
-
Packages that use PetriNetObject Package Description com.netgrif.application.engine.petrinet.domain com.netgrif.application.engine.petrinet.domain.arcs -
-
Uses of PetriNetObject in com.netgrif.application.engine.petrinet.domain
Subclasses of PetriNetObject in com.netgrif.application.engine.petrinet.domain Modifier and Type Class Description class
DataGroup
class
Function
class
Node
class
PetriNet
class
Place
class
Transaction
Transaction object groups multiple transitions together under one title.class
Transition
Constructor parameters in com.netgrif.application.engine.petrinet.domain with type arguments of type PetriNetObject Constructor Description QPetriNetObject(com.querydsl.core.types.Path<? extends PetriNetObject> path)
QPetriNetObject(java.lang.Class<? extends PetriNetObject> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits)
-
Uses of PetriNetObject in com.netgrif.application.engine.petrinet.domain.arcs
Subclasses of PetriNetObject in com.netgrif.application.engine.petrinet.domain.arcs Modifier and Type Class Description class
Arc
class
InhibitorArc
If there is an arc a with a weight w=W(p,t) connecting a place p with a transition t, then t can be enabled in a marking m if the following condition is satisfied:
m(p) < w
More infoclass
PTArc
Special arcs that can only lead from Place to Transition (thus PT).class
ReadArc
If there is an arc a with a weight w=W(p,t) connecting a place p with a transition t, then t can be enabled in a marking m if the following condition is satisfied:
m(p) ≥ w
More infoclass
ResetArc
Reset arc does not alter the enabling condition, but involve a change of the marking on p by firing of t: m'(p) = 0, if p is not also a postplace of t m'(p) = W(t,p), if p is also a postplace of t More info
-