y_nelson 2.3.2 → 2.3.3

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: ff0c7fc0bba7e9f0541b2f3aa811f26242c51627
4
- data.tar.gz: 9552fe33ca17718ee07307220db945965ad8373e
3
+ metadata.gz: 277e85acd1c9b583b37388adba7f1d7b32b4e945
4
+ data.tar.gz: 69a3453eb7178f51bf187ed035b6643398d0d438
5
5
  SHA512:
6
- metadata.gz: 063508644f6eee8b6c3f97289195f003d18c86fcb7a039a0fc73398430eed28d747657dab1b8fa05ae2a036676057d1c387dd65a85dafac7b502870d1e9b5da4
7
- data.tar.gz: b3a0075c37727b227ee5b8c1f6bdffb8417dad5b67f3b42bceb76b44d3914c64c23bc3df215048b902c347407f5c5905475ba59cd5144f37e5027809a9f127d6
6
+ metadata.gz: 9905f70b7e84bcd2bf4d13cfaeddcc2ecf5eb4d2fee3b53616b61245304ca42375cfd31d79271ea80a862332ccd2faf0ff3ee0813551d737a7b2e875a130a20d
7
+ data.tar.gz: bb869215b5e6777a81c86d7ef2dca2ec995aa43c23851422ab1a569affd7ee655c77421d84c053da4b80f9192938e208cd0844df409459557c76aec71c6e9cbf
@@ -1,4 +1,4 @@
1
1
  module YNelson
2
2
  DEBUG = false
3
- VERSION = "2.3.2"
3
+ VERSION = "2.3.3"
4
4
  end
data/y_nelson.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = YNelson::VERSION
9
9
  spec.authors = ["boris"]
10
10
  spec.email = ["\"boris@iis.sinica.edu.tw\""]
11
- spec.summary = %q{A fusion of functional Petri net with a zz structure that formalizes and generalizes spreadsheet.}
12
- spec.description = %q{Zz structures are an interesting way of representing relations invented by Ted Nelson. I captured the basic zz structure formalism in a gem Yzz. In this gem, YNelson, I combine zz structures with universal Petri nets (provided by another gem of mine, YPetri) to obtain a hybrid data structure that formalizes and generelizes spreadsheet. Because let us note that most practical spreadsheet implementation allow to model a Petri net with the cell functions if the cell functions are regarded as transitions and cells and places, then a spreadsheet is a kind of a Petri net. At the same time, spreadsheet files are orthogonal structures with at least 3 dimensions: x (horizontal), y (vertical) and z (the dimension of sheets stacked upon each other). In addition, there is the "dimension" of files, the "dimension" of precedents and dependents (seen in formula auditing). If zz structures are used to represent relations as dimensions, this can be generalized, and the globally orthogonal nature of spreadsheets is generalized to the locally orthogonal nature of zz structures. The sum of this makes for a nice generalization of a spreadsheet, which YNelson attempts to be. In addition, YNelson attempts to provide convenience at least at the level similar to the actual existing spreadsheet software by providing certain commands that allow creation of more than one Petri net place or transition at the same time. This aspect of YNelson is still under development. See the user guide and the documentation for the details. YNelson documentation is available online, but due to formatting issues, you may prefer to generate the documentation on your own by running rdoc in the gem directory.}
11
+ spec.summary = %q{A fusion of a universal Petri net with a zz structure that formalizes and generalizes spreadsheet. As an extension of YPetri (y_petri) gem, YNelson inherits all its capabilities for modelling dynamical systems, but adds the capability to represent relations between model nodes and parameters.}
12
+ spec.description = %q{Zz structures are an interesting way of representing relations invented by Ted Nelson. I captured the basic zz structure formalism in a gem Yzz. In this gem, YNelson, I combine zz structures with universal Petri nets (provided by another gem of mine, YPetri) to obtain a hybrid data structure that formalizes and generelizes a spreadsheet. Because let us note that most of the practical spreadsheet implementations allow the cell functions to be used so as to represent a Petri net. The cell functions can thus be regarded as transitions and cells and places of a Petri net. A spreadsheet is thus a kind of a Petri net. At the same time, spreadsheet files are orthogonal structures with at least 3 dimensions: x (horizontal), y (vertical) and z (the dimension of sheets stacked upon each other). With zz structures, the globally orthogonal nature traditional spreadsheet is generalized as a locally orthogonal zz structure, with relations represented as zz dimensions. In sum, this generalizes and formalizes a spreadsheet. While being textual at the core, YNelson attempts to provide convenience at least at the level similar to the actual existing spreadsheet software. Unlike YPetri, YNelson can also specify more than one node per command, but this is still under development. See the user guide and the documentation for the details. YNelson documentation is available 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.}
13
13
  spec.homepage = ""
14
14
  spec.license = "GPLv3"
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: y_nelson
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - boris
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-02 00:00:00.000000000 Z
11
+ date: 2014-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yzz
@@ -70,23 +70,22 @@ description: 'Zz structures are an interesting way of representing relations inv
70
70
  by Ted Nelson. I captured the basic zz structure formalism in a gem Yzz. In this
71
71
  gem, YNelson, I combine zz structures with universal Petri nets (provided by another
72
72
  gem of mine, YPetri) to obtain a hybrid data structure that formalizes and generelizes
73
- spreadsheet. Because let us note that most practical spreadsheet implementation
74
- allow to model a Petri net with the cell functions if the cell functions are regarded
75
- as transitions and cells and places, then a spreadsheet is a kind of a Petri net.
76
- At the same time, spreadsheet files are orthogonal structures with at least 3 dimensions:
77
- x (horizontal), y (vertical) and z (the dimension of sheets stacked upon each other).
78
- In addition, there is the "dimension" of files, the "dimension" of precedents and
79
- dependents (seen in formula auditing). If zz structures are used to represent relations
80
- as dimensions, this can be generalized, and the globally orthogonal nature of spreadsheets
81
- is generalized to the locally orthogonal nature of zz structures. The sum of this
82
- makes for a nice generalization of a spreadsheet, which YNelson attempts to be.
83
- In addition, YNelson attempts to provide convenience at least at the level similar
84
- to the actual existing spreadsheet software by providing certain commands that allow
85
- creation of more than one Petri net place or transition at the same time. This aspect
86
- of YNelson is still under development. See the user guide and the documentation
87
- for the details. YNelson documentation is available online, but due to formatting
88
- issues, you may prefer to generate the documentation on your own by running rdoc
89
- in the gem directory.'
73
+ a spreadsheet. Because let us note that most of the practical spreadsheet implementations
74
+ allow the cell functions to be used so as to represent a Petri net. The cell functions
75
+ can thus be regarded as transitions and cells and places of a Petri net. A spreadsheet
76
+ is thus a kind of a Petri net. At the same time, spreadsheet files are orthogonal
77
+ structures with at least 3 dimensions: x (horizontal), y (vertical) and z (the dimension
78
+ of sheets stacked upon each other). With zz structures, the globally orthogonal
79
+ nature traditional spreadsheet is generalized as a locally orthogonal zz structure,
80
+ with relations represented as zz dimensions. In sum, this generalizes and formalizes
81
+ a spreadsheet. While being textual at the core, YNelson attempts to provide convenience
82
+ at least at the level similar to the actual existing spreadsheet software. Unlike
83
+ YPetri, YNelson can also specify more than one node per command, but this is still
84
+ under development. See the user guide and the documentation for the details. YNelson
85
+ documentation is available online, but due to formatting issues, you may prefer
86
+ to generate the documentation on your own by running rdoc in the gem directory.
87
+ For an example of how YPetri can be used to model complex dynamical systems, see
88
+ the eukaryotic cell cycle model which I released as "cell_cycle" gem.'
90
89
  email:
91
90
  - '"boris@iis.sinica.edu.tw"'
92
91
  executables: []
@@ -143,8 +142,10 @@ rubyforge_project:
143
142
  rubygems_version: 2.2.2
144
143
  signing_key:
145
144
  specification_version: 4
146
- summary: A fusion of functional Petri net with a zz structure that formalizes and
147
- generalizes spreadsheet.
145
+ summary: A fusion of a universal Petri net with a zz structure that formalizes and
146
+ generalizes spreadsheet. As an extension of YPetri (y_petri) gem, YNelson inherits
147
+ all its capabilities for modelling dynamical systems, but adds the capability to
148
+ represent relations between model nodes and parameters.
148
149
  test_files:
149
150
  - test/issues.rb
150
151
  - test/mongoid_example.rb