Powered by Apache

CVS log for OpenXM_contrib2/asir2000/builtin/parif.c

[BACK] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.40 / (download) - annotate - [select for diffs], Sun Oct 4 03:14:07 2020 UTC (3 years, 6 months ago) by noro
Branch: MAIN
CVS Tags: HEAD
Changes since 1.39: +11 -4 lines
Diff to previous 1.39 (unified)

Added function prototypes.

Revision 1.39 / (download) - annotate - [select for diffs], Mon Apr 9 04:07:27 2018 UTC (6 years ago) by noro
Branch: MAIN
Changes since 1.38: +2 -1 lines
Diff to previous 1.38 (unified)

Added factpol for polynomial factorization in the PARI functions.

Revision 1.38 / (download) - annotate - [select for diffs], Thu Mar 29 01:32:50 2018 UTC (6 years, 1 month ago) by noro
Branch: MAIN
Changes since 1.37: +56 -56 lines
Diff to previous 1.37 (unified)

Changed a tab to two space charaters.

Revision 1.37 / (download) - annotate - [select for diffs], Wed Aug 30 09:40:30 2017 UTC (6 years, 8 months ago) by ohara
Branch: MAIN
Changes since 1.36: +25 -3 lines
Diff to previous 1.36 (unified)

On Windows, pari functions can be interupted.

Revision 1.36 / (download) - annotate - [select for diffs], Fri Mar 31 06:10:13 2017 UTC (7 years, 1 month ago) by ohara
Branch: MAIN
Changes since 1.35: +4 -4 lines
Diff to previous 1.35 (unified)

Fixed a bug.

Revision 1.35 / (download) - annotate - [select for diffs], Fri Mar 31 04:15:34 2017 UTC (7 years, 1 month ago) by ohara
Branch: MAIN
Changes since 1.34: +5 -1 lines
Diff to previous 1.34 (unified)

Add error message for pari functions if you have no ox_pari_starting_function on Windows.

Revision 1.34 / (download) - annotate - [select for diffs], Mon Aug 1 01:35:01 2016 UTC (7 years, 9 months ago) by noro
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (unified)

Fixed a bug in ox_pari.

Revision 1.33 / (download) - annotate - [select for diffs], Fri Apr 1 03:04:35 2016 UTC (8 years, 1 month ago) by ohara
Branch: MAIN
Changes since 1.32: +12 -1 lines
Diff to previous 1.32 (unified)

Add a key "oxpari_start" for ctrl function.
This function is useful for Windows.
Example:
S=getenv("APPDATA")+"/OpenXM/OpenXM-win/lib/oxpari-win.rr";
load(S);
ctrl("oxpari_start",oxpari.start_win);
pari(roots,x^5-1);

Revision 1.32 / (download) - annotate - [select for diffs], Fri Aug 21 06:00:29 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.31: +5 -4 lines
Diff to previous 1.31 (unified)

pari(func,x) tries to execute func in pari if x is not real.

Revision 1.31 / (download) - annotate - [select for diffs], Thu Aug 20 08:42:07 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.30: +7 -1 lines
Diff to previous 1.30 (unified)

Elementary functions accepts complex number arguments.

Revision 1.30 / (download) - annotate - [select for diffs], Wed Aug 19 05:53:13 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.29: +28 -2 lines
Diff to previous 1.29 (unified)

A vector of vectors with the same length returned by pari is converted
to a matrix.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Aug 19 05:29:23 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.28: +21 -5 lines
Diff to previous 1.28 (unified)

ox_pari is shut down upon interruption.

Revision 1.28 / (download) - annotate - [select for diffs], Tue Aug 18 05:35:17 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.27: +19 -3 lines
Diff to previous 1.27 (unified)

pari(..,..) returns a vector (of vectors) if an output of pari function is vector or matrix.

Revision 1.27 / (download) - annotate - [select for diffs], Tue Aug 18 02:31:32 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (unified)

ox_pari is now invoked by Pox_launch_nox().

Revision 1.26 / (download) - annotate - [select for diffs], Tue Aug 18 02:26:05 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (unified)

Added functions for CMO_COMPLEX>

Revision 1.25 / (download) - annotate - [select for diffs], Mon Aug 17 05:18:36 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.24: +21 -68 lines
Diff to previous 1.24 (unified)

Fixed bugs in ox_toolkit.
Modifed evalparif() in asir and sm_executeFunction() in ox_pari
so that functions can be easily added.

Revision 1.24 / (download) - annotate - [select for diffs], Sun Aug 16 03:12:09 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.23: +48 -10 lines
Diff to previous 1.23 (unified)

Added several mpfr functions (mpfr_zeta, mpfr_j0 etc.).
See builtin/bfaux.c for details.

Revision 1.23 / (download) - annotate - [select for diffs], Fri Aug 7 08:00:30 2015 UTC (8 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.22: +4 -1 lines
Diff to previous 1.22 (unified)

pari(floor,...) and pari(round,...) return integers.
Example:
ctrl("bigfloat",1);
setprec(100);
A=11111111111111111111111111111.1;
pari(floor,A);

Revision 1.22 / (download) - annotate - [select for diffs], Fri Aug 7 06:16:12 2015 UTC (8 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.21: +1 -0 lines
Diff to previous 1.21 (unified)

pari(floor, ...) is emulated by mpfr_floor.

Revision 1.21 / (download) - annotate - [select for diffs], Fri Aug 7 06:15:00 2015 UTC (8 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.20: +3 -0 lines
Diff to previous 1.20 (unified)

hoge

Revision 1.20 / (download) - annotate - [select for diffs], Fri Aug 7 05:40:31 2015 UTC (8 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.19: +4 -0 lines
Diff to previous 1.19 (unified)

pari(gamma, ...) is emulated by mpfr.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Aug 6 09:12:29 2015 UTC (8 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.18: +174 -438 lines
Diff to previous 1.18 (unified)

Added a new interface to ox_pari.

Revision 1.18 / (download) - annotate - [select for diffs], Tue Aug 4 06:20:44 2015 UTC (8 years, 9 months ago) by noro
Branch: MAIN
Changes since 1.17: +3 -1 lines
Diff to previous 1.17 (unified)

PARI is now being replaced by MPFR (GNU multiprecision floating-point reliable library).
1. eval() now calls functions in libmpfr.a.
2. PARI will be wrapped as an ox server 'ox_pari' (not yet).
Warning: Asir will not be built with interval arithmetics for a while.

Revision 1.17 / (download) - annotate - [select for diffs], Wed Aug 10 04:51:57 2011 UTC (12 years, 8 months ago) by saito
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (unified)

add ineqn functions.
objcp,ineqn,ineqnover,ineqnand,ineqnor,ineqnxor,ineqnmain,obj_op
include INTERVAL

Revision 1.16 / (download) - annotate - [select for diffs], Fri Mar 27 14:42:29 2009 UTC (15 years, 1 month ago) by ohara
Branch: MAIN
CVS Tags: R_1_3_1-2
Changes since 1.15: +12 -3 lines
Diff to previous 1.15 (unified)

Removed a macro PARI23.
Asir build system checks the pari version in self.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Mar 16 16:43:02 2009 UTC (15 years, 1 month ago) by ohara
Branch: MAIN
Changes since 1.14: +3 -6 lines
Diff to previous 1.14 (unified)

In asir sources, LONG_IS_32BIT and LONG_IS_64BIT are replaced by SIZEOF_LONG.
Still, these are defined for pari.

Revision 1.14 / (download) - annotate - [select for diffs], Fri Feb 14 22:29:07 2003 UTC (21 years, 2 months ago) by ohara
Branch: MAIN
CVS Tags: RELEASE_1_2_3_12, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, KNOPPIX_2006, DEB_REL_1_2_3-9
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (unified)

Changing some MACROs and preprocessor directives:
for example, #if PARI was replaced by #if defined(PARI).

Revision 1.13 / (download) - annotate - [select for diffs], Tue Jan 28 09:03:06 2003 UTC (21 years, 3 months ago) by noro
Branch: MAIN
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (unified)

Added an argument for flag.

Revision 1.12 / (download) - annotate - [select for diffs], Wed Sep 4 04:57:46 2002 UTC (21 years, 8 months ago) by saito
Branch: MAIN
Changes since 1.11: +1 -5 lines
Diff to previous 1.11 (unified)

delete pari function kerint2,lllg1,lllgramg1 and lllrat
pari-2.2.3.a remove this function.

Revision 1.11 / (download) - annotate - [select for diffs], Fri Jul 12 08:05:23 2002 UTC (21 years, 9 months ago) by noro
Branch: MAIN
Changes since 1.10: +36 -1 lines
Diff to previous 1.10 (unified)

Added a function todouble().

Revision 1.10 / (download) - annotate - [select for diffs], Tue Oct 9 01:36:06 2001 UTC (22 years, 6 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_1
Changes since 1.9: +16 -5 lines
Diff to previous 1.9 (unified)

Conversion to ANSI style (not completed yet).

Revision 1.9 / (download) - annotate - [select for diffs], Wed Oct 3 01:47:30 2001 UTC (22 years, 7 months ago) by noro
Branch: MAIN
Changes since 1.8: +17 -2 lines
Diff to previous 1.8 (unified)

!!!Important!!!  (full rebuild may be necessary)

Asir2000 now links pari-2.2, so the pari/Makefile has been changed to
make pari-2.2.
Added pari(factor,..) and pari(allocatemem,..).

pari(factor,Poly) : univariate factorization by knapsack algorithm.
pari(allocatemem,SIZE) : sets the paristack size to SIZE byte.
pari(allocatemem) : doubles the paristack.

Revision 1.8 / (download) - annotate - [select for diffs], Thu Jul 5 09:26:43 2001 UTC (22 years, 10 months ago) by noro
Branch: MAIN
Changes since 1.7: +29 -10 lines
Diff to previous 1.7 (unified)

Added a pari function pari(factorint,N).

Revision 1.7 / (download) - annotate - [select for diffs], Fri Dec 22 09:58:32 2000 UTC (23 years, 4 months ago) by saito
Branch: MAIN
Changes since 1.6: +44 -2 lines
Diff to previous 1.6 (unified)

Add to interval number function.

Revision 1.6 / (download) - annotate - [select for diffs], Tue Dec 5 01:24:51 2000 UTC (23 years, 5 months ago) by noro
Branch: MAIN
Changes since 1.5: +1 -8 lines
Diff to previous 1.5 (unified)

Removed ugly '#if defined(THINK_C)'.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Nov 15 00:07:20 2000 UTC (23 years, 5 months ago) by noro
Branch: MAIN
Changes since 1.4: +19 -7 lines
Diff to previous 1.4 (unified)

Fixed a bug which causes SEGV when eval(sin(0.0)) called repeatedly.
It was caused by freeing a PARI system constant.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Aug 22 05:03:59 2000 UTC (23 years, 8 months ago) by noro
Branch: MAIN
CVS Tags: maekawa-ipv6, STABLE_1_1_3, RELEASE_1_1_3
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (unified)

Sorry, the email address in the license agreement was incorrect.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Aug 21 08:31:20 2000 UTC (23 years, 8 months ago) by noro
Branch: MAIN
Changes since 1.2: +49 -1 lines
Diff to previous 1.2 (unified)

Added copyright notice and license agreement. It is mandatory to distribute
Risa/Asir source codes freely.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Feb 8 04:47:09 2000 UTC (24 years, 2 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_1_2
Changes since 1.1: +5 -2 lines
Diff to previous 1.1 (unified)

Cleaned up source files for creating libasir*.a with various
configurations.

Added new targets in src/asir2000/Makefile

install-lib-with-pari : libasir_pari.a -> OpenXM/lib
install-lib-small : libasir.a -> OpenXM/lib
install : asir libasir_pari_X.a libasir_gc.a -> OpenXM/lib

libasir_pari_X.a requires libpari.a and X11 libraries.
libasir_pari.a requires libpari.a.
libasir.a requires nothing.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Dec 3 07:39:07 1999 UTC (24 years, 5 months ago) by noro
Branch: NORO
CVS Tags: RELEASE_20000124, ASIR2000
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (unified)

Imported asir2000 as OpenXM_contrib2/asir2000.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Dec 3 07:39:07 1999 UTC (24 years, 5 months ago) by noro
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>