y_petri 2.3.6 → 2.3.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 03a491cd0841c168ff4f4c6dd7a5913c83ffb6aa
4
- data.tar.gz: 274b1435c30f466e2419c85e30347eb8b80a43e8
3
+ metadata.gz: f7f29de0c9215e85b22d4326902e0078fb6bac51
4
+ data.tar.gz: be5051893dcf85079c56b53e855ae2958957d6de
5
5
  SHA512:
6
- metadata.gz: 9501cf9b547552d5b0438f6a1f69fe7562a8bfbedf8104b15ead6e478c5ccc31e613f8e6537582ce412faea50c3552faf7ec2cc2174e8a7162d96786e0dc8fac
7
- data.tar.gz: 34a3586dbc1e61a5811a0ef00406e19f1a4a60bb71b92314c4f765bd74fb7d68963335956e373d99a4445bcac26c43ccd8d6f3c503ecc19febfb7969668fe1ce
6
+ metadata.gz: 4a9423c84849b720a8e7e6a5a482cc9244ba100c6459c5134e8eecdd1bdf481570baba1b60b8e4ff3b8fd93b87fe2cf3802f9ffd1bf09c653be4509448c0d989
7
+ data.tar.gz: 942d1e626a3a886161a7adf1f1ef1b09680a07dc0cb852e136ab453afa43e5b65021021689f5bc6d2c7ee9b071b5d25fdfacf446479a3ba9cf5e5c725e26d18d
@@ -1,4 +1,4 @@
1
1
  module YPetri
2
- VERSION = "2.3.6"
2
+ VERSION = "2.3.8"
3
3
  DEBUG = false
4
4
  end
data/y_petri.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["boris"]
10
10
  spec.email = ["\"boris@iis.sinica.edu.tw\""]
11
11
  spec.summary = %q{Systems modelling and simulation gem. Biologically inspired, but concerns specific to biology and chemistry have been purposely separated away from it, so it is a general-purpose model specification and simulation DSL. Dynamical systems are specified by a specific universal type of a hybrid Petri net which YPetri implements and which allows description of any kind of dynamical system whatsoever.}
12
- spec.description = %q{YPetri is a gem for modelling of dynamical systems. It is biologically inspired, but concerns of biology and chemistry have been purposely separated away from it. YPetri caters solely to the two main concerns of modelling, model specification and simulation, and it excels in the first one. Dynamical systems are described under a Petri net paradigm. YPetri implements a universal Petri net abstraction that integrates discrete/continous, deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows efficient specification of any kind of dynamical system. Like Petri nets themselves, YPetri was inspired by problems from the domain of chemistry (biochemical pathway modelling), but is not specific to it. Other gems, YChem and YCell are planned to cater to the concerns specific to chemistry and cell biochemistry. These future extensions of YPetri are not developed yet. A lower-level extension of YPetri is currently under development under the name YNelson. Its usage is practically identical to YPetri, so any YPetri user can now consider using YNelson instead. YNelson covers additional concerns: it allows relations among nodes and parameters to be specified under a zz structure paradigm (developed by Ted Nelson) and it is also aimed towards providing a higher level of abstraction in Petri net specification by providing commands that create more than one Petri net node per command. YPetri documentation is avalable online, but due to formatting issues, you may prefer to generate the documentation on your own by running rdoc in the gem directory. For an example of how YPetri can be used to model complex dynamical systems, see the eukaryotic cell cycle model which I released as "cell_cycle" gem.}
12
+ spec.description = %q{YPetri is a gem for modelling of dynamical systems. It is biologically inspired, but concerns of biology and chemistry have been purposely separated away from it. YPetri caters solely to the two main concerns of modelling, model specification and simulation, and it excels in the first one. Dynamical systems are described under a Petri net paradigm. YPetri implements a universal Petri net abstraction that integrates discrete/continous, deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows efficient specification of any kind of dynamical system. Like Petri nets themselves, YPetri was inspired by problems from the domain of chemistry (biochemical pathway modelling), but is not specific to it. Other gems, YChem and YCell are planned to cater to the concerns specific to chemistry and cell biochemistry. A lower-level extension of YPetri is currently under development under the name YNelson. Its usage is practically identical to YPetri, so any YPetri user can now consider using YNelson instead. YNelson covers additional concerns: it allows relations among nodes and parameters to be specified under a zz structure paradigm (developed by Ted Nelson) and it is also aimed towards providing a higher level of abstraction in Petri net specification by providing commands that create more than one Petri net node per command. YPetri documentation is avalable online, but due to formatting issues, you may prefer to generate the documentation on your own by running rdoc in the gem directory. As for the user manuals, there are currently 3 documents applicable for both YPetri and YNelson, which are stored in the YNelson source directory: 1. Introduction to YNelson and YPetri (hands-on tutorial), 2. Object model of YNelson and YPetri, 3. Introduction to Ruby for YNelson users. These manuals will are written so that any would-be user, including those unfamiliar with Ruby, can start using YPetri and/or YNelson. For an example of how YPetri can be used to model complex dynamical systems, see the eukaryotic cell cycle model which I released as "cell_cycle" gem.}
13
13
  spec.homepage = ""
14
14
  spec.license = "GPLv3"
15
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: y_petri
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.6
4
+ version: 2.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - boris
@@ -104,18 +104,23 @@ description: 'YPetri is a gem for modelling of dynamical systems. It is biologic
104
104
  efficient specification of any kind of dynamical system. Like Petri nets themselves,
105
105
  YPetri was inspired by problems from the domain of chemistry (biochemical pathway
106
106
  modelling), but is not specific to it. Other gems, YChem and YCell are planned to
107
- cater to the concerns specific to chemistry and cell biochemistry. These future
108
- extensions of YPetri are not developed yet. A lower-level extension of YPetri is
109
- currently under development under the name YNelson. Its usage is practically identical
110
- to YPetri, so any YPetri user can now consider using YNelson instead. YNelson covers
111
- additional concerns: it allows relations among nodes and parameters to be specified
112
- under a zz structure paradigm (developed by Ted Nelson) and it is also aimed towards
113
- providing a higher level of abstraction in Petri net specification by providing
114
- commands that create more than one Petri net node per command. YPetri documentation
115
- is avalable online, but due to formatting issues, you may prefer to generate the
116
- documentation on your own by running rdoc in the gem directory. For an example of
117
- how YPetri can be used to model complex dynamical systems, see the eukaryotic cell
118
- cycle model which I released as "cell_cycle" gem.'
107
+ cater to the concerns specific to chemistry and cell biochemistry. A lower-level
108
+ extension of YPetri is currently under development under the name YNelson. Its usage
109
+ is practically identical to YPetri, so any YPetri user can now consider using YNelson
110
+ instead. YNelson covers additional concerns: it allows relations among nodes and
111
+ parameters to be specified under a zz structure paradigm (developed by Ted Nelson)
112
+ and it is also aimed towards providing a higher level of abstraction in Petri net
113
+ specification by providing commands that create more than one Petri net node per
114
+ command. YPetri documentation is avalable online, but due to formatting issues,
115
+ you may prefer to generate the documentation on your own by running rdoc in the
116
+ gem directory. As for the user manuals, there are currently 3 documents applicable
117
+ for both YPetri and YNelson, which are stored in the YNelson source directory: 1.
118
+ Introduction to YNelson and YPetri (hands-on tutorial), 2. Object model of YNelson
119
+ and YPetri, 3. Introduction to Ruby for YNelson users. These manuals will are written
120
+ so that any would-be user, including those unfamiliar with Ruby, can start using
121
+ YPetri and/or YNelson. For an example of how YPetri can be used to model complex
122
+ dynamical systems, see the eukaryotic cell cycle model which I released as "cell_cycle"
123
+ gem.'
119
124
  email:
120
125
  - '"boris@iis.sinica.edu.tw"'
121
126
  executables: []
@@ -125,7 +130,10 @@ files:
125
130
  - ".gitignore"
126
131
  - ACKNOWLEDGMENT.txt
127
132
  - Gemfile
133
+ - Introduction_to_Ruby_for_YNelson_Users.pdf
134
+ - Introduction_to_YNelson_and_YPetri.pdf
128
135
  - LICENSE.txt
136
+ - Object_model_of_YNelson_and_YPetri.pdf
129
137
  - README.md
130
138
  - Rakefile
131
139
  - lib/y_petri.rb