View | Details | Raw Unified | Return to bug 50016
Collapse All | Expand All

(-)yacas/Makefile (-3 / +3 lines)
Lines 7-17 Link Here
7
#
7
#
8
8
9
PORTNAME=	yacas
9
PORTNAME=	yacas
10
PORTVERSION=	1.0.53r1
10
PORTVERSION=	1.0.54
11
CATEGORIES=	math
11
CATEGORIES=	math
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
13
		http://yacas.sourceforge.net/backups/
13
MASTER_SITE_SUBDIR=	${PORTNAME}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
14
DISTNAME=	${PORTNAME}-${PORTVERSION:S/r/rev/}
15
15
16
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=	ports@FreeBSD.org
17
COMMENT=	Yet Another Computer Algebra System
17
COMMENT=	Yet Another Computer Algebra System
(-)yacas/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (yacas-1.0.53rev1.tar.gz) = 2e938e2ec8f7552259439f2a5909803e
1
MD5 (yacas-1.0.54.tar.gz) = 282e705b3a7466d31dc7ee6a76158d21
(-)yacas/files/patch-configure (-25 / +34 lines)
Lines 1-32 Link Here
1
--- configure.orig	Fri May 24 06:40:55 2002
1
--- configure.orig	Sat Jan 18 22:23:21 2003
2
+++ configure	Fri May 24 14:38:40 2002
2
+++ configure	Sat Mar 15 11:51:16 2003
3
@@ -1966,9 +1966,9 @@
3
@@ -6932,9 +6932,9 @@
4
 fi
4
   gmp)
5
 
5
     echo "$as_me:$LINENO: result: gmp" >&5
6
 if test "$enable_gmp" = "yes" ; then
6
 echo "${ECHO_T}gmp" >&6
7
-	echo $ac_n "checking for __gmpz_init in -lgmp""... $ac_c" 1>&6
7
-    echo "$as_me:$LINENO: checking for __gmpz_init in -lgmp" >&5
8
-echo "configure:1971: checking for __gmpz_init in -lgmp" >&5
8
-echo $ECHO_N "checking for __gmpz_init in -lgmp... $ECHO_C" >&6
9
-ac_lib_var=`echo gmp'_'__gmpz_init | sed 'y%./+-%__p_%'`
9
-if test "${ac_cv_lib_gmp___gmpz_init+set}" = set; then
10
+	echo $ac_n "checking for mpz_init in -lgmp""... $ac_c" 1>&6
10
+    echo "$as_me:$LINENO: checking for mpz_init in -lgmp" >&5
11
+echo "configure:1971: checking for mpz_init in -lgmp" >&5
11
+echo $ECHO_N "checking for mpz_init in -lgmp... $ECHO_C" >&6
12
+ac_lib_var=`echo gmp'_'mpz_init | sed 'y%./+-%__p_%'`
12
+if test "${ac_cv_lib_gmp_mpz_init+set}" = set; then
13
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
13
   echo $ECHO_N "(cached) $ECHO_C" >&6
14
   echo $ac_n "(cached) $ac_c" 1>&6
15
 else
14
 else
16
@@ -1977,13 +1977,14 @@
15
   ac_check_lib_save_LIBS=$LIBS
17
 cat > conftest.$ac_ext <<EOF
16
@@ -6942,6 +6942,7 @@
18
 #line 1979 "configure"
17
 cat >conftest.$ac_ext <<_ACEOF
18
 #line $LINENO "configure"
19
 #include "confdefs.h"
19
 #include "confdefs.h"
20
+#include <gmp.h>
20
+#include <gmp.h>
21
 
21
 /* Override any gcc2 internal prototype to avoid an error.  */
22
 /* Override any gcc2 internal prototype to avoid an error.  */
23
 #ifdef __cplusplus
24
@@ -6949,7 +6950,6 @@
25
 #endif
22
 /* We use char because int might match the return type of a gcc2
26
 /* We use char because int might match the return type of a gcc2
23
     builtin and then its argument prototype would still apply.  */
27
    builtin and then its argument prototype would still apply.  */
24
-char __gmpz_init();
28
-char __gmpz_init ();
25
 
29
 #ifdef F77_DUMMY_MAIN
26
 int main() {
30
 #  ifdef __cplusplus
27
-__gmpz_init()
31
      extern "C"
32
@@ -6959,7 +6959,8 @@
33
 int
34
 main ()
35
 {
36
-__gmpz_init ();
28
+mpz_t integ;
37
+mpz_t integ;
29
+mpz_init(integ)
38
+mpz_init(integ)
30
 ; return 0; }
39
   ;
31
 EOF
40
   return 0;
32
 if { (eval echo configure:1990: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
41
 }
(-)yacas/files/patch-gmpnumbers.cpp (-8 / +7 lines)
Lines 1-6 Link Here
1
--- src/gmpnumbers.cpp.orig	Sat Jan  4 21:21:22 2003
1
--- src/gmpnumbers.cpp.orig	Tue Dec 10 01:30:35 2002
2
+++ src/gmpnumbers.cpp	Sat Jan  4 22:22:56 2003
2
+++ src/gmpnumbers.cpp	Sat Mar 15 12:02:41 2003
3
@@ -70,25 +70,19 @@
3
@@ -81,25 +81,19 @@
4
 
4
 
5
 void initGMPNumber(GMPNumber& x, GMPNumber& y)
5
 void initGMPNumber(GMPNumber& x, GMPNumber& y)
6
 {
6
 {
Lines 11-18 Link Here
11
   x.exp = y.exp;
11
   x.exp = y.exp;
12
 }
12
 }
13
 
13
 
14
-void initGMPNumber(GMPNumber& x, long y=0)
14
 void initGMPNumber(GMPNumber& x, long y)
15
+void initGMPNumber(GMPNumber& x, long y)
16
 {
15
 {
17
-  mpz_t man;
16
-  mpz_t man;
18
-  mpz_init_set_ui(man,y);
17
-  mpz_init_set_ui(man,y);
Lines 30-36 Link Here
30
   x.exp = 0;
29
   x.exp = 0;
31
 }
30
 }
32
 
31
 
33
@@ -137,11 +131,9 @@
32
@@ -148,11 +142,9 @@
34
     exp++;
33
     exp++;
35
   }
34
   }
36
   if (!*man) {*man='0';*(man+1)='\0';neg=0;exp=0;}
35
   if (!*man) {*man='0';*(man+1)='\0';neg=0;exp=0;}
Lines 44-50 Link Here
44
   x.exp=exp;
43
   x.exp=exp;
45
 }
44
 }
46
 
45
 
47
@@ -158,7 +150,7 @@
46
@@ -169,7 +161,7 @@
48
   free(str);
47
   free(str);
49
 }
48
 }
50
 
49
 
Lines 53-59 Link Here
53
 {
52
 {
54
   long rawsize = mpz_sizeinbase(x.man,10);
53
   long rawsize = mpz_sizeinbase(x.man,10);
55
   size_t size;
54
   size_t size;
56
@@ -229,7 +221,7 @@
55
@@ -240,7 +232,7 @@
57
 }
56
 }
58
 
57
 
59
 static LispStringPtr GMPNumberToString(GMPNumber& x, LispHashTable& h, 
58
 static LispStringPtr GMPNumberToString(GMPNumber& x, LispHashTable& h, 
(-)yacas/pkg-plist (-2 / +72 lines)
Lines 1-7 Link Here
1
bin/yacas
1
bin/yacas
2
bin/yacas_client
2
bin/yacas_client
3
bin/ytxt2tex
3
bin/ytxt2tex
4
share/yacas/addons/README
5
share/yacas/addons/editvi.ys
4
share/yacas/addons/editvi.ys
6
share/yacas/addons/editvi.ys.def
5
share/yacas/addons/editvi.ys.def
7
share/yacas/addons/unix.ys
6
share/yacas/addons/unix.ys
Lines 12-17 Link Here
12
share/yacas/assoc.rep/code.ys.def
11
share/yacas/assoc.rep/code.ys.def
13
share/yacas/c_form.rep/code.ys
12
share/yacas/c_form.rep/code.ys
14
share/yacas/c_form.rep/code.ys.def
13
share/yacas/c_form.rep/code.ys.def
14
share/yacas/codecheck.rep/interface.ys
15
share/yacas/codecheck.rep/interface.ys.def
16
share/yacas/codecheck.rep/process.ys
17
share/yacas/codecheck.rep/process.ys.def
15
share/yacas/complex.rep/code.ys
18
share/yacas/complex.rep/code.ys
16
share/yacas/complex.rep/code.ys.def
19
share/yacas/complex.rep/code.ys.def
17
share/yacas/complex.rep/om.ys
20
share/yacas/complex.rep/om.ys
Lines 22-39 Link Here
22
share/yacas/controlflow.rep/code.ys.def
25
share/yacas/controlflow.rep/code.ys.def
23
share/yacas/cstubgen.rep/code.ys
26
share/yacas/cstubgen.rep/code.ys
24
share/yacas/cstubgen.rep/code.ys.def
27
share/yacas/cstubgen.rep/code.ys.def
28
share/yacas/debug.rep/code.ys
29
share/yacas/debug.rep/code.ys.def
25
share/yacas/deffunc.rep/code.ys
30
share/yacas/deffunc.rep/code.ys
26
share/yacas/deffunc.rep/code.ys.def
31
share/yacas/deffunc.rep/code.ys.def
27
share/yacas/deriv.rep/code.ys
32
share/yacas/deriv.rep/code.ys
28
share/yacas/deriv.rep/code.ys.def
33
share/yacas/deriv.rep/code.ys.def
34
share/yacas/documentation/Algo.html
29
share/yacas/documentation/Algochapter1.html
35
share/yacas/documentation/Algochapter1.html
30
share/yacas/documentation/Algochapter2.html
36
share/yacas/documentation/Algochapter2.html
31
share/yacas/documentation/Algochapter3.html
37
share/yacas/documentation/Algochapter3.html
32
share/yacas/documentation/Algochapter4.html
38
share/yacas/documentation/Algochapter4.html
33
share/yacas/documentation/Algochapter5.html
39
share/yacas/documentation/Algochapter5.html
34
share/yacas/documentation/Algochapter6.html
40
share/yacas/documentation/Algochapter6.html
41
share/yacas/documentation/Algochapter7.html
35
share/yacas/documentation/Algochapters.html
42
share/yacas/documentation/Algochapters.html
36
share/yacas/documentation/Algomanual.html
43
share/yacas/documentation/Algomanual.html
44
share/yacas/documentation/LispProgramming.html
37
share/yacas/documentation/LispProgrammingchapter1.html
45
share/yacas/documentation/LispProgrammingchapter1.html
38
share/yacas/documentation/LispProgrammingchapter2.html
46
share/yacas/documentation/LispProgrammingchapter2.html
39
share/yacas/documentation/LispProgrammingchapter3.html
47
share/yacas/documentation/LispProgrammingchapter3.html
Lines 41-47 Link Here
41
share/yacas/documentation/LispProgrammingchapter5.html
49
share/yacas/documentation/LispProgrammingchapter5.html
42
share/yacas/documentation/LispProgrammingchapters.html
50
share/yacas/documentation/LispProgrammingchapters.html
43
share/yacas/documentation/LispProgrammingmanual.html
51
share/yacas/documentation/LispProgrammingmanual.html
52
share/yacas/documentation/NewDesign.html
53
share/yacas/documentation/NewDesignchapter1.html
54
share/yacas/documentation/NewDesignchapter10.html
55
share/yacas/documentation/NewDesignchapter2.html
56
share/yacas/documentation/NewDesignchapter3.html
57
share/yacas/documentation/NewDesignchapter4.html
58
share/yacas/documentation/NewDesignchapter5.html
59
share/yacas/documentation/NewDesignchapter6.html
60
share/yacas/documentation/NewDesignchapter7.html
61
share/yacas/documentation/NewDesignchapter8.html
62
share/yacas/documentation/NewDesignchapter9.html
63
share/yacas/documentation/NewDesignchapters.html
64
share/yacas/documentation/NewDesignmanual.html
44
share/yacas/documentation/books.html
65
share/yacas/documentation/books.html
66
share/yacas/documentation/coding.html
45
share/yacas/documentation/codingchapter1.html
67
share/yacas/documentation/codingchapter1.html
46
share/yacas/documentation/codingchapter2.html
68
share/yacas/documentation/codingchapter2.html
47
share/yacas/documentation/codingchapter3.html
69
share/yacas/documentation/codingchapter3.html
Lines 50-57 Link Here
50
share/yacas/documentation/codingchapter6.html
72
share/yacas/documentation/codingchapter6.html
51
share/yacas/documentation/codingchapter7.html
73
share/yacas/documentation/codingchapter7.html
52
share/yacas/documentation/codingchapter8.html
74
share/yacas/documentation/codingchapter8.html
75
share/yacas/documentation/codingchapter9.html
53
share/yacas/documentation/codingchapters.html
76
share/yacas/documentation/codingchapters.html
54
share/yacas/documentation/codingmanual.html
77
share/yacas/documentation/codingmanual.html
78
share/yacas/documentation/essays.html
55
share/yacas/documentation/essayschapter1.html
79
share/yacas/documentation/essayschapter1.html
56
share/yacas/documentation/essayschapter2.html
80
share/yacas/documentation/essayschapter2.html
57
share/yacas/documentation/essayschapter3.html
81
share/yacas/documentation/essayschapter3.html
Lines 59-66 Link Here
59
share/yacas/documentation/essayschapter5.html
83
share/yacas/documentation/essayschapter5.html
60
share/yacas/documentation/essayschapter6.html
84
share/yacas/documentation/essayschapter6.html
61
share/yacas/documentation/essayschapter7.html
85
share/yacas/documentation/essayschapter7.html
86
share/yacas/documentation/essayschapter8.html
62
share/yacas/documentation/essayschapters.html
87
share/yacas/documentation/essayschapters.html
63
share/yacas/documentation/essaysmanual.html
88
share/yacas/documentation/essaysmanual.html
89
share/yacas/documentation/intro.html
64
share/yacas/documentation/introchapter1.html
90
share/yacas/documentation/introchapter1.html
65
share/yacas/documentation/introchapter2.html
91
share/yacas/documentation/introchapter2.html
66
share/yacas/documentation/introchapter3.html
92
share/yacas/documentation/introchapter3.html
Lines 79-84 Link Here
79
share/yacas/documentation/refchapter16.html
105
share/yacas/documentation/refchapter16.html
80
share/yacas/documentation/refchapter17.html
106
share/yacas/documentation/refchapter17.html
81
share/yacas/documentation/refchapter18.html
107
share/yacas/documentation/refchapter18.html
108
share/yacas/documentation/refchapter19.html
109
share/yacas/documentation/refchapter20.html
110
share/yacas/documentation/refchapter21.html
111
share/yacas/documentation/refchapter22.html
82
share/yacas/documentation/refchapter2.html
112
share/yacas/documentation/refchapter2.html
83
share/yacas/documentation/refchapter3.html
113
share/yacas/documentation/refchapter3.html
84
share/yacas/documentation/refchapter4.html
114
share/yacas/documentation/refchapter4.html
Lines 89-95 Link Here
89
share/yacas/documentation/refchapter9.html
119
share/yacas/documentation/refchapter9.html
90
share/yacas/documentation/refchapters.html
120
share/yacas/documentation/refchapters.html
91
share/yacas/documentation/refmanual.html
121
share/yacas/documentation/refmanual.html
122
share/yacas/documentation/refprog.html
92
share/yacas/documentation/refprogchapter1.html
123
share/yacas/documentation/refprogchapter1.html
124
share/yacas/documentation/refprogchapter10.html
93
share/yacas/documentation/refprogchapter2.html
125
share/yacas/documentation/refprogchapter2.html
94
share/yacas/documentation/refprogchapter3.html
126
share/yacas/documentation/refprogchapter3.html
95
share/yacas/documentation/refprogchapter4.html
127
share/yacas/documentation/refprogchapter4.html
Lines 97-102 Link Here
97
share/yacas/documentation/refprogchapter6.html
129
share/yacas/documentation/refprogchapter6.html
98
share/yacas/documentation/refprogchapter7.html
130
share/yacas/documentation/refprogchapter7.html
99
share/yacas/documentation/refprogchapter8.html
131
share/yacas/documentation/refprogchapter8.html
132
share/yacas/documentation/refprogchapter9.html
100
share/yacas/documentation/refprogchapters.html
133
share/yacas/documentation/refprogchapters.html
101
share/yacas/documentation/refprogmanual.html
134
share/yacas/documentation/refprogmanual.html
102
share/yacas/documentation/yacaslogo.gif
135
share/yacas/documentation/yacaslogo.gif
Lines 122-127 Link Here
122
share/yacas/glview.ys
155
share/yacas/glview.ys
123
share/yacas/html.rep/code.ys
156
share/yacas/html.rep/code.ys
124
share/yacas/html.rep/code.ys.def
157
share/yacas/html.rep/code.ys.def
158
share/yacas/include/GPL_stuff.h
125
share/yacas/include/anumber.h
159
share/yacas/include/anumber.h
126
share/yacas/include/anumber.inl
160
share/yacas/include/anumber.inl
127
share/yacas/include/archiver.h
161
share/yacas/include/archiver.h
Lines 130-140 Link Here
130
share/yacas/include/arrayclass.inl
164
share/yacas/include/arrayclass.inl
131
share/yacas/include/choices.h
165
share/yacas/include/choices.h
132
share/yacas/include/commandline.h
166
share/yacas/include/commandline.h
167
share/yacas/include/compressedfiles.h
133
share/yacas/include/ctokenizer.h
168
share/yacas/include/ctokenizer.h
169
share/yacas/include/cyacas.h
134
share/yacas/include/debugmem.h
170
share/yacas/include/debugmem.h
135
share/yacas/include/deffile.h
171
share/yacas/include/deffile.h
136
share/yacas/include/deffile.inl
172
share/yacas/include/deffile.inl
137
share/yacas/include/elfdll.h
173
share/yacas/include/elfdll.h
174
share/yacas/include/epoccli.h
175
share/yacas/include/epocclsv.h
176
share/yacas/include/epocserv.h
138
share/yacas/include/errors.h
177
share/yacas/include/errors.h
139
share/yacas/include/evalfunc.h
178
share/yacas/include/evalfunc.h
140
share/yacas/include/genericobject.h
179
share/yacas/include/genericobject.h
Lines 188-193 Link Here
188
share/yacas/include/unixcommandline.h
227
share/yacas/include/unixcommandline.h
189
share/yacas/include/version.h
228
share/yacas/include/version.h
190
share/yacas/include/win32dll.h
229
share/yacas/include/win32dll.h
230
share/yacas/include/win32dllresource.h
231
share/yacas/include/win32yacasdll.h
232
share/yacas/include/win32yacasdllresource.h
191
share/yacas/include/xmltokenizer.h
233
share/yacas/include/xmltokenizer.h
192
share/yacas/include/yacas.h
234
share/yacas/include/yacas.h
193
share/yacas/include/yacasbase.h
235
share/yacas/include/yacasbase.h
Lines 214-220 Link Here
214
share/yacas/logic.rep/code.ys
256
share/yacas/logic.rep/code.ys
215
share/yacas/logic.rep/code.ys.def
257
share/yacas/logic.rep/code.ys.def
216
share/yacas/logic.rep/om.ys
258
share/yacas/logic.rep/om.ys
217
share/yacas/maketest
218
share/yacas/manmake/book2TeX.sh
259
share/yacas/manmake/book2TeX.sh
219
share/yacas/manmake/book2TeX.ys
260
share/yacas/manmake/book2TeX.ys
220
share/yacas/manmake/txt2yacasdoc.pl
261
share/yacas/manmake/txt2yacasdoc.pl
Lines 226-247 Link Here
226
share/yacas/multivar.rep/sparsetree.ys.def
267
share/yacas/multivar.rep/sparsetree.ys.def
227
share/yacas/newly.rep/code.ys
268
share/yacas/newly.rep/code.ys
228
share/yacas/newly.rep/code.ys.def
269
share/yacas/newly.rep/code.ys.def
270
share/yacas/numbers.rep/GaussianIntegers.ys
271
share/yacas/numbers.rep/GaussianIntegers.ys.def
272
share/yacas/numbers.rep/NumberTheory.ys
273
share/yacas/numbers.rep/NumberTheory.ys.def
229
share/yacas/numbers.rep/code.ys
274
share/yacas/numbers.rep/code.ys
230
share/yacas/numbers.rep/code.ys.def
275
share/yacas/numbers.rep/code.ys.def
276
share/yacas/numbers.rep/nthroot.ys
277
share/yacas/numbers.rep/nthroot.ys.def
231
share/yacas/odesolver.rep/code.ys
278
share/yacas/odesolver.rep/code.ys
232
share/yacas/odesolver.rep/code.ys.def
279
share/yacas/odesolver.rep/code.ys.def
233
share/yacas/openmath.rep/code.ys
280
share/yacas/openmath.rep/code.ys
234
share/yacas/openmath.rep/code.ys.def
281
share/yacas/openmath.rep/code.ys.def
235
share/yacas/orthopoly.rep/code.ys
282
share/yacas/orthopoly.rep/code.ys
236
share/yacas/orthopoly.rep/code.ys.def
283
share/yacas/orthopoly.rep/code.ys.def
284
share/yacas/osdep.rep/code.ys
285
share/yacas/osdep.rep/code.ys.def
286
share/yacas/osdep.rep/unix.ys
287
share/yacas/osdep.rep/win32.ys
237
share/yacas/packages.ys
288
share/yacas/packages.ys
238
share/yacas/padic.rep/code.ys
289
share/yacas/padic.rep/code.ys
239
share/yacas/padic.rep/code.ys.def
290
share/yacas/padic.rep/code.ys.def
240
share/yacas/patterns.rep/code.ys
291
share/yacas/patterns.rep/code.ys
241
share/yacas/patterns.rep/code.ys.def
292
share/yacas/patterns.rep/code.ys.def
242
share/yacas/plots.rep/backends-2d.ys
293
share/yacas/plots.rep/backends-2d.ys
294
share/yacas/plots.rep/backends-3d.ys
243
share/yacas/plots.rep/code.ys
295
share/yacas/plots.rep/code.ys
244
share/yacas/plots.rep/code.ys.def
296
share/yacas/plots.rep/code.ys.def
297
share/yacas/plots.rep/plot2d.ys
298
share/yacas/plots.rep/plot2d.ys.def
299
share/yacas/plots.rep/plot3d.ys
300
share/yacas/plots.rep/plot3d.ys.def
245
share/yacas/predicates.rep/code.ys
301
share/yacas/predicates.rep/code.ys
246
share/yacas/predicates.rep/code.ys.def
302
share/yacas/predicates.rep/code.ys.def
247
share/yacas/probability.rep/code.ys
303
share/yacas/probability.rep/code.ys
Lines 272-277 Link Here
272
share/yacas/specfunc.rep/zeta.ys.def
328
share/yacas/specfunc.rep/zeta.ys.def
273
share/yacas/standard.ys
329
share/yacas/standard.ys
274
share/yacas/standard.ys.def
330
share/yacas/standard.ys.def
331
share/yacas/statistics.rep/distributions.ys
332
share/yacas/statistics.rep/distributions.ys.def
275
share/yacas/statistics.rep/hypothesystest.ys
333
share/yacas/statistics.rep/hypothesystest.ys
276
share/yacas/statistics.rep/incompletegamma.ys.def
334
share/yacas/statistics.rep/incompletegamma.ys.def
277
share/yacas/statistics.rep/regression.ys.def
335
share/yacas/statistics.rep/regression.ys.def
Lines 285-290 Link Here
285
share/yacas/stats.rep/code.ys.def
343
share/yacas/stats.rep/code.ys.def
286
share/yacas/stdfuncs.rep/code.ys
344
share/yacas/stdfuncs.rep/code.ys
287
share/yacas/stdfuncs.rep/code.ys.def
345
share/yacas/stdfuncs.rep/code.ys.def
346
share/yacas/stdfuncs.rep/elemfuncs.ys
347
share/yacas/stdfuncs.rep/elemfuncs.ys.def
288
share/yacas/stdfuncs.rep/numerical.ys
348
share/yacas/stdfuncs.rep/numerical.ys
289
share/yacas/stdfuncs.rep/numerical.ys.def
349
share/yacas/stdfuncs.rep/numerical.ys.def
290
share/yacas/stdfuncs.rep/nummethods.ys
350
share/yacas/stdfuncs.rep/nummethods.ys
Lines 304-311 Link Here
304
share/yacas/testers.rep/code.ys.def
364
share/yacas/testers.rep/code.ys.def
305
share/yacas/texform.rep/code.ys
365
share/yacas/texform.rep/code.ys
306
share/yacas/texform.rep/code.ys.def
366
share/yacas/texform.rep/code.ys.def
367
share/yacas/transforms.rep/code.ys
368
share/yacas/transforms.rep/code.ys.def
307
share/yacas/trigsimp.rep/code.ys
369
share/yacas/trigsimp.rep/code.ys
308
share/yacas/trigsimp.rep/code.ys.def
370
share/yacas/trigsimp.rep/code.ys.def
371
share/yacas/univar.rep/Cyclotomic.ys
372
share/yacas/univar.rep/Cyclotomic.ys.def
373
share/yacas/univar.rep/sparse.ys
374
share/yacas/univar.rep/sparse.ys.def
309
share/yacas/univar.rep/code.ys
375
share/yacas/univar.rep/code.ys
310
share/yacas/univar.rep/code.ys.def
376
share/yacas/univar.rep/code.ys.def
311
share/yacas/univar.rep/sturm.ys
377
share/yacas/univar.rep/sturm.ys
Lines 316-324 Link Here
316
@dirrm share/yacas/assoc.rep
382
@dirrm share/yacas/assoc.rep
317
@dirrm share/yacas/c_form.rep
383
@dirrm share/yacas/c_form.rep
318
@dirrm share/yacas/complex.rep
384
@dirrm share/yacas/complex.rep
385
@dirrm share/yacas/codecheck.rep
319
@dirrm share/yacas/constants.rep
386
@dirrm share/yacas/constants.rep
320
@dirrm share/yacas/controlflow.rep
387
@dirrm share/yacas/controlflow.rep
321
@dirrm share/yacas/cstubgen.rep
388
@dirrm share/yacas/cstubgen.rep
389
@dirrm share/yacas/debug.rep
322
@dirrm share/yacas/deffunc.rep
390
@dirrm share/yacas/deffunc.rep
323
@dirrm share/yacas/deriv.rep
391
@dirrm share/yacas/deriv.rep
324
@dirrm share/yacas/documentation
392
@dirrm share/yacas/documentation
Lines 344-349 Link Here
344
@dirrm share/yacas/odesolver.rep
412
@dirrm share/yacas/odesolver.rep
345
@dirrm share/yacas/openmath.rep
413
@dirrm share/yacas/openmath.rep
346
@dirrm share/yacas/orthopoly.rep
414
@dirrm share/yacas/orthopoly.rep
415
@dirrm share/yacas/osdep.rep
347
@dirrm share/yacas/padic.rep
416
@dirrm share/yacas/padic.rep
348
@dirrm share/yacas/patterns.rep
417
@dirrm share/yacas/patterns.rep
349
@dirrm share/yacas/plots.rep
418
@dirrm share/yacas/plots.rep
Lines 364-369 Link Here
364
@dirrm share/yacas/tensor.rep
433
@dirrm share/yacas/tensor.rep
365
@dirrm share/yacas/testers.rep
434
@dirrm share/yacas/testers.rep
366
@dirrm share/yacas/texform.rep
435
@dirrm share/yacas/texform.rep
436
@dirrm share/yacas/transforms.rep
367
@dirrm share/yacas/trigsimp.rep
437
@dirrm share/yacas/trigsimp.rep
368
@dirrm share/yacas/univar.rep
438
@dirrm share/yacas/univar.rep
369
@dirrm share/yacas/probability.rep
439
@dirrm share/yacas/probability.rep

Return to bug 50016