Sha256: 3688fca84f0c8780de62228c38e0ab34e373be9670ed1ab96e0b080456025dfb

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

# -*- coding: utf-8 -*-

# Connectivity aspect of a transition.
#
class YPetri::Transition
  # Names of upstream places.
  # 
  def domain_pp; domain.map { |p| p.name || p.object_id } end
  alias :upstream_pp :domain_pp

  # Names of downstream places.
  # 
  def codomain_pp; codomain.map { |p| p.name || p.object_id } end
  alias :downstream_pp :codomain_pp

  # Union of action arcs and test arcs.
  # 
  def arcs; domain | codomain end

  # Returns names of the (places connected to) the transition's arcs.
  # 
  def aa; arcs.map { |p| p.name || p.object_id } end

  # Marking of the domain places.
  # 
  def domain_marking; domain.map &:marking end

  # Marking of the codomain places.
  # 
  def codomain_marking; codomain.map &:marking end

  # Recursive firing of the upstream net portion (honors #cocked?).
  # 
  def fire_upstream_recursively
    return false unless cocked?
    uncock
    upstream_places.each &:fire_upstream_recursively
    fire!
    return true
  end

  # Recursive firing of the downstream net portion (honors #cocked?).
  # 
  def fire_downstream_recursively
    return false unless cocked?
    uncock
    fire!
    downstream_places.each &:fire_downstream_recursively
    return true
  end
end # class YPetri::Transition

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
y_petri-2.1.3 lib/y_petri/transition/arcs.rb
y_petri-2.0.15 lib/y_petri/transition/arcs.rb
y_petri-2.0.14.p1 lib/y_petri/transition/arcs.rb
y_petri-2.0.14 lib/y_petri/transition/arcs.rb
y_petri-2.0.7 lib/y_petri/transition/arcs.rb