y_nelson 2.1.0 → 2.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{Ruby_for_YNelson_Users_in_20_minutes.lyx → Introduction_to_Ruby_for_YNelson_Users.lyx} +1042 -55
- data/Introduction_to_Ruby_for_YNelson_Users.pdf +0 -0
- data/Introduction_to_YNelson.lyx +23 -18
- data/Introduction_to_YNelson.pdf +0 -0
- data/LICENSE.txt +1 -2
- data/Object_model_of_YNelson_and_YPetri.lyx +3806 -0
- data/Object_model_of_YNelson_and_YPetri.pdf +0 -0
- data/README.md +1 -0
- data/Rakefile +1 -0
- data/lib/y_nelson/agent.rb +57 -117
- data/lib/y_nelson/dsl.rb +3 -2
- data/lib/y_nelson/place.rb +0 -1
- data/lib/y_nelson/version.rb +1 -1
- data/lib/y_nelson/zz_point.rb +1 -1
- data/lib/y_nelson.rb +16 -2
- data/y_nelson.gemspec +3 -3
- metadata +10 -15
- data/Ruby_for_YNelson_Users_in_20_minutes.pdf +0 -0
- data/YNelson_&_YPetri_User_Manual.lyx +0 -1037
- data/YNelson_&_YPetri_User_Manual.pdf +0 -0
- data/YNelson_-_Hands-on_Tutorial.lyx +0 -3701
- data/YNelson_-_Hands-on_Tutorial.pdf +0 -0
- data/config/mongoid.yml +0 -6
- data/lib/y_nelson/zz.png +0 -0
- data/test/zz.png +0 -0
Binary file
|
data/Introduction_to_YNelson.lyx
CHANGED
@@ -65,7 +65,7 @@
|
|
65
65
|
\begin_body
|
66
66
|
|
67
67
|
\begin_layout Title
|
68
|
-
|
68
|
+
Introduction to YNelson (hands-on tutorial)
|
69
69
|
\end_layout
|
70
70
|
|
71
71
|
\begin_layout Part*
|
@@ -324,32 +324,37 @@ irb
|
|
324
324
|
\end_layout
|
325
325
|
|
326
326
|
\begin_layout Standard
|
327
|
-
|
328
|
-
\
|
329
|
-
|
330
|
-
\
|
331
|
-
|
327
|
+
If you want to
|
328
|
+
\emph on
|
329
|
+
seriously
|
330
|
+
\emph default
|
331
|
+
work with
|
332
|
+
\emph on
|
333
|
+
complicated
|
334
|
+
\emph default
|
335
|
+
Petri Nets, no tool can avoid taking you through the process of learning
|
336
|
+
the object model, interface and syntax of the language in which the interface
|
337
|
+
is accessed.
|
338
|
+
GUI tools can be used for simpler tasks (such as drawing arcs between places
|
339
|
+
and transitions), but no tool can avoid using a real script language for
|
340
|
+
the difficult parts, such as functions of the transitions.
|
341
|
+
To operate
|
332
342
|
\family typewriter
|
333
343
|
YNelson
|
334
344
|
\family default
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
\emph default
|
339
|
-
™.
|
340
|
-
Petri net software at higher development stage, or written for a different
|
341
|
-
purpose than
|
345
|
+
, you will be learning powerful and intuitive syntax of a major scripting
|
346
|
+
language.
|
347
|
+
|
342
348
|
\family typewriter
|
343
349
|
YNelson
|
344
350
|
\family default
|
345
|
-
|
346
|
-
|
351
|
+
is open source and gives you freedom.
|
352
|
+
All classes are introspectible and modifiable, even at runtime.
|
353
|
+
Possible bugs or missing features never put the
|
347
354
|
\family typewriter
|
348
355
|
YNelson
|
349
356
|
\family default
|
350
|
-
|
351
|
-
Advantages of using textual DSL become apparent as soon as the user's models
|
352
|
-
become less simple.
|
357
|
+
user in a dead end situation.
|
353
358
|
\end_layout
|
354
359
|
|
355
360
|
\begin_layout Part*
|
Binary file
|
data/LICENSE.txt
CHANGED
@@ -671,5 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
|
|
671
671
|
may consider it more useful to permit linking proprietary applications with
|
672
672
|
the library. If this is what you want to do, use the GNU Lesser General
|
673
673
|
Public License instead of this License. But first, please read
|
674
|
-
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
675
|
-
|
674
|
+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|