ruby-dcl 1.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (319) hide show
  1. data/ChangeLog +321 -0
  2. data/GenWrapper/Makefile +14 -0
  3. data/GenWrapper/cproto2init.rb +41 -0
  4. data/GenWrapper/dcl_narrayed_funcs.rb +181 -0
  5. data/GenWrapper/dcl_rb_footing +29 -0
  6. data/GenWrapper/dcl_rb_heading +129 -0
  7. data/GenWrapper/def.rb +20 -0
  8. data/GenWrapper/elim_ary_size.rb +398 -0
  9. data/GenWrapper/etc/Mk_proto +375 -0
  10. data/GenWrapper/etc/dcl_gen +13 -0
  11. data/GenWrapper/etc/p_header +63 -0
  12. data/GenWrapper/etc/p_init +410 -0
  13. data/GenWrapper/pparse.rb +137 -0
  14. data/GenWrapper/proto/Makefile +35 -0
  15. data/GenWrapper/proto/grph1_00 +17 -0
  16. data/GenWrapper/proto/grph1_csgi.fp +27 -0
  17. data/GenWrapper/proto/grph1_scpack.fp +442 -0
  18. data/GenWrapper/proto/grph1_sgpack.fp +1406 -0
  19. data/GenWrapper/proto/grph1_slpack.fp +316 -0
  20. data/GenWrapper/proto/grph1_stpack.fp +411 -0
  21. data/GenWrapper/proto/grph1_swpack.fp +746 -0
  22. data/GenWrapper/proto/grph2_00 +16 -0
  23. data/GenWrapper/proto/grph2_grpack.fp +139 -0
  24. data/GenWrapper/proto/grph2_ucpack.fp +522 -0
  25. data/GenWrapper/proto/grph2_udpack.fp +692 -0
  26. data/GenWrapper/proto/grph2_uepack.fp +601 -0
  27. data/GenWrapper/proto/grph2_ugpack.fp +436 -0
  28. data/GenWrapper/proto/grph2_uhpack.fp +246 -0
  29. data/GenWrapper/proto/grph2_ulpack.fp +516 -0
  30. data/GenWrapper/proto/grph2_umpack.fp +676 -0
  31. data/GenWrapper/proto/grph2_uspack.fp +989 -0
  32. data/GenWrapper/proto/grph2_uupack.fp +663 -0
  33. data/GenWrapper/proto/grph2_uvpack.fp +246 -0
  34. data/GenWrapper/proto/grph2_uwpack.fp +203 -0
  35. data/GenWrapper/proto/grph2_uxpack.fp +295 -0
  36. data/GenWrapper/proto/grph2_uypack.fp +295 -0
  37. data/GenWrapper/proto/grph2_uzpack.fp +574 -0
  38. data/GenWrapper/proto/math1_00 +12 -0
  39. data/GenWrapper/proto/math1_blklib.fp +58 -0
  40. data/GenWrapper/proto/math1_chrlib.fp +83 -0
  41. data/GenWrapper/proto/math1_fnclib.fp +79 -0
  42. data/GenWrapper/proto/math1_gnmlib.fp +118 -0
  43. data/GenWrapper/proto/math1_gt2dlib.fp +144 -0
  44. data/GenWrapper/proto/math1_ifalib.fp +123 -0
  45. data/GenWrapper/proto/math1_indxlib.fp +222 -0
  46. data/GenWrapper/proto/math1_intlib.fp +46 -0
  47. data/GenWrapper/proto/math1_lrllib.fp +276 -0
  48. data/GenWrapper/proto/math1_maplib.fp +24 -0
  49. data/GenWrapper/proto/math1_oslib.fp +28 -0
  50. data/GenWrapper/proto/math1_rfalib.fp +420 -0
  51. data/GenWrapper/proto/math1_rfblib.fp +51 -0
  52. data/GenWrapper/proto/math1_sublib.fp +60 -0
  53. data/GenWrapper/proto/math1_syslib.fp +767 -0
  54. data/GenWrapper/proto/math1_vialib.fp +339 -0
  55. data/GenWrapper/proto/math1_viblib.fp +264 -0
  56. data/GenWrapper/proto/math1_vralib.fp +339 -0
  57. data/GenWrapper/proto/math1_vrblib.fp +264 -0
  58. data/GenWrapper/proto/math1_xfclib.fp +68 -0
  59. data/GenWrapper/proto/math2_00 +12 -0
  60. data/GenWrapper/proto/math2_fftlib.fp +803 -0
  61. data/GenWrapper/proto/math2_intrlib.fp +32 -0
  62. data/GenWrapper/proto/math2_odelib.fp_notused +568 -0
  63. data/GenWrapper/proto/math2_rnmlib.fp +54 -0
  64. data/GenWrapper/proto/math2_shtlib.fp +1292 -0
  65. data/GenWrapper/proto/math2_shtlib.fp_old +1294 -0
  66. data/GenWrapper/proto/math2_vstlib.fp +84 -0
  67. data/GenWrapper/proto/misc1_00 +17 -0
  68. data/GenWrapper/proto/misc1_chnlib.fp +47 -0
  69. data/GenWrapper/proto/misc1_datelib.fp +352 -0
  70. data/GenWrapper/proto/misc1_fmtlib.fp +19 -0
  71. data/GenWrapper/proto/misc1_misclib.fp +26 -0
  72. data/GenWrapper/proto/misc1_randlib.fp +36 -0
  73. data/GenWrapper/proto/misc1_timelib.fp +151 -0
  74. data/GenWrapper/proto2c.rb +13 -0
  75. data/GenWrapper/prototype.rb +209 -0
  76. data/GenWrapper/util.rb +9 -0
  77. data/GenWrapper/variable.rb +671 -0
  78. data/README +29 -0
  79. data/Rakefile +44 -0
  80. data/ToDo +2 -0
  81. data/dcl_cary2obj.c +354 -0
  82. data/dcl_narrayed_funcs.c +518 -0
  83. data/dcl_obj2cary.c +512 -0
  84. data/dcl_rubydcloriginal.c +129 -0
  85. data/demo/gokuraku/hop/hop.rb +26 -0
  86. data/demo/gokuraku/jump/jump1.rb +64 -0
  87. data/demo/gokuraku/jump/jump2.rb +50 -0
  88. data/demo/gokuraku/layout/lay1.rb +46 -0
  89. data/demo/gokuraku/layout/lay2.rb +44 -0
  90. data/demo/gokuraku/step/step0.rb +34 -0
  91. data/demo/gokuraku/step/step1.rb +84 -0
  92. data/demo/gokuraku/step/step2.rb +62 -0
  93. data/demo/gokuraku/u1d/u1d1.rb +37 -0
  94. data/demo/gokuraku/u1d/u1d2.rb +50 -0
  95. data/demo/gokuraku/u2d/u2d1.rb +46 -0
  96. data/demo/gokuraku/u2d/u2d2.rb +49 -0
  97. data/demo/gokuraku/u2d/u2d3.rb +45 -0
  98. data/demo/gokuraku/u2d/u2d4.rb +61 -0
  99. data/demo/grph1/scpack/scpkt2.rb +40 -0
  100. data/demo/grph1/scpack/scpkt3.rb +102 -0
  101. data/demo/grph1/scpack/scpkt6.rb +84 -0
  102. data/demo/grph1/scpack/scpkt7.rb +59 -0
  103. data/demo/grph1/scpack/scpkt8.rb +60 -0
  104. data/demo/grph1/scpack/t810630.dat +296 -0
  105. data/demo/grph1/scpack/t811231.dat +296 -0
  106. data/demo/grph1/sgpack/sgfont.rb +52 -0
  107. data/demo/grph1/sgpack/sgfonz.rb +53 -0
  108. data/demo/grph1/sgpack/sgksx1.rb +44 -0
  109. data/demo/grph1/sgpack/sgksx2.rb +90 -0
  110. data/demo/grph1/sgpack/sgksx3.rb +75 -0
  111. data/demo/grph1/sgpack/sglidx.rb +40 -0
  112. data/demo/grph1/sgpack/sgltyp.rb +48 -0
  113. data/demo/grph1/sgpack/sgpk01.rb +39 -0
  114. data/demo/grph1/sgpack/sgpk02.rb +79 -0
  115. data/demo/grph1/sgpack/sgpk03.rb +107 -0
  116. data/demo/grph1/sgpack/sgpk04.rb +86 -0
  117. data/demo/grph1/sgpack/sgpk05.rb +66 -0
  118. data/demo/grph1/sgpack/sgpk06.rb +91 -0
  119. data/demo/grph1/sgpack/sgpk07.rb +66 -0
  120. data/demo/grph1/sgpack/sgpk08.rb +67 -0
  121. data/demo/grph1/sgpack/sgpk09.rb +61 -0
  122. data/demo/grph1/sgpack/sgpk10.rb +58 -0
  123. data/demo/grph1/sgpack/sgtclr.rb +59 -0
  124. data/demo/grph1/sgpack/sgtone.rb +70 -0
  125. data/demo/grph1/sgpack/sgtonz.rb +66 -0
  126. data/demo/grph1/slpack/slpk01.rb +37 -0
  127. data/demo/grph1/slpack/slpk02.rb +29 -0
  128. data/demo/grph1/slpack/slpk03.rb +36 -0
  129. data/demo/grph1/slpack/slpk04.rb +36 -0
  130. data/demo/grph2/g2pack/g2pk01.rb +78 -0
  131. data/demo/grph2/g2pack/g2pk02.rb +75 -0
  132. data/demo/grph2/grpack/grpk01.rb +65 -0
  133. data/demo/grph2/ucpack/ucpk01.rb +95 -0
  134. data/demo/grph2/ucpack/ucpk02.rb +95 -0
  135. data/demo/grph2/udegpk/u2df01.rb +50 -0
  136. data/demo/grph2/udegpk/u2df02.rb +76 -0
  137. data/demo/grph2/udegpk/u2df03.rb +80 -0
  138. data/demo/grph2/udegpk/u2df04.rb +52 -0
  139. data/demo/grph2/udegpk/u2df05.rb +70 -0
  140. data/demo/grph2/udegpk/u2df06.rb +59 -0
  141. data/demo/grph2/udegpk/u2df07.rb +68 -0
  142. data/demo/grph2/udegpk/u2df08.rb +91 -0
  143. data/demo/grph2/udegpk/u2df09b.rb +88 -0
  144. data/demo/grph2/udegpk/u2df09c.rb +89 -0
  145. data/demo/grph2/udegpk/u2df09e.rb +88 -0
  146. data/demo/grph2/udegpk/u2df09f.rb +89 -0
  147. data/demo/grph2/ulpack/ulpk01.rb +111 -0
  148. data/demo/grph2/ulpack/ulpk01n.rb +111 -0
  149. data/demo/grph2/ulpack/ulpk02.rb +111 -0
  150. data/demo/grph2/ulpack/ulpk02n.rb +111 -0
  151. data/demo/grph2/umpack/t811231.dat +296 -0
  152. data/demo/grph2/umpack/test01.rb +69 -0
  153. data/demo/grph2/umpack/test02.rb +64 -0
  154. data/demo/grph2/umpack/test03.rb +84 -0
  155. data/demo/grph2/umpack/test04.rb +54 -0
  156. data/demo/grph2/umpack/test05.rb +85 -0
  157. data/demo/grph2/umpack/test06.rb +44 -0
  158. data/demo/grph2/umpack/test07.rb +43 -0
  159. data/demo/grph2/umpack/test08.rb +37 -0
  160. data/demo/grph2/umpack/test09.rb +86 -0
  161. data/demo/grph2/umpack/test10.rb +52 -0
  162. data/demo/grph2/umpack/umpk01.rb +65 -0
  163. data/demo/grph2/umpack/umpk02.rb +54 -0
  164. data/demo/grph2/umpack/umpk03.rb +46 -0
  165. data/demo/grph2/umpack/umpk04.rb +65 -0
  166. data/demo/grph2/umpack/umpk05.rb +84 -0
  167. data/demo/grph2/uspack/uspk01.rb +39 -0
  168. data/demo/grph2/uspack/uspk02.rb +47 -0
  169. data/demo/grph2/uspack/uspk03.rb +38 -0
  170. data/demo/grph2/uspack/uspk04.rb +64 -0
  171. data/demo/grph2/uspack/uspk05.rb +68 -0
  172. data/demo/grph2/uspack/uspk06.rb +43 -0
  173. data/demo/grph2/uspack/uspk07.rb +62 -0
  174. data/demo/grph2/uspack/uspk08.rb +46 -0
  175. data/demo/grph2/uspack/uspk09.rb +89 -0
  176. data/demo/grph2/uspack/uspk10.rb +48 -0
  177. data/demo/grph2/uspack/uspk11.rb +71 -0
  178. data/demo/grph2/uspack/uspk12.rb +51 -0
  179. data/demo/grph2/uupack/uupk01.rb +50 -0
  180. data/demo/grph2/uupack/uupk02.rb +74 -0
  181. data/demo/grph2/uupack/uupk03.rb +56 -0
  182. data/demo/grph2/uupack/uupk04.rb +84 -0
  183. data/demo/grph2/uupack/uupk05.rb +74 -0
  184. data/demo/grph2/uupack/uupk06.rb +77 -0
  185. data/demo/grph2/uupack/uupk07.rb +88 -0
  186. data/demo/grph2/uxyzpk/uxyz01.rb +38 -0
  187. data/demo/grph2/uxyzpk/uxyz02.rb +36 -0
  188. data/demo/grph2/uxyzpk/uxyz03.rb +37 -0
  189. data/demo/grph2/uxyzpk/uxyz04.rb +54 -0
  190. data/demo/grph2/uxyzpk/uxyz05.rb +41 -0
  191. data/demo/grph2/uxyzpk/uxyz06.rb +42 -0
  192. data/demo/grph2/uxyzpk/uxyz07.rb +38 -0
  193. data/demo/grph2/uxyzpk/uxyz08.rb +60 -0
  194. data/demo/grph2/uxyzpk/uxyz09.rb +52 -0
  195. data/demo/grph2/uxyzpk/uxyz10.rb +57 -0
  196. data/demo/grph2/ximage/MEMO +23 -0
  197. data/demo/grph2/ximage/tomsclm.dat +1344 -0
  198. data/demo/grph2/ximage/ximg01.rb +145 -0
  199. data/demo/math1/gt2dlib/gt2d01.rb +33 -0
  200. data/demo/math2/fftlib/fftl01.rb +28 -0
  201. data/demo/math2/fftlib/fftl02.rb +224 -0
  202. data/demo/math2/intrlib/intr01.rb +22 -0
  203. data/demo/math2/rnmlib/rnml01.rb +21 -0
  204. data/demo/math2/vstlib/vstl01.rb +29 -0
  205. data/demo/math2/vstlib/vstl02.rb +38 -0
  206. data/demo/rakuraku/color/color1.rb +61 -0
  207. data/demo/rakuraku/color/color2.rb +57 -0
  208. data/demo/rakuraku/color/color3.rb +81 -0
  209. data/demo/rakuraku/kihon/kihon1.rb +39 -0
  210. data/demo/rakuraku/kihon/kihon2.rb +56 -0
  211. data/demo/rakuraku/kihon/kihon3.rb +57 -0
  212. data/demo/rakuraku/kihon/kihon4.rb +70 -0
  213. data/demo/rakuraku/kihon/kihon5.rb +56 -0
  214. data/demo/rakuraku/kihon/kihon6.rb +40 -0
  215. data/demo/rakuraku/kihon/kihon7.rb +98 -0
  216. data/demo/rakuraku/kihon/kihon8.rb +93 -0
  217. data/demo/rakuraku/kihon/kihon9.rb +77 -0
  218. data/demo/rakuraku/kihon/kihona.rb +123 -0
  219. data/demo/rakuraku/kihon/kihonb.rb +73 -0
  220. data/demo/rakuraku/kihon/kihonc.rb +110 -0
  221. data/demo/rakuraku/layout/lay1.rb +29 -0
  222. data/demo/rakuraku/layout/lay2.rb +28 -0
  223. data/demo/rakuraku/layout/lay3.rb +29 -0
  224. data/demo/rakuraku/map3d/map3d1.rb +68 -0
  225. data/demo/rakuraku/map3d/map3d2.rb +67 -0
  226. data/demo/rakuraku/map3d/map3d3.rb +66 -0
  227. data/demo/rakuraku/map3d/map3d4.rb +107 -0
  228. data/demo/rakuraku/map3d/map3d5.rb +118 -0
  229. data/demo/rakuraku/map3d/map3d6.rb +96 -0
  230. data/demo/rakuraku/map3d/map3d7.rb +98 -0
  231. data/demo/rakuraku/miss/miss1.rb +76 -0
  232. data/demo/rakuraku/miss/miss2.rb +60 -0
  233. data/demo/rakuraku/quick/quick1.rb +35 -0
  234. data/demo/rakuraku/quick/quick2.rb +33 -0
  235. data/demo/rakuraku/quick/quick3.rb +46 -0
  236. data/demo/rakuraku/quick/quick4.rb +47 -0
  237. data/demo/rakuraku/quick/quick5.rb +46 -0
  238. data/demo/rakuraku/u2d/u2d1.rb +50 -0
  239. data/demo/rakuraku/u2d/u2d2.rb +51 -0
  240. data/demo/rakuraku/u2d/u2d3.rb +70 -0
  241. data/demo/rakuraku/u2d/u2d4.rb +59 -0
  242. data/demo/rakuraku/u2d/u2d5.rb +61 -0
  243. data/demo/rakuraku/u2d/u2d6.rb +57 -0
  244. data/demo/rakuraku/u2d/u2d7.rb +103 -0
  245. data/demo/rakuraku/uspack/uspac1.rb +35 -0
  246. data/demo/rakuraku/uspack/uspac2.rb +66 -0
  247. data/demo/rakuraku/uspack/uspac3.rb +37 -0
  248. data/demo/rakuraku/uspack/uspac4.rb +49 -0
  249. data/demo/rakuraku/uxyz/uxyz1.rb +37 -0
  250. data/demo/rakuraku/uxyz/uxyz2.rb +35 -0
  251. data/demo/rakuraku/uxyz/uxyz3.rb +38 -0
  252. data/demo/rakuraku/uxyz/uxyz4.rb +36 -0
  253. data/demo/rakuraku/uxyz/uxyz5.rb +57 -0
  254. data/demo/rakuraku/uxyz/uxyz6.rb +43 -0
  255. data/demo/rakuraku/uxyz/uxyz7.rb +39 -0
  256. data/demo/rakuraku/uxyz/uxyz8.rb +56 -0
  257. data/demo/rubydcloriginal/uemrkz1.rb +37 -0
  258. data/dummy.c +9 -0
  259. data/extconf.rb +133 -0
  260. data/grph1_csgi.c +119 -0
  261. data/grph1_scpack.c +1388 -0
  262. data/grph1_sgpack.c +3876 -0
  263. data/grph1_slpack.c +432 -0
  264. data/grph1_stpack.c +1044 -0
  265. data/grph1_swpack.c +1922 -0
  266. data/grph1_zgpack.c.org +141 -0
  267. data/grph2_grpack.c +368 -0
  268. data/grph2_ucpack.c +1232 -0
  269. data/grph2_udpack.c +1404 -0
  270. data/grph2_uepack.c +1443 -0
  271. data/grph2_ugpack.c +1073 -0
  272. data/grph2_uhpack.c +943 -0
  273. data/grph2_ulpack.c +1304 -0
  274. data/grph2_umpack.c +1540 -0
  275. data/grph2_uspack.c +2481 -0
  276. data/grph2_uupack.c +1689 -0
  277. data/grph2_uvpack.c +943 -0
  278. data/grph2_uwpack.c +552 -0
  279. data/grph2_uxpack.c +555 -0
  280. data/grph2_uypack.c +555 -0
  281. data/grph2_uzpack.c +1455 -0
  282. data/init.c.default +187 -0
  283. data/init.c.gtk +189 -0
  284. data/lib/dcl.rb +5084 -0
  285. data/math1_blklib.c +227 -0
  286. data/math1_chrlib.c +239 -0
  287. data/math1_fnclib.c +254 -0
  288. data/math1_gnmlib.c +356 -0
  289. data/math1_gt2dlib.c +514 -0
  290. data/math1_ifalib.c +427 -0
  291. data/math1_indxlib.c +709 -0
  292. data/math1_intlib.c +167 -0
  293. data/math1_lrllib.c +817 -0
  294. data/math1_maplib.c +172 -0
  295. data/math1_oslib.c +111 -0
  296. data/math1_rfalib.c +1417 -0
  297. data/math1_rfblib.c +232 -0
  298. data/math1_sublib.c +221 -0
  299. data/math1_syslib.c +2025 -0
  300. data/math1_vialib.c +1156 -0
  301. data/math1_viblib.c +1027 -0
  302. data/math1_vralib.c +1156 -0
  303. data/math1_vrblib.c +1027 -0
  304. data/math1_xfclib.c +142 -0
  305. data/math2_fftlib.c +833 -0
  306. data/math2_intrlib.c +138 -0
  307. data/math2_rnmlib.c +226 -0
  308. data/math2_shtlib.c +1568 -0
  309. data/math2_vstlib.c +366 -0
  310. data/misc1_chnlib.c +179 -0
  311. data/misc1_datelib.c +953 -0
  312. data/misc1_fmtlib.c +99 -0
  313. data/misc1_misclib.c +118 -0
  314. data/misc1_randlib.c +142 -0
  315. data/misc1_timelib.c +380 -0
  316. data/obsolete/README +2 -0
  317. data/obsolete/dcl_ext.html +112 -0
  318. data/obsolete/dcl_ext.rb +313 -0
  319. metadata +433 -0
data/math1_vialib.c ADDED
@@ -0,0 +1,1156 @@
1
+ /*
2
+ * $Id: p_header,v 1.2 2011-02-23 17:47:10 koshiro Exp $
3
+ */
4
+
5
+ #include <stdio.h>
6
+ #include "ruby.h"
7
+ #include "libtinyf2c.h"
8
+ #include "narray.h"
9
+
10
+ /* for compatibility with ruby 1.6 */
11
+ #ifndef StringValuePtr
12
+ #define StringValuePtr(s) STR2CSTR(s)
13
+ #endif
14
+
15
+ #define DFLT_SIZE 32
16
+
17
+ extern char *dcl_obj2ccharary(VALUE, int, int);
18
+ extern integer *dcl_obj2cintegerary(VALUE);
19
+ extern real *dcl_obj2crealary(VALUE);
20
+ extern complex *dcl_obj2ccomplexary(VALUE);
21
+ extern logical *dcl_obj2clogicalary(VALUE);
22
+
23
+ extern VALUE dcl_ccharary2obj(char *, int, int);
24
+ extern VALUE dcl_cintegerary2obj(integer *, int, int, int *);
25
+ extern VALUE dcl_crealary2obj(real *, int, int, int *);
26
+ extern VALUE dcl_ccomplexary2obj(complex *, int, char *);
27
+ extern VALUE dcl_clogicalary2obj(logical *, int, int, int *);
28
+
29
+ extern void dcl_freeccharary(char *);
30
+ extern void dcl_freecintegerary(integer *);
31
+ extern void dcl_freecrealary(real *);
32
+ extern void dcl_freeccomplexary(complex *);
33
+ extern void dcl_freeclogicalary(logical *);
34
+
35
+ /* for functions which return real */
36
+ /* fnclib */
37
+ extern real rd2r_(real *);
38
+ extern real rr2d_(real *);
39
+ extern real rexp_(real *, integer *, integer *);
40
+ extern real rfpi_(void);
41
+ extern real rmod_(real *, real *);
42
+ /* gnmlib */
43
+ extern real rgnlt_(real *);
44
+ extern real rgnle_(real *);
45
+ extern real rgngt_(real *);
46
+ extern real rgnge_(real *);
47
+ /* rfalib */
48
+ extern real rmax_(real *, integer *, integer *);
49
+ extern real rmin_(real *, integer *, integer *);
50
+ extern real rsum_(real *, integer *, integer *);
51
+ extern real rave_(real *, integer *, integer *);
52
+ extern real rvar_(real *, integer *, integer *);
53
+ extern real rstd_(real *, integer *, integer *);
54
+ extern real rrms_(real *, integer *, integer *);
55
+ extern real ramp_(real *, integer *, integer *);
56
+ /* rfblib */
57
+ extern real rprd_(real *, real *, integer *, integer *, integer *);
58
+ extern real rcov_(real *, real *, integer *, integer *, integer *);
59
+ extern real rcor_(real *, real *, integer *, integer *, integer *);
60
+
61
+
62
+ extern VALUE mDCL;
63
+
64
+ static VALUE
65
+ dcl_vifna(obj, ix, n, jx, jy, ifna)
66
+ VALUE obj, ix, n, jx, jy, ifna;
67
+ {
68
+ integer *i_ix;
69
+ integer *o_iy;
70
+ integer i_n;
71
+ integer i_jx;
72
+ integer i_jy;
73
+ integer i_ifna;
74
+ VALUE iy;
75
+
76
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
77
+ ix = rb_Array(ix);
78
+ }
79
+ /* if ((TYPE(ix) != T_ARRAY) &&
80
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
81
+ rb_raise(rb_eTypeError, "invalid type");
82
+ } -- no check since obj2c*ary will do that */
83
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
84
+ n = rb_funcall(n, rb_intern("to_i"), 0);
85
+ }
86
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
87
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
88
+ }
89
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
90
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
91
+ }
92
+ if ((TYPE(ifna) != T_BIGNUM) || (TYPE(ifna) != T_FIXNUM)) {
93
+ ifna = rb_funcall(ifna, rb_intern("to_i"), 0);
94
+ }
95
+
96
+ i_n = NUM2INT(n);
97
+ i_jx = NUM2INT(jx);
98
+ i_jy = NUM2INT(jy);
99
+ i_ifna = NUM2INT(ifna);
100
+ i_ix = dcl_obj2cintegerary(ix);
101
+
102
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
103
+
104
+ vifna_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ifna);
105
+
106
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
107
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
108
+ }
109
+
110
+ dcl_freecintegerary(i_ix);
111
+
112
+ return iy;
113
+
114
+ }
115
+
116
+ static VALUE
117
+ dcl_vifna0(obj, ix, n, jx, jy, ifna)
118
+ VALUE obj, ix, n, jx, jy, ifna;
119
+ {
120
+ integer *i_ix;
121
+ integer *o_iy;
122
+ integer i_n;
123
+ integer i_jx;
124
+ integer i_jy;
125
+ integer i_ifna;
126
+ VALUE iy;
127
+
128
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
129
+ ix = rb_Array(ix);
130
+ }
131
+ /* if ((TYPE(ix) != T_ARRAY) &&
132
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
133
+ rb_raise(rb_eTypeError, "invalid type");
134
+ } -- no check since obj2c*ary will do that */
135
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
136
+ n = rb_funcall(n, rb_intern("to_i"), 0);
137
+ }
138
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
139
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
140
+ }
141
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
142
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
143
+ }
144
+ if ((TYPE(ifna) != T_BIGNUM) || (TYPE(ifna) != T_FIXNUM)) {
145
+ ifna = rb_funcall(ifna, rb_intern("to_i"), 0);
146
+ }
147
+
148
+ i_n = NUM2INT(n);
149
+ i_jx = NUM2INT(jx);
150
+ i_jy = NUM2INT(jy);
151
+ i_ifna = NUM2INT(ifna);
152
+ i_ix = dcl_obj2cintegerary(ix);
153
+
154
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
155
+
156
+ vifna0_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ifna);
157
+
158
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
159
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
160
+ }
161
+
162
+ dcl_freecintegerary(i_ix);
163
+
164
+ return iy;
165
+
166
+ }
167
+
168
+ static VALUE
169
+ dcl_vifna1(obj, ix, n, jx, jy, ifna)
170
+ VALUE obj, ix, n, jx, jy, ifna;
171
+ {
172
+ integer *i_ix;
173
+ integer *o_iy;
174
+ integer i_n;
175
+ integer i_jx;
176
+ integer i_jy;
177
+ integer i_ifna;
178
+ VALUE iy;
179
+
180
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
181
+ ix = rb_Array(ix);
182
+ }
183
+ /* if ((TYPE(ix) != T_ARRAY) &&
184
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
185
+ rb_raise(rb_eTypeError, "invalid type");
186
+ } -- no check since obj2c*ary will do that */
187
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
188
+ n = rb_funcall(n, rb_intern("to_i"), 0);
189
+ }
190
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
191
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
192
+ }
193
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
194
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
195
+ }
196
+ if ((TYPE(ifna) != T_BIGNUM) || (TYPE(ifna) != T_FIXNUM)) {
197
+ ifna = rb_funcall(ifna, rb_intern("to_i"), 0);
198
+ }
199
+
200
+ i_n = NUM2INT(n);
201
+ i_jx = NUM2INT(jx);
202
+ i_jy = NUM2INT(jy);
203
+ i_ifna = NUM2INT(ifna);
204
+ i_ix = dcl_obj2cintegerary(ix);
205
+
206
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
207
+
208
+ vifna1_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ifna);
209
+
210
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
211
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
212
+ }
213
+
214
+ dcl_freecintegerary(i_ix);
215
+
216
+ return iy;
217
+
218
+ }
219
+
220
+ static VALUE
221
+ dcl_viinc(obj, ix, n, jx, jy, ii)
222
+ VALUE obj, ix, n, jx, jy, ii;
223
+ {
224
+ integer *i_ix;
225
+ integer *o_iy;
226
+ integer i_n;
227
+ integer i_jx;
228
+ integer i_jy;
229
+ integer i_ii;
230
+ VALUE iy;
231
+
232
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
233
+ ix = rb_Array(ix);
234
+ }
235
+ /* if ((TYPE(ix) != T_ARRAY) &&
236
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
237
+ rb_raise(rb_eTypeError, "invalid type");
238
+ } -- no check since obj2c*ary will do that */
239
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
240
+ n = rb_funcall(n, rb_intern("to_i"), 0);
241
+ }
242
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
243
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
244
+ }
245
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
246
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
247
+ }
248
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
249
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
250
+ }
251
+
252
+ i_n = NUM2INT(n);
253
+ i_jx = NUM2INT(jx);
254
+ i_jy = NUM2INT(jy);
255
+ i_ii = NUM2INT(ii);
256
+ i_ix = dcl_obj2cintegerary(ix);
257
+
258
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
259
+
260
+ viinc_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
261
+
262
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
263
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
264
+ }
265
+
266
+ dcl_freecintegerary(i_ix);
267
+
268
+ return iy;
269
+
270
+ }
271
+
272
+ static VALUE
273
+ dcl_viinc0(obj, ix, n, jx, jy, ii)
274
+ VALUE obj, ix, n, jx, jy, ii;
275
+ {
276
+ integer *i_ix;
277
+ integer *o_iy;
278
+ integer i_n;
279
+ integer i_jx;
280
+ integer i_jy;
281
+ integer i_ii;
282
+ VALUE iy;
283
+
284
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
285
+ ix = rb_Array(ix);
286
+ }
287
+ /* if ((TYPE(ix) != T_ARRAY) &&
288
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
289
+ rb_raise(rb_eTypeError, "invalid type");
290
+ } -- no check since obj2c*ary will do that */
291
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
292
+ n = rb_funcall(n, rb_intern("to_i"), 0);
293
+ }
294
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
295
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
296
+ }
297
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
298
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
299
+ }
300
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
301
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
302
+ }
303
+
304
+ i_n = NUM2INT(n);
305
+ i_jx = NUM2INT(jx);
306
+ i_jy = NUM2INT(jy);
307
+ i_ii = NUM2INT(ii);
308
+ i_ix = dcl_obj2cintegerary(ix);
309
+
310
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
311
+
312
+ viinc0_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
313
+
314
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
315
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
316
+ }
317
+
318
+ dcl_freecintegerary(i_ix);
319
+
320
+ return iy;
321
+
322
+ }
323
+
324
+ static VALUE
325
+ dcl_viinc1(obj, ix, n, jx, jy, ii)
326
+ VALUE obj, ix, n, jx, jy, ii;
327
+ {
328
+ integer *i_ix;
329
+ integer *o_iy;
330
+ integer i_n;
331
+ integer i_jx;
332
+ integer i_jy;
333
+ integer i_ii;
334
+ VALUE iy;
335
+
336
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
337
+ ix = rb_Array(ix);
338
+ }
339
+ /* if ((TYPE(ix) != T_ARRAY) &&
340
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
341
+ rb_raise(rb_eTypeError, "invalid type");
342
+ } -- no check since obj2c*ary will do that */
343
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
344
+ n = rb_funcall(n, rb_intern("to_i"), 0);
345
+ }
346
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
347
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
348
+ }
349
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
350
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
351
+ }
352
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
353
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
354
+ }
355
+
356
+ i_n = NUM2INT(n);
357
+ i_jx = NUM2INT(jx);
358
+ i_jy = NUM2INT(jy);
359
+ i_ii = NUM2INT(ii);
360
+ i_ix = dcl_obj2cintegerary(ix);
361
+
362
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
363
+
364
+ viinc1_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
365
+
366
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
367
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
368
+ }
369
+
370
+ dcl_freecintegerary(i_ix);
371
+
372
+ return iy;
373
+
374
+ }
375
+
376
+ static VALUE
377
+ dcl_vifct(obj, ix, n, jx, jy, ii)
378
+ VALUE obj, ix, n, jx, jy, ii;
379
+ {
380
+ integer *i_ix;
381
+ integer *o_iy;
382
+ integer i_n;
383
+ integer i_jx;
384
+ integer i_jy;
385
+ integer i_ii;
386
+ VALUE iy;
387
+
388
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
389
+ ix = rb_Array(ix);
390
+ }
391
+ /* if ((TYPE(ix) != T_ARRAY) &&
392
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
393
+ rb_raise(rb_eTypeError, "invalid type");
394
+ } -- no check since obj2c*ary will do that */
395
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
396
+ n = rb_funcall(n, rb_intern("to_i"), 0);
397
+ }
398
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
399
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
400
+ }
401
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
402
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
403
+ }
404
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
405
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
406
+ }
407
+
408
+ i_n = NUM2INT(n);
409
+ i_jx = NUM2INT(jx);
410
+ i_jy = NUM2INT(jy);
411
+ i_ii = NUM2INT(ii);
412
+ i_ix = dcl_obj2cintegerary(ix);
413
+
414
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
415
+
416
+ vifct_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
417
+
418
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
419
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
420
+ }
421
+
422
+ dcl_freecintegerary(i_ix);
423
+
424
+ return iy;
425
+
426
+ }
427
+
428
+ static VALUE
429
+ dcl_vifct0(obj, ix, n, jx, jy, ii)
430
+ VALUE obj, ix, n, jx, jy, ii;
431
+ {
432
+ integer *i_ix;
433
+ integer *o_iy;
434
+ integer i_n;
435
+ integer i_jx;
436
+ integer i_jy;
437
+ integer i_ii;
438
+ VALUE iy;
439
+
440
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
441
+ ix = rb_Array(ix);
442
+ }
443
+ /* if ((TYPE(ix) != T_ARRAY) &&
444
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
445
+ rb_raise(rb_eTypeError, "invalid type");
446
+ } -- no check since obj2c*ary will do that */
447
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
448
+ n = rb_funcall(n, rb_intern("to_i"), 0);
449
+ }
450
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
451
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
452
+ }
453
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
454
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
455
+ }
456
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
457
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
458
+ }
459
+
460
+ i_n = NUM2INT(n);
461
+ i_jx = NUM2INT(jx);
462
+ i_jy = NUM2INT(jy);
463
+ i_ii = NUM2INT(ii);
464
+ i_ix = dcl_obj2cintegerary(ix);
465
+
466
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
467
+
468
+ vifct0_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
469
+
470
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
471
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
472
+ }
473
+
474
+ dcl_freecintegerary(i_ix);
475
+
476
+ return iy;
477
+
478
+ }
479
+
480
+ static VALUE
481
+ dcl_vifct1(obj, ix, n, jx, jy, ii)
482
+ VALUE obj, ix, n, jx, jy, ii;
483
+ {
484
+ integer *i_ix;
485
+ integer *o_iy;
486
+ integer i_n;
487
+ integer i_jx;
488
+ integer i_jy;
489
+ integer i_ii;
490
+ VALUE iy;
491
+
492
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
493
+ ix = rb_Array(ix);
494
+ }
495
+ /* if ((TYPE(ix) != T_ARRAY) &&
496
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
497
+ rb_raise(rb_eTypeError, "invalid type");
498
+ } -- no check since obj2c*ary will do that */
499
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
500
+ n = rb_funcall(n, rb_intern("to_i"), 0);
501
+ }
502
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
503
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
504
+ }
505
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
506
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
507
+ }
508
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
509
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
510
+ }
511
+
512
+ i_n = NUM2INT(n);
513
+ i_jx = NUM2INT(jx);
514
+ i_jy = NUM2INT(jy);
515
+ i_ii = NUM2INT(ii);
516
+ i_ix = dcl_obj2cintegerary(ix);
517
+
518
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
519
+
520
+ vifct1_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
521
+
522
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
523
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
524
+ }
525
+
526
+ dcl_freecintegerary(i_ix);
527
+
528
+ return iy;
529
+
530
+ }
531
+
532
+ static VALUE
533
+ dcl_vicon(obj, ix, n, jx, jy, ii)
534
+ VALUE obj, ix, n, jx, jy, ii;
535
+ {
536
+ integer *i_ix;
537
+ integer *o_iy;
538
+ integer i_n;
539
+ integer i_jx;
540
+ integer i_jy;
541
+ integer i_ii;
542
+ VALUE iy;
543
+
544
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
545
+ ix = rb_Array(ix);
546
+ }
547
+ /* if ((TYPE(ix) != T_ARRAY) &&
548
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
549
+ rb_raise(rb_eTypeError, "invalid type");
550
+ } -- no check since obj2c*ary will do that */
551
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
552
+ n = rb_funcall(n, rb_intern("to_i"), 0);
553
+ }
554
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
555
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
556
+ }
557
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
558
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
559
+ }
560
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
561
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
562
+ }
563
+
564
+ i_n = NUM2INT(n);
565
+ i_jx = NUM2INT(jx);
566
+ i_jy = NUM2INT(jy);
567
+ i_ii = NUM2INT(ii);
568
+ i_ix = dcl_obj2cintegerary(ix);
569
+
570
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
571
+
572
+ vicon_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
573
+
574
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
575
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
576
+ }
577
+
578
+ dcl_freecintegerary(i_ix);
579
+
580
+ return iy;
581
+
582
+ }
583
+
584
+ static VALUE
585
+ dcl_vicon0(obj, ix, n, jx, jy, ii)
586
+ VALUE obj, ix, n, jx, jy, ii;
587
+ {
588
+ integer *i_ix;
589
+ integer *o_iy;
590
+ integer i_n;
591
+ integer i_jx;
592
+ integer i_jy;
593
+ integer i_ii;
594
+ VALUE iy;
595
+
596
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
597
+ ix = rb_Array(ix);
598
+ }
599
+ /* if ((TYPE(ix) != T_ARRAY) &&
600
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
601
+ rb_raise(rb_eTypeError, "invalid type");
602
+ } -- no check since obj2c*ary will do that */
603
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
604
+ n = rb_funcall(n, rb_intern("to_i"), 0);
605
+ }
606
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
607
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
608
+ }
609
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
610
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
611
+ }
612
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
613
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
614
+ }
615
+
616
+ i_n = NUM2INT(n);
617
+ i_jx = NUM2INT(jx);
618
+ i_jy = NUM2INT(jy);
619
+ i_ii = NUM2INT(ii);
620
+ i_ix = dcl_obj2cintegerary(ix);
621
+
622
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
623
+
624
+ vicon0_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
625
+
626
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
627
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
628
+ }
629
+
630
+ dcl_freecintegerary(i_ix);
631
+
632
+ return iy;
633
+
634
+ }
635
+
636
+ static VALUE
637
+ dcl_vicon1(obj, ix, n, jx, jy, ii)
638
+ VALUE obj, ix, n, jx, jy, ii;
639
+ {
640
+ integer *i_ix;
641
+ integer *o_iy;
642
+ integer i_n;
643
+ integer i_jx;
644
+ integer i_jy;
645
+ integer i_ii;
646
+ VALUE iy;
647
+
648
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
649
+ ix = rb_Array(ix);
650
+ }
651
+ /* if ((TYPE(ix) != T_ARRAY) &&
652
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
653
+ rb_raise(rb_eTypeError, "invalid type");
654
+ } -- no check since obj2c*ary will do that */
655
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
656
+ n = rb_funcall(n, rb_intern("to_i"), 0);
657
+ }
658
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
659
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
660
+ }
661
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
662
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
663
+ }
664
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
665
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
666
+ }
667
+
668
+ i_n = NUM2INT(n);
669
+ i_jx = NUM2INT(jx);
670
+ i_jy = NUM2INT(jy);
671
+ i_ii = NUM2INT(ii);
672
+ i_ix = dcl_obj2cintegerary(ix);
673
+
674
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
675
+
676
+ vicon1_(i_ix, o_iy, &i_n, &i_jx, &i_jy, &i_ii);
677
+
678
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
679
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
680
+ }
681
+
682
+ dcl_freecintegerary(i_ix);
683
+
684
+ return iy;
685
+
686
+ }
687
+
688
+ static VALUE
689
+ dcl_viset(obj, ix, n, jx, jy)
690
+ VALUE obj, ix, n, jx, jy;
691
+ {
692
+ integer *i_ix;
693
+ integer *o_iy;
694
+ integer i_n;
695
+ integer i_jx;
696
+ integer i_jy;
697
+ VALUE iy;
698
+
699
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
700
+ ix = rb_Array(ix);
701
+ }
702
+ /* if ((TYPE(ix) != T_ARRAY) &&
703
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
704
+ rb_raise(rb_eTypeError, "invalid type");
705
+ } -- no check since obj2c*ary will do that */
706
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
707
+ n = rb_funcall(n, rb_intern("to_i"), 0);
708
+ }
709
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
710
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
711
+ }
712
+ if ((TYPE(jy) != T_BIGNUM) || (TYPE(jy) != T_FIXNUM)) {
713
+ jy = rb_funcall(jy, rb_intern("to_i"), 0);
714
+ }
715
+
716
+ i_n = NUM2INT(n);
717
+ i_jx = NUM2INT(jx);
718
+ i_jy = NUM2INT(jy);
719
+ i_ix = dcl_obj2cintegerary(ix);
720
+
721
+ o_iy= ALLOCA_N(integer, i_jy*(i_n-1)+1);
722
+
723
+ viset_(i_ix, o_iy, &i_n, &i_jx, &i_jy);
724
+
725
+ {int array_shape[1] = {i_jy*(i_n-1)+1};
726
+ iy = dcl_cintegerary2obj(o_iy, i_jy*(i_n-1)+1, 1, array_shape);
727
+ }
728
+
729
+ dcl_freecintegerary(i_ix);
730
+
731
+ return iy;
732
+
733
+ }
734
+
735
+ static VALUE
736
+ dcl_iadd(obj, ix, n, jx, ii)
737
+ VALUE obj, ix, n, jx, ii;
738
+ {
739
+ integer *io_ix;
740
+ integer i_n;
741
+ integer i_jx;
742
+ integer i_ii;
743
+
744
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
745
+ ix = rb_Array(ix);
746
+ }
747
+ /* if ((TYPE(ix) != T_ARRAY) &&
748
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
749
+ rb_raise(rb_eTypeError, "invalid type");
750
+ } -- no check since obj2c*ary will do that */
751
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
752
+ n = rb_funcall(n, rb_intern("to_i"), 0);
753
+ }
754
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
755
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
756
+ }
757
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
758
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
759
+ }
760
+
761
+ i_n = NUM2INT(n);
762
+ i_jx = NUM2INT(jx);
763
+ i_ii = NUM2INT(ii);
764
+ io_ix = dcl_obj2cintegerary(ix);
765
+
766
+
767
+ iadd_(io_ix, &i_n, &i_jx, &i_ii);
768
+
769
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
770
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
771
+ }
772
+
773
+ dcl_freecintegerary(io_ix);
774
+
775
+ return ix;
776
+
777
+ }
778
+
779
+ static VALUE
780
+ dcl_iadd0(obj, ix, n, jx, ii)
781
+ VALUE obj, ix, n, jx, ii;
782
+ {
783
+ integer *io_ix;
784
+ integer i_n;
785
+ integer i_jx;
786
+ integer i_ii;
787
+
788
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
789
+ ix = rb_Array(ix);
790
+ }
791
+ /* if ((TYPE(ix) != T_ARRAY) &&
792
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
793
+ rb_raise(rb_eTypeError, "invalid type");
794
+ } -- no check since obj2c*ary will do that */
795
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
796
+ n = rb_funcall(n, rb_intern("to_i"), 0);
797
+ }
798
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
799
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
800
+ }
801
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
802
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
803
+ }
804
+
805
+ i_n = NUM2INT(n);
806
+ i_jx = NUM2INT(jx);
807
+ i_ii = NUM2INT(ii);
808
+ io_ix = dcl_obj2cintegerary(ix);
809
+
810
+
811
+ iadd0_(io_ix, &i_n, &i_jx, &i_ii);
812
+
813
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
814
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
815
+ }
816
+
817
+ dcl_freecintegerary(io_ix);
818
+
819
+ return ix;
820
+
821
+ }
822
+
823
+ static VALUE
824
+ dcl_iadd1(obj, ix, n, jx, ii)
825
+ VALUE obj, ix, n, jx, ii;
826
+ {
827
+ integer *io_ix;
828
+ integer i_n;
829
+ integer i_jx;
830
+ integer i_ii;
831
+
832
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
833
+ ix = rb_Array(ix);
834
+ }
835
+ /* if ((TYPE(ix) != T_ARRAY) &&
836
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
837
+ rb_raise(rb_eTypeError, "invalid type");
838
+ } -- no check since obj2c*ary will do that */
839
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
840
+ n = rb_funcall(n, rb_intern("to_i"), 0);
841
+ }
842
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
843
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
844
+ }
845
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
846
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
847
+ }
848
+
849
+ i_n = NUM2INT(n);
850
+ i_jx = NUM2INT(jx);
851
+ i_ii = NUM2INT(ii);
852
+ io_ix = dcl_obj2cintegerary(ix);
853
+
854
+
855
+ iadd1_(io_ix, &i_n, &i_jx, &i_ii);
856
+
857
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
858
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
859
+ }
860
+
861
+ dcl_freecintegerary(io_ix);
862
+
863
+ return ix;
864
+
865
+ }
866
+
867
+ static VALUE
868
+ dcl_imlt(obj, ix, n, jx, ii)
869
+ VALUE obj, ix, n, jx, ii;
870
+ {
871
+ integer *io_ix;
872
+ integer i_n;
873
+ integer i_jx;
874
+ integer i_ii;
875
+
876
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
877
+ ix = rb_Array(ix);
878
+ }
879
+ /* if ((TYPE(ix) != T_ARRAY) &&
880
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
881
+ rb_raise(rb_eTypeError, "invalid type");
882
+ } -- no check since obj2c*ary will do that */
883
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
884
+ n = rb_funcall(n, rb_intern("to_i"), 0);
885
+ }
886
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
887
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
888
+ }
889
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
890
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
891
+ }
892
+
893
+ i_n = NUM2INT(n);
894
+ i_jx = NUM2INT(jx);
895
+ i_ii = NUM2INT(ii);
896
+ io_ix = dcl_obj2cintegerary(ix);
897
+
898
+
899
+ imlt_(io_ix, &i_n, &i_jx, &i_ii);
900
+
901
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
902
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
903
+ }
904
+
905
+ dcl_freecintegerary(io_ix);
906
+
907
+ return ix;
908
+
909
+ }
910
+
911
+ static VALUE
912
+ dcl_imlt0(obj, ix, n, jx, ii)
913
+ VALUE obj, ix, n, jx, ii;
914
+ {
915
+ integer *io_ix;
916
+ integer i_n;
917
+ integer i_jx;
918
+ integer i_ii;
919
+
920
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
921
+ ix = rb_Array(ix);
922
+ }
923
+ /* if ((TYPE(ix) != T_ARRAY) &&
924
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
925
+ rb_raise(rb_eTypeError, "invalid type");
926
+ } -- no check since obj2c*ary will do that */
927
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
928
+ n = rb_funcall(n, rb_intern("to_i"), 0);
929
+ }
930
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
931
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
932
+ }
933
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
934
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
935
+ }
936
+
937
+ i_n = NUM2INT(n);
938
+ i_jx = NUM2INT(jx);
939
+ i_ii = NUM2INT(ii);
940
+ io_ix = dcl_obj2cintegerary(ix);
941
+
942
+
943
+ imlt0_(io_ix, &i_n, &i_jx, &i_ii);
944
+
945
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
946
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
947
+ }
948
+
949
+ dcl_freecintegerary(io_ix);
950
+
951
+ return ix;
952
+
953
+ }
954
+
955
+ static VALUE
956
+ dcl_imlt1(obj, ix, n, jx, ii)
957
+ VALUE obj, ix, n, jx, ii;
958
+ {
959
+ integer *io_ix;
960
+ integer i_n;
961
+ integer i_jx;
962
+ integer i_ii;
963
+
964
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
965
+ ix = rb_Array(ix);
966
+ }
967
+ /* if ((TYPE(ix) != T_ARRAY) &&
968
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
969
+ rb_raise(rb_eTypeError, "invalid type");
970
+ } -- no check since obj2c*ary will do that */
971
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
972
+ n = rb_funcall(n, rb_intern("to_i"), 0);
973
+ }
974
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
975
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
976
+ }
977
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
978
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
979
+ }
980
+
981
+ i_n = NUM2INT(n);
982
+ i_jx = NUM2INT(jx);
983
+ i_ii = NUM2INT(ii);
984
+ io_ix = dcl_obj2cintegerary(ix);
985
+
986
+
987
+ imlt1_(io_ix, &i_n, &i_jx, &i_ii);
988
+
989
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
990
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
991
+ }
992
+
993
+ dcl_freecintegerary(io_ix);
994
+
995
+ return ix;
996
+
997
+ }
998
+
999
+ static VALUE
1000
+ dcl_iset(obj, ix, n, jx, ii)
1001
+ VALUE obj, ix, n, jx, ii;
1002
+ {
1003
+ integer *io_ix;
1004
+ integer i_n;
1005
+ integer i_jx;
1006
+ integer i_ii;
1007
+
1008
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
1009
+ ix = rb_Array(ix);
1010
+ }
1011
+ /* if ((TYPE(ix) != T_ARRAY) &&
1012
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
1013
+ rb_raise(rb_eTypeError, "invalid type");
1014
+ } -- no check since obj2c*ary will do that */
1015
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
1016
+ n = rb_funcall(n, rb_intern("to_i"), 0);
1017
+ }
1018
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
1019
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
1020
+ }
1021
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
1022
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
1023
+ }
1024
+
1025
+ i_n = NUM2INT(n);
1026
+ i_jx = NUM2INT(jx);
1027
+ i_ii = NUM2INT(ii);
1028
+ io_ix = dcl_obj2cintegerary(ix);
1029
+
1030
+
1031
+ iset_(io_ix, &i_n, &i_jx, &i_ii);
1032
+
1033
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
1034
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
1035
+ }
1036
+
1037
+ dcl_freecintegerary(io_ix);
1038
+
1039
+ return ix;
1040
+
1041
+ }
1042
+
1043
+ static VALUE
1044
+ dcl_iset0(obj, ix, n, jx, ii)
1045
+ VALUE obj, ix, n, jx, ii;
1046
+ {
1047
+ integer *io_ix;
1048
+ integer i_n;
1049
+ integer i_jx;
1050
+ integer i_ii;
1051
+
1052
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
1053
+ ix = rb_Array(ix);
1054
+ }
1055
+ /* if ((TYPE(ix) != T_ARRAY) &&
1056
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
1057
+ rb_raise(rb_eTypeError, "invalid type");
1058
+ } -- no check since obj2c*ary will do that */
1059
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
1060
+ n = rb_funcall(n, rb_intern("to_i"), 0);
1061
+ }
1062
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
1063
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
1064
+ }
1065
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
1066
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
1067
+ }
1068
+
1069
+ i_n = NUM2INT(n);
1070
+ i_jx = NUM2INT(jx);
1071
+ i_ii = NUM2INT(ii);
1072
+ io_ix = dcl_obj2cintegerary(ix);
1073
+
1074
+
1075
+ iset0_(io_ix, &i_n, &i_jx, &i_ii);
1076
+
1077
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
1078
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
1079
+ }
1080
+
1081
+ dcl_freecintegerary(io_ix);
1082
+
1083
+ return ix;
1084
+
1085
+ }
1086
+
1087
+ static VALUE
1088
+ dcl_iset1(obj, ix, n, jx, ii)
1089
+ VALUE obj, ix, n, jx, ii;
1090
+ {
1091
+ integer *io_ix;
1092
+ integer i_n;
1093
+ integer i_jx;
1094
+ integer i_ii;
1095
+
1096
+ if ((TYPE(ix) == T_BIGNUM) || (TYPE(ix) == T_FIXNUM)) {
1097
+ ix = rb_Array(ix);
1098
+ }
1099
+ /* if ((TYPE(ix) != T_ARRAY) &&
1100
+ (rb_obj_is_kind_of(ix, cNArray) != Qtrue)) {
1101
+ rb_raise(rb_eTypeError, "invalid type");
1102
+ } -- no check since obj2c*ary will do that */
1103
+ if ((TYPE(n) != T_BIGNUM) || (TYPE(n) != T_FIXNUM)) {
1104
+ n = rb_funcall(n, rb_intern("to_i"), 0);
1105
+ }
1106
+ if ((TYPE(jx) != T_BIGNUM) || (TYPE(jx) != T_FIXNUM)) {
1107
+ jx = rb_funcall(jx, rb_intern("to_i"), 0);
1108
+ }
1109
+ if ((TYPE(ii) != T_BIGNUM) || (TYPE(ii) != T_FIXNUM)) {
1110
+ ii = rb_funcall(ii, rb_intern("to_i"), 0);
1111
+ }
1112
+
1113
+ i_n = NUM2INT(n);
1114
+ i_jx = NUM2INT(jx);
1115
+ i_ii = NUM2INT(ii);
1116
+ io_ix = dcl_obj2cintegerary(ix);
1117
+
1118
+
1119
+ iset1_(io_ix, &i_n, &i_jx, &i_ii);
1120
+
1121
+ {int array_shape[1] = {i_jx*(i_n-1)+1};
1122
+ ix = dcl_cintegerary2obj(io_ix, i_jx*(i_n-1)+1, 1, array_shape);
1123
+ }
1124
+
1125
+ dcl_freecintegerary(io_ix);
1126
+
1127
+ return ix;
1128
+
1129
+ }
1130
+ void
1131
+ init_math1_vialib(mDCL)
1132
+ VALUE mDCL;
1133
+ {
1134
+ rb_define_module_function(mDCL, "vifna", dcl_vifna, 5);
1135
+ rb_define_module_function(mDCL, "vifna0", dcl_vifna0, 5);
1136
+ rb_define_module_function(mDCL, "vifna1", dcl_vifna1, 5);
1137
+ rb_define_module_function(mDCL, "viinc", dcl_viinc, 5);
1138
+ rb_define_module_function(mDCL, "viinc0", dcl_viinc0, 5);
1139
+ rb_define_module_function(mDCL, "viinc1", dcl_viinc1, 5);
1140
+ rb_define_module_function(mDCL, "vifct", dcl_vifct, 5);
1141
+ rb_define_module_function(mDCL, "vifct0", dcl_vifct0, 5);
1142
+ rb_define_module_function(mDCL, "vifct1", dcl_vifct1, 5);
1143
+ rb_define_module_function(mDCL, "vicon", dcl_vicon, 5);
1144
+ rb_define_module_function(mDCL, "vicon0", dcl_vicon0, 5);
1145
+ rb_define_module_function(mDCL, "vicon1", dcl_vicon1, 5);
1146
+ rb_define_module_function(mDCL, "viset", dcl_viset, 4);
1147
+ rb_define_module_function(mDCL, "iadd", dcl_iadd, 4);
1148
+ rb_define_module_function(mDCL, "iadd0", dcl_iadd0, 4);
1149
+ rb_define_module_function(mDCL, "iadd1", dcl_iadd1, 4);
1150
+ rb_define_module_function(mDCL, "imlt", dcl_imlt, 4);
1151
+ rb_define_module_function(mDCL, "imlt0", dcl_imlt0, 4);
1152
+ rb_define_module_function(mDCL, "imlt1", dcl_imlt1, 4);
1153
+ rb_define_module_function(mDCL, "iset", dcl_iset, 4);
1154
+ rb_define_module_function(mDCL, "iset0", dcl_iset0, 4);
1155
+ rb_define_module_function(mDCL, "iset1", dcl_iset1, 4);
1156
+ }