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.
- data/Tioga_README +58 -35
- data/{split/scripts → bin}/tioga +1 -1
- data/{split → ext/Dobjects}/Dtable/dtable.c +81 -15
- data/{split → ext/Dobjects}/Dtable/dtable_intern.h +0 -0
- data/ext/Dobjects/Dtable/extconf.rb +7 -0
- data/{split → ext/Dobjects}/Dtable/include/dtable.h +0 -0
- data/{split → ext/Dobjects}/Dvector/dvector.c +361 -51
- data/{split → ext/Dobjects}/Dvector/dvector_intern.h +0 -0
- data/ext/Dobjects/Dvector/extconf.rb +22 -0
- data/{split/Dtable → ext/Dobjects/Dvector/include}/dvector.h +0 -0
- data/ext/Dobjects/Function/extconf.rb +7 -0
- data/{split → ext/Dobjects}/Function/function.c +636 -11
- data/{split → ext/Dobjects}/Function/joint_qsort.c +0 -0
- data/ext/Flate/extconf.rb +26 -0
- data/{split → ext}/Flate/flate.c +7 -3
- data/{split → ext}/Flate/flate_intern.h +0 -0
- data/{split → ext}/Flate/include/flate.h +0 -0
- data/ext/Flate/zlib/adler32.c +149 -0
- data/ext/Flate/zlib/compress.c +79 -0
- data/ext/Flate/zlib/crc32.c +423 -0
- data/ext/Flate/zlib/crc32.h +441 -0
- data/ext/Flate/zlib/deflate.c +1736 -0
- data/ext/Flate/zlib/deflate.h +331 -0
- data/ext/Flate/zlib/gzio.c +1026 -0
- data/ext/Flate/zlib/infback.c +623 -0
- data/ext/Flate/zlib/inffast.c +318 -0
- data/ext/Flate/zlib/inffast.h +11 -0
- data/ext/Flate/zlib/inffixed.h +94 -0
- data/ext/Flate/zlib/inflate.c +1368 -0
- data/ext/Flate/zlib/inflate.h +115 -0
- data/ext/Flate/zlib/inftrees.c +329 -0
- data/ext/Flate/zlib/inftrees.h +55 -0
- data/ext/Flate/zlib/trees.c +1219 -0
- data/ext/Flate/zlib/trees.h +128 -0
- data/ext/Flate/zlib/uncompr.c +61 -0
- data/ext/Flate/zlib/zlib.h +1357 -0
- data/ext/Flate/zlib/zutil.c +318 -0
- data/ext/Flate/zlib/zutil.h +269 -0
- data/ext/Tioga/FigureMaker/__shared_axes.c +1373 -0
- data/ext/Tioga/FigureMaker/__shared_makers.c +1303 -0
- data/{split/Tioga/pdf_font_dicts.c → ext/Tioga/FigureMaker/__shared_pdf_font_dicts.c} +0 -0
- data/{split/Tioga/pdfcolor.c → ext/Tioga/FigureMaker/__shared_pdfcolor.c} +0 -0
- data/{split/Tioga/pdfcoords.c → ext/Tioga/FigureMaker/__shared_pdfcoords.c} +0 -0
- data/{split/Tioga/pdffile.c → ext/Tioga/FigureMaker/__shared_pdffile.c} +0 -0
- data/{split/Tioga/pdfimage.c → ext/Tioga/FigureMaker/__shared_pdfimage.c} +0 -0
- data/{split/Tioga/pdfpath.c → ext/Tioga/FigureMaker/__shared_pdfpath.c} +0 -0
- data/{split/Tioga/pdftext.c → ext/Tioga/FigureMaker/__shared_pdftext.c} +0 -0
- data/{split/Tioga/texout.c → ext/Tioga/FigureMaker/__shared_texout.c} +0 -0
- data/ext/Tioga/FigureMaker/extconf.rb +7 -0
- data/{split/Tioga → ext/Tioga/FigureMaker}/figures.c +14 -2
- data/{split/Tioga → ext/Tioga/FigureMaker}/figures.h +0 -0
- data/{split/Tioga → ext/Tioga/FigureMaker}/generic.c +1 -2
- data/{split/Tioga → ext/Tioga/FigureMaker}/generic.h +0 -1
- data/{split/Tioga → ext/Tioga/FigureMaker}/init.c +0 -0
- data/{split/Tioga → ext/Tioga/FigureMaker}/pdfs.h +0 -0
- data/{split/Tioga → ext/Tioga/FigureMaker/shared}/axes.c +32 -7
- data/{split/Tioga → ext/Tioga/FigureMaker/shared}/makers.c +2 -2
- data/ext/Tioga/FigureMaker/shared/pdf_font_dicts.c +18253 -0
- data/ext/Tioga/FigureMaker/shared/pdfcolor.c +904 -0
- data/ext/Tioga/FigureMaker/shared/pdfcoords.c +518 -0
- data/ext/Tioga/FigureMaker/shared/pdffile.c +451 -0
- data/ext/Tioga/FigureMaker/shared/pdfimage.c +539 -0
- data/ext/Tioga/FigureMaker/shared/pdfpath.c +766 -0
- data/ext/Tioga/FigureMaker/shared/pdftext.c +710 -0
- data/ext/Tioga/FigureMaker/shared/texout.c +533 -0
- data/{split/Tioga → ext/Tioga/FigureMaker}/wrappers.c +5 -5
- data/{split/Tioga → ext/Tioga/FigureMaker}/wrappers.h +0 -0
- data/{split/Dtable → ext/includes}/defs.h +0 -0
- data/{split/Dtable → ext/includes}/namespace.h +0 -0
- data/{split/Dtable → ext/includes}/safe_double.h +0 -0
- data/{split → ext/includes}/symbols.c +0 -1
- data/{split/Dtable → ext/includes}/symbols.h +0 -0
- data/{split/Dtable/lib → lib/Dobjects}/Dtable_extras.rb +0 -0
- data/{split/Dvector/lib → lib/Dobjects}/Dvector_extras.rb +1 -0
- data/{split/Function/lib → lib/Dobjects}/Function_extras.rb +0 -0
- data/{split/Dvector/lib → lib/Dobjects}/Numeric_extras.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Arcs_and_Circles.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/ColorConstants.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Colorbars.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Colormaps.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Coordinate_Conversions.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Creating_Paths.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Doc.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Executive.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/FigMkr.rb +13 -70
- data/{split/Tioga/lib → lib/Tioga}/FigureConstants.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Figures_and_Plots.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Images.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Legends.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/MarkerConstants.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Markers.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Page_Frame_Bounds.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Rectangles.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Shading.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Special_Paths.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Strokes.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/TeX_Text.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/TexPreamble.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Titles_and_Labels.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Transparency.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Using_Paths.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/Utils.rb +74 -0
- data/{split/Tioga/lib → lib/Tioga}/X_and_Y_Axes.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/irb_tioga.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/maker.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/tioga.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/tioga_ui.rb +0 -0
- data/{split/Tioga/lib → lib/Tioga}/tioga_ui_cmds.rb +0 -0
- data/tests/Icon_Test.pdf +0 -0
- data/tests/benchmark_dvector_reads.rb +20 -42
- data/tests/tc_Dvector.rb +45 -4
- data/tests/tc_Flate.rb +4 -5
- data/tests/tc_Function.rb +79 -0
- data/tests/vg.log +1453 -0
- metadata +141 -122
- data/split/Dtable/extconf.rb +0 -4
- data/split/Dvector/defs.h +0 -39
- data/split/Dvector/extconf.rb +0 -4
- data/split/Dvector/include/dvector.h +0 -77
- data/split/Dvector/namespace.h +0 -59
- data/split/Dvector/safe_double.h +0 -104
- data/split/Dvector/symbols.h +0 -52
- data/split/Flate/defs.h +0 -39
- data/split/Flate/extconf.rb +0 -19
- data/split/Flate/namespace.h +0 -59
- data/split/Flate/safe_double.h +0 -104
- data/split/Flate/symbols.h +0 -52
- data/split/Function/defs.h +0 -39
- data/split/Function/dvector.h +0 -77
- data/split/Function/extconf.rb +0 -4
- data/split/Function/namespace.h +0 -59
- data/split/Function/safe_double.h +0 -104
- data/split/Function/symbols.h +0 -52
- data/split/Tioga/defs.h +0 -39
- data/split/Tioga/dtable.h +0 -35
- data/split/Tioga/dvector.h +0 -77
- data/split/Tioga/extconf.rb +0 -4
- data/split/Tioga/flate.h +0 -98
- data/split/Tioga/mk_tioga_sty.rb +0 -53
- data/split/Tioga/namespace.h +0 -59
- data/split/Tioga/safe_double.h +0 -104
- data/split/Tioga/symbols.h +0 -52
- data/split/defs.h +0 -39
- data/split/extconf.rb +0 -125
- data/split/mkmf2.rb +0 -1623
- data/split/namespace.h +0 -59
- data/split/safe_double.h +0 -104
- 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
|
-
|
|
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:
|
|
19
|
+
bindir: bin
|
|
13
20
|
cert_chain: []
|
|
14
21
|
|
|
15
|
-
date:
|
|
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
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
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
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
111
|
-
-
|
|
112
|
-
-
|
|
113
|
-
-
|
|
114
|
-
-
|
|
115
|
-
-
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
-
|
|
127
|
-
-
|
|
128
|
-
-
|
|
129
|
-
-
|
|
130
|
-
-
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
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.
|
|
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
|
-
|
|
195
|
+
test_files: []
|
|
196
|
+
|
data/split/Dtable/extconf.rb
DELETED
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
|
data/split/Dvector/extconf.rb
DELETED
|
@@ -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
|
-
|
data/split/Dvector/namespace.h
DELETED
|
@@ -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
|