Sha256: 42184db08a3e7501a03c81eb431639224ccb3a9c95dffd9b30e8e9779752971b

Contents?: true

Size: 1.93 KB

Versions: 5

Compression:

Stored size: 1.93 KB

Contents

module YPetri
  # YPetri DSL.
  # 
  module DSL
    def y_petri_agent
      @y_petri_agent ||= Agent.new
        .tap { puts "Defining agent for #{self}" if YPetri::DEBUG }
    end
  end

  delegate :world, to: :y_petri_agent

  # Petri net aspect.
  delegate :Place,
           :Transition, :T, :A,
           :Net,
           :place, :transition, :pl, :tr,
           :places, :transitions, :nets,
           :pn, :tn, :nn,
           :net_point,
           :net_selection,
           :net, :nnet,
           :net_point_reset,
           :net_point=,
           to: :y_petri_agent

  # Simulation aspect.
  delegate :simulation_point, :ssc_point, :cc_point, :imc_point,
           :simulation_selection, :ssc_selection,
           :cc_selection, :imc_selection,
           :simulations,
           :clamp_collections,
           :initial_marking_collections,
           :simulation_settings_collections,
           :clamp_collection_names, :ncc,
           :initial_marking_collection_names, :nimc,
           :simulation_settings_collection_names, :nssc,
           :set_clamp_collection, :set_cc,
           :set_initial_marking_collection, :set_imc,
           :set_simulation_settings_collection, :set_ssc,
           :new_simulation,
           :clamp_cc, :initial_marking_cc, :simulation_settings_cc,
           :simulation_point_position,
           :simulation,
           :clamp_collection, :cc,
           :initial_marking_collection, :imc,
           :simulation_settings_collection, :ssc,
           :clamp,
           :initial_marking,
           :set_step, :set_step_size,
           :set_time, :set_target_time,
           :set_sampling,
           :set_simulation_method,
           :new_timed_simulation,
           :run!,
           :print_recording,
           :plot,
           :plot_selected,
           :plot_state,
           :plot_flux,
           :plot_firing,
           :plot_gradient,
           :plot_delta,
           to: :y_petri_agent
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
y_petri-2.1.31 lib/y_petri/dsl.rb
y_petri-2.1.30 lib/y_petri/dsl.rb
y_petri-2.1.26 lib/y_petri/dsl.rb
y_petri-2.1.25 lib/y_petri/dsl.rb
y_petri-2.1.24 lib/y_petri/dsl.rb