tioga 1.11 → 1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. data/Tioga_README +58 -35
  2. data/{split/scripts → bin}/tioga +1 -1
  3. data/{split → ext/Dobjects}/Dtable/dtable.c +81 -15
  4. data/{split → ext/Dobjects}/Dtable/dtable_intern.h +0 -0
  5. data/ext/Dobjects/Dtable/extconf.rb +7 -0
  6. data/{split → ext/Dobjects}/Dtable/include/dtable.h +0 -0
  7. data/{split → ext/Dobjects}/Dvector/dvector.c +361 -51
  8. data/{split → ext/Dobjects}/Dvector/dvector_intern.h +0 -0
  9. data/ext/Dobjects/Dvector/extconf.rb +22 -0
  10. data/{split/Dtable → ext/Dobjects/Dvector/include}/dvector.h +0 -0
  11. data/ext/Dobjects/Function/extconf.rb +7 -0
  12. data/{split → ext/Dobjects}/Function/function.c +636 -11
  13. data/{split → ext/Dobjects}/Function/joint_qsort.c +0 -0
  14. data/ext/Flate/extconf.rb +26 -0
  15. data/{split → ext}/Flate/flate.c +7 -3
  16. data/{split → ext}/Flate/flate_intern.h +0 -0
  17. data/{split → ext}/Flate/include/flate.h +0 -0
  18. data/ext/Flate/zlib/adler32.c +149 -0
  19. data/ext/Flate/zlib/compress.c +79 -0
  20. data/ext/Flate/zlib/crc32.c +423 -0
  21. data/ext/Flate/zlib/crc32.h +441 -0
  22. data/ext/Flate/zlib/deflate.c +1736 -0
  23. data/ext/Flate/zlib/deflate.h +331 -0
  24. data/ext/Flate/zlib/gzio.c +1026 -0
  25. data/ext/Flate/zlib/infback.c +623 -0
  26. data/ext/Flate/zlib/inffast.c +318 -0
  27. data/ext/Flate/zlib/inffast.h +11 -0
  28. data/ext/Flate/zlib/inffixed.h +94 -0
  29. data/ext/Flate/zlib/inflate.c +1368 -0
  30. data/ext/Flate/zlib/inflate.h +115 -0
  31. data/ext/Flate/zlib/inftrees.c +329 -0
  32. data/ext/Flate/zlib/inftrees.h +55 -0
  33. data/ext/Flate/zlib/trees.c +1219 -0
  34. data/ext/Flate/zlib/trees.h +128 -0
  35. data/ext/Flate/zlib/uncompr.c +61 -0
  36. data/ext/Flate/zlib/zlib.h +1357 -0
  37. data/ext/Flate/zlib/zutil.c +318 -0
  38. data/ext/Flate/zlib/zutil.h +269 -0
  39. data/ext/Tioga/FigureMaker/__shared_axes.c +1373 -0
  40. data/ext/Tioga/FigureMaker/__shared_makers.c +1303 -0
  41. data/{split/Tioga/pdf_font_dicts.c → ext/Tioga/FigureMaker/__shared_pdf_font_dicts.c} +0 -0
  42. data/{split/Tioga/pdfcolor.c → ext/Tioga/FigureMaker/__shared_pdfcolor.c} +0 -0
  43. data/{split/Tioga/pdfcoords.c → ext/Tioga/FigureMaker/__shared_pdfcoords.c} +0 -0
  44. data/{split/Tioga/pdffile.c → ext/Tioga/FigureMaker/__shared_pdffile.c} +0 -0
  45. data/{split/Tioga/pdfimage.c → ext/Tioga/FigureMaker/__shared_pdfimage.c} +0 -0
  46. data/{split/Tioga/pdfpath.c → ext/Tioga/FigureMaker/__shared_pdfpath.c} +0 -0
  47. data/{split/Tioga/pdftext.c → ext/Tioga/FigureMaker/__shared_pdftext.c} +0 -0
  48. data/{split/Tioga/texout.c → ext/Tioga/FigureMaker/__shared_texout.c} +0 -0
  49. data/ext/Tioga/FigureMaker/extconf.rb +7 -0
  50. data/{split/Tioga → ext/Tioga/FigureMaker}/figures.c +14 -2
  51. data/{split/Tioga → ext/Tioga/FigureMaker}/figures.h +0 -0
  52. data/{split/Tioga → ext/Tioga/FigureMaker}/generic.c +1 -2
  53. data/{split/Tioga → ext/Tioga/FigureMaker}/generic.h +0 -1
  54. data/{split/Tioga → ext/Tioga/FigureMaker}/init.c +0 -0
  55. data/{split/Tioga → ext/Tioga/FigureMaker}/pdfs.h +0 -0
  56. data/{split/Tioga → ext/Tioga/FigureMaker/shared}/axes.c +32 -7
  57. data/{split/Tioga → ext/Tioga/FigureMaker/shared}/makers.c +2 -2
  58. data/ext/Tioga/FigureMaker/shared/pdf_font_dicts.c +18253 -0
  59. data/ext/Tioga/FigureMaker/shared/pdfcolor.c +904 -0
  60. data/ext/Tioga/FigureMaker/shared/pdfcoords.c +518 -0
  61. data/ext/Tioga/FigureMaker/shared/pdffile.c +451 -0
  62. data/ext/Tioga/FigureMaker/shared/pdfimage.c +539 -0
  63. data/ext/Tioga/FigureMaker/shared/pdfpath.c +766 -0
  64. data/ext/Tioga/FigureMaker/shared/pdftext.c +710 -0
  65. data/ext/Tioga/FigureMaker/shared/texout.c +533 -0
  66. data/{split/Tioga → ext/Tioga/FigureMaker}/wrappers.c +5 -5
  67. data/{split/Tioga → ext/Tioga/FigureMaker}/wrappers.h +0 -0
  68. data/{split/Dtable → ext/includes}/defs.h +0 -0
  69. data/{split/Dtable → ext/includes}/namespace.h +0 -0
  70. data/{split/Dtable → ext/includes}/safe_double.h +0 -0
  71. data/{split → ext/includes}/symbols.c +0 -1
  72. data/{split/Dtable → ext/includes}/symbols.h +0 -0
  73. data/{split/Dtable/lib → lib/Dobjects}/Dtable_extras.rb +0 -0
  74. data/{split/Dvector/lib → lib/Dobjects}/Dvector_extras.rb +1 -0
  75. data/{split/Function/lib → lib/Dobjects}/Function_extras.rb +0 -0
  76. data/{split/Dvector/lib → lib/Dobjects}/Numeric_extras.rb +0 -0
  77. data/{split/Tioga/lib → lib/Tioga}/Arcs_and_Circles.rb +0 -0
  78. data/{split/Tioga/lib → lib/Tioga}/ColorConstants.rb +0 -0
  79. data/{split/Tioga/lib → lib/Tioga}/Colorbars.rb +0 -0
  80. data/{split/Tioga/lib → lib/Tioga}/Colormaps.rb +0 -0
  81. data/{split/Tioga/lib → lib/Tioga}/Coordinate_Conversions.rb +0 -0
  82. data/{split/Tioga/lib → lib/Tioga}/Creating_Paths.rb +0 -0
  83. data/{split/Tioga/lib → lib/Tioga}/Doc.rb +0 -0
  84. data/{split/Tioga/lib → lib/Tioga}/Executive.rb +0 -0
  85. data/{split/Tioga/lib → lib/Tioga}/FigMkr.rb +13 -70
  86. data/{split/Tioga/lib → lib/Tioga}/FigureConstants.rb +0 -0
  87. data/{split/Tioga/lib → lib/Tioga}/Figures_and_Plots.rb +0 -0
  88. data/{split/Tioga/lib → lib/Tioga}/Images.rb +0 -0
  89. data/{split/Tioga/lib → lib/Tioga}/Legends.rb +0 -0
  90. data/{split/Tioga/lib → lib/Tioga}/MarkerConstants.rb +0 -0
  91. data/{split/Tioga/lib → lib/Tioga}/Markers.rb +0 -0
  92. data/{split/Tioga/lib → lib/Tioga}/Page_Frame_Bounds.rb +0 -0
  93. data/{split/Tioga/lib → lib/Tioga}/Rectangles.rb +0 -0
  94. data/{split/Tioga/lib → lib/Tioga}/Shading.rb +0 -0
  95. data/{split/Tioga/lib → lib/Tioga}/Special_Paths.rb +0 -0
  96. data/{split/Tioga/lib → lib/Tioga}/Strokes.rb +0 -0
  97. data/{split/Tioga/lib → lib/Tioga}/TeX_Text.rb +0 -0
  98. data/{split/Tioga/lib → lib/Tioga}/TexPreamble.rb +0 -0
  99. data/{split/Tioga/lib → lib/Tioga}/Titles_and_Labels.rb +0 -0
  100. data/{split/Tioga/lib → lib/Tioga}/Transparency.rb +0 -0
  101. data/{split/Tioga/lib → lib/Tioga}/Using_Paths.rb +0 -0
  102. data/{split/Tioga/lib → lib/Tioga}/Utils.rb +74 -0
  103. data/{split/Tioga/lib → lib/Tioga}/X_and_Y_Axes.rb +0 -0
  104. data/{split/Tioga/lib → lib/Tioga}/irb_tioga.rb +0 -0
  105. data/{split/Tioga/lib → lib/Tioga}/maker.rb +0 -0
  106. data/{split/Tioga/lib → lib/Tioga}/tioga.rb +0 -0
  107. data/{split/Tioga/lib → lib/Tioga}/tioga_ui.rb +0 -0
  108. data/{split/Tioga/lib → lib/Tioga}/tioga_ui_cmds.rb +0 -0
  109. data/tests/Icon_Test.pdf +0 -0
  110. data/tests/benchmark_dvector_reads.rb +20 -42
  111. data/tests/tc_Dvector.rb +45 -4
  112. data/tests/tc_Flate.rb +4 -5
  113. data/tests/tc_Function.rb +79 -0
  114. data/tests/vg.log +1453 -0
  115. metadata +141 -122
  116. data/split/Dtable/extconf.rb +0 -4
  117. data/split/Dvector/defs.h +0 -39
  118. data/split/Dvector/extconf.rb +0 -4
  119. data/split/Dvector/include/dvector.h +0 -77
  120. data/split/Dvector/namespace.h +0 -59
  121. data/split/Dvector/safe_double.h +0 -104
  122. data/split/Dvector/symbols.h +0 -52
  123. data/split/Flate/defs.h +0 -39
  124. data/split/Flate/extconf.rb +0 -19
  125. data/split/Flate/namespace.h +0 -59
  126. data/split/Flate/safe_double.h +0 -104
  127. data/split/Flate/symbols.h +0 -52
  128. data/split/Function/defs.h +0 -39
  129. data/split/Function/dvector.h +0 -77
  130. data/split/Function/extconf.rb +0 -4
  131. data/split/Function/namespace.h +0 -59
  132. data/split/Function/safe_double.h +0 -104
  133. data/split/Function/symbols.h +0 -52
  134. data/split/Tioga/defs.h +0 -39
  135. data/split/Tioga/dtable.h +0 -35
  136. data/split/Tioga/dvector.h +0 -77
  137. data/split/Tioga/extconf.rb +0 -4
  138. data/split/Tioga/flate.h +0 -98
  139. data/split/Tioga/mk_tioga_sty.rb +0 -53
  140. data/split/Tioga/namespace.h +0 -59
  141. data/split/Tioga/safe_double.h +0 -104
  142. data/split/Tioga/symbols.h +0 -52
  143. data/split/defs.h +0 -39
  144. data/split/extconf.rb +0 -125
  145. data/split/mkmf2.rb +0 -1623
  146. data/split/namespace.h +0 -59
  147. data/split/safe_double.h +0 -104
  148. data/split/symbols.h +0 -52
metadata CHANGED
@@ -1,150 +1,163 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tioga
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.11"
4
+ hash: 21
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 13
9
+ version: "1.13"
5
10
  platform: ruby
6
11
  authors:
7
12
  - Bill Paxton
8
13
  - Vincent Fourmond
9
14
  - Taro Sato
10
15
  - Jean-Julien Fleck
16
+ - Benjamin ter Kuile
17
+ - David MacMahon
11
18
  autorequire:
12
- bindir: split/scripts
19
+ bindir: bin
13
20
  cert_chain: []
14
21
 
15
- date: 2009-07-18 00:00:00 +02:00
22
+ date: 2011-01-03 00:00:00 +01:00
16
23
  default_executable:
17
24
  dependencies: []
18
25
 
19
26
  description:
20
27
  email:
28
+ - tioga-users@rubyforge.org
21
29
  executables:
22
30
  - tioga
23
31
  extensions:
24
- - split/Flate/extconf.rb
25
- - split/Tioga/extconf.rb
26
- - split/Dvector/extconf.rb
27
- - split/Dtable/extconf.rb
28
- - split/Function/extconf.rb
32
+ - ext/Flate/extconf.rb
33
+ - ext/Tioga/FigureMaker/extconf.rb
34
+ - ext/Dobjects/Dvector/extconf.rb
35
+ - ext/Dobjects/Dtable/extconf.rb
36
+ - ext/Dobjects/Function/extconf.rb
29
37
  extra_rdoc_files: []
30
38
 
31
39
  files:
32
- - split/Tioga/wrappers.c
33
- - split/Tioga/init.c
34
- - split/Tioga/figures.c
35
- - split/Tioga/generic.c
36
- - split/Tioga/pdftext.c
37
- - split/Tioga/axes.c
38
- - split/Tioga/makers.c
39
- - split/Tioga/pdfcoords.c
40
- - split/Tioga/pdf_font_dicts.c
41
- - split/Tioga/pdfpath.c
42
- - split/Tioga/pdfcolor.c
43
- - split/Tioga/texout.c
44
- - split/Tioga/pdffile.c
45
- - split/Tioga/pdfimage.c
46
- - split/Function/function.c
47
- - split/Function/joint_qsort.c
48
- - split/Dvector/dvector.c
49
- - split/Dtable/dtable.c
50
- - split/Flate/flate.c
51
- - split/Tioga/generic.h
52
- - split/Tioga/pdfs.h
53
- - split/Tioga/wrappers.h
54
- - split/Tioga/figures.h
55
- - split/Tioga/symbols.h
56
- - split/Tioga/defs.h
57
- - split/Tioga/safe_double.h
58
- - split/Tioga/namespace.h
59
- - split/Tioga/dvector.h
60
- - split/Tioga/dtable.h
61
- - split/Tioga/flate.h
62
- - split/Function/symbols.h
63
- - split/Function/defs.h
64
- - split/Function/safe_double.h
65
- - split/Function/namespace.h
66
- - split/Function/dvector.h
67
- - split/Dvector/symbols.h
68
- - split/Dvector/dvector_intern.h
69
- - split/Dvector/defs.h
70
- - split/Dvector/safe_double.h
71
- - split/Dvector/namespace.h
72
- - split/Dtable/dtable_intern.h
73
- - split/Dtable/symbols.h
74
- - split/Dtable/defs.h
75
- - split/Dtable/safe_double.h
76
- - split/Dtable/namespace.h
77
- - split/Dtable/dvector.h
78
- - split/Flate/flate_intern.h
79
- - split/Flate/symbols.h
80
- - split/Flate/defs.h
81
- - split/Flate/safe_double.h
82
- - split/Flate/namespace.h
83
- - split/Dvector/include/dvector.h
84
- - split/Dtable/include/dtable.h
85
- - split/Flate/include/flate.h
86
- - split/Tioga/lib/maker.rb
87
- - split/Tioga/lib/Shading.rb
88
- - split/Tioga/lib/Arcs_and_Circles.rb
89
- - split/Tioga/lib/FigureConstants.rb
90
- - split/Tioga/lib/MarkerConstants.rb
91
- - split/Tioga/lib/Special_Paths.rb
92
- - split/Tioga/lib/Coordinate_Conversions.rb
93
- - split/Tioga/lib/FigMkr.rb
94
- - split/Tioga/lib/Legends.rb
95
- - split/Tioga/lib/Using_Paths.rb
96
- - split/Tioga/lib/Colorbars.rb
97
- - split/Tioga/lib/Rectangles.rb
98
- - split/Tioga/lib/Strokes.rb
99
- - split/Tioga/lib/Creating_Paths.rb
100
- - split/Tioga/lib/irb_tioga.rb
101
- - split/Tioga/lib/tioga_ui_cmds.rb
102
- - split/Tioga/lib/Colormaps.rb
103
- - split/Tioga/lib/Page_Frame_Bounds.rb
104
- - split/Tioga/lib/Utils.rb
105
- - split/Tioga/lib/tioga_ui.rb
106
- - split/Tioga/lib/Executive.rb
107
- - split/Tioga/lib/X_and_Y_Axes.rb
108
- - split/Tioga/lib/tioga.rb
109
- - split/Tioga/lib/Markers.rb
110
- - split/Tioga/lib/TeX_Text.rb
111
- - split/Tioga/lib/Images.rb
112
- - split/Tioga/lib/Doc.rb
113
- - split/Tioga/lib/TexPreamble.rb
114
- - split/Tioga/lib/Figures_and_Plots.rb
115
- - split/Tioga/lib/Titles_and_Labels.rb
116
- - split/Tioga/lib/Transparency.rb
117
- - split/Tioga/lib/ColorConstants.rb
118
- - split/Tioga/extconf.rb
119
- - split/Tioga/mk_tioga_sty.rb
120
- - split/Function/lib/Function_extras.rb
121
- - split/Function/extconf.rb
122
- - split/Dvector/lib/Numeric_extras.rb
123
- - split/Dvector/lib/Dvector_extras.rb
124
- - split/Dvector/extconf.rb
125
- - split/Dtable/lib/Dtable_extras.rb
126
- - split/Dtable/extconf.rb
127
- - split/Flate/extconf.rb
128
- - split/extconf.rb
129
- - split/mkmf2.rb
130
- - split/namespace.h
131
- - split/defs.h
132
- - split/safe_double.h
133
- - split/symbols.h
134
- - split/symbols.c
135
- - tests/benchmark_dvector_reads.rb
40
+ - ext/Dobjects/Dtable/dtable.c
41
+ - ext/Dobjects/Dtable/dtable_intern.h
42
+ - ext/Dobjects/Dtable/include/dtable.h
43
+ - ext/Dobjects/Function/function.c
44
+ - ext/Dobjects/Function/joint_qsort.c
45
+ - ext/Dobjects/Dvector/dvector_intern.h
46
+ - ext/Dobjects/Dvector/include/dvector.h
47
+ - ext/Dobjects/Dvector/dvector.c
48
+ - ext/Flate/flate.c
49
+ - ext/Flate/flate_intern.h
50
+ - ext/Flate/zlib/inflate.c
51
+ - ext/Flate/zlib/uncompr.c
52
+ - ext/Flate/zlib/crc32.h
53
+ - ext/Flate/zlib/inffixed.h
54
+ - ext/Flate/zlib/inftrees.c
55
+ - ext/Flate/zlib/zlib.h
56
+ - ext/Flate/zlib/zutil.h
57
+ - ext/Flate/zlib/zutil.c
58
+ - ext/Flate/zlib/inftrees.h
59
+ - ext/Flate/zlib/deflate.h
60
+ - ext/Flate/zlib/gzio.c
61
+ - ext/Flate/zlib/inflate.h
62
+ - ext/Flate/zlib/inffast.h
63
+ - ext/Flate/zlib/trees.c
64
+ - ext/Flate/zlib/deflate.c
65
+ - ext/Flate/zlib/trees.h
66
+ - ext/Flate/zlib/compress.c
67
+ - ext/Flate/zlib/adler32.c
68
+ - ext/Flate/zlib/crc32.c
69
+ - ext/Flate/zlib/infback.c
70
+ - ext/Flate/zlib/inffast.c
71
+ - ext/Flate/include/flate.h
72
+ - ext/Tioga/FigureMaker/figures.h
73
+ - ext/Tioga/FigureMaker/shared/pdffile.c
74
+ - ext/Tioga/FigureMaker/shared/pdfcolor.c
75
+ - ext/Tioga/FigureMaker/shared/texout.c
76
+ - ext/Tioga/FigureMaker/shared/pdftext.c
77
+ - ext/Tioga/FigureMaker/shared/axes.c
78
+ - ext/Tioga/FigureMaker/shared/pdfimage.c
79
+ - ext/Tioga/FigureMaker/shared/makers.c
80
+ - ext/Tioga/FigureMaker/shared/pdfpath.c
81
+ - ext/Tioga/FigureMaker/shared/pdfcoords.c
82
+ - ext/Tioga/FigureMaker/shared/pdf_font_dicts.c
83
+ - ext/Tioga/FigureMaker/__shared_pdftext.c
84
+ - ext/Tioga/FigureMaker/__shared_pdffile.c
85
+ - ext/Tioga/FigureMaker/generic.h
86
+ - ext/Tioga/FigureMaker/figures.c
87
+ - ext/Tioga/FigureMaker/wrappers.h
88
+ - ext/Tioga/FigureMaker/pdfs.h
89
+ - ext/Tioga/FigureMaker/__shared_pdfcoords.c
90
+ - ext/Tioga/FigureMaker/generic.c
91
+ - ext/Tioga/FigureMaker/init.c
92
+ - ext/Tioga/FigureMaker/__shared_pdf_font_dicts.c
93
+ - ext/Tioga/FigureMaker/__shared_makers.c
94
+ - ext/Tioga/FigureMaker/__shared_pdfimage.c
95
+ - ext/Tioga/FigureMaker/__shared_texout.c
96
+ - ext/Tioga/FigureMaker/wrappers.c
97
+ - ext/Tioga/FigureMaker/__shared_pdfcolor.c
98
+ - ext/Tioga/FigureMaker/__shared_pdfpath.c
99
+ - ext/Tioga/FigureMaker/__shared_axes.c
100
+ - ext/includes/symbols.h
101
+ - ext/includes/namespace.h
102
+ - ext/includes/safe_double.h
103
+ - ext/includes/defs.h
104
+ - ext/includes/symbols.c
105
+ - lib/Dobjects/Dtable_extras.rb
106
+ - lib/Dobjects/Function_extras.rb
107
+ - lib/Dobjects/Dvector_extras.rb
108
+ - lib/Dobjects/Numeric_extras.rb
109
+ - lib/Tioga/tioga_ui.rb
110
+ - lib/Tioga/Transparency.rb
111
+ - lib/Tioga/Utils.rb
112
+ - lib/Tioga/Coordinate_Conversions.rb
113
+ - lib/Tioga/Images.rb
114
+ - lib/Tioga/Legends.rb
115
+ - lib/Tioga/Creating_Paths.rb
116
+ - lib/Tioga/X_and_Y_Axes.rb
117
+ - lib/Tioga/Shading.rb
118
+ - lib/Tioga/Arcs_and_Circles.rb
119
+ - lib/Tioga/Colorbars.rb
120
+ - lib/Tioga/Doc.rb
121
+ - lib/Tioga/Titles_and_Labels.rb
122
+ - lib/Tioga/maker.rb
123
+ - lib/Tioga/Executive.rb
124
+ - lib/Tioga/ColorConstants.rb
125
+ - lib/Tioga/Page_Frame_Bounds.rb
126
+ - lib/Tioga/tioga.rb
127
+ - lib/Tioga/Figures_and_Plots.rb
128
+ - lib/Tioga/FigureConstants.rb
129
+ - lib/Tioga/Strokes.rb
130
+ - lib/Tioga/irb_tioga.rb
131
+ - lib/Tioga/FigMkr.rb
132
+ - lib/Tioga/tioga_ui_cmds.rb
133
+ - lib/Tioga/TexPreamble.rb
134
+ - lib/Tioga/Markers.rb
135
+ - lib/Tioga/MarkerConstants.rb
136
+ - lib/Tioga/Rectangles.rb
137
+ - lib/Tioga/Colormaps.rb
138
+ - lib/Tioga/Using_Paths.rb
139
+ - lib/Tioga/Special_Paths.rb
140
+ - lib/Tioga/TeX_Text.rb
141
+ - tests/Icon_Test.pdf
136
142
  - tests/dtable_test.data
137
- - tests/tc_Dtable.rb
138
- - tests/tc_Flate.rb
139
- - tests/tc_FMkr.rb
140
143
  - tests/dvector_read_test.data
144
+ - tests/tc_Dvector.rb
141
145
  - tests/ts_Tioga.rb
142
146
  - tests/dvector_test.data
147
+ - tests/benchmark_dvector_reads.rb
148
+ - tests/tc_Dtable.rb
149
+ - tests/tc_Flate.rb
150
+ - tests/tc_FMkr.rb
151
+ - tests/vg.log
143
152
  - tests/tc_Function.rb
144
- - tests/tc_Dvector.rb
145
- - tests/Icon_Test.pdf
146
153
  - Tioga_README
147
154
  - lgpl.txt
155
+ - bin/tioga
156
+ - ext/Flate/extconf.rb
157
+ - ext/Tioga/FigureMaker/extconf.rb
158
+ - ext/Dobjects/Dvector/extconf.rb
159
+ - ext/Dobjects/Dtable/extconf.rb
160
+ - ext/Dobjects/Function/extconf.rb
148
161
  has_rdoc: true
149
162
  homepage: http://tioga.rubyforge.org
150
163
  licenses:
@@ -155,23 +168,29 @@ rdoc_options: []
155
168
  require_paths:
156
169
  - lib
157
170
  required_ruby_version: !ruby/object:Gem::Requirement
171
+ none: false
158
172
  requirements:
159
173
  - - ">="
160
174
  - !ruby/object:Gem::Version
175
+ hash: 3
176
+ segments:
177
+ - 0
161
178
  version: "0"
162
- version:
163
179
  required_rubygems_version: !ruby/object:Gem::Requirement
180
+ none: false
164
181
  requirements:
165
182
  - - ">="
166
183
  - !ruby/object:Gem::Version
184
+ hash: 3
185
+ segments:
186
+ - 0
167
187
  version: "0"
168
- version:
169
188
  requirements: []
170
189
 
171
190
  rubyforge_project: tioga
172
- rubygems_version: 1.3.4
191
+ rubygems_version: 1.3.7
173
192
  signing_key:
174
193
  specification_version: 3
175
194
  summary: Tioga - a powerful scientific plotting library
176
- test_files:
177
- - tests/ts_Tioga.rb
195
+ test_files: []
196
+
@@ -1,4 +0,0 @@
1
- # Dtable installation file
2
- require 'mkmf'
3
-
4
- create_makefile 'Dobjects/Dtable'
data/split/Dvector/defs.h DELETED
@@ -1,39 +0,0 @@
1
- /**********************************************************************
2
-
3
- defs.h:
4
- some definitions that are used everywhere and that depend on some
5
- HAVE_* macros.
6
-
7
- Copyright (C) 2006 Vincent Fourmond
8
-
9
- This program is free software; you can redistribute it and/or modify
10
- it under the terms of the GNU General Library Public License as published
11
- by the Free Software Foundation; either version 2 of the License, or
12
- (at your option) any later version.
13
-
14
- This program is distributed in the hope that it will be useful,
15
- but WITHOUT ANY WARRANTY; without even the implied warranty of
16
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
- GNU Library General Public License for more details.
18
-
19
- You should have received a copy of the GNU Library General Public License
20
- along with this program; if not, write to the Free Software
21
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
-
23
- **********************************************************************/
24
-
25
-
26
- #ifdef HAVE_ISNAN
27
- /* we use isnan and isinf, which are much faster than the workaround */
28
- #define is_okay_number(x) (! isnan(x) && ! isinf(x))
29
- #else
30
- #define is_okay_number(x) ((x) - (x) == 0.0)
31
- #define isnan(x) ((x) != (x))
32
- /* yes, as funny as it may look NaN != NaN, and that's the only one */
33
- #endif
34
-
35
- /* Fix old versions of ruby.h */
36
- #ifndef RSTRING_PTR
37
- # define RSTRING_PTR(x) (RSTRING(x)->ptr)
38
- # define RSTRING_LEN(x) (RSTRING(x)->len)
39
- #endif
@@ -1,4 +0,0 @@
1
- # Dtable installation file
2
- require 'mkmf'
3
-
4
- create_makefile 'Dobjects/Dvector'
@@ -1,77 +0,0 @@
1
- /* Dvector.h */
2
- /*
3
- Copyright (C) 2005 Bill Paxton
4
-
5
- Dvector is free software; you can redistribute it and/or modify
6
- it under the terms of the GNU General Library Public License as published
7
- by the Free Software Foundation; either version 2 of the License, or
8
- (at your option) any later version.
9
-
10
- Dvector is distributed in the hope that it will be useful,
11
- but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
- GNU Library General Public License for more details.
14
-
15
- You should have received a copy of the GNU Library General Public License
16
- along with Dvector; if not, write to the Free Software
17
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
- */
19
-
20
- #ifndef __Dvector_H__
21
- #define __Dvector_H__
22
-
23
- /* this file has been heavily modified by Vincent Fourmond to take care
24
- of the 'RCR330' scheme of exporting symbols
25
- */
26
-
27
- #include <symbols.h>
28
- #include <stdbool.h>
29
-
30
- /*======================================================================*/
31
-
32
- /* functions for handling Dvectors: */
33
-
34
- DECLARE_SYMBOL(bool, isa_Dvector, (VALUE obj));
35
- /* returns true if the obj is a Dvector */
36
- DECLARE_SYMBOL(long, len_Dvector, (VALUE dvector));
37
- /* returns length of the dvector */
38
- DECLARE_SYMBOL(double, access_Dvector, (VALUE dvector, long idx));
39
- /* returns the value of entry idx in dvector */
40
-
41
- DECLARE_SYMBOL(double *, Dvector_Data_for_Read, (VALUE dvector, long *len_ptr));
42
- /* returns pointer to the dvector's data (which may be shared) */
43
- DECLARE_SYMBOL(double *, Dvector_Data_Copy, (VALUE dvector, long *len_ptr));
44
- /* like Dvector_Data_for_Read, but returns pointer to a copy of the data */
45
- DECLARE_SYMBOL(double *, Dvector_Data_for_Write,
46
- (VALUE dvector, long *len_ptr));
47
- DECLARE_SYMBOL(double *, Dvector_Data_Resize, (VALUE dvector, long new_len));
48
- DECLARE_SYMBOL(double *, Dvector_Data_Replace,
49
- (VALUE dvector, long len, double *data));
50
- /* copies the data into the dvector */
51
- DECLARE_SYMBOL(VALUE, Dvector_Create, (void));
52
- DECLARE_SYMBOL(void, Dvector_Store_Double, (VALUE ary, long idx, double val));
53
- /* pushes one element onto the vector */
54
- DECLARE_SYMBOL(void, Dvector_Push_Double, (VALUE ary, double val));
55
-
56
-
57
- /* functions for interpolation */
58
- DECLARE_SYMBOL(void, c_dvector_create_spline_interpolant,
59
- (int n_pts_data, double *Xs, double *Ys,
60
- bool start_clamped, double start_slope,
61
- bool end_clamped, double end_slope,
62
- double *As, double *Bs, double *Cs));
63
- DECLARE_SYMBOL(double, c_dvector_spline_interpolate,
64
- (double x, int n_pts_data, double *Xs, double *Ys,
65
- double *Bs, double *Cs, double *Ds));
66
-
67
- DECLARE_SYMBOL(void, c_dvector_create_pm_cubic_interpolant,
68
- (int n_pts_data, double *Xs, double *Ys,
69
- double *As, double *Bs, double *Cs));
70
- DECLARE_SYMBOL(double, c_dvector_pm_cubic_interpolate,
71
- (double x, int n_pts_data, double *Xs, double *Ys,
72
- double *Bs, double *Cs, double *Ds));
73
-
74
- DECLARE_SYMBOL(double, c_dvector_linear_interpolate,
75
- (int num_pts, double *xs, double *ys, double x));
76
- #endif /* __Dvector_H__ */
77
-
@@ -1,59 +0,0 @@
1
- /* namespace.h: an attempt at rationalizing shared objects
2
- namespace use.
3
-
4
- Copyright (C) 2006 Vincent Fourmond
5
-
6
- This program is free software; you can redistribute it and/or modify
7
- it under the terms of the GNU General Library Public License as published
8
- by the Free Software Foundation; either version 2 of the License, or
9
- (at your option) any later version.
10
-
11
- This program is distributed in the hope that it will be useful,
12
- but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
- GNU Library General Public License for more details.
15
-
16
- You should have received a copy of the GNU Library General Public License
17
- along with this program; if not, write to the Free Software
18
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
- */
20
-
21
- #ifndef _NAMESPACE_H
22
- #define _NAMESPACE_H
23
-
24
- /* This header file provides three OS-specific macros for the definition of
25
- extern (or NOT extern) symbols:
26
-
27
- * PUBLIC, which has to be used to mark objects that will be used
28
- outside the module
29
-
30
- * INTERN, for symbols which are shared among compilation units within a
31
- module, but are NOT exported to other modules.
32
-
33
- * PRIVATE, for symbols which are visible only within the containing
34
- compilation unit (i.e. C source file) and, of course, are not exported to
35
- other modules.
36
-
37
- Please don't add "extern" after the PRIVATE or PUBLIC declaration
38
- as this would break compilation on Darwin.
39
- */
40
-
41
- #if __GNUC__ >= 4 /* we have the visibility attribute */
42
- # define INTERN __attribute__ ((visibility ("hidden")))
43
- # define PUBLIC __attribute__ ((visibility ("default")))
44
- # define INTERN_EXTERN extern
45
- #elif defined __APPLE__
46
- # define INTERN __private_extern__
47
- # define PUBLIC
48
- # define INTERN_EXTERN
49
- #else /* not really good */
50
- # define INTERN
51
- # define PUBLIC
52
- # define INTERN_EXTERN
53
- #endif /* __APPLE__ and __GNU_C_ >= 4*/
54
-
55
- /* In any case, PRIVATE is static */
56
-
57
- #define PRIVATE static
58
-
59
- #endif