Powered by Apache

CVS log for OpenXM_contrib2/asir2000/parse/puref.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.16 / (download) - annotate - [select for diffs], Tue Nov 12 10:52:05 2019 UTC (4 years, 5 months ago) by kondoh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.15: +15 -1 lines
Diff to previous 1.15 (unified)

Added elementary functions for interval arithmetic using mpfi

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

Changed a tab to two space charaters.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Mar 28 05:27:22 2018 UTC (6 years, 1 month ago) by noro
Branch: MAIN
Changes since 1.13: +40 -1 lines
Diff to previous 1.13 (unified)

1. Added x!=factorial(x) as a pure function. If x is a real number,
  It gives the value of Gamma(x+1).
2. Added abs(x) as a pure function.
3. One can use break, return and continue at the toplevel.

Revision 1.13 / (download) - annotate - [select for diffs], Tue Mar 27 06:29:19 2018 UTC (6 years, 1 month ago) by noro
Branch: MAIN
Changes since 1.12: +60 -35 lines
Diff to previous 1.12 (unified)

If the control switch evalef is set to 1, then elementary functions
are immediately evaluated and no variables corresponding to the values
of elementary functions are appended to the variable list.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Aug 14 13:51:56 2015 UTC (8 years, 8 months ago) by fujimoto
Branch: MAIN
Changes since 1.11: +1 -4 lines
Diff to previous 1.11 (unified)

Removed unneeded 'defined(__MINGW64__)'.

Revision 1.11 / (download) - annotate - [select for diffs], Sat Aug 8 14:19:42 2015 UTC (8 years, 8 months ago) by fujimoto
Branch: MAIN
Changes since 1.10: +4 -1 lines
Diff to previous 1.10 (unified)

Added fflush(stderr) after fprintf(stderr,  ) for mingw32/mingw64.

Revision 1.10 / (download) - annotate - [select for diffs], Fri Sep 19 01:26:00 2014 UTC (9 years, 7 months ago) by noro
Branch: MAIN
Changes since 1.9: +15 -1 lines
Diff to previous 1.9 (unified)

If a switch 'evalef' (eval elementary function) is set to 1, then
instances of elementary functions with numerical arguments are immediately
evaluated without creating indeterminates.

[4] sin(1.2);
sin(1.2)
[5] ctrl("evalef",1);
1
[6] sin(1.2);
0.9320390859672263336090244044
[7] ctrl("bigfloat",1);
1
[8] sin(1.2);
0.9320390859672263496823216115
[9] setprec(100);
19
[10] sin(1.2);
0.9320390859672263496701344354948259954150705882087307353665978944502423415767920542157417224381184959624520466900203

Revision 1.9 / (download) - annotate - [select for diffs], Fri Feb 15 07:05:49 2013 UTC (11 years, 2 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b
Changes since 1.8: +23 -1 lines
Diff to previous 1.8 (unified)

Added getpid() which returns the process id.

Revision 1.8 / (download) - annotate - [select for diffs], Wed Oct 5 08:57:25 2005 UTC (18 years, 7 months ago) by noro
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_2_3_12, KNOPPIX_2006, DEB_REL_1_2_3-9
Changes since 1.7: +24 -1 lines
Diff to previous 1.7 (unified)

Added quote_is_number(), quote_is_rational(), quote_is_integer(),
quote_is_dependent(). ( not tested.)

Revision 1.7 / (download) - annotate - [select for diffs], Wed Aug 18 00:50:37 2004 UTC (19 years, 8 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_3
Changes since 1.6: +20 -7 lines
Diff to previous 1.6 (unified)

Corrected the behavior of subst() under allow_laurent=1.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Mar 11 09:52:56 2004 UTC (20 years, 1 month ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_2_KNOPPIX_b
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (unified)

Fixed a bug in appendpfins.

Revision 1.5 / (download) - annotate - [select for diffs], Tue May 20 06:15:01 2003 UTC (20 years, 11 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_2_KNOPPIX
Changes since 1.4: +3 -3 lines
Diff to previous 1.4 (unified)

In a module,

1. The compilation will be stopped if a function is defined without declaration.
2. A function is regarded as global if it is not declared.
3. If a variable is declared to be local, the other local variables should
   also be decalared.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Oct 9 01:36:24 2001 UTC (22 years, 7 months ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_2, RELEASE_1_2_1
Changes since 1.3: +27 -118 lines
Diff to previous 1.3 (unified)

Conversion to ANSI style (not completed yet).

Revision 1.3 / (download) - annotate - [select for diffs], Tue Aug 22 05:04:27 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.2: +2 -2 lines
Diff to previous 1.2 (unified)

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

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

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

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Dec 3 07:39:12 1999 UTC (24 years, 5 months ago) by noro
Branch: NORO
CVS Tags: RELEASE_20000124, RELEASE_1_1_2, 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:12 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>