*/
private void sendBackwardTokens(ArcModel arc) {
try {
PlaceModel place = (PlaceModel) getPetriNet().getElementContainer().getElementById(arc.getTargetId());
if (place != null) {
place.sendToken();
// TODO: when ARC WEIGTH implemented send tokens weigth times
}
} catch (ClassCastException cce) {
LoggerManager.warn(Constants.QUALANALYSIS_LOGGER,
"TokenGame: Cannot send token. Source is not a place. Ignore arc: " + arc.getId());