mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
Compare commits
29 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bb5c624382 | ||
|
8aedcf801a | ||
|
b60eec99bb | ||
|
383290a844 | ||
|
7e40db44e3 | ||
|
a57ee19ca5 | ||
|
a6e226fa80 | ||
|
86e0f98c8f | ||
|
e4dcbf7ecf | ||
|
10c0bd2d95 | ||
|
ad44f1e3ab | ||
|
fd436d7c15 | ||
|
d2cb9c81d5 | ||
|
a0aba073a6 | ||
|
59837e385c | ||
|
bea726fc16 | ||
|
fc0a3dd183 | ||
|
63d9b22067 | ||
|
fc85ac3791 | ||
|
3d55811205 | ||
|
296aa50ac7 | ||
|
5e098d2adf | ||
|
ae2a752314 | ||
|
61dd47526f | ||
|
417ffb6ab5 | ||
|
121b8f72c6 | ||
|
9968a69f50 | ||
|
1ea579d929 | ||
|
0521ed202f |
155
BUGS
155
BUGS
@@ -20,20 +20,28 @@ configuration, try backing them out and see if things get better.
|
|||||||
|
|
||||||
To be sure that your version of calc is up to date, check out:
|
To be sure that your version of calc is up to date, check out:
|
||||||
|
|
||||||
http://reality.sgi.com/chongo/tech/comp/calc/calc-download.html
|
http://www.isthe.com/chongo/tech/comp/calc/calc-download.html
|
||||||
|
|
||||||
The calc web site is located at:
|
The calc web site is located at:
|
||||||
|
|
||||||
http://reality.sgi.com/chongo/tech/comp/calc/index.html
|
http://www.isthe.com/chongo/tech/comp/calc/index.html
|
||||||
|
|
||||||
=-=
|
=-=
|
||||||
|
|
||||||
If you have tried all of the above and things still are not right,
|
If you have tried all of the above and things still are not right,
|
||||||
then it may be time to send in a bug report. You can send bug reports to:
|
then it may be time to send in a bug report. You can send bug
|
||||||
|
and bug fixes reports to:
|
||||||
|
|
||||||
calc-bugs at postofc dot corp dot sgi dot com
|
calc-bugs at asthe dot com
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe', the web site URL uses 'isthe' ]]
|
||||||
|
|
||||||
|
Your subject must contain the words:
|
||||||
|
|
||||||
|
calc bug report
|
||||||
|
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
|
||||||
When you send your report, please include the following information:
|
When you send your report, please include the following information:
|
||||||
|
|
||||||
@@ -53,17 +61,8 @@ When you send your report, please include the following information:
|
|||||||
|
|
||||||
Stack traces from core dumps are useful to send as well.
|
Stack traces from core dumps are useful to send as well.
|
||||||
|
|
||||||
=-=
|
Fell free to use the above address to send in big fixes (in the form
|
||||||
|
of a context diff patch).
|
||||||
Send any comments, compiler warning messages, suggestions and most
|
|
||||||
importantly, fixes (in the form of a context diff patch) to:
|
|
||||||
|
|
||||||
calc-tester at postofc dot corp dot sgi dot com
|
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
|
||||||
|
|
||||||
You should use the above calc-bugs address for bug reports, if you are
|
|
||||||
not currently a member of the calc-tester mailing list.
|
|
||||||
|
|
||||||
=-=
|
=-=
|
||||||
|
|
||||||
@@ -73,14 +72,104 @@ Known bugs:
|
|||||||
us know! See the above for details on how to report and were to
|
us know! See the above for details on how to report and were to
|
||||||
EMail your bug reports and hopefully patches to fix them.
|
EMail your bug reports and hopefully patches to fix them.
|
||||||
|
|
||||||
=-=
|
|
||||||
|
|
||||||
Problems with known work-a-rounds:
|
Problems with known work-a-rounds:
|
||||||
|
|
||||||
|
* The gcc as shipped with Redhat 7 perhaps other Linux distributions
|
||||||
|
has a bug causes calc to dump core on startup when calc is:
|
||||||
|
|
||||||
|
compiled optimized (-O, -O1, -O2 or -O3)
|
||||||
|
|
||||||
|
AND
|
||||||
|
|
||||||
|
compiled with debugging (-g or -g3)
|
||||||
|
|
||||||
|
AND
|
||||||
|
|
||||||
|
when calc is compiled with readline (see USE_READLINE,
|
||||||
|
READLINE_LIB and READLINE_INCLUDE in the Makefile)
|
||||||
|
|
||||||
|
On Redhat, the gcc -v which has this problem is:
|
||||||
|
|
||||||
|
gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-85)
|
||||||
|
|
||||||
|
there may be other gcc versions that also suffer this fate.
|
||||||
|
|
||||||
|
The readlines associated with problem are:
|
||||||
|
|
||||||
|
readline-4.1-5
|
||||||
|
readline2.2.1-2.2.1-2
|
||||||
|
readline-devel-4.1-5
|
||||||
|
|
||||||
|
One work-a-round is to compile calc WITHOUT readline. In the
|
||||||
|
Makefile be sure that:
|
||||||
|
|
||||||
|
USE_READLINE=
|
||||||
|
READLINE_LIB=
|
||||||
|
READLINE_INCLUDE=
|
||||||
|
|
||||||
|
i.e., these Makefile vars are empty.
|
||||||
|
|
||||||
|
If you must use readline, then an alternate work-a-round is to
|
||||||
|
change the DEBUG Makefile variable to either:
|
||||||
|
|
||||||
|
compile for speed: -O3 (or -O2 if you do not have -O3)
|
||||||
|
compile to debug: -g3 (or -g if you do not have -g3)
|
||||||
|
|
||||||
|
but not both.
|
||||||
|
|
||||||
|
See RH bug #57889 for details:
|
||||||
|
|
||||||
|
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=57889
|
||||||
|
|
||||||
* There is a bug in gcc-2.95 that causes calc, when compiled with -O2,
|
* There is a bug in gcc-2.95 that causes calc, when compiled with -O2,
|
||||||
to fail the regression test. The work-a-round is to compile with -O
|
to fail the regression test. The work-a-round is to compile with -O
|
||||||
or to use gcc-2.96 or later.
|
or to use gcc-2.96 or later.
|
||||||
|
|
||||||
|
This bug has been observed on the Sparc and the PowerPC machine.
|
||||||
|
|
||||||
|
On the PowerPC with gcc-2.95 when compiled with -O2, the following
|
||||||
|
patch seems to help:
|
||||||
|
|
||||||
|
*** zfunc.c.orig Fri Feb 23 18:18:39 2001
|
||||||
|
--- zfunc.c Fri Feb 23 18:39:33 2001
|
||||||
|
***************
|
||||||
|
*** 1481,1487 ****
|
||||||
|
{
|
||||||
|
HALF *a, *A, *b, *a0, u;
|
||||||
|
int i, j, j1, j2, k, k1, m, m0, m1, n, n0, o;
|
||||||
|
! FULL d, e, f, g, h, s, t, x, topbit;
|
||||||
|
int remsign;
|
||||||
|
BOOL up, onebit;
|
||||||
|
ZVALUE sqrt;
|
||||||
|
--- 1481,1488 ----
|
||||||
|
{
|
||||||
|
HALF *a, *A, *b, *a0, u;
|
||||||
|
int i, j, j1, j2, k, k1, m, m0, m1, n, n0, o;
|
||||||
|
! volatile FULL d;
|
||||||
|
! FULL e, f, g, h, s, t, x, topbit;
|
||||||
|
int remsign;
|
||||||
|
BOOL up, onebit;
|
||||||
|
ZVALUE sqrt;
|
||||||
|
*** zmath.c 2000/06/07 14:02:13 29.2
|
||||||
|
--- zmath.c 2001/03/13 19:47:03
|
||||||
|
***************
|
||||||
|
*** 1608,1614 ****
|
||||||
|
void
|
||||||
|
zbitvalue(long n, ZVALUE *res)
|
||||||
|
{
|
||||||
|
! ZVALUE z;
|
||||||
|
|
||||||
|
if (n < 0) n = 0;
|
||||||
|
z.sign = 0;
|
||||||
|
--- 1608,1614 ----
|
||||||
|
void
|
||||||
|
zbitvalue(long n, ZVALUE *res)
|
||||||
|
{
|
||||||
|
! volatile ZVALUE z;
|
||||||
|
|
||||||
|
if (n < 0) n = 0;
|
||||||
|
z.sign = 0;
|
||||||
|
|
||||||
* Solaris cc somtimes barfs while compiling zrand.c. In particular, calc
|
* Solaris cc somtimes barfs while compiling zrand.c. In particular, calc
|
||||||
barfs on on the SVAL macro. The work-a-round is to use the Solaric cc
|
barfs on on the SVAL macro. The work-a-round is to use the Solaric cc
|
||||||
Makefile set sets -DFORCE_STDC. I.e,:
|
Makefile set sets -DFORCE_STDC. I.e,:
|
||||||
@@ -161,6 +250,28 @@ Problems with known work-a-rounds:
|
|||||||
or performance. The work-a-round is to ignore these warnings
|
or performance. The work-a-round is to ignore these warnings
|
||||||
under BSDI.
|
under BSDI.
|
||||||
|
|
||||||
|
* The chi.cal resource file does not work well with odd degrees
|
||||||
|
of freedom. Can someone improve this algorithm?
|
||||||
|
|
||||||
|
* The intfile.cal resource file reads and writes big or little Endian
|
||||||
|
integers to/from files the hard way. It does NOT use blkcpy. The
|
||||||
|
following code:
|
||||||
|
|
||||||
|
i = (ord("\n") << 16) | (ord("i") << 8) | ord("H")
|
||||||
|
b = blk()
|
||||||
|
copy(i, b)
|
||||||
|
fd = fopen("file", "w")
|
||||||
|
copy(b, fd);
|
||||||
|
fclose(fd)
|
||||||
|
|
||||||
|
will write an extra NUL octet to the file. Where as:
|
||||||
|
|
||||||
|
read intfile
|
||||||
|
i = (ord("\n") << 16) | (ord("i") << 8) | ord("H")
|
||||||
|
be2file(i, "file2")
|
||||||
|
|
||||||
|
will not.
|
||||||
|
|
||||||
## Copyright (C) 1999 Landon Curt Noll
|
## Copyright (C) 1999 Landon Curt Noll
|
||||||
##
|
##
|
||||||
## Calc is open software; you can redistribute it and/or modify it under
|
## Calc is open software; you can redistribute it and/or modify it under
|
||||||
@@ -177,12 +288,12 @@ Problems with known work-a-rounds:
|
|||||||
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.4 $
|
## @(#) $Revision: 29.17 $
|
||||||
## @(#) $Id: BUGS,v 29.4 1999/12/15 09:13:29 chongo Exp $
|
## @(#) $Id: BUGS,v 29.17 2001/12/31 22:12:35 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/RCS/BUGS,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/BUGS,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 1994/03/18 14:06:13
|
## Under source code control: 1994/03/18 14:06:13
|
||||||
## File existed as early as: 1994
|
## File existed as early as: 1994
|
||||||
##
|
##
|
||||||
## chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
## Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
62
COPYING
62
COPYING
@@ -12,8 +12,8 @@ This file is Copyrighted
|
|||||||
Everyone is permitted to copy and distribute verbatim copies
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
of this license document, but changing it is not allowed.
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.6 $
|
||||||
# @(#) $Id: COPYING,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
# @(#) $Id: COPYING,v 29.6 2001/06/01 11:26:53 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/COPYING,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/COPYING,v $
|
||||||
|
|
||||||
=-=
|
=-=
|
||||||
@@ -55,16 +55,43 @@ Calc is covered by the GNU Lesser General Public License
|
|||||||
|
|
||||||
The contact addresses for calc is as follows:
|
The contact addresses for calc is as follows:
|
||||||
|
|
||||||
Web: http://reality.sgi.com/chongo/tech/comp/calc/index.html
|
Web: http://www.isthe.com/chongo/tech/comp/calc/email.html
|
||||||
http://www.isthe.com/chongo/tech/comp/calc/index.html
|
|
||||||
|
|
||||||
EMail: calc-tester at postofc dot corp dot sgi dot com
|
To join the low volume calc mailing list. Send a EMail message to:
|
||||||
calc-tester at isthe dot com
|
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove spaces ]]
|
calc-tester-request at asthe dot com
|
||||||
|
|
||||||
The 2nd address set is provided in case the 1st address set no
|
Your subject must contain the words:
|
||||||
longer functions.
|
|
||||||
|
calc mailing list subscription
|
||||||
|
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
|
||||||
|
Your message body (not the subject) should consist of:
|
||||||
|
|
||||||
|
subscribe calc-tester address
|
||||||
|
end
|
||||||
|
name your_full_name
|
||||||
|
|
||||||
|
where ``address'' is your EMail address and ``your_full_name'' is
|
||||||
|
your full name.
|
||||||
|
|
||||||
|
Feel free to follow the name line with additional EMail text as desired.
|
||||||
|
|
||||||
|
=-=
|
||||||
|
|
||||||
|
Calc bug reports and calc bug fixes should be sent to:
|
||||||
|
|
||||||
|
calc-bugs at asthe dot com
|
||||||
|
|
||||||
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe' and the web site URL uses 'isthe' ]]
|
||||||
|
|
||||||
|
Your subject must contain the words:
|
||||||
|
|
||||||
|
calc bug report
|
||||||
|
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
|
||||||
=-=
|
=-=
|
||||||
|
|
||||||
@@ -128,7 +155,7 @@ Calc copyrights and exception files
|
|||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
With the exception of the files listed below, Calc is covered under
|
With the exception of the files listed below, Calc is covered under
|
||||||
the following Copyrights:
|
the following GNU Lesser General Public License Copyrights:
|
||||||
|
|
||||||
Copyright (C) year David I. Bell
|
Copyright (C) year David I. Bell
|
||||||
Copyright (C) year David I. Bell and Landon Curt Noll
|
Copyright (C) year David I. Bell and Landon Curt Noll
|
||||||
@@ -138,12 +165,11 @@ Calc copyrights and exception files
|
|||||||
Copyright (C) year Ernest Bowen and Landon Curt Noll
|
Copyright (C) year Ernest Bowen and Landon Curt Noll
|
||||||
Copyright (C) year Ernest Bowen
|
Copyright (C) year Ernest Bowen
|
||||||
|
|
||||||
A few files are not covered under the GNU Lesser General Public
|
These files are not covered under one of the Copyrights listed above:
|
||||||
License. The source files not covered are:
|
|
||||||
|
|
||||||
shs1.c shs1.h shs.c shs.h
|
shs1.c shs1.h shs.c shs.h
|
||||||
md5.c md5.h lib/qtime.cal COPYING
|
md5.c md5.h COPYING COPYING-LGPL
|
||||||
COPYING-LGPL
|
cal/qtime.cal
|
||||||
|
|
||||||
The file COPYING-LGPL, which contains a copy of the version 2.1
|
The file COPYING-LGPL, which contains a copy of the version 2.1
|
||||||
GNU Lesser General Public License, is itself Copyrighted by the
|
GNU Lesser General Public License, is itself Copyrighted by the
|
||||||
@@ -155,6 +181,14 @@ Calc copyrights and exception files
|
|||||||
top of this file. It is important to note that you may distribute
|
top of this file. It is important to note that you may distribute
|
||||||
verbatim copies of this file but you may not modify this file.
|
verbatim copies of this file but you may not modify this file.
|
||||||
|
|
||||||
|
Some of these exception files are in the public domain. Other
|
||||||
|
exception files have non-LGPL Copyrights. Other files are under a
|
||||||
|
LGPL Copyright but have different authors.
|
||||||
|
|
||||||
|
In all cases one may use and distribute these exception files freely.
|
||||||
|
And because one may freely distribute the LGPL covered files, the
|
||||||
|
entire calc source may be freely used and distributed.
|
||||||
|
|
||||||
=-=
|
=-=
|
||||||
|
|
||||||
General Copyleft and License info
|
General Copyleft and License info
|
||||||
|
@@ -2,7 +2,68 @@ Installing calc in 4 easy steps:
|
|||||||
|
|
||||||
1) Look at the makefile, and adjust it to suit your needs.
|
1) Look at the makefile, and adjust it to suit your needs.
|
||||||
|
|
||||||
Here are some Makefile hints:
|
The Makefile, as shipped, is suitable for installation under
|
||||||
|
Linux and Un*x-like environments. For the most part, the default
|
||||||
|
values should work. If in doubt, follow the 'When in doubt'
|
||||||
|
suggestion.
|
||||||
|
|
||||||
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
! If you are building under Windoz or a Windoz-like environment !
|
||||||
|
! (such as Cygwin or DJGPP), read the README.WINDOWS file. !
|
||||||
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
You should determine if these Makefile variables are reasonable:
|
||||||
|
|
||||||
|
INCDIR Where the system include (.h) files are kept.
|
||||||
|
BINDIR Where to install calc binary files.
|
||||||
|
LIBDIR Where to install calc link library (*.a) files.
|
||||||
|
CALC_SHAREDIR Where to install calc help, .cal, startup, and
|
||||||
|
config files.
|
||||||
|
|
||||||
|
You may want to change the default installation locations for
|
||||||
|
these values, which are based on the 4 values listed above:
|
||||||
|
|
||||||
|
HELPDIR where the help directory is installed
|
||||||
|
CALC_INCDIR where the calc include files are installed
|
||||||
|
CUSTOMCALDIR where custom *.cal files are installed
|
||||||
|
CUSTOMHELPDIR where custom help files are installed
|
||||||
|
CUSTOMINCPDIR where custom .h files are installed
|
||||||
|
SCRIPTDIR where calc shell scripts are installed
|
||||||
|
|
||||||
|
If you want to install calc files under a top level directory,
|
||||||
|
then set the T value:
|
||||||
|
|
||||||
|
The calc install is performed under $T, the calc build is
|
||||||
|
performed under /. The purpose for $T is to allow someone
|
||||||
|
to install calc somewhere other than into the system area.
|
||||||
|
|
||||||
|
For example, if:
|
||||||
|
|
||||||
|
BINDIR= /usr/bin
|
||||||
|
LIBDIR= /usr/lib
|
||||||
|
CALC_SHAREDIR= /usr/share/calc
|
||||||
|
|
||||||
|
and if:
|
||||||
|
|
||||||
|
T= /var/tmp/testing
|
||||||
|
|
||||||
|
Then the installation locations will be:
|
||||||
|
|
||||||
|
calc binary files: /var/tmp/testing/usr/bin
|
||||||
|
calc link library: /var/tmp/testing/usr/lib
|
||||||
|
calc help, .cal ...: /var/tmp/testing/usr/share/calc
|
||||||
|
... etc ... /var/tmp/testing/...
|
||||||
|
|
||||||
|
If $T is empty, calc is installed under /, which is the same
|
||||||
|
top of tree for which it was built. If $T is non-empty, then
|
||||||
|
calc is installed under $T, as if one had to chroot under
|
||||||
|
$T for calc to operate.
|
||||||
|
|
||||||
|
Look for the section that starts:
|
||||||
|
|
||||||
|
################
|
||||||
|
# compiler set #
|
||||||
|
################
|
||||||
|
|
||||||
Select a compiler set by commenting in the appropriate set
|
Select a compiler set by commenting in the appropriate set
|
||||||
of cc options. As shipped the Makefile assumes a gcc-like
|
of cc options. As shipped the Makefile assumes a gcc-like
|
||||||
@@ -10,21 +71,31 @@ Installing calc in 4 easy steps:
|
|||||||
found below, comment out the Linux set and comment in that
|
found below, comment out the Linux set and comment in that
|
||||||
set or edit the gcc set or the common cc set as needed.
|
set or edit the gcc set or the common cc set as needed.
|
||||||
|
|
||||||
|
You may want to change these Makrfile variables from their defaults:
|
||||||
|
|
||||||
|
RANLIB
|
||||||
|
|
||||||
You may or may not need RANLIB when building libraries.
|
You may or may not need RANLIB when building libraries.
|
||||||
As shipped the Makefile assumes RANLIB is needed.
|
As shipped the Makefile assumes RANLIB is needed.
|
||||||
Comment the in/out the RANLIB value if ranlib does
|
Comment the in/out the RANLIB value if ranlib does
|
||||||
not work or does not exist.
|
not work or does not exist.
|
||||||
|
|
||||||
|
CALCPAGER
|
||||||
|
|
||||||
You may want to change the default pager used by calc.
|
You may want to change the default pager used by calc.
|
||||||
As shipped the Makefile assumes 'more'. On your system
|
As shipped the Makefile assumes 'more'. On your system
|
||||||
you may find 'less' to be a better pager.
|
you may find 'less' to be a better pager.
|
||||||
|
|
||||||
Set TOPDIR to be the place under which help files, calc,
|
DEBUG
|
||||||
include files and calc libs are to be installed. As shipped
|
|
||||||
the Makefile assumes a TOPDIR of /usr/local/lib.
|
|
||||||
|
|
||||||
Set BINDIR to the place where calc is installed. As shipped
|
Some compilers (to put it mildly) have bugs. Sometimes the
|
||||||
the Makefile assumes a BINDIR /usr/local/bin.
|
DEBUG Makefile variable causes the compiler / optimizer to
|
||||||
|
produce bad code. Other compilers do just fine.
|
||||||
|
|
||||||
|
If possible try to use DEBUG=-O3 -g3 (maximum optimization
|
||||||
|
and debug symbols). If the calc test fails (see step 3),
|
||||||
|
try lowering either the -O value and/or the -g3. Also try
|
||||||
|
using -Osomething without -g.
|
||||||
|
|
||||||
Adjust other Makefile variables as needed.
|
Adjust other Makefile variables as needed.
|
||||||
|
|
||||||
@@ -40,7 +111,8 @@ Installing calc in 4 easy steps:
|
|||||||
|
|
||||||
make check
|
make check
|
||||||
|
|
||||||
==> If you run into problems, follow the BUGS file instructions.
|
==> If you run into problems, read the BUGS file and follow
|
||||||
|
the instructions found in there.
|
||||||
|
|
||||||
4) install calc:
|
4) install calc:
|
||||||
|
|
||||||
@@ -65,12 +137,12 @@ the calc help subsystem. See the README file for details.
|
|||||||
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.1 $
|
## @(#) $Revision: 29.6 $
|
||||||
## @(#) $Id: HOWTO.INSTALL,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
## @(#) $Id: HOWTO.INSTALL,v 29.6 2002/03/14 00:28:28 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/RCS/HOWTO.INSTALL,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/HOWTO.INSTALL,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 1999/09/27 20:48:44
|
## Under source code control: 1999/09/27 20:48:44
|
||||||
## File existed as early as: 1999
|
## File existed as early as: 1999
|
||||||
##
|
##
|
||||||
## chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
## Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
32
LIBRARY
32
LIBRARY
@@ -48,12 +48,30 @@ convenient for outside use. So you should read the source for a routine
|
|||||||
to see if it really does what you think it does. I won't guarantee that
|
to see if it really does what you think it does. I won't guarantee that
|
||||||
obscure internal routines won't change or disappear in future releases!
|
obscure internal routines won't change or disappear in future releases!
|
||||||
|
|
||||||
When calc is installed, all of the include files needed to build
|
When calc is installed, all of libraries are installed into ${LIBDIR}.
|
||||||
libcalc.a along with the link library itself are installed into ${LIBDIR}.
|
All of the calc header files are installed under ${INCDIRCALC}.
|
||||||
|
|
||||||
|
If CALC_SRC is defined, then the calc header files will assume that
|
||||||
|
they are in or under the current directory. However, most external
|
||||||
|
programs most likely will not be located under calc'c source tree.
|
||||||
|
External programs most likely want to use the installed calc header
|
||||||
|
files under ${INCDIRCALC}. External programs most likely NOT want
|
||||||
|
to define CALC_SRC.
|
||||||
|
|
||||||
External programs may want to compile with:
|
External programs may want to compile with:
|
||||||
|
|
||||||
-I${LIBDIR} -L${LIBDIR} -lcalc
|
-L${LIBDIR} -lcalc
|
||||||
|
|
||||||
|
If custom functions are also used, they may want to compile with:
|
||||||
|
|
||||||
|
-L${LIBDIR} -lcalc -lcustcalc
|
||||||
|
|
||||||
|
The CALC_SRC symbol should NOT be defined by default. However if you are
|
||||||
|
feeling pedantic you may want to force CALC_SRC to be undefined:
|
||||||
|
|
||||||
|
-UCALC_SRC
|
||||||
|
|
||||||
|
as well.
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
ERROR HANDLING
|
ERROR HANDLING
|
||||||
@@ -471,12 +489,12 @@ need call libcalc_call_me_last() only once.
|
|||||||
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.1 $
|
## @(#) $Revision: 29.5 $
|
||||||
## @(#) $Id: LIBRARY,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
## @(#) $Id: LIBRARY,v 29.5 2001/06/08 22:57:35 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/RCS/LIBRARY,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/LIBRARY,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 1993/07/30 19:44:49
|
## Under source code control: 1993/07/30 19:44:49
|
||||||
## File existed as early as: 1993
|
## File existed as early as: 1993
|
||||||
##
|
##
|
||||||
## chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
## Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
42
README
42
README
@@ -4,7 +4,7 @@ See the HOWTO.INSTALL file for information on how to build and install calc.
|
|||||||
|
|
||||||
To be sure that your version of calc is up to date, check out:
|
To be sure that your version of calc is up to date, check out:
|
||||||
|
|
||||||
http://reality.sgi.com/chongo/tech/comp/calc/calc-download.html
|
http://www.isthe.com/chongo/tech/comp/calc/calc-download.html
|
||||||
|
|
||||||
We are interested in any/all feedback on recent versions of calc.
|
We are interested in any/all feedback on recent versions of calc.
|
||||||
In particular we would like to hear about:
|
In particular we would like to hear about:
|
||||||
@@ -73,11 +73,18 @@ for a wish/todo list. Code contributions are welcome.
|
|||||||
|
|
||||||
=-=
|
=-=
|
||||||
|
|
||||||
To join the calc-tester mailing list. Send a request to:
|
To join the calc-tester mailing list. Send an EMail message to:
|
||||||
|
|
||||||
calc-tester-request at postofc dot corp dot sgi dot com
|
calc-tester-request at asthe dot com
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe' and the web site URL uses 'isthe' ]]
|
||||||
|
|
||||||
|
Your subject must contain the words:
|
||||||
|
|
||||||
|
calc mailing list subscription
|
||||||
|
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
|
||||||
Your message body (not the subject) should consist of:
|
Your message body (not the subject) should consist of:
|
||||||
|
|
||||||
@@ -88,17 +95,28 @@ Your message body (not the subject) should consist of:
|
|||||||
where ``address'' is your EMail address and ``your_full_name'' is
|
where ``address'' is your EMail address and ``your_full_name'' is
|
||||||
your full name.
|
your full name.
|
||||||
|
|
||||||
Calc bug reports, however should be sent to:
|
Feel free to follow the name line with additional EMail text as desired.
|
||||||
|
|
||||||
calc-bugs at postofc dot corp dot sgi dot com
|
=-=
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
Send Calc bug and bug fixes to:
|
||||||
|
|
||||||
|
calc-bugs at asthe dot com
|
||||||
|
|
||||||
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe' and the web site URL uses 'isthe' ]]
|
||||||
|
|
||||||
but see the BUGS file first.
|
but see the BUGS file first.
|
||||||
|
|
||||||
|
Your subject must contain the words:
|
||||||
|
|
||||||
|
calc bug report
|
||||||
|
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
|
||||||
The calc web site is located at:
|
The calc web site is located at:
|
||||||
|
|
||||||
http://reality.sgi.com/chongo/tech/comp/calc/
|
http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
|
||||||
## Copyright (C) 1999 Landon Curt Noll
|
## Copyright (C) 1999 Landon Curt Noll
|
||||||
##
|
##
|
||||||
@@ -116,12 +134,12 @@ The calc web site is located at:
|
|||||||
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.1 $
|
## @(#) $Revision: 29.3 $
|
||||||
## @(#) $Id: README,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
## @(#) $Id: README,v 29.3 2001/06/01 11:26:53 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/RCS/README,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/README,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 1995/10/25 05:27:59
|
## Under source code control: 1995/10/25 05:27:59
|
||||||
## File existed as early as: 1995
|
## File existed as early as: 1995
|
||||||
##
|
##
|
||||||
## chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
## Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
166
README.WINDOWS
Normal file
166
README.WINDOWS
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
Dear calc user on a Windoz based system,
|
||||||
|
|
||||||
|
See the HOWTO.INSTALL file for information on how to build and install calc.
|
||||||
|
See also the README file.
|
||||||
|
|
||||||
|
NOTE: The main developers do not have access to a Windoz based platform.
|
||||||
|
While we will make an effort to not break calc Windoz based system,
|
||||||
|
our lack of a Windoz test environment will mean we will make mistakes
|
||||||
|
from time to time. Hopefully Windowz users can overcome these mistakes.
|
||||||
|
Of course you are welcome to send us any patches that fix your
|
||||||
|
Windoz build environment.
|
||||||
|
|
||||||
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
=-= compiling under DJGPP =-=
|
||||||
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
|
||||||
|
You might want to try using the DJGPP system to compile calc. See:
|
||||||
|
|
||||||
|
http://www.delorie.com/djgpp/
|
||||||
|
|
||||||
|
for DJGPP details and availability.
|
||||||
|
|
||||||
|
To compile with DJGPP, one needs to select a number of Makefile
|
||||||
|
variable changes. Eli Zaretskii <eliz at is dot elta dot co dot il>
|
||||||
|
recommends the following settings:
|
||||||
|
|
||||||
|
TERMCONTROL= -DUSE_TERMIOS
|
||||||
|
BYTE_ORDER= -DLITTLE_ENDIAN
|
||||||
|
LONG_BITS= 32
|
||||||
|
LONGLONG_BITS= 64
|
||||||
|
HAVE_FPOS_POS= -DHAVE_NO_FPOS_POS
|
||||||
|
FPOS_BITS= 32
|
||||||
|
OFF_T_BITS= 32
|
||||||
|
DEV_BITS= 32
|
||||||
|
INODE_BITS= 32
|
||||||
|
HAVE_USTAT= -DHAVE_NO_USTAT
|
||||||
|
HAVE_GETSID= -DHAVE_NO_GETSID
|
||||||
|
HAVE_GETPGID= -DHAVE_NO_GETPGID
|
||||||
|
HAVE_GETTIME= -DHAVE_NO_GETTIME
|
||||||
|
HAVE_GETPRID= -DHAVE_NO_GETPRID
|
||||||
|
HAVE_URANDOM_H= NO
|
||||||
|
ALIGN32= -UMUST_ALIGN32
|
||||||
|
HAVE_MALLOC_H= YES
|
||||||
|
HAVE_STDLIB_H= YES
|
||||||
|
HAVE_STRING_H= YES
|
||||||
|
HAVE_TIMES_H= NO
|
||||||
|
HAVE_SYS_TIMES_H= YES
|
||||||
|
HAVE_TIME_H= YES
|
||||||
|
HAVE_SYS_TIME_H= YES
|
||||||
|
HAVE_UNISTD_H= YES
|
||||||
|
BINDIR= /dev/env/DJDIR/bin
|
||||||
|
INCDIR= /dev/env/DJDIR/include
|
||||||
|
LIBDIR= /dev/env/DJDIR/lib
|
||||||
|
MANDIR= /dev/env/DJDIR/man/man1
|
||||||
|
CATDIR= /dev/env/DJDIR/man/cat1
|
||||||
|
NROFF= groff
|
||||||
|
CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR}
|
||||||
|
CALCRC= ${CALC_SHAREDIR}/startup;~/.calcrc;./.calcinit
|
||||||
|
CALCPAGER= less.exe -ci
|
||||||
|
DEBUG= -O2 -gstabs+
|
||||||
|
|
||||||
|
The 'Linux set' or 'gcc set' (see the Select your compiler type section)
|
||||||
|
should work for DJGPP systems if you set the above Makefile variables.
|
||||||
|
|
||||||
|
Look for Makefile comments of the form:
|
||||||
|
|
||||||
|
# Select ...something... for DJGPP.
|
||||||
|
|
||||||
|
Follow those recommendations. In cases where they conflict with
|
||||||
|
the above Makefile list, follow the recommendation in the Makefile.
|
||||||
|
|
||||||
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
=-= compiling with Cygwin =-=
|
||||||
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
|
||||||
|
An effort is being made to allow windows users to compile calc using the
|
||||||
|
Cygwin project (http://sources.redhat.com/cygwin/) with the GCC compiler
|
||||||
|
and Un*x tools for Windows.
|
||||||
|
|
||||||
|
The major porting work was performed by Thomas Jones-Low
|
||||||
|
(tjoneslo at softstart dot com). He said:
|
||||||
|
|
||||||
|
I had previous stated to this group that I have successfully managed
|
||||||
|
to port a version of Calc to Windows, and promised some point to
|
||||||
|
post what was required, so here it is.
|
||||||
|
|
||||||
|
One obvious manner of doing this port is to get the latest version
|
||||||
|
of the Cygwin project (http://sources.redhat.com/cygwin/) with the
|
||||||
|
GCC compiler and Un*x tools for Windows and recompile.
|
||||||
|
|
||||||
|
I built my working version using Calc ... I am using Visual C++
|
||||||
|
version 7.0, which is an older version of the Microsoft development
|
||||||
|
tools. The make file provided with Calc is not compatible with
|
||||||
|
NMAKE, so I used the Visual Studio tools to generate another one
|
||||||
|
(not included). Calc is built in two parts, calc.dll, which is the
|
||||||
|
library, and calcexe.exe which is the command line interface.
|
||||||
|
|
||||||
|
He recommends that you generate by hand all of the header files generated
|
||||||
|
by the make file:
|
||||||
|
|
||||||
|
align32.h args.h calcerr.h conf.h endian_calc.h
|
||||||
|
fposval.h have_const.h have_fpos.h have_fpos_pos.h have_malloc.h
|
||||||
|
have_memmv.h have_newstr.h have_offscl.h have_posscl.h
|
||||||
|
have_stdlib.h have_string.h have_times.h have_uid_t.h
|
||||||
|
have_unistd.h longbits.h longlong.h terminal.h
|
||||||
|
have_ustat.h have_getsid.h have_getpgid.h
|
||||||
|
have_gettime.h have_getprid.h have_urandom.h have_rusage.h
|
||||||
|
have_strdup.h
|
||||||
|
|
||||||
|
You will find generated versions of these files located in the win32
|
||||||
|
sub-directory. These files may be appropriate for your Cygwin building
|
||||||
|
needs. Just copy the win32/*.[ch] files up into the top level calc
|
||||||
|
source directory, edited (if needed) and build using the Cygwin GCC
|
||||||
|
compiler.
|
||||||
|
|
||||||
|
People who maintain calc need to keep in mind the following:
|
||||||
|
|
||||||
|
The following was added to opcodes.h, config.h, zmath.h and value.h:
|
||||||
|
|
||||||
|
#if defined(_WIN32)
|
||||||
|
#ifdef _EXPORTING
|
||||||
|
#define DLL __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
#define DLL __declspec(dllimport)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#else /* Windoz free systems */
|
||||||
|
|
||||||
|
#define DLL
|
||||||
|
|
||||||
|
#endif /* Windoz free systems */
|
||||||
|
|
||||||
|
Then DLL was added in front of all the exported functions. For example:
|
||||||
|
|
||||||
|
extern int configtype(char*);
|
||||||
|
|
||||||
|
was changed to:
|
||||||
|
|
||||||
|
DLL extern int configtype(char*);
|
||||||
|
|
||||||
|
|
||||||
|
## Copyright (C) 2002 Landon Curt Noll and Thomas Jones-Low
|
||||||
|
##
|
||||||
|
## Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
## the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
## as published by the Free Software Foundation.
|
||||||
|
##
|
||||||
|
## Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
## Public License for more details.
|
||||||
|
##
|
||||||
|
## A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
## distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
##
|
||||||
|
## @(#) $Revision: 29.8 $
|
||||||
|
## @(#) $Id: README.WINDOWS,v 29.8 2002/03/14 00:28:28 chongo Exp $
|
||||||
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/README.WINDOWS,v $
|
||||||
|
##
|
||||||
|
## Under source code control: 2001/02/25 14:00:05
|
||||||
|
## File existed as early as: 2001
|
||||||
|
##
|
||||||
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
10
addop.c
10
addop.c
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: addop.c,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: addop.c,v 29.3 2000/07/17 15:35:49 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/addop.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/addop.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:10
|
* Under source code control: 1990/02/15 01:48:10
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -208,7 +208,7 @@ endfunc(void)
|
|||||||
memcpy((char *) fp, (char *) curfunc, size);
|
memcpy((char *) fp, (char *) curfunc, size);
|
||||||
if (curfunc != functemplate)
|
if (curfunc != functemplate)
|
||||||
free(curfunc);
|
free(curfunc);
|
||||||
if (conf->traceflags & TRACE_FNCODES) {
|
if (newname[0] != '*' && (conf->traceflags & TRACE_FNCODES)) {
|
||||||
dumpnames = TRUE;
|
dumpnames = TRUE;
|
||||||
for (size = 0; size < fp->f_opcodecount; ) {
|
for (size = 0; size < fp->f_opcodecount; ) {
|
||||||
printf("%ld: ", (long)size);
|
printf("%ld: ", (long)size);
|
||||||
@@ -318,7 +318,7 @@ freefunc(FUNC *fp)
|
|||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (conf->traceflags & TRACE_FNCODES) {
|
if (newname[0] != '*' && (conf->traceflags & TRACE_FNCODES)) {
|
||||||
printf("Freeing function \"%s\"\n",namestr(&funcnames,index));
|
printf("Freeing function \"%s\"\n",namestr(&funcnames,index));
|
||||||
dumpnames = FALSE;
|
dumpnames = FALSE;
|
||||||
for (i = 0; i < fp->f_opcodecount; ) {
|
for (i = 0; i < fp->f_opcodecount; ) {
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: align32.c,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: align32.c,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/align32.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/align32.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/11/23 05:18:06
|
* Under source code control: 1995/11/23 05:18:06
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
13
alloc.h
13
alloc.h
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.4 $
|
||||||
* @(#) $Id: alloc.h,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: alloc.h,v 29.4 2001/06/08 21:00:58 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/alloc.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/alloc.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:29
|
* Under source code control: 1990/02/15 01:48:29
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -32,10 +32,17 @@
|
|||||||
#define __ALLOC_H__
|
#define __ALLOC_H__
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(CALC_SRC) /* if we are building from the calc source tree */
|
||||||
# include "have_malloc.h"
|
# include "have_malloc.h"
|
||||||
# include "have_newstr.h"
|
# include "have_newstr.h"
|
||||||
# include "have_string.h"
|
# include "have_string.h"
|
||||||
# include "have_memmv.h"
|
# include "have_memmv.h"
|
||||||
|
#else
|
||||||
|
# include <calc/have_malloc.h>
|
||||||
|
# include <calc/have_newstr.h>
|
||||||
|
# include <calc/have_string.h>
|
||||||
|
# include <calc/have_memmv.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_MALLOC_H
|
#ifdef HAVE_MALLOC_H
|
||||||
# include <malloc.h>
|
# include <malloc.h>
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: assocfunc.c,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: assocfunc.c,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/assocfunc.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/assocfunc.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1993/07/20 23:04:27
|
* Under source code control: 1993/07/20 23:04:27
|
||||||
* File existed as early as: 1993
|
* File existed as early as: 1993
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
12
blkcpy.c
12
blkcpy.c
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: blkcpy.c,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: blkcpy.c,v 29.3 2001/04/10 22:06:46 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/blkcpy.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/blkcpy.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/04/18 20:41:26
|
* Under source code control: 1997/04/18 20:41:26
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -581,7 +581,7 @@ copyblk2file(BLOCK *sblk, long ssi, long num, FILEID id, long dsi)
|
|||||||
if (num == 0)
|
if (num == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
fiop = findid(id, 'w');
|
fiop = findid(id, TRUE);
|
||||||
if (fiop == NULL)
|
if (fiop == NULL)
|
||||||
return E_COPYF1;
|
return E_COPYF1;
|
||||||
fp = fiop->fp;
|
fp = fiop->fp;
|
||||||
@@ -618,7 +618,7 @@ copyfile2blk(FILEID id, long ssi, long num, BLOCK *dblk, long dsi, BOOL noreloc)
|
|||||||
|
|
||||||
if (id < 3) /* excludes copying from stdin */
|
if (id < 3) /* excludes copying from stdin */
|
||||||
return E_COPYF1;
|
return E_COPYF1;
|
||||||
fiop = findid(id, 'r');
|
fiop = findid(id, FALSE);
|
||||||
if (fiop == NULL)
|
if (fiop == NULL)
|
||||||
return E_COPYF1;
|
return E_COPYF1;
|
||||||
|
|
||||||
@@ -690,7 +690,7 @@ copystr2file(STRING *str, long ssi, long num, FILEID id, long dsi)
|
|||||||
return 0;
|
return 0;
|
||||||
if ((USB32) ssi + num > len)
|
if ((USB32) ssi + num > len)
|
||||||
return E_COPY5; /* Insufficient memory in str */
|
return E_COPY5; /* Insufficient memory in str */
|
||||||
fiop = findid(id, 'w');
|
fiop = findid(id, TRUE);
|
||||||
if (fiop == NULL)
|
if (fiop == NULL)
|
||||||
return E_COPYF1;
|
return E_COPYF1;
|
||||||
fp = fiop->fp;
|
fp = fiop->fp;
|
||||||
|
6
blkcpy.h
6
blkcpy.h
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: blkcpy.h,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: blkcpy.h,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/blkcpy.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/blkcpy.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/04/18 20:41:25
|
* Under source code control: 1997/04/18 20:41:25
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
8
block.c
8
block.c
@@ -19,15 +19,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: block.c,v 29.1 1999/12/14 09:15:29 chongo Exp $
|
* @(#) $Id: block.c,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/block.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/block.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/02/27 00:29:40
|
* Under source code control: 1997/02/27 00:29:40
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
8
block.h
8
block.h
@@ -19,15 +19,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: block.h,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
* @(#) $Id: block.h,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/block.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/block.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/02/21 05:03:39
|
* Under source code control: 1997/02/21 05:03:39
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: byteswap.c,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
* @(#) $Id: byteswap.c,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/byteswap.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/byteswap.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/10/11 04:44:01
|
* Under source code control: 1995/10/11 04:44:01
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
12
byteswap.h
12
byteswap.h
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.4 $
|
||||||
* @(#) $Id: byteswap.h,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
* @(#) $Id: byteswap.h,v 29.4 2001/06/08 21:00:58 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/byteswap.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/byteswap.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/10/11 04:44:01
|
* Under source code control: 1995/10/11 04:44:01
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -33,7 +33,11 @@
|
|||||||
#define __BYTESWAP_H__
|
#define __BYTESWAP_H__
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(CALC_SRC) /* if we are building from the calc source tree */
|
||||||
# include "longbits.h"
|
# include "longbits.h"
|
||||||
|
#else
|
||||||
|
# include <calc/longbits.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
194
cal/Makefile
194
cal/Makefile
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.15 $
|
||||||
# @(#) $Id: Makefile,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
# @(#) $Id: Makefile,v 29.15 2003/01/05 08:10:56 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/Makefile,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/Makefile,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1991/07/21 05:00:54
|
# Under source code control: 1991/07/21 05:00:54
|
||||||
# File existed as early as: 1991
|
# File existed as early as: 1991
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
# calculator by David I. Bell with help/mods from others
|
# calculator by David I. Bell with help/mods from others
|
||||||
# Makefile by Landon Curt Noll
|
# Makefile by Landon Curt Noll
|
||||||
@@ -36,15 +36,120 @@
|
|||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
MAKE_FILE = Makefile
|
MAKE_FILE = Makefile
|
||||||
|
|
||||||
|
####
|
||||||
# Normally, the upper level makefile will set these values. We provide
|
# Normally, the upper level makefile will set these values. We provide
|
||||||
# a default here just in case you want to build from this directory.
|
# a default here just in case you want to build from this directory.
|
||||||
#
|
####
|
||||||
# where to install things
|
|
||||||
TOPDIR= /usr/local/lib
|
|
||||||
#TOPDIR= /usr/lib
|
|
||||||
#TOPDIR= /usr/libdata
|
|
||||||
|
|
||||||
LIBDIR= ${TOPDIR}/calc
|
# Where the system include (.h) files are kept
|
||||||
|
#
|
||||||
|
# For DJGPP, select:
|
||||||
|
#
|
||||||
|
# INCDIR= /dev/env/DJDIR/include
|
||||||
|
#
|
||||||
|
# If in doubt, set:
|
||||||
|
#
|
||||||
|
# INCDIR= /usr/include
|
||||||
|
#
|
||||||
|
|
||||||
|
#INCDIR= /usr/local/include
|
||||||
|
#INCDIR= /dev/env/DJDIR/include
|
||||||
|
INCDIR= /usr/include
|
||||||
|
|
||||||
|
# where to install calc realted things
|
||||||
|
#
|
||||||
|
# ${BINDIR} where to install calc binary files
|
||||||
|
# ${LIBDIR} where calc link library (*.a) files are installed
|
||||||
|
# ${CALC_SHAREDIR} where to install calc help, .cal, startup, config files
|
||||||
|
#
|
||||||
|
# NOTE: The install rule prepends installation paths with $T, which
|
||||||
|
# by default is empty. If $T is non-empty, then installation
|
||||||
|
# locations will be relative to the $T directory.
|
||||||
|
#
|
||||||
|
# For DJGPP, select:
|
||||||
|
#
|
||||||
|
# BINDIR= /dev/env/DJDIR/bin
|
||||||
|
# LIBDIR= /dev/env/DJDIR/lib
|
||||||
|
# CALC_SHAREDIR= /dev/env/DJDIR/share/calc
|
||||||
|
#
|
||||||
|
# If in doubt, set:
|
||||||
|
#
|
||||||
|
# BINDIR= /usr/bin
|
||||||
|
# LIBDIR= /usr/lib
|
||||||
|
# CALC_SHAREDIR= /usr/share/calc
|
||||||
|
#
|
||||||
|
#BINDIR= /usr/local/bin
|
||||||
|
#BINDIR= /dev/env/DJDIR/bin
|
||||||
|
BINDIR= /usr/bin
|
||||||
|
|
||||||
|
#LIBDIR= /usr/local/lib
|
||||||
|
#LIBDIR= /dev/env/DJDIR/lib
|
||||||
|
LIBDIR= /usr/lib
|
||||||
|
|
||||||
|
#CALC_SHAREDIR= /usr/local/lib/calc
|
||||||
|
#CALC_SHAREDIR= /dev/env/DJDIR/share/calc
|
||||||
|
CALC_SHAREDIR= /usr/share/calc
|
||||||
|
|
||||||
|
# By default, these values are based CALC_SHAREDIR, INCDIR, BINDIR
|
||||||
|
# ---------------------------------------------------------------
|
||||||
|
# ${HELPDIR} where the help directory is installed
|
||||||
|
# ${CALC_INCDIR} where the calc include files are installed
|
||||||
|
# ${CUSTOMCALDIR} where custom *.cal files are installed
|
||||||
|
# ${CUSTOMHELPDIR} where custom help files are installed
|
||||||
|
# ${CUSTOMINCPDIR} where custom .h files are installed
|
||||||
|
# ${SCRIPTDIR} where calc shell scripts are installed
|
||||||
|
#
|
||||||
|
# NOTE: The install rule prepends installation paths with $T, which
|
||||||
|
# by default is empty. If $T is non-empty, then installation
|
||||||
|
# locations will be relative to the $T directory.
|
||||||
|
#
|
||||||
|
# If in doubt, set:
|
||||||
|
#
|
||||||
|
# HELPDIR= ${CALC_SHAREDIR}/help
|
||||||
|
# CALC_INCDIR= ${INCDIR}/calc
|
||||||
|
# CUSTOMCALDIR= ${CALC_SHAREDIR}/custom
|
||||||
|
# CUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelp
|
||||||
|
# CUSTOMINCDIR= ${CALC_INCDIR}/custom
|
||||||
|
# SCRIPTDIR= ${BINDIR}/cscript
|
||||||
|
#
|
||||||
|
HELPDIR= ${CALC_SHAREDIR}/help
|
||||||
|
CALC_INCDIR= ${INCDIR}/calc
|
||||||
|
CUSTOMCALDIR= ${CALC_SHAREDIR}/custom
|
||||||
|
CUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelp
|
||||||
|
CUSTOMINCDIR= ${CALC_INCDIR}/custom
|
||||||
|
SCRIPTDIR= ${BINDIR}/cscript
|
||||||
|
|
||||||
|
# T - top level directory under which calc will be installed
|
||||||
|
#
|
||||||
|
# The calc install is performed under $T, the calc build is
|
||||||
|
# performed under /. The purpose for $T is to allow someone
|
||||||
|
# to install calc somewhere other than into the system area.
|
||||||
|
#
|
||||||
|
# For example, if:
|
||||||
|
#
|
||||||
|
# BINDIR= /usr/bin
|
||||||
|
# LIBDIR= /usr/lib
|
||||||
|
# CALC_SHAREDIR= /usr/share/calc
|
||||||
|
#
|
||||||
|
# and if:
|
||||||
|
#
|
||||||
|
# T= /var/tmp/testing
|
||||||
|
#
|
||||||
|
# Then the installation locations will be:
|
||||||
|
#
|
||||||
|
# calc binary files: /var/tmp/testing/usr/bin
|
||||||
|
# calc link library: /var/tmp/testing/usr/lib
|
||||||
|
# calc help, .cal ...: /var/tmp/testing/usr/share/calc
|
||||||
|
# ... etc ... /var/tmp/testing/...
|
||||||
|
#
|
||||||
|
# If $T is empty, calc is installed under /, which is the same
|
||||||
|
# top of tree for which it was built. If $T is non-empty, then
|
||||||
|
# calc is installed under $T, as if one had to chroot under
|
||||||
|
# $T for calc to operate.
|
||||||
|
#
|
||||||
|
# If in doubt, use T=
|
||||||
|
#
|
||||||
|
T=
|
||||||
|
|
||||||
# Makefile debug
|
# Makefile debug
|
||||||
#
|
#
|
||||||
@@ -57,6 +162,7 @@ Q=@
|
|||||||
# standard tools
|
# standard tools
|
||||||
#
|
#
|
||||||
CHMOD= chmod
|
CHMOD= chmod
|
||||||
|
CMP= cmp
|
||||||
|
|
||||||
# The calc files to install
|
# The calc files to install
|
||||||
#
|
#
|
||||||
@@ -69,8 +175,8 @@ CALC_FILES= README bigprime.cal deg.cal ellip.cal lucas.cal lucas_chk.cal \
|
|||||||
test2700.cal test3100.cal test3300.cal test3400.cal prompt.cal \
|
test2700.cal test3100.cal test3300.cal test3400.cal prompt.cal \
|
||||||
test3500.cal seedrandom.cal test4000.cal test4100.cal test4600.cal \
|
test3500.cal seedrandom.cal test4000.cal test4100.cal test4600.cal \
|
||||||
beer.cal hello.cal test5100.cal test5200.cal randombitrun.cal \
|
beer.cal hello.cal test5100.cal test5200.cal randombitrun.cal \
|
||||||
randomrun.cal xx_print.cal natnumset.cal qtime.cal test8400.cal \
|
randomrun.cal repeat.cal xx_print.cal natnumset.cal qtime.cal \
|
||||||
test8500.cal
|
test8400.cal test8500.cal test8600.cal chi.cal intfile.cal
|
||||||
|
|
||||||
# These files are found (but not built) in the distribution
|
# These files are found (but not built) in the distribution
|
||||||
#
|
#
|
||||||
@@ -102,8 +208,10 @@ all: ${CALC_FILES} ${MAKE_FILE} .all
|
|||||||
##
|
##
|
||||||
|
|
||||||
distlist: ${DISTLIST}
|
distlist: ${DISTLIST}
|
||||||
${Q}for i in ${DISTLIST}; do \
|
${Q}for i in ${DISTLIST} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
echo cal/$$i; \
|
echo cal/$$i; \
|
||||||
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
distdir:
|
distdir:
|
||||||
@@ -116,34 +224,54 @@ calcliblist:
|
|||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
##
|
||||||
|
#
|
||||||
|
# rpm rules
|
||||||
|
#
|
||||||
|
##
|
||||||
|
|
||||||
|
echo_inst_files:
|
||||||
|
${Q}for i in ${CALC_FILES} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
|
echo __file__ ${CALC_SHAREDIR}/$$i; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
##
|
||||||
|
#
|
||||||
|
# Utility rules
|
||||||
|
#
|
||||||
|
##
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
||||||
clobber:
|
clobber:
|
||||||
rm -f .all
|
rm -f .all
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
-${Q}if [ ! -d ${TOPDIR} ]; then \
|
-${Q}if [ ! -d $T${CALC_SHAREDIR} ]; then \
|
||||||
echo mkdir ${TOPDIR}; \
|
echo mkdir $T${CALC_SHAREDIR}; \
|
||||||
mkdir ${TOPDIR}; \
|
mkdir $T${CALC_SHAREDIR}; \
|
||||||
|
if [ ! -d "$T${CALC_SHAREDIR}" ]; then \
|
||||||
|
echo mkdir -p "$T${CALC_SHAREDIR}"; \
|
||||||
|
mkdir -p "$T${CALC_SHAREDIR}"; \
|
||||||
|
fi; \
|
||||||
|
echo ${CHMOD} 0755 $T${CALC_SHAREDIR}; \
|
||||||
|
${CHMOD} 0755 $T${CALC_SHAREDIR}; \
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi
|
fi
|
||||||
-${Q}if [ ! -d ${LIBDIR} ]; then \
|
${Q}for i in ${CALC_FILES} /dev/null; do \
|
||||||
echo mkdir ${LIBDIR}; \
|
if [ "$$i" = "/dev/null" ]; then \
|
||||||
mkdir ${LIBDIR}; \
|
continue; \
|
||||||
else \
|
fi; \
|
||||||
|
if ${CMP} -s $$i $T${CALC_SHAREDIR}/$$i; then \
|
||||||
true; \
|
true; \
|
||||||
fi
|
else \
|
||||||
${Q}for i in ${CALC_FILES}; do \
|
rm -f $T${CALC_SHAREDIR}/$$i.new; \
|
||||||
echo rm -f ${LIBDIR}/$$i; \
|
cp -f $$i $T${CALC_SHAREDIR}/$$i.new; \
|
||||||
rm -f ${LIBDIR}/$$i; \
|
${CHMOD} 0444 $T${CALC_SHAREDIR}/$$i.new; \
|
||||||
echo cp $$i ${LIBDIR}; \
|
mv -f $T${CALC_SHAREDIR}/$$i.new $T${CALC_SHAREDIR}/$$i; \
|
||||||
cp $$i ${LIBDIR}; \
|
echo "installed $T${CALC_SHAREDIR}/$$i"; \
|
||||||
echo ${CHMOD} 0444 ${LIBDIR}/$$i; \
|
fi; \
|
||||||
${CHMOD} 0444 ${LIBDIR}/$$i; \
|
|
||||||
done
|
done
|
||||||
${Q}echo remove files that are obsolete
|
|
||||||
-rm -f nextprime.cal nextprim.cal
|
|
||||||
-rm -f test1000.cal test2000.cal ${LIBDIR}/test2000.cal
|
|
||||||
-rm -f ${LIBDIR}/nextprime.cal ${LIBDIR}/nextprim.cal
|
|
||||||
-rm -f ${LIBDIR}/test1000.cal ${LIBDIR}/cryrand.cal
|
|
||||||
|
137
cal/README
137
cal/README
@@ -1,7 +1,7 @@
|
|||||||
Calc standard resource files
|
Calc standard resource files
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
To load a reosurce file, try:
|
To load a resource file, try:
|
||||||
|
|
||||||
read filename
|
read filename
|
||||||
|
|
||||||
@@ -37,9 +37,10 @@ be useful!
|
|||||||
|
|
||||||
If you write something that you think is useful, please send it to:
|
If you write something that you think is useful, please send it to:
|
||||||
|
|
||||||
calc-tester at postofc dot corp dot sgi dot com
|
calc-contrib at asthe dot com
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe' and the web site URL uses 'isthe' ]]
|
||||||
|
|
||||||
By convention, a resource file only defines and/or initializes functions,
|
By convention, a resource file only defines and/or initializes functions,
|
||||||
objects and variables. (The regress.cal and testxxx.cal regression test
|
objects and variables. (The regress.cal and testxxx.cal regression test
|
||||||
@@ -58,7 +59,7 @@ files have already been read, the read -once will act as a noop.
|
|||||||
|
|
||||||
The "resource_debug" parameter is intended for controlling the possible
|
The "resource_debug" parameter is intended for controlling the possible
|
||||||
display of special information relating to functions, objects, and
|
display of special information relating to functions, objects, and
|
||||||
other structures created by instructions in calc resoure files.
|
other structures created by instructions in calc resource files.
|
||||||
Zero value of config("resource_debug") means that no such information
|
Zero value of config("resource_debug") means that no such information
|
||||||
is displayed. For other values, the non-zero bits which currently
|
is displayed. For other values, the non-zero bits which currently
|
||||||
have meanings are as follows:
|
have meanings are as follows:
|
||||||
@@ -73,6 +74,12 @@ have meanings are as follows:
|
|||||||
the reading of a file, a message saying what has been done
|
the reading of a file, a message saying what has been done
|
||||||
is displayed.
|
is displayed.
|
||||||
|
|
||||||
|
2 Show func will display more information about a functions
|
||||||
|
arguments as well as more argument sdummary information.
|
||||||
|
|
||||||
|
3 During execution, allow calc standard resource files
|
||||||
|
to output additional debugging information.
|
||||||
|
|
||||||
The value for config("resource_debug") in both oldstd and newstd is 3,
|
The value for config("resource_debug") in both oldstd and newstd is 3,
|
||||||
but if calc is invoked with the -d flag, its initial value is zero.
|
but if calc is invoked with the -d flag, its initial value is zero.
|
||||||
Thus, if calc is started without the -d flag, until config("resource_debug")
|
Thus, if calc is started without the -d flag, until config("resource_debug")
|
||||||
@@ -96,6 +103,14 @@ either of the bottom 2 bits set:
|
|||||||
print "funcB(size, mass, ...) defined";
|
print "funcB(size, mass, ...) defined";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
If your the resource file needs to output special debugging informatin,
|
||||||
|
we recommend that you check for bit 3 of the config("resource_debug")
|
||||||
|
before printing the debug statement:
|
||||||
|
|
||||||
|
if (config("resource_debug") & 8) {
|
||||||
|
print "DEBUG: This a sample debug statement";
|
||||||
|
}
|
||||||
|
|
||||||
=-=
|
=-=
|
||||||
|
|
||||||
The following is a brief description of some of the calc resource files
|
The following is a brief description of some of the calc resource files
|
||||||
@@ -115,6 +130,10 @@ bernoulli.cal
|
|||||||
|
|
||||||
Calculate the nth Bernoulli number.
|
Calculate the nth Bernoulli number.
|
||||||
|
|
||||||
|
NOTE: There is now a bernoulli() builtin function. This file is
|
||||||
|
left here for backward compatibility and now simply returns
|
||||||
|
the buildin function.
|
||||||
|
|
||||||
|
|
||||||
bigprime.cal
|
bigprime.cal
|
||||||
|
|
||||||
@@ -123,6 +142,24 @@ bigprime.cal
|
|||||||
A prime test, base a, on p*2^x+1 for even x>m.
|
A prime test, base a, on p*2^x+1 for even x>m.
|
||||||
|
|
||||||
|
|
||||||
|
chi.cal
|
||||||
|
|
||||||
|
Z(x[, eps])
|
||||||
|
P(x[, eps])
|
||||||
|
chi_prob(chi_sq, v[, eps])
|
||||||
|
|
||||||
|
Computes the Probability, given the Null Hypothesis, that a given
|
||||||
|
Chi squared values >= chi_sq with v degrees of freedom.
|
||||||
|
|
||||||
|
The chi_prob() function does not work well with odd degrees of freedom.
|
||||||
|
It is reasonable with even degrees of freedom, although one must give
|
||||||
|
a sifficently small error term as the degress gets large (>100).
|
||||||
|
|
||||||
|
The Z(x) and P(x) are internal statistical funcions.
|
||||||
|
|
||||||
|
eps is an optional epsilon() like error term.
|
||||||
|
|
||||||
|
|
||||||
chrem.cal
|
chrem.cal
|
||||||
|
|
||||||
chrem(r1,m1 [,r2,m2, ...])
|
chrem(r1,m1 [,r2,m2, ...])
|
||||||
@@ -158,6 +195,33 @@ hello.cal
|
|||||||
http://www.latech.edu/~acm/helloworld/calc.html
|
http://www.latech.edu/~acm/helloworld/calc.html
|
||||||
|
|
||||||
|
|
||||||
|
intfile.cal
|
||||||
|
|
||||||
|
file2be(filename)
|
||||||
|
|
||||||
|
Read filename and return an integer that is built from the
|
||||||
|
octets in that file in Big Endian order. The first octets
|
||||||
|
of the file become the most significant bits of the integer.
|
||||||
|
|
||||||
|
file2le(filename)
|
||||||
|
|
||||||
|
Read filename and return an integer that is built from the
|
||||||
|
octets in that file in Little Endian order. The first octets
|
||||||
|
of the file become the most significant bits of the integer.
|
||||||
|
|
||||||
|
be2file(v, filename)
|
||||||
|
|
||||||
|
Write the absolute value of v into filename in Big Endian order.
|
||||||
|
The v argument must be on integer. The most significant bits
|
||||||
|
of the integer become the first octets of the file.
|
||||||
|
|
||||||
|
le2file(v, filename)
|
||||||
|
|
||||||
|
Write the absolute value of v into filename in Little Endian order.
|
||||||
|
The v argument must be on integer. The least significant bits
|
||||||
|
of the integer become the last octets of the file.
|
||||||
|
|
||||||
|
|
||||||
lucas.cal
|
lucas.cal
|
||||||
|
|
||||||
lucas(h, n)
|
lucas(h, n)
|
||||||
@@ -273,7 +337,7 @@ pell.cal
|
|||||||
pell(D)
|
pell(D)
|
||||||
|
|
||||||
Solve Pell's equation; Returns the solution X to: X^2 - D * Y^2 = 1.
|
Solve Pell's equation; Returns the solution X to: X^2 - D * Y^2 = 1.
|
||||||
Type the solution to pells equation for a particular D.
|
Type the solution to Pell's equation for a particular D.
|
||||||
|
|
||||||
|
|
||||||
pi.cal
|
pi.cal
|
||||||
@@ -287,7 +351,7 @@ pi.cal
|
|||||||
The piforever() prints digits of pi, nicely formatted, for as long
|
The piforever() prints digits of pi, nicely formatted, for as long
|
||||||
as your free memory space and system up time allows.
|
as your free memory space and system up time allows.
|
||||||
|
|
||||||
The piforever() funcion (written by Klaus Alexander Seistrup
|
The piforever() function (written by Klaus Alexander Seistrup
|
||||||
<klaus@seistrup.dk>) was inspired by an algorithm conceived by
|
<klaus@seistrup.dk>) was inspired by an algorithm conceived by
|
||||||
Lambert Meertens. See also the ABC Programmer's Handbook, by Geurts,
|
Lambert Meertens. See also the ABC Programmer's Handbook, by Geurts,
|
||||||
Meertens & Pemberton, published by Prentice-Hall (UK) Ltd., 1990.
|
Meertens & Pemberton, published by Prentice-Hall (UK) Ltd., 1990.
|
||||||
@@ -355,7 +419,7 @@ quat.cal
|
|||||||
quat_shift(a, b)
|
quat_shift(a, b)
|
||||||
|
|
||||||
Calculate using quaternions of the form: a + bi + cj + dk. In these
|
Calculate using quaternions of the form: a + bi + cj + dk. In these
|
||||||
functions, quaternians are manipulated in the form: s + v, where
|
functions, quaternions are manipulated in the form: s + v, where
|
||||||
s is a scalar and v is a vector of size 3.
|
s is a scalar and v is a vector of size 3.
|
||||||
|
|
||||||
|
|
||||||
@@ -385,7 +449,7 @@ randombitrun.cal
|
|||||||
randombitrun([run_cnt])
|
randombitrun([run_cnt])
|
||||||
|
|
||||||
Using randombit(1) to generate a sequence of random bits, determine if
|
Using randombit(1) to generate a sequence of random bits, determine if
|
||||||
the number and kength of identical bits runs match what is expected.
|
the number and length of identical bits runs match what is expected.
|
||||||
By default, run_cnt is to test the next 65536 random values.
|
By default, run_cnt is to test the next 65536 random values.
|
||||||
|
|
||||||
This tests the Blum-Blum-Shub generator.
|
This tests the Blum-Blum-Shub generator.
|
||||||
@@ -416,6 +480,16 @@ randrun.cal
|
|||||||
|
|
||||||
This tests the a55 generator.
|
This tests the a55 generator.
|
||||||
|
|
||||||
|
repeat.cal
|
||||||
|
|
||||||
|
repeat(digit_set, repeat_count)
|
||||||
|
|
||||||
|
Return the value of the digit_set repeated repeat_count times.
|
||||||
|
Both digit_set and repeat_count must be integers > 0.
|
||||||
|
|
||||||
|
For example repeat(423,5) returns the value 423423423423423,
|
||||||
|
which is the digit_set 423 repeated 5 times.
|
||||||
|
|
||||||
|
|
||||||
regress.cal
|
regress.cal
|
||||||
|
|
||||||
@@ -488,7 +562,7 @@ test1700.cal
|
|||||||
|
|
||||||
value
|
value
|
||||||
|
|
||||||
This resoure files is used by regress.cal to test the read and use keywords.
|
This resource files is used by regress.cal to test the read and use keywords.
|
||||||
|
|
||||||
|
|
||||||
test2600.cal
|
test2600.cal
|
||||||
@@ -513,7 +587,7 @@ test2600.cal
|
|||||||
checkresult(x, y, z, a)
|
checkresult(x, y, z, a)
|
||||||
test2600(verbose, tnum)
|
test2600(verbose, tnum)
|
||||||
|
|
||||||
This resoure files is used by regress.cal to test some of builtin functions
|
This resource files is used by regress.cal to test some of builtin functions
|
||||||
in terms of accuracy and roundoff.
|
in terms of accuracy and roundoff.
|
||||||
|
|
||||||
|
|
||||||
@@ -536,7 +610,7 @@ test2700.cal
|
|||||||
iscomsq(x)
|
iscomsq(x)
|
||||||
test2700(verbose, tnum)
|
test2700(verbose, tnum)
|
||||||
|
|
||||||
This resoure files is used by regress.cal to test sqrt() for real and
|
This resource files is used by regress.cal to test sqrt() for real and
|
||||||
complex values.
|
complex values.
|
||||||
|
|
||||||
|
|
||||||
@@ -624,7 +698,7 @@ test4000.cal
|
|||||||
test4000(verbose, tnum) defined
|
test4000(verbose, tnum) defined
|
||||||
|
|
||||||
This resource file is used by regress.cal to test ptest, nextcand and
|
This resource file is used by regress.cal to test ptest, nextcand and
|
||||||
prevcand buildins.
|
prevcand builtins.
|
||||||
|
|
||||||
test4100.cal
|
test4100.cal
|
||||||
|
|
||||||
@@ -676,6 +750,35 @@ test5200.cal
|
|||||||
This resource file is used by regress.cal to test the fix of a
|
This resource file is used by regress.cal to test the fix of a
|
||||||
global/static bug.
|
global/static bug.
|
||||||
|
|
||||||
|
test8400.cal
|
||||||
|
|
||||||
|
test8400() defined
|
||||||
|
|
||||||
|
This resource file is used by regress.cal to check for quit-based
|
||||||
|
memory leaks.
|
||||||
|
|
||||||
|
test8500.cal
|
||||||
|
|
||||||
|
global err_8500
|
||||||
|
global L_8500
|
||||||
|
global ver_8500
|
||||||
|
global old_seed_8500
|
||||||
|
global cfg_8500
|
||||||
|
onetest_8500(a,b,rnd) defined
|
||||||
|
divmod_8500(N, M1, M2, testnum) defined
|
||||||
|
|
||||||
|
This resource file is used by regress.cal to the // and % operators.
|
||||||
|
|
||||||
|
test8600.cal
|
||||||
|
|
||||||
|
global min_8600
|
||||||
|
global max_8600
|
||||||
|
global hash_8600
|
||||||
|
global hmean_8600
|
||||||
|
|
||||||
|
This resource file is used by regress.cal to test a change of
|
||||||
|
allowing up to 1024 args to be passed to a builtin function.
|
||||||
|
|
||||||
unitfrac.cal
|
unitfrac.cal
|
||||||
|
|
||||||
unitfrac(x)
|
unitfrac(x)
|
||||||
@@ -704,7 +807,7 @@ xx_print.cal
|
|||||||
|
|
||||||
Demo for the xx_print object routines.
|
Demo for the xx_print object routines.
|
||||||
|
|
||||||
## Copyright (C) 1999 David I. Bell and Landon Curt Noll
|
## Copyright (C) 2000 David I. Bell and Landon Curt Noll
|
||||||
##
|
##
|
||||||
## Primary author: Landon Curt Noll
|
## Primary author: Landon Curt Noll
|
||||||
##
|
##
|
||||||
@@ -722,12 +825,12 @@ xx_print.cal
|
|||||||
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.1 $
|
## @(#) $Revision: 29.9 $
|
||||||
## @(#) $Id: README,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
## @(#) $Id: README,v 29.9 2003/01/05 08:10:56 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/README,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/README,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 1990/02/15 01:50:32
|
## Under source code control: 1990/02/15 01:50:32
|
||||||
## File existed as early as: before 1990
|
## File existed as early as: before 1990
|
||||||
##
|
##
|
||||||
## chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
## Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: beer.cal,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
* @(#) $Id: beer.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/beer.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/beer.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/11/13 13:21:05
|
* Under source code control: 1996/11/13 13:21:05
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* bernoulli - clculate the Nth Bernoulli number B(n)
|
* bernoulli - clculate the Nth Bernoulli number B(n)
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999 David I. Bell
|
* Copyright (C) 2000 David I. Bell and Landon Curt Noll
|
||||||
*
|
*
|
||||||
* Calc is open software; you can redistribute it and/or modify it under
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
* the terms of the version 2.1 of the GNU Lesser General Public License
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
@@ -17,24 +17,28 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: bernoulli.cal,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
* @(#) $Id: bernoulli.cal,v 29.3 2000/12/17 12:26:04 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/bernoulli.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/bernoulli.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/09/30 11:18:41
|
* Under source code control: 1991/09/30 11:18:41
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Calculate the Nth Bernoulli number B(n).
|
* Calculate the Nth Bernoulli number B(n).
|
||||||
* This uses the following symbolic formula to calculate B(n):
|
*
|
||||||
|
* NOTE: This is now a bulitin function.
|
||||||
|
*
|
||||||
|
* The non-buildin code used the following symbolic formula to calculate B(n):
|
||||||
*
|
*
|
||||||
* (b+1)^(n+1) - b^(n+1) = 0
|
* (b+1)^(n+1) - b^(n+1) = 0
|
||||||
*
|
*
|
||||||
* where b is a dummy value, and each power b^i gets replaced by B(i).
|
* where b is a dummy value, and each power b^i gets replaced by B(i).
|
||||||
* For example, for n = 3:
|
* For example, for n = 3:
|
||||||
|
*
|
||||||
* (b+1)^4 - b^4 = 0
|
* (b+1)^4 - b^4 = 0
|
||||||
* b^4 + 4*b^3 + 6*b^2 + 4*b + 1 - b^4 = 0
|
* b^4 + 4*b^3 + 6*b^2 + 4*b + 1 - b^4 = 0
|
||||||
* 4*b^3 + 6*b^2 + 4*b + 1 = 0
|
* 4*b^3 + 6*b^2 + 4*b + 1 = 0
|
||||||
@@ -48,11 +52,14 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
static Bnmax;
|
static Bnmax;
|
||||||
static mat Bn[1001];
|
static mat Bn[1001];
|
||||||
|
*/
|
||||||
|
|
||||||
define B(n)
|
define B(n)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
local nn, np1, i, sum, mulval, divval, combval;
|
local nn, np1, i, sum, mulval, divval, combval;
|
||||||
|
|
||||||
if (!isint(n) || (n < 0))
|
if (!isint(n) || (n < 0))
|
||||||
@@ -85,4 +92,6 @@ define B(n)
|
|||||||
}
|
}
|
||||||
Bnmax = n;
|
Bnmax = n;
|
||||||
return Bn[n];
|
return Bn[n];
|
||||||
|
*/
|
||||||
|
return bernoulli(n);
|
||||||
}
|
}
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: bigprime.cal,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
* @(#) $Id: bigprime.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/bigprime.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/bigprime.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/05/22 21:56:32
|
* Under source code control: 1991/05/22 21:56:32
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -16,14 +16,14 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.2 $
|
||||||
# @(#) $Id: bindings,v 29.1 1999/12/14 09:15:30 chongo Exp $
|
# @(#) $Id: bindings,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/bindings,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/bindings,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1993/05/02 20:09:19
|
# Under source code control: 1993/05/02 20:09:19
|
||||||
# File existed as early as: 1993
|
# File existed as early as: 1993
|
||||||
#
|
#
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
|
||||||
# NOTE: This facility is ignored if calc was compiled with GNU-readline.
|
# NOTE: This facility is ignored if calc was compiled with GNU-readline.
|
||||||
# In that case, the standard readline mechanisms (see readline(3))
|
# In that case, the standard readline mechanisms (see readline(3))
|
||||||
|
251
cal/chi.cal
Normal file
251
cal/chi.cal
Normal file
@@ -0,0 +1,251 @@
|
|||||||
|
/*
|
||||||
|
* chi - chi^2 probabilities with degrees of freedom for null hypothesis
|
||||||
|
*
|
||||||
|
* Copyright (C) 2001 Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 29.2 $
|
||||||
|
* @(#) $Id: chi.cal,v 29.2 2001/04/08 10:21:23 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/chi.cal,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 2001/03/27 14:10:11
|
||||||
|
* File existed as early as: 2001
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Z(x)
|
||||||
|
*
|
||||||
|
* From Handbook of Mathematical Functions
|
||||||
|
* 10th printing, Dec 1972 with corrections
|
||||||
|
* National Bureau of Standards
|
||||||
|
*
|
||||||
|
* Section 26.2.1, p931.
|
||||||
|
*/
|
||||||
|
define Z(x, eps_term)
|
||||||
|
{
|
||||||
|
local eps; /* error term */
|
||||||
|
|
||||||
|
/* obtain the error term */
|
||||||
|
if (isnull(eps_term)) {
|
||||||
|
eps = epsilon();
|
||||||
|
} else {
|
||||||
|
eps = eps_term;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* compute Z(x) value */
|
||||||
|
return exp(-x*x/2, eps) / sqrt(2*pi(eps), eps);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* P(x[, eps]) asymtotic P(x) expansion for x>0 to an given epsilon error term
|
||||||
|
*
|
||||||
|
* NOTE: If eps is omitted, the stored epsilon value is used.
|
||||||
|
*
|
||||||
|
* From Handbook of Mathematical Functions
|
||||||
|
* 10th printing, Dec 1972 with corrections
|
||||||
|
* National Bureau of Standards
|
||||||
|
*
|
||||||
|
* 26.2.11, p932:
|
||||||
|
*
|
||||||
|
* P(x) = 1/2 + Z(x) * sum(n=0; n < infinity){x^(2*n+1)/(1*3*5*...(2*n+1)};
|
||||||
|
*
|
||||||
|
* We continue the fraction until it is less than epsilon error term.
|
||||||
|
*
|
||||||
|
* Also note 26.2.5:
|
||||||
|
*
|
||||||
|
* P(x) + Q(x) = 1
|
||||||
|
*/
|
||||||
|
define P(x, eps_term)
|
||||||
|
{
|
||||||
|
local eps; /* error term */
|
||||||
|
local s; /* sum */
|
||||||
|
local x2; /* x^2 */
|
||||||
|
local x_term; /* x^(2*r+1) */
|
||||||
|
local odd_prod; /* 1*3*5* ... */
|
||||||
|
local odd_term; /* next odd value to multiply into odd_prod */
|
||||||
|
local term; /* the recent term added to the sum */
|
||||||
|
|
||||||
|
/* obtain the error term */
|
||||||
|
if (isnull(eps_term)) {
|
||||||
|
eps = epsilon();
|
||||||
|
} else {
|
||||||
|
eps = eps_term;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* firewall */
|
||||||
|
if (x <= 0) {
|
||||||
|
if (x == 0) {
|
||||||
|
return 0; /* hack */
|
||||||
|
} else {
|
||||||
|
quit "Q(x[,eps]) 1st argument must be >= 0";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (eps <= 0) {
|
||||||
|
quit "Q(x[,eps]) 2nd argument must be > 0";
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* aproximate sum(n=0; n < infinity){x^(2*n+1)/(1*3*5*...(2*n+1)}
|
||||||
|
*/
|
||||||
|
x2 = x*x;
|
||||||
|
x_term = x;
|
||||||
|
s = x_term; /* 1st term */
|
||||||
|
odd_term = 1;
|
||||||
|
odd_prod = 1;
|
||||||
|
do {
|
||||||
|
|
||||||
|
/* compute the term */
|
||||||
|
odd_term += 2;
|
||||||
|
odd_prod *= odd_term;
|
||||||
|
x_term *= x2;
|
||||||
|
term = x_term / odd_prod;
|
||||||
|
s += term;
|
||||||
|
|
||||||
|
} while (term >= eps);
|
||||||
|
|
||||||
|
/* apply term and factor */
|
||||||
|
return 0.5 + Z(x,eps)*s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* chi_prob(chi_sq, v[, eps]) - Prob of >= chi^2 with v degrees of freedom
|
||||||
|
*
|
||||||
|
* Computes the Probability, given the Null Hypothesis, that a given
|
||||||
|
* Chi squared values >= chi_sq with v degrees of freedom.
|
||||||
|
*
|
||||||
|
* The chi_prob() function does not work well with odd degrees of freedom.
|
||||||
|
* It is reasonable with even degrees of freedom, although one must give
|
||||||
|
* a sifficently small error term as the degress gets large (>100).
|
||||||
|
*
|
||||||
|
* NOTE: This function does not work well with odd degrees of freedom.
|
||||||
|
* Can somebody help / find a bug / provide a better method of
|
||||||
|
* this odd degrees of freedom case?
|
||||||
|
*
|
||||||
|
* NOTE: This function works well with even degrees of freedom. However
|
||||||
|
* when the even degrees gets large (say, as you approach 100), you
|
||||||
|
* need to increase your error term.
|
||||||
|
*
|
||||||
|
* From Handbook of Mathematical Functions
|
||||||
|
* 10th printing, Dec 1972 with corrections
|
||||||
|
* National Bureau of Standards
|
||||||
|
*
|
||||||
|
* Section 26.4.4, p941:
|
||||||
|
*
|
||||||
|
* For odd v:
|
||||||
|
*
|
||||||
|
* Q(chi_sq, v) = 2*Q(chi) + 2*Z(chi) * (
|
||||||
|
* sum(r=1, r<=(r-1)/2) {(chi_sq^r/chi) / (1*3*5*...(2*r-1)});
|
||||||
|
*
|
||||||
|
* chi = sqrt(chi_sq)
|
||||||
|
*
|
||||||
|
* NOTE: Q(x) = 1-P(x)
|
||||||
|
*
|
||||||
|
* Section 26.4.5, p941.
|
||||||
|
*
|
||||||
|
* For even v:
|
||||||
|
*
|
||||||
|
* Q(chi_sq, v) = sqrt(2*pi()) * Z(chi) * ( 1 +
|
||||||
|
* sum(r=1, r=((v-2)/2)) { chi_sq^r / (2*4*...*(2r)) } );
|
||||||
|
*
|
||||||
|
* chi = sqrt(chi_sq)
|
||||||
|
*
|
||||||
|
* Observe that:
|
||||||
|
*
|
||||||
|
* Z(x) = exp(-x*x/2) / sqrt(2*pi()); (Section 26.2.1, p931)
|
||||||
|
*
|
||||||
|
* and thus:
|
||||||
|
*
|
||||||
|
* sqrt(2*pi()) * Z(chi) =
|
||||||
|
* sqrt(2*pi()) * Z(sqrt(chi_sq)) =
|
||||||
|
* sqrt(2*pi()) * exp(-sqrt(chi_sq)*sqrt(chi_sq)/2) / sqrt(2*pi()) =
|
||||||
|
* exp(-sqrt(chi_sq)*sqrt(chi_sq)/2) =
|
||||||
|
* exp(-sqrt(-chi_sq/2)
|
||||||
|
*
|
||||||
|
* So:
|
||||||
|
*
|
||||||
|
* Q(chi_sq, v) = exp(-sqrt(-chi_sq/2) * ( 1 + sum(....){...} );
|
||||||
|
*/
|
||||||
|
define chi_prob(chi_sq, v, eps_term)
|
||||||
|
{
|
||||||
|
local eps; /* error term */
|
||||||
|
local r; /* index in finite sum */
|
||||||
|
local r_lim; /* limit value for r */
|
||||||
|
local s; /* sum */
|
||||||
|
local d; /* demoninator (2*4*6*... or 1*3*5...) */
|
||||||
|
local chi_term; /* chi_sq^r */
|
||||||
|
local ret; /* return value */
|
||||||
|
|
||||||
|
/* obtain the error term */
|
||||||
|
if (isnull(eps_term)) {
|
||||||
|
eps = epsilon();
|
||||||
|
} else {
|
||||||
|
eps = eps_term;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* odd degrees of freedom
|
||||||
|
*/
|
||||||
|
if (isodd(v)) {
|
||||||
|
|
||||||
|
local chi; /* sqrt(chi_sq) */
|
||||||
|
|
||||||
|
/* setup for sum */
|
||||||
|
s = 1;
|
||||||
|
d = 1;
|
||||||
|
chi = sqrt(abs(chi_sq), eps);
|
||||||
|
chi_term = chi;
|
||||||
|
r_lim = (v-1)/2;
|
||||||
|
|
||||||
|
/* compute sum(r=1, r=((v-1)/2)) {(chi_sq^r/chi) / (1*3*5...*(2r-1))} */
|
||||||
|
for (r=2; r <= r_lim; ++r) {
|
||||||
|
chi_term *= chi_sq;
|
||||||
|
d *= (2*r)-1;
|
||||||
|
s += chi_term/d;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* apply term and factor, Q(x) = 1-P(x) */
|
||||||
|
ret = 2*(1-P(chi)) + 2*Z(chi)*s;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* even degrees of freedom
|
||||||
|
*/
|
||||||
|
} else {
|
||||||
|
|
||||||
|
/* setup for sum */
|
||||||
|
s =1;
|
||||||
|
d = 1;
|
||||||
|
chi_term = 1;
|
||||||
|
r_lim = (v-2)/2;
|
||||||
|
|
||||||
|
/* compute sum(r=1, r=((v-2)/2)) { chi_sq^r / (2*4*...*(2r)) } */
|
||||||
|
for (r=1; r <= r_lim; ++r) {
|
||||||
|
chi_term *= chi_sq;
|
||||||
|
d *= r*2;
|
||||||
|
s += chi_term/d;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* apply factor - see observation in the main comment above */
|
||||||
|
ret = exp(-chi_sq/2, eps) * s;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: chrem.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: chrem.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/chrem.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/chrem.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1992/09/26 01:00:47
|
* Under source code control: 1992/09/26 01:00:47
|
||||||
* File existed as early as: 1992
|
* File existed as early as: 1992
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: deg.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: deg.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/deg.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/deg.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:33
|
* Under source code control: 1990/02/15 01:50:33
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: ellip.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: ellip.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/ellip.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/ellip.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:33
|
* Under source code control: 1990/02/15 01:50:33
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: hello.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: hello.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/hello.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/hello.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/11/13 13:25:43
|
* Under source code control: 1996/11/13 13:25:43
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
222
cal/intfile.cal
Normal file
222
cal/intfile.cal
Normal file
@@ -0,0 +1,222 @@
|
|||||||
|
/*
|
||||||
|
* intfile - integer to file and file to integer conversion
|
||||||
|
*
|
||||||
|
* Copyright (C) 2001 Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 29.5 $
|
||||||
|
* @(#) $Id: intfile.cal,v 29.5 2001/04/10 22:09:34 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/intfile.cal,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 2001/03/31 08:13:11
|
||||||
|
* File existed as early as: 2001
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* NOTE: Because leading HALF values are trimmed from integer, a file
|
||||||
|
* that begins with lots of 0 bits (in the case of big endian)
|
||||||
|
* or that ends with lots of 0 bits (in the case of little endian)
|
||||||
|
* will be changed when the subsequent integer is written back.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* file2be - convert a file into an big endian integer
|
||||||
|
*
|
||||||
|
* given:
|
||||||
|
* filename filename to read
|
||||||
|
*
|
||||||
|
* returns:
|
||||||
|
* integer read from its contents on big endian order
|
||||||
|
*/
|
||||||
|
define file2be(filename)
|
||||||
|
{
|
||||||
|
local fd; /* open file */
|
||||||
|
local ret; /* integer to return */
|
||||||
|
local c; /* character read from the file */
|
||||||
|
local i;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* open the file for reading
|
||||||
|
*/
|
||||||
|
fd = fopen(filename, "rb");
|
||||||
|
if (!isfile(fd)) quit "file2be: cannot open file for reading";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* read the contents of the file
|
||||||
|
*
|
||||||
|
* The first octets become the most significant bits of the integer.
|
||||||
|
*/
|
||||||
|
ret = 0;
|
||||||
|
while (! isnull(c = fgetc(fd))) {
|
||||||
|
ret <<= 8;
|
||||||
|
ret += ord(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cleanup and return the integer
|
||||||
|
*/
|
||||||
|
fclose(fd);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* file2le - convert a file into an little endian integer
|
||||||
|
*
|
||||||
|
* given:
|
||||||
|
* filename filename to read
|
||||||
|
*
|
||||||
|
* returns:
|
||||||
|
* integer read from its contents on little endian order
|
||||||
|
*/
|
||||||
|
define file2le(filename)
|
||||||
|
{
|
||||||
|
local fd; /* open file */
|
||||||
|
local ret; /* integer to return */
|
||||||
|
local c; /* character read from the file */
|
||||||
|
local shft; /* bit shift for the c value */
|
||||||
|
local i;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* open the file for reading
|
||||||
|
*/
|
||||||
|
fd = fopen(filename, "rb");
|
||||||
|
if (!isfile(fd)) quit "file2le: cannot open file for reading";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* read the contents of the file into a string
|
||||||
|
*
|
||||||
|
* The first octets become are the least significant bits of the integer.
|
||||||
|
*/
|
||||||
|
ret = 0;
|
||||||
|
shft = 0;
|
||||||
|
while (! isnull(c = fgetc(fd))) {
|
||||||
|
ret |= (ord(c) << shft);
|
||||||
|
shft += 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cleanup and return the integer
|
||||||
|
*/
|
||||||
|
fclose(fd);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* be2file - convert a big endian integer into a file
|
||||||
|
*
|
||||||
|
* given:
|
||||||
|
* v integer to write to the file
|
||||||
|
* filename filename to write
|
||||||
|
*
|
||||||
|
* returns:
|
||||||
|
* The number of octets written to the file.
|
||||||
|
*
|
||||||
|
* NOTE: The absolute value of the integer is written to the file.
|
||||||
|
*/
|
||||||
|
define be2file(v, filename)
|
||||||
|
{
|
||||||
|
local fd; /* open file */
|
||||||
|
local octlen; /* length of v in octets */
|
||||||
|
local i;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* firewall
|
||||||
|
*/
|
||||||
|
if (!isint(v)) {
|
||||||
|
quit "be2file: 1st arg not an integer";
|
||||||
|
}
|
||||||
|
v = abs(v);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* open the file for writing
|
||||||
|
*/
|
||||||
|
fd = fopen(filename, "wb");
|
||||||
|
if (!isfile(fd)) quit "be2file: cannot open file for writing";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* write the octets to the file
|
||||||
|
*
|
||||||
|
* The most significant bits of the integer become the first file octets.
|
||||||
|
*/
|
||||||
|
octlen = int((highbit(v)+8) / 8);
|
||||||
|
for (i=octlen-1; i >= 0; --i) {
|
||||||
|
fputc(fd, char(v >> (i*8)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cleanup
|
||||||
|
*/
|
||||||
|
fclose(fd);
|
||||||
|
return octlen;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* le2file - convert a little endian integer into a file
|
||||||
|
*
|
||||||
|
* given:
|
||||||
|
* v integer to write to the file
|
||||||
|
* filename filename to write
|
||||||
|
*
|
||||||
|
* returns:
|
||||||
|
* The number of octets written to the file.
|
||||||
|
*
|
||||||
|
* NOTE: The absolute value of the integer is written to the file.
|
||||||
|
*/
|
||||||
|
define le2file(v, filename)
|
||||||
|
{
|
||||||
|
local fd; /* open file */
|
||||||
|
local cnt; /* octets written */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* firewall
|
||||||
|
*/
|
||||||
|
if (!isint(v)) {
|
||||||
|
quit "be2file: 1st arg not an integer";
|
||||||
|
}
|
||||||
|
v = abs(v);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* open the file for writing
|
||||||
|
*/
|
||||||
|
fd = fopen(filename, "wb");
|
||||||
|
if (!isfile(fd)) quit "le2file: cannot open file for writing";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Write the octets to the file.
|
||||||
|
*
|
||||||
|
* The least significant bits of the integer become the first file octets.
|
||||||
|
*/
|
||||||
|
cnt = 0;
|
||||||
|
while (v > 0) {
|
||||||
|
fputc(fd, char(v));
|
||||||
|
v >>= 8;
|
||||||
|
++cnt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cleanup
|
||||||
|
*/
|
||||||
|
fclose(fd);
|
||||||
|
return cnt;
|
||||||
|
}
|
@@ -17,15 +17,25 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.6 $
|
||||||
* @(#) $Id: lucas.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: lucas.cal,v 29.6 2002/07/10 09:43:46 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/lucas.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/lucas.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/05/03 16:49:51
|
* Under source code control: 1990/05/03 16:49:51
|
||||||
* File existed as early as: 1990
|
* File existed as early as: 1990
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* NOTE: This is a standard calc resource file. For information on calc see:
|
||||||
|
*
|
||||||
|
* http://www.isthe.com/chongo/tech/comp/calc/index.html
|
||||||
|
*
|
||||||
|
* To obtain your own copy of calc, see:
|
||||||
|
*
|
||||||
|
* http://www.isthe.com/chongo/tech/comp/calc/calc-download.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -52,12 +62,19 @@
|
|||||||
*
|
*
|
||||||
* At the time of discovery, this was the largest known twin prime pair.
|
* At the time of discovery, this was the largest known twin prime pair.
|
||||||
*
|
*
|
||||||
|
* See:
|
||||||
|
*
|
||||||
|
* http://www.isthe.com/chongo/tech/math/prime/amdahl6.html
|
||||||
|
*
|
||||||
|
* for more information on the Amdahl 6 group.
|
||||||
|
*
|
||||||
* NOTE: Both largest known and largest known twin prime records have been
|
* NOTE: Both largest known and largest known twin prime records have been
|
||||||
* broken. Rather than update this file each time, I'll just
|
* broken. Rather than update this file each time, I'll just
|
||||||
* congratulate the finders and encourage others to try for
|
* congratulate the finders and encourage others to try for
|
||||||
* larger finds. Records were made to be broken afterall!
|
* larger finds. Records were made to be broken afterall!
|
||||||
*
|
*/
|
||||||
* ON GAINING A WORLD RECORD:
|
|
||||||
|
/* ON GAINING A WORLD RECORD:
|
||||||
*
|
*
|
||||||
* The routines in calc were designed to be portable, and to work on
|
* The routines in calc were designed to be portable, and to work on
|
||||||
* numbers of 'sane' size. The Amdahl 6 team used a 'ultra-high speed
|
* numbers of 'sane' size. The Amdahl 6 team used a 'ultra-high speed
|
||||||
@@ -73,7 +90,7 @@
|
|||||||
*
|
*
|
||||||
* test numbers of the form h*2^n-1
|
* test numbers of the form h*2^n-1
|
||||||
* fix a value of n and vary the value h
|
* fix a value of n and vary the value h
|
||||||
* n mod 128 == 0
|
* n mod 2^x == 0 for some value of x, say > 7 or more
|
||||||
* h*2^n-1 is not divisible by any small prime < 2^40
|
* h*2^n-1 is not divisible by any small prime < 2^40
|
||||||
* 0 < h < 2^39
|
* 0 < h < 2^39
|
||||||
* h*2^n+1 is not divisible by any small prime < 2^40
|
* h*2^n+1 is not divisible by any small prime < 2^40
|
||||||
@@ -1030,7 +1047,7 @@ gen_v1(h, n)
|
|||||||
define
|
define
|
||||||
ldebug(funct, str)
|
ldebug(funct, str)
|
||||||
{
|
{
|
||||||
if (config("resource_debug") & 3) {
|
if (config("resource_debug") & 8) {
|
||||||
print "DEBUG:", funct:":", str;
|
print "DEBUG:", funct:":", str;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: lucas_chk.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: lucas_chk.cal,v 29.3 2001/03/31 13:31:34 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/lucas_chk.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/lucas_chk.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/01/11 05:41:43
|
* Under source code control: 1991/01/11 05:41:43
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -336,7 +336,7 @@ lucas_chk(high_n, quiet)
|
|||||||
|
|
||||||
/* skip primes where h>=2^n */
|
/* skip primes where h>=2^n */
|
||||||
if (highbit(h_p[i]) >= n_p[i]) {
|
if (highbit(h_p[i]) >= n_p[i]) {
|
||||||
if (config("resource_debug") & 3) {
|
if (config("resource_debug") & 8) {
|
||||||
print "h>=2^n skip:", h_p[i]:"*2^":n_p[i]:"-1";
|
print "h>=2^n skip:", h_p[i]:"*2^":n_p[i]:"-1";
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: lucas_tbl.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: lucas_tbl.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/lucas_tbl.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/lucas_tbl.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/01/26 02:43:43
|
* Under source code control: 1991/01/26 02:43:43
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: mersenne.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: mersenne.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/mersenne.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/mersenne.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/05/22 21:56:36
|
* Under source code control: 1991/05/22 21:56:36
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: mfactor.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: mfactor.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/mfactor.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/mfactor.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/07/06 06:09:40
|
* Under source code control: 1996/07/06 06:09:40
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: mod.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: mod.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/mod.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/mod.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:34
|
* Under source code control: 1990/02/15 01:50:34
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: natnumset.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: natnumset.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/natnumset.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/natnumset.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/09/07 23:53:51
|
* Under source code control: 1997/09/07 23:53:51
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: pell.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: pell.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pell.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pell.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:34
|
* Under source code control: 1990/02/15 01:50:34
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: pi.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: pi.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pi.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pi.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/05/22 21:56:37
|
* Under source code control: 1991/05/22 21:56:37
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: pix.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: pix.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pix.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pix.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/07/09 03:14:14
|
* Under source code control: 1996/07/09 03:14:14
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: pollard.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: pollard.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pollard.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/pollard.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/05/22 21:56:37
|
* Under source code control: 1991/05/22 21:56:37
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: poly.cal,v 29.1 1999/12/14 09:15:31 chongo Exp $
|
* @(#) $Id: poly.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/poly.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/poly.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:35
|
* Under source code control: 1990/02/15 01:50:35
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: prompt.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: prompt.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/prompt.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/prompt.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/12/18 04:43:25
|
* Under source code control: 1995/12/18 04:43:25
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: psqrt.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: psqrt.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/psqrt.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/psqrt.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:35
|
* Under source code control: 1990/02/15 01:50:35
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -1,24 +1,46 @@
|
|||||||
/*
|
/*
|
||||||
* qtime - Display time as English sentence
|
* qtime - Display time as English sentence
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 1999 Klaus Alexander Seistrup and Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Written by: Klaus Alexander Seistrup <kseis@magnetic-ink.dk>
|
||||||
|
* With mods by: Landon Curt Noll <http://www.isthe.com/chongo/>
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 29.4 $
|
||||||
|
* @(#) $Id: qtime.cal,v 29.4 2000/12/18 10:18:40 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/qtime.cal,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 1999/10/13 04:10:33
|
||||||
|
* File existed as early as: 1999
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
* usage:
|
* usage:
|
||||||
* qtime(utc_hr_offset)
|
* qtime(utc_hr_offset)
|
||||||
*
|
*
|
||||||
* utc_hr_offset Offset from UTC in hours.
|
* utc_hr_offset Offset from UTC in hours.
|
||||||
*
|
*
|
||||||
* Written by: Klaus Alexander Seistrup <kseis@magnetic-ink.dk>
|
|
||||||
* With minor mods by: Landon Curt Noll <http://reality.sgi.com/chongo/>
|
|
||||||
*
|
|
||||||
* See:
|
* See:
|
||||||
* http://www.magnetic-ink.dk/download/qtime.html
|
* http://www.magnetic-ink.dk/download/qtime.html
|
||||||
*
|
*
|
||||||
* for examples of qtime() written on other languages.
|
* for examples of qtime() written on other languages.
|
||||||
*
|
|
||||||
* @(#) $Revision: 29.1 $
|
|
||||||
* @(#) $Id: qtime.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/qtime.cal,v $
|
|
||||||
*
|
|
||||||
* This file is not covered under version 2.1 of the GNU LGPL.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: quat.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: quat.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/quat.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/quat.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:35
|
* Under source code control: 1990/02/15 01:50:35
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: randbitrun.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: randbitrun.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randbitrun.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randbitrun.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/02/13 03:43:11
|
* Under source code control: 1995/02/13 03:43:11
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: randmprime.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: randmprime.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randmprime.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randmprime.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1994/03/14 23:11:21
|
* Under source code control: 1994/03/14 23:11:21
|
||||||
* File existed as early as: 1994
|
* File existed as early as: 1994
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: randombitrun.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: randombitrun.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randombitrun.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randombitrun.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/02/13 03:43:11
|
* Under source code control: 1995/02/13 03:43:11
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: randomrun.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: randomrun.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randomrun.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randomrun.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/02/19 03:35:59
|
* Under source code control: 1997/02/19 03:35:59
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: randrun.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: randrun.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randrun.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/randrun.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/02/12 20:00:06
|
* Under source code control: 1995/02/12 20:00:06
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
319
cal/regress.cal
319
cal/regress.cal
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* regress - calc regression and correctness test suite
|
* regress - calc regression and correctness test suite
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999 David I. Bell
|
* Copyright (C) 1999-2002 David I. Bell and Landon Curt Noll
|
||||||
*
|
*
|
||||||
* Calc is open software; you can redistribute it and/or modify it under
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
* the terms of the version 2.1 of the GNU Lesser General Public License
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.14 $
|
||||||
* @(#) $Id: regress.cal,v 29.1 1999/12/14 09:15:32 chongo Exp $
|
* @(#) $Id: regress.cal,v 29.14 2002/12/29 09:16:07 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/regress.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/regress.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:36
|
* Under source code control: 1990/02/15 01:50:36
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -411,10 +411,10 @@ define test_config()
|
|||||||
'516: config("pow2") == 40');
|
'516: config("pow2") == 40');
|
||||||
vrfy(config("redc2") == 50,
|
vrfy(config("redc2") == 50,
|
||||||
'517: config("redc2") == 50');
|
'517: config("redc2") == 50');
|
||||||
vrfy(config("tilde") == "true",
|
vrfy(config("tilde"),
|
||||||
'518: config("tilde") == "true"');
|
'518: config("tilde")');
|
||||||
vrfy(config("tab") == "true",
|
vrfy(config("tab"),
|
||||||
'519: config("tab") == "true"');
|
'519: config("tab")');
|
||||||
vrfy(config("quomod") == 0,
|
vrfy(config("quomod") == 0,
|
||||||
'520: config("quomod") == 0');
|
'520: config("quomod") == 0');
|
||||||
vrfy(config("quo") == 2,
|
vrfy(config("quo") == 2,
|
||||||
@@ -433,10 +433,10 @@ define test_config()
|
|||||||
'527: config("outround") == 2');
|
'527: config("outround") == 2');
|
||||||
vrfy(config("round") == 24,
|
vrfy(config("round") == 24,
|
||||||
'528: config("round") == 24');
|
'528: config("round") == 24');
|
||||||
vrfy(config("leadzero") == "false",
|
vrfy(config("leadzero") == 0,
|
||||||
'529: config("leadzero") == "false"');
|
'529: config("leadzero") == 0');
|
||||||
vrfy(config("fullzero") == "false",
|
vrfy(config("fullzero") == 0,
|
||||||
'530: config("fullzero") == "false"');
|
'530: config("fullzero") == 0');
|
||||||
vrfy(config("maxscan") == 20,
|
vrfy(config("maxscan") == 20,
|
||||||
'531: config("maxscan") == 20');
|
'531: config("maxscan") == 20');
|
||||||
vrfy(config("prompt") == "> ",
|
vrfy(config("prompt") == "> ",
|
||||||
@@ -452,10 +452,10 @@ define test_config()
|
|||||||
vrfy(config("quo", 0) == 2, '536: config("quo", 0) == 2');
|
vrfy(config("quo", 0) == 2, '536: config("quo", 0) == 2');
|
||||||
vrfy(config("outround", 24) == 2,
|
vrfy(config("outround", 24) == 2,
|
||||||
'537: config("outround", 24) == 2');
|
'537: config("outround", 24) == 2');
|
||||||
vrfy(config("leadzero","y") == "false",
|
vrfy(config("leadzero","y") == 0,
|
||||||
'538: config("leadzero","y") == "false"');
|
'538: config("leadzero","y") == 0');
|
||||||
vrfy(config("fullzero", 1) == "false",
|
vrfy(config("fullzero", 1) == 0,
|
||||||
'539: config("fullzero", 1) == "false"');
|
'539: config("fullzero", 1) == 0');
|
||||||
vrfy(config("prompt", "; ") == "> ",
|
vrfy(config("prompt", "; ") == "> ",
|
||||||
'540: config("prompt", "; ") == "> "');
|
'540: config("prompt", "; ") == "> "');
|
||||||
vrfy(config("more", ";; ") == ">> ",
|
vrfy(config("more", ";; ") == ">> ",
|
||||||
@@ -467,14 +467,14 @@ define test_config()
|
|||||||
'543: config("all",callcfg) == newcfg');
|
'543: config("all",callcfg) == newcfg');
|
||||||
vrfy(config("display",2) == 20,
|
vrfy(config("display",2) == 20,
|
||||||
'544: config("display",2) == 20');
|
'544: config("display",2) == 20');
|
||||||
vrfy(config("fullzero",1) == "false",
|
vrfy(config("fullzero",1) == 0,
|
||||||
'545: config("fullzero",1) == "false"');
|
'545: config("fullzero",1) == 0');
|
||||||
vrfy(strprintf("%d %d %d", 0, 1, 2) == ".00 1.00 2.00",
|
vrfy(strprintf("%d %d %d", 0, 1, 2) == ".00 1.00 2.00",
|
||||||
'546: strprintf("%d %d %d", 0, 1, 2) == ".00 1.00 2.00"');
|
'546: strprintf("%d %d %d", 0, 1, 2) == ".00 1.00 2.00"');
|
||||||
vrfy(config("display",20) == 2,
|
vrfy(config("display",20) == 2,
|
||||||
'547: config("display",20) == 2');
|
'547: config("display",20) == 2');
|
||||||
vrfy(config("fullzero",0) == "true",
|
vrfy(config("fullzero",0),
|
||||||
'548: config("fullzero",0) == "true"');
|
'548: config("fullzero",0)');
|
||||||
vrfy(strprintf("%d %d %d", 0, 1, 2) == "0 1 2",
|
vrfy(strprintf("%d %d %d", 0, 1, 2) == "0 1 2",
|
||||||
'549: strprintf("%d %d %d", 0, 1, 2) == "0 1 2"');
|
'549: strprintf("%d %d %d", 0, 1, 2) == "0 1 2"');
|
||||||
|
|
||||||
@@ -492,7 +492,11 @@ define test_config()
|
|||||||
vrfy(strlen(config("version")) > 0,
|
vrfy(strlen(config("version")) > 0,
|
||||||
'555: strlen(config("version")) > 0');
|
'555: strlen(config("version")) > 0');
|
||||||
|
|
||||||
print '556: Ending test_config';
|
/* mode2 is off by default */
|
||||||
|
vrfy(config("mode2") == "off",
|
||||||
|
'556: config("mode2") == "off"');
|
||||||
|
|
||||||
|
print '557: Ending test_config';
|
||||||
}
|
}
|
||||||
print '010: parsed test_config()';
|
print '010: parsed test_config()';
|
||||||
|
|
||||||
@@ -755,7 +759,7 @@ define test_functions()
|
|||||||
vrfy(den(17) == 1, '712: den(17) == 1');
|
vrfy(den(17) == 1, '712: den(17) == 1');
|
||||||
vrfy(den(3/7) == 7, '713: den(3/7) == 7');
|
vrfy(den(3/7) == 7, '713: den(3/7) == 7');
|
||||||
vrfy(den(-2/3) == 3, '714: den(-2/3) == 3');
|
vrfy(den(-2/3) == 3, '714: den(-2/3) == 3');
|
||||||
vrfy(digits(0) == 1, '715: digits(0) == 1');
|
vrfy(digits(0) == 0, '715: digits(0) == 0');
|
||||||
vrfy(digits(9) == 1, '716: digits(9) == 1');
|
vrfy(digits(9) == 1, '716: digits(9) == 1');
|
||||||
vrfy(digits(10) == 2, '717: digits(10) == 2');
|
vrfy(digits(10) == 2, '717: digits(10) == 2');
|
||||||
vrfy(digits(-691) == 3, '718: digits(-691) == 3');
|
vrfy(digits(-691) == 3, '718: digits(-691) == 3');
|
||||||
@@ -996,8 +1000,13 @@ define test_functions()
|
|||||||
vrfy(strpos(a, "abc") == 1, '946: strpos(a, "abc") == 1');
|
vrfy(strpos(a, "abc") == 1, '946: strpos(a, "abc") == 1');
|
||||||
vrfy(strpos(a, "xyz") == 0, '947: strpos(a, "xyz") == 0');
|
vrfy(strpos(a, "xyz") == 0, '947: strpos(a, "xyz") == 0');
|
||||||
vrfy(strpos(a, a) == 1, '948: strpos(a, a) == 1');
|
vrfy(strpos(a, a) == 1, '948: strpos(a, a) == 1');
|
||||||
|
if (config("windows")) {
|
||||||
|
print '949: test skipped for windows systems';
|
||||||
|
print '950: test skipped for windows systems';
|
||||||
|
} else {
|
||||||
vrfy(system("") == 0, '949: system("") == 0');
|
vrfy(system("") == 0, '949: system("") == 0');
|
||||||
vrfy(system("true") == 0, '950: system("true") == 0');
|
vrfy(system("true") == 0, '950: system("true") == 0');
|
||||||
|
}
|
||||||
print '951: test disabled due to stdin dependency';
|
print '951: test disabled due to stdin dependency';
|
||||||
print '952: test removed';
|
print '952: test removed';
|
||||||
print '953: test removed';
|
print '953: test removed';
|
||||||
@@ -1029,8 +1038,8 @@ define test_functions()
|
|||||||
vrfy(digit(a,-1) == 4, '974: digit(a,-1) == 4');
|
vrfy(digit(a,-1) == 4, '974: digit(a,-1) == 4');
|
||||||
vrfy(digit(a,-2) == 2, '975: digit(a,-2) == 2');
|
vrfy(digit(a,-2) == 2, '975: digit(a,-2) == 2');
|
||||||
vrfy(digit(a,-3) == 8, '976: digit(a,-3) == 8');
|
vrfy(digit(a,-3) == 8, '976: digit(a,-3) == 8');
|
||||||
vrfy(digits(0) == 1, '977: digits(0) == 1');
|
vrfy(digits(0) == 0, '977: digits(0) == 0');
|
||||||
vrfy(digits(0.0123) == 1, '978: digits(0.0123) == 1');
|
vrfy(digits(0.0123) == 0, '978: digits(0.0123) == 0');
|
||||||
vrfy(digits(3.7) == 1, '979: digits(3.7) == 1');
|
vrfy(digits(3.7) == 1, '979: digits(3.7) == 1');
|
||||||
vrfy(digits(-27) == 2, '980: digits(-27) == 2');
|
vrfy(digits(-27) == 2, '980: digits(-27) == 2');
|
||||||
vrfy(digits(-99.7) == 2, '981: digits(-99.7) == 2');
|
vrfy(digits(-99.7) == 2, '981: digits(-99.7) == 2');
|
||||||
@@ -1223,7 +1232,85 @@ define test_functions()
|
|||||||
vrfy(hnrmod(21<<500+7,3,500,-1) == (21<<500+7)%(3<<500-1),
|
vrfy(hnrmod(21<<500+7,3,500,-1) == (21<<500+7)%(3<<500-1),
|
||||||
'1112: hnrmod(21<<500+7,3,500,-1) == (21<<500+7)%(3<<500-1)');
|
'1112: hnrmod(21<<500+7,3,500,-1) == (21<<500+7)%(3<<500-1)');
|
||||||
|
|
||||||
print '1113: Ending test_functions';
|
/*
|
||||||
|
* catalan testing
|
||||||
|
*/
|
||||||
|
vrfy(catalan(2) == 2, '1113: catalan(2) == 2');
|
||||||
|
vrfy(catalan(3) == 5, '1114: catalan(3) == 5');
|
||||||
|
vrfy(catalan(4) == 14, '1115: catalan(4) == 14');
|
||||||
|
vrfy(catalan(20) == 6564120420, '1116: catalan(20) == 6564120420');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* bernoulli builtin function testing
|
||||||
|
*/
|
||||||
|
vrfy(bernoulli(0) == 1, '1117: bernoulli(0) == 1');
|
||||||
|
vrfy(bernoulli(1) == -1/2, '1118: bernoulli(1) == -1/2');
|
||||||
|
vrfy(bernoulli(2) == 1/6, '1119: bernoulli(2) == 1/6');
|
||||||
|
vrfy(bernoulli(3) == 0, '1120: bernoulli(3) == 0');
|
||||||
|
vrfy(bernoulli(4) == -1/30, '1121: bernoulli(4) == -1/30');
|
||||||
|
vrfy(bernoulli(5) == 0, '1122: bernoulli(5) == 0');
|
||||||
|
vrfy(bernoulli(6) == 1/42, '1123: bernoulli(6) == 1/42');
|
||||||
|
vrfy(bernoulli(32) == -7709321041217/510,
|
||||||
|
'1124: bernoulli(32) == -7709321041217/510');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* euler function testing
|
||||||
|
*/
|
||||||
|
vrfy(euler(0) == 1, '1125: euler(0) == 1');
|
||||||
|
vrfy(euler(1) == 0, '1126: euler(1) == 0');
|
||||||
|
vrfy(euler(2) == -1, '1127: euler(2) == -1');
|
||||||
|
vrfy(euler(3) == 0, '1128: euler(3) == 0');
|
||||||
|
vrfy(freeeuler() == null(), '1129: freeeuler() == null()');
|
||||||
|
vrfy(euler(4) == 5, '1130: euler(4) == 5');
|
||||||
|
vrfy(euler(5) == 0, '1131: euler(5) == 0');
|
||||||
|
vrfy(euler(6) == -61, '1132: euler(6) == -61');
|
||||||
|
vrfy(euler(32) == 177519391579539289436664789665,
|
||||||
|
'1130: euler(32) == 177519391579539289436664789665');
|
||||||
|
vrfy(freeeuler() == null(), '1133: freeeuler() == null()');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* digit with non-10 base
|
||||||
|
*/
|
||||||
|
a = 123456.789;
|
||||||
|
print '1134: a = 123456.789';
|
||||||
|
vrfy(digit(a, 6, 100) == 0, '1135: digit(a, 6, 100) == 0');
|
||||||
|
vrfy(digit(a, 5, 100) == 0, '1136: digit(a, 5, 100) == 0');
|
||||||
|
vrfy(digit(a, 4, 100) == 0, '1137: digit(a, 4, 100) == 0');
|
||||||
|
vrfy(digit(a, 3, 100) == 0, '1138: digit(a, 3, 100) == 0');
|
||||||
|
vrfy(digit(a, 2, 100) == 12, '1139: digit(a, 2, 100) == 12');
|
||||||
|
vrfy(digit(a, 1, 100) == 34, '1140: digit(a, 1, 100) == 34');
|
||||||
|
vrfy(digit(a, 0, 100) == 56, '1141: digit(a, 0, 100) == 56');
|
||||||
|
vrfy(digit(a, -1, 100) == 78, '1142: digit(a, -1, 100) == 78');
|
||||||
|
vrfy(digit(a, -2, 100) == 90, '1143: digit(a, -2, 100) == 90');
|
||||||
|
vrfy(digit(a, -3, 100) == 0, '1144: digit(a, -3, 100) == 0');
|
||||||
|
vrfy(digit(a, -4, 100) == 0, '1145: digit(a, -4, 100) == 0');
|
||||||
|
vrfy(digit(a, -5, 100) == 0, '1146: digit(a, -5, 100) == 0');
|
||||||
|
vrfy(digit(a, -6, 100) == 0, '1146: digit(a, -6, 100) == 0');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* digits with a non-10 base
|
||||||
|
*/
|
||||||
|
vrfy(digits(a, 100) == 3, '1147: digits(a, 100) == 3');
|
||||||
|
vrfy(digits(2^256-1, 256) == 32,'1148: digits(2^256-1, 256) == 32');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* places with a non-10 base
|
||||||
|
*/
|
||||||
|
vrfy(places(0.0123, 2) == -1, '1149: places(0.0123, 2) == -1');
|
||||||
|
vrfy(places(0.625, 2) == 3, '1150: places(0.625, 2) == 3');
|
||||||
|
vrfy(places(0.625, 8) == 1, '1151: places(0.625, 8) == 1');
|
||||||
|
vrfy(places(171/2^712, 2) == 712,
|
||||||
|
'1152: places(171/2^7120.625, 2) == 712');
|
||||||
|
vrfy(places(171/2^712, 64) == 119,
|
||||||
|
'1152: places(171/2^7120.625, 64) == 119');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* verify sleep
|
||||||
|
*/
|
||||||
|
vrfy(sleep(1/5) == null(), '1153: sleep(1/5) == null()');
|
||||||
|
vrfy(sleep(1) == null(), '1154: sleep(1) == null()');
|
||||||
|
|
||||||
|
print '1155: Ending test_functions';
|
||||||
}
|
}
|
||||||
print '017: parsed test_functions()';
|
print '017: parsed test_functions()';
|
||||||
|
|
||||||
@@ -1484,31 +1571,31 @@ define test_rand()
|
|||||||
/* test the additive 55 shuffle generator */
|
/* test the additive 55 shuffle generator */
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1505: tmp = srand(0)';
|
print '1505: tmp = srand(0)';
|
||||||
vrfy(rand() == 0xc79ef743e2e6849c, \
|
vrfy(rand() == 0x1fe5b46fba7e069d, \
|
||||||
'1506: rand() == 0xc79ef743e2e6849c');
|
'1506: rand() == 0x1fe5b46fba7e069d');
|
||||||
vrfy(rand() == 0x8d2dcb2bed321284, \
|
vrfy(rand() == 0x308d32d9bdf2dc6f, \
|
||||||
'1507: rand() == 0x8d2dcb2bed321284');
|
'1507: rand() == 0x308d32d9bdf2dc6f');
|
||||||
tmp = srand(init);
|
tmp = srand(init);
|
||||||
print '1508: tmp = srand(init)';
|
print '1508: tmp = srand(init)';
|
||||||
vrfy(rand() == 0xc79ef743e2e6849c, \
|
vrfy(rand() == 0x1fe5b46fba7e069d, \
|
||||||
'1509: rand() == 0xc79ef743e2e6849c');
|
'1509: rand() == 0x1fe5b46fba7e069d');
|
||||||
vrfy(rand() == 0x8d2dcb2bed321284, \
|
vrfy(rand() == 0x308d32d9bdf2dc6f, \
|
||||||
'1510: rand() == 0x8d2dcb2bed321284');
|
'1510: rand() == 0x308d32d9bdf2dc6f');
|
||||||
|
|
||||||
/* test range interface */
|
/* test range interface */
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1511: tmp = srand(0)';
|
print '1511: tmp = srand(0)';
|
||||||
vrfy(rand(12345678901234567890) == 0x8d2dcb2bed321284, \
|
vrfy(rand(12345678901234567890) == 0x1fe5b46fba7e069d, \
|
||||||
'1512: rand(12345678901234567890) == 0x8d2dcb2bed321284');
|
'1512: rand(12345678901234567890) == 0x1fe5b46fba7e069d');
|
||||||
vrfy(rand(216091) == 0x13d2b, '1513: rand(216091) == 0x13d2b');
|
vrfy(rand(216091) == 0xc234, '1513: rand(216091) == 0xc234');
|
||||||
vrfy(rand(100) == 0x26, '1514: rand(100) == 0x26');
|
vrfy(rand(100) == 0x59, '1514: rand(100) == 0x59');
|
||||||
vrfy(rand(-46,46) == -0xf, '1515: rand(-46,46) == -0xf');
|
vrfy(rand(-46,46) == 0x2d, '1515: rand(-46,46) == 0x2d');
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1516: tmp = srand(0)';
|
print '1516: tmp = srand(0)';
|
||||||
vrfy(rand(2^64) == 0xc79ef743e2e6849c, \
|
vrfy(rand(2^64) == 0x1fe5b46fba7e069d, \
|
||||||
'1517: rand(2^64) == 0xc79ef743e2e6849c');
|
'1517: rand(2^64) == 0x1fe5b46fba7e069d');
|
||||||
vrfy(rand(0,2^64) == 0x8d2dcb2bed321284, \
|
vrfy(rand(0,2^64) == 0x308d32d9bdf2dc6f, \
|
||||||
'1518: rand(0,2^64) == 0x8d2dcb2bed321284');
|
'1518: rand(0,2^64) == 0x308d32d9bdf2dc6f');
|
||||||
|
|
||||||
/* test different forms of seeding the initial state */
|
/* test different forms of seeding the initial state */
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
@@ -1516,7 +1603,7 @@ define test_rand()
|
|||||||
vrfy(srand() == init, '1520: srand() == init');
|
vrfy(srand() == init, '1520: srand() == init');
|
||||||
tmp = srand(0x87e6ec938ff55aa5<<64);
|
tmp = srand(0x87e6ec938ff55aa5<<64);
|
||||||
print '1521: tmp = srand(0x87e6ec938ff55aa5<<64)';
|
print '1521: tmp = srand(0x87e6ec938ff55aa5<<64)';
|
||||||
vrfy(srand() == init, '1522: srand() == init');
|
print '1522: test disabled';
|
||||||
tmp = srand(state0);
|
tmp = srand(state0);
|
||||||
print '1523: tmp = srand(state0)';
|
print '1523: tmp = srand(state0)';
|
||||||
vrfy(srand() == init, '1524: srand() == init');
|
vrfy(srand() == init, '1524: srand() == init');
|
||||||
@@ -1528,35 +1615,35 @@ define test_rand()
|
|||||||
/* test the bit length interface */
|
/* test the bit length interface */
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1528: tmp = srand(0)';
|
print '1528: tmp = srand(0)';
|
||||||
vrfy(randbit(64) == 0xc79ef743e2e6849c, \
|
vrfy(randbit(64) == 0x1fe5b46fba7e069d, \
|
||||||
'1529: randbit(64) == 0xc79ef743e2e6849c');
|
'1529: randbit(64) == 0x1fe5b46fba7e069d');
|
||||||
vrfy(randbit(128) == 0x8d2dcb2bed3212844f4ad31f3818af34, \
|
vrfy(randbit(128) == 0x308d32d9bdf2dc6f45d3e3b3361b79e4, \
|
||||||
'1530: randbit(128) == 0x8d2dcb2bed3212844f4ad31f3818af34');
|
'1530: randbit(128) == 0x308d32d9bdf2dc6f45d3e3b3361b79e4');
|
||||||
vrfy(randbit(64) == 0x23a252f60bae4907, \
|
vrfy(randbit(64) == 0xd4ef1e3336022d81, \
|
||||||
'1531: randbit(64) == 0x23a252f60bae4907');
|
'1531: randbit(64) == 0xd4ef1e3336022d81');
|
||||||
vrfy(randbit(128) == 0xa8ed5b6203e2b1da32848cd9b3f1e3fa, \
|
vrfy(randbit(128) == 0x66b086e6c34e42124a1fc5d4e5c6f598, \
|
||||||
'1532: randbit(128) == 0xa8ed5b6203e2b1da32848cd9b3f1e3fa');
|
'1532: randbit(128) == 0x66b086e6c34e42124a1fc5d4e5c6f598');
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1533: tmp = srand(0)';
|
print '1533: tmp = srand(0)';
|
||||||
vrfy(randbit(32) == 0xc79ef743, '1534: randbit(32) == 0xc79ef743');
|
vrfy(randbit(32) == 0x1fe5b46f, '1534: randbit(32) == 0x1fe5b46f');
|
||||||
vrfy(randbit(32) == 0xe2e6849c, '1535: randbit(32) == 0xe2e6849c');
|
vrfy(randbit(32) == 0xba7e069d, '1535: randbit(32) == 0xba7e069d');
|
||||||
vrfy(randbit(1) == 0x1, '1536: randbit(1) == 0x1');
|
vrfy(randbit(1) == 0x0, '1536: randbit(1) == 0x0');
|
||||||
vrfy(randbit(5) == 0x3, '1537: randbit(5) == 0x3');
|
vrfy(randbit(5) == 0xc, '1537: randbit(5) == 0xc');
|
||||||
vrfy(randbit(33) == 0x96e595f6, '1538: randbit(33) == 0x96e595f6');
|
vrfy(randbit(33) == 0x46996cde, '1538: randbit(33) == 0x46996cde');
|
||||||
vrfy(randbit(25) == 0x1321284, '1539: randbit(25) == 0x1321284');
|
vrfy(randbit(25) == 0x1f2dc6f, '1539: randbit(25) == 0x1f2dc6f');
|
||||||
vrfy(randbit(2) == 0x1, '1540: randbit(2) == 0x1');
|
vrfy(randbit(2) == 0x1, '1540: randbit(2) == 0x1');
|
||||||
vrfy(randbit(13) == 0x7a5, '1541: randbit(13) == 0x7a5');
|
vrfy(randbit(13) == 0x2e9, '1541: randbit(13) == 0x2e9');
|
||||||
vrfy(randbit(18) == 0x1a63e, '1542: randbit(18) == 0x1a63e');
|
vrfy(randbit(18) == 0x3c766, '1542: randbit(18) == 0x3c766');
|
||||||
vrfy(randbit(8) == 0x70, '1543: randbit(8) == 0x70');
|
vrfy(randbit(8) == 0x6c, '1543: randbit(8) == 0x6c');
|
||||||
vrfy(randbit(9) == 0x62, '1544: randbit(9) == 0x62');
|
vrfy(randbit(9) == 0x6d, '1544: randbit(9) == 0x6d');
|
||||||
vrfy(randbit(70) == 0x2f3423a252f60bae49, \
|
vrfy(randbit(70) == 0x39e4d4ef1e3336022d, \
|
||||||
'1545: randbit(70) == 0x2f3423a252f60bae49');
|
'1545: randbit(70) == 0x39e4d4ef1e3336022d');
|
||||||
print '1546: test unused';
|
print '1546: test unused';
|
||||||
vrfy(randbit(8) == 0x7, '1547: randbit(8) == 0x7');
|
vrfy(randbit(8) == 0x81, '1547: randbit(8) == 0x81');
|
||||||
vrfy(randbit(65) == 0x151dab6c407c563b4, \
|
vrfy(randbit(65) == 0xcd610dcd869c8424, \
|
||||||
'1548: randbit(65) == 0x151dab6c407c563b4');
|
'1548: randbit(65) == 0xcd610dcd869c8424');
|
||||||
vrfy(randbit(63) == 0x32848cd9b3f1e3fa, \
|
vrfy(randbit(63) == 0x4a1fc5d4e5c6f598, \
|
||||||
'1549: randbit(63) == 0x32848cd9b3f1e3fa');
|
'1549: randbit(63) == 0x4a1fc5d4e5c6f598');
|
||||||
|
|
||||||
/* check to be sure that the srand(1) bug was fixed */
|
/* check to be sure that the srand(1) bug was fixed */
|
||||||
tmp = srand(1);
|
tmp = srand(1);
|
||||||
@@ -1565,36 +1652,36 @@ define test_rand()
|
|||||||
print '1551: n = 1';
|
print '1551: n = 1';
|
||||||
vrfy(num(n), '1552: num(n)');
|
vrfy(num(n), '1552: num(n)');
|
||||||
vrfy(den(n), '1553: den(n)');
|
vrfy(den(n), '1553: den(n)');
|
||||||
vrfy(randbit(64) == 0x4280429f8069cb27, \
|
vrfy(randbit(64) == 0xbf989a4c504a541d, \
|
||||||
'1554: randbit(64) == 0x4280429f8069cb27');
|
'1554: randbit(64) == 0xbf989a4c504a541d');
|
||||||
|
|
||||||
/* test randbit skip interface */
|
/* test randbit skip interface */
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1555: tmp = srand(0)';
|
print '1555: tmp = srand(0)';
|
||||||
vrfy(randbit(20) == 817647, '1556: randbit(20) == 817647');
|
vrfy(randbit(20) == 0x1fe5b, '1556: randbit(20) == 0x1fe5b');
|
||||||
vrfy(randbit(20) == 476130, '1557: randbit(20) == 476130');
|
vrfy(randbit(20) == 0x46fba, '1557: randbit(20) == 0x46fba');
|
||||||
vrfy(randbit(20) == 944201, '1558: randbit(20) == 944201');
|
vrfy(randbit(20) == 0x7e069, '1558: randbit(20) == 0x7e069');
|
||||||
vrfy(randbit(20) == 822573, '1559: randbit(20) == 822573');
|
vrfy(randbit(20) == 0xd308d, '1559: randbit(20) == 0xd308d');
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1560: tmp = srand(0)';
|
print '1560: tmp = srand(0)';
|
||||||
vrfy(randbit(-20) == 20, '1561: randbit(-20) == 20');
|
vrfy(randbit(-20) == 20, '1561: randbit(-20) == 20');
|
||||||
vrfy(randbit(20) == 476130, '1562: randbit(20) == 476130');
|
vrfy(randbit(20) == 290746, '1562: randbit(20) == 290746');
|
||||||
vrfy(randbit(-20) == 20, '1563: randbit(-20) == 20');
|
vrfy(randbit(-20) == 20, '1563: randbit(-20) == 20');
|
||||||
vrfy(randbit(20) == 822573, '1564: randbit(20) == 822573');
|
vrfy(randbit(20) == 864397, '1564: randbit(20) == 864397');
|
||||||
|
|
||||||
/* test randbit without and arg */
|
/* test randbit without and arg */
|
||||||
tmp = srand(0);
|
tmp = srand(0);
|
||||||
print '1565: tmp = srand(0)';
|
print '1565: tmp = srand(0)';
|
||||||
vrfy(randbit() == 1, '1566: randbit() == 1');
|
vrfy(randbit() == 0, '1566: randbit() == 0');
|
||||||
vrfy(randbit() == 1, '1567: randbit() == 1');
|
vrfy(randbit() == 0, '1567: randbit() == 0');
|
||||||
vrfy(randbit() == 0, '1568: randbit() == 0');
|
vrfy(randbit() == 0, '1568: randbit() == 0');
|
||||||
|
vrfy(randbit() == 1, '1569: randbit() == 1');
|
||||||
|
|
||||||
/* test seed() as best as we can */
|
/* test seed() as best as we can */
|
||||||
vrfy(seed() >= 0, '1569: seed() >= 0');
|
vrfy(seed() >= 0, '1570: seed() >= 0');
|
||||||
vrfy(seed() < 2^64, '1570: seed() < 2^64');
|
vrfy(seed() < 2^64, '1571: seed() < 2^64');
|
||||||
vrfy(isrand(srand(seed())), '1571: isrand(srand(seed()))');
|
vrfy(isrand(srand(seed())), '1572: isrand(srand(seed()))');
|
||||||
|
|
||||||
print '1572: Ending rand test';
|
print '1573: Ending rand test';
|
||||||
}
|
}
|
||||||
print '025: parsed test_rand()';
|
print '025: parsed test_rand()';
|
||||||
|
|
||||||
@@ -1710,7 +1797,23 @@ define test_mode()
|
|||||||
vrfy(str(3e9) == "3000000000", \
|
vrfy(str(3e9) == "3000000000", \
|
||||||
'1650: str(3e9) == \"3000000000\"');
|
'1650: str(3e9) == \"3000000000\"');
|
||||||
|
|
||||||
print '1651: Ending mode/base test';
|
/* test base2() functionality */
|
||||||
|
vrfy(base2() == 0, '1651: base2() == 0');
|
||||||
|
vrfy(base2(0) == 0, '1652: base2(0) == 0');
|
||||||
|
vrfy(base2() == 0, '1653: base2() == 0');
|
||||||
|
vrfy(base2(16) == 0, '1654: base2(16) == 0');
|
||||||
|
vrfy(base2() == 16, '1655: base2() == 16');
|
||||||
|
vrfy(str(3e9) == "3000000000 /* 0xb2d05e00 */",
|
||||||
|
'1656: str(3e9) == "3000000000 /* 0xb2d05e00 */"');
|
||||||
|
vrfy(base2(1/3) == 16, '1657: base2(16) == 16');
|
||||||
|
vrfy(str(23209) == "23209 /* 23209 */",
|
||||||
|
'1658: str(23209) == "23209 /* 23209 */"');
|
||||||
|
vrfy(str(3/2) == "1.5 /* 3/2 */",
|
||||||
|
'1659: str(3/2) == "1.5 /* 3/2 */"');
|
||||||
|
vrfy(base() == 10, '1660: base() == 10');
|
||||||
|
vrfy(base2(0) == 1/3, '1661: base2(0) == 1/3');
|
||||||
|
|
||||||
|
print '1662: Ending mode/base test';
|
||||||
}
|
}
|
||||||
print '026: parsed test_mode()';
|
print '026: parsed test_mode()';
|
||||||
|
|
||||||
@@ -2987,7 +3090,7 @@ define test_error()
|
|||||||
vrfy(root(3,2,0) == error(10029),
|
vrfy(root(3,2,0) == error(10029),
|
||||||
'3644: root(3,2,0) == error(10029)');
|
'3644: root(3,2,0) == error(10029)');
|
||||||
vrfy(norm("x") == error(10030), '3645: norm("x") == error(10030)');
|
vrfy(norm("x") == error(10030), '3645: norm("x") == error(10030)');
|
||||||
vrfy(null() << 2 == error(10031),'3646: null() << 2 == error(10031)');
|
vrfy(list() << 2 == error(10031),'3646: list() << 2 == error(10031)');
|
||||||
vrfy(1.5 << 2 == error(10031), '3647: 1.5 << 2 == error(10031)');
|
vrfy(1.5 << 2 == error(10031), '3647: 1.5 << 2 == error(10031)');
|
||||||
vrfy(3 << "x" == error(10032), '3648: 3 << "x" == error(10032)');
|
vrfy(3 << "x" == error(10032), '3648: 3 << "x" == error(10032)');
|
||||||
vrfy(3 << 1.5 == error(10032), '3649: 3 << 1.5 == error(10032)');
|
vrfy(3 << 1.5 == error(10032), '3649: 3 << 1.5 == error(10032)');
|
||||||
@@ -3085,8 +3188,7 @@ define test_error()
|
|||||||
print '3712: e9999 = error(9999)';
|
print '3712: e9999 = error(9999)';
|
||||||
vrfy(errno() == 9999, '3713: errno() == 9999');
|
vrfy(errno() == 9999, '3713: errno() == 9999');
|
||||||
vrfy(error() == e9999, '3714: error() == e9999');
|
vrfy(error() == e9999, '3714: error() == e9999');
|
||||||
vrfy(substr(strerror(), strpos(strerror(),"9999"), 4) == "9999",
|
/* test 3715 removed due to non-portable strerror() output */
|
||||||
'3715: substr(strerror(), strpos(strerror(),"9999"), 4) == "9999"');
|
|
||||||
x = newerror("Alpha");
|
x = newerror("Alpha");
|
||||||
print '3716: x = newerror("Alpha")';
|
print '3716: x = newerror("Alpha")';
|
||||||
n = iserror(x);
|
n = iserror(x);
|
||||||
@@ -3097,16 +3199,14 @@ define test_error()
|
|||||||
vrfy(errno(9999) == n, '3721: errno() == n');
|
vrfy(errno(9999) == n, '3721: errno() == n');
|
||||||
vrfy(errno() == 9999, '3722: errno() == 9999');
|
vrfy(errno() == 9999, '3722: errno() == 9999');
|
||||||
vrfy(error() == e9999, '3723: error() == e9999');
|
vrfy(error() == e9999, '3723: error() == e9999');
|
||||||
vrfy(substr(strerror(), strpos(strerror(),"9999"), 4) == "9999",
|
/* test 3724 removed due to non-portable strerror() output */
|
||||||
'3724: substr(strerror(), strpos(strerror(),"9999"), 4) == "9999"');
|
|
||||||
a = 1/0;
|
a = 1/0;
|
||||||
print '3725: a = 1/0';
|
print '3725: a = 1/0';
|
||||||
vrfy(strerror() == "Division by zero",
|
vrfy(strerror() == "Division by zero",
|
||||||
'3726: strerror() == "Division by zero"');
|
'3726: strerror() == "Division by zero"');
|
||||||
n = 8191;
|
n = 8191;
|
||||||
print '3727: n = 8191';
|
print '3727: n = 8191';
|
||||||
vrfy(substr(strerror(8191),strpos(strerror(n),"8191"), 4) == "8191",
|
/* test 3728 removed due to non-portable strerror() output */
|
||||||
'3728: substr(strerror(n),strpos(strerror(n),"8191"),4) == "8191"');
|
|
||||||
|
|
||||||
/* errmax and errcount should be bumped up the 148 errors above */
|
/* errmax and errcount should be bumped up the 148 errors above */
|
||||||
vrfy(errcount() == ecnt, '3729: errcount() == ecnt');
|
vrfy(errcount() == ecnt, '3729: errcount() == ecnt');
|
||||||
@@ -4467,7 +4567,14 @@ define test_random()
|
|||||||
vrfy(seed() < 2^64, '5465: seed() < 2^64');
|
vrfy(seed() < 2^64, '5465: seed() < 2^64');
|
||||||
vrfy(israndom(srandom(seed())), '5466: israndom(srandom(seed()))');
|
vrfy(israndom(srandom(seed())), '5466: israndom(srandom(seed()))');
|
||||||
|
|
||||||
print '5467: Ending test_random';
|
/* verify random(10,11) double bug fix */
|
||||||
|
vrfy(random(10,11) == 10, '5467: random(10,11) == 10');
|
||||||
|
vrfy(random(10,11) == 10, '5468: random(10,11) == 10');
|
||||||
|
vrfy(random(10,11) == 10, '5469: random(10,11) == 10');
|
||||||
|
vrfy(random(0,1) == 0, '5470: random(0,1) == 0');
|
||||||
|
vrfy(random(0,1) == 0, '5471: random(0,1) == 0');
|
||||||
|
|
||||||
|
print '5472: Ending test_random';
|
||||||
}
|
}
|
||||||
print '137: parsed test_random()';
|
print '137: parsed test_random()';
|
||||||
|
|
||||||
@@ -5037,10 +5144,17 @@ define test_is()
|
|||||||
*/
|
*/
|
||||||
a = assoc();
|
a = assoc();
|
||||||
print '5901: a = assoc()';
|
print '5901: a = assoc()';
|
||||||
ofd = fopen("/dev/null", "r");
|
if (config("windows")) {
|
||||||
print '5902: ofd = fopen("/dev/null", "r")';
|
ofd = fopen("NUL:", "rb");
|
||||||
cfd = fopen("/dev/null", "r");
|
print '5902: ofd = fopen("NUL:", "rb")';
|
||||||
print '5903: cfd = fopen("/dev/null", "r")';
|
cfd = fopen("NUL:", "rb");
|
||||||
|
print '5903: cfd = fopen("NUL:", "rb")';
|
||||||
|
} else {
|
||||||
|
ofd = fopen("/dev/null","rb");
|
||||||
|
print '5902: ofd = fopen("/dev/null","rb")';
|
||||||
|
cfd = fopen("/dev/null","rb");
|
||||||
|
print '5903: cfd = fopen("/dev/null","rb")';
|
||||||
|
}
|
||||||
fclose(cfd);
|
fclose(cfd);
|
||||||
print '5904: fclose(cfd)';
|
print '5904: fclose(cfd)';
|
||||||
blk = blk();
|
blk = blk();
|
||||||
@@ -7518,7 +7632,9 @@ vrfy(j8300(10) == 11, '8307: j8300(10) == 11');
|
|||||||
{static k8300 = 5} define l8300(x) = k8300 + x;
|
{static k8300 = 5} define l8300(x) = k8300 + x;
|
||||||
print '8308: {static k8300 = 5} define l8300(x) = k8300 + x;';
|
print '8308: {static k8300 = 5} define l8300(x) = k8300 + x;';
|
||||||
vrfy(l8300(10) == 15, '8309: l8300(10) == 15');
|
vrfy(l8300(10) == 15, '8309: l8300(10) == 15');
|
||||||
print '8310: Ending define tests';
|
static a8300 = 1, b8300;
|
||||||
|
vrfy(a8300 == 1, '8310: a8300 == 1');
|
||||||
|
print '8311: Ending define tests';
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -7541,6 +7657,15 @@ read -once "test8500";
|
|||||||
/* 85xx: Ending test_divmod is printed by test8500.cal */
|
/* 85xx: Ending test_divmod is printed by test8500.cal */
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* test_maxargs - test up to 1024 args being passed to a builtin function
|
||||||
|
*/
|
||||||
|
print;
|
||||||
|
print '8600: Starting test_1024args'
|
||||||
|
read -once "test8600";
|
||||||
|
/* 86xx: Ending test_1024args is printed by test8600.cal */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* read various calc resource files
|
* read various calc resource files
|
||||||
*
|
*
|
||||||
|
53
cal/repeat.cal
Normal file
53
cal/repeat.cal
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* repeat - return the value of a repeated set of digits
|
||||||
|
*
|
||||||
|
* Copyright (C) 2003 Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 29.2 $
|
||||||
|
* @(#) $Id: repeat.cal,v 29.2 2003/01/14 01:55:22 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/repeat.cal,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 2003/01/05 00:00:01
|
||||||
|
* File existed as early as: 2003
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* repeat - return the value of a repeated set of digits
|
||||||
|
*
|
||||||
|
* usage:
|
||||||
|
* repeat(digit_set, repeat_count)
|
||||||
|
*/
|
||||||
|
define repeat(digit_set, repeat_count)
|
||||||
|
{
|
||||||
|
local digit_count; /* digits in the digit_set */
|
||||||
|
|
||||||
|
/* firewall */
|
||||||
|
if (!isint(digit_set) || digit_set <= 0) {
|
||||||
|
quit "digit set must be an integer > 0";
|
||||||
|
}
|
||||||
|
if (!isint(repeat_count) || repeat_count <= 0) {
|
||||||
|
quit "repeat count must be an integer > 0";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* return repeated set of digits */
|
||||||
|
digit_count = digits(digit_set);
|
||||||
|
return digit_set * (10^(digit_count*repeat_count)-1) / (10^digit_count-1);
|
||||||
|
}
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: seedrandom.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: seedrandom.cal,v 29.3 2001/03/31 13:31:34 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/seedrandom.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/seedrandom.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/01/01 08:21:00
|
* Under source code control: 1996/01/01 08:21:00
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -115,7 +115,7 @@ define seedrandom(seed1, seed2, size, trials)
|
|||||||
p = 2*fp+1;
|
p = 2*fp+1;
|
||||||
} while (ptest(p,1,0) == 0);
|
} while (ptest(p,1,0) == 0);
|
||||||
} while(ptest(p, trials) == 0 || ptest(fp, trials) == 0);
|
} while(ptest(p, trials) == 0 || ptest(fp, trials) == 0);
|
||||||
if (config("resource_debug") & 3) {
|
if (config("resource_debug") & 8) {
|
||||||
print "/* 1st Blum prime */ p=", p;
|
print "/* 1st Blum prime */ p=", p;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -129,7 +129,7 @@ define seedrandom(seed1, seed2, size, trials)
|
|||||||
q = 2*fq+1;
|
q = 2*fq+1;
|
||||||
} while (ptest(q,1,0) == 0);
|
} while (ptest(q,1,0) == 0);
|
||||||
} while(ptest(q, trials) == 0 || ptest(fq, trials) == 0);
|
} while(ptest(q, trials) == 0 || ptest(fq, trials) == 0);
|
||||||
if (config("resource_debug") & 3) {
|
if (config("resource_debug") & 8) {
|
||||||
print "/* 2nd Blum prime */ q=", q;
|
print "/* 2nd Blum prime */ q=", q;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,7 +139,7 @@ define seedrandom(seed1, seed2, size, trials)
|
|||||||
n = p*q; /* the Blum modulus */
|
n = p*q; /* the Blum modulus */
|
||||||
binsize = highbit(n)+1; /* smallest power of 2 > p*q */
|
binsize = highbit(n)+1; /* smallest power of 2 > p*q */
|
||||||
r = pmod(rand(1<<ceil(binsize*4/5), 1<<(binsize-2)), 2, n);
|
r = pmod(rand(1<<ceil(binsize*4/5), 1<<(binsize-2)), 2, n);
|
||||||
if (config("resource_debug") & 3) {
|
if (config("resource_debug") & 8) {
|
||||||
print "/* seed quadratic residue */ r=", r;
|
print "/* seed quadratic residue */ r=", r;
|
||||||
print "/* newn", binsize, "bit quadratic residue*/ newn=", n;
|
print "/* newn", binsize, "bit quadratic residue*/ newn=", n;
|
||||||
}
|
}
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: solve.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: solve.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/solve.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/solve.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:37
|
* Under source code control: 1990/02/15 01:50:37
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: sumsq.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: sumsq.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/sumsq.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/sumsq.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:37
|
* Under source code control: 1990/02/15 01:50:37
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: surd.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: surd.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/surd.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/surd.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:38
|
* Under source code control: 1990/02/15 01:50:38
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test1700.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: test1700.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test1700.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test1700.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1994/03/14 23:12:51
|
* Under source code control: 1994/03/14 23:12:51
|
||||||
* File existed as early as: 1994
|
* File existed as early as: 1994
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test2300.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: test2300.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test2300.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test2300.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/07/09 06:12:13
|
* Under source code control: 1995/07/09 06:12:13
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test2600.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: test2600.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test2600.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test2600.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/10/13 00:13:14
|
* Under source code control: 1995/10/13 00:13:14
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test2700.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: test2700.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test2700.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test2700.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/11/01 22:52:25
|
* Under source code control: 1995/11/01 22:52:25
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test3100.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: test3100.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3100.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3100.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/11/28 11:56:57
|
* Under source code control: 1995/11/28 11:56:57
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test3300.cal,v 29.1 1999/12/14 09:15:33 chongo Exp $
|
* @(#) $Id: test3300.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3300.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3300.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/12/02 04:27:41
|
* Under source code control: 1995/12/02 04:27:41
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test3400.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test3400.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3400.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3400.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/12/02 05:20:11
|
* Under source code control: 1995/12/02 05:20:11
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test3500.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test3500.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3500.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test3500.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/12/18 22:50:46
|
* Under source code control: 1995/12/18 22:50:46
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test4000.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test4000.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4000.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4000.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/03/13 02:38:45
|
* Under source code control: 1996/03/13 02:38:45
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test4100.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test4100.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4100.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4100.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/03/13 03:53:22
|
* Under source code control: 1996/03/13 03:53:22
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.4 $
|
||||||
* @(#) $Id: test4600.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test4600.cal,v 29.4 2001/04/10 22:09:02 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4600.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test4600.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/07/02 20:04:40
|
* Under source code control: 1996/07/02 20:04:40
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -53,10 +53,10 @@ define stest(str, verbose)
|
|||||||
/*
|
/*
|
||||||
* do file operations
|
* do file operations
|
||||||
*/
|
*/
|
||||||
f = fopen("junk4600", "w");
|
f = fopen("junk4600", "wb");
|
||||||
if (iserror(f)) {
|
if (iserror(f)) {
|
||||||
print 'failed';
|
print 'failed';
|
||||||
print '**** fopen("junk4600", "w") failed';
|
print '**** fopen("junk4600", "wb") failed';
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (iserror(fputs(f,
|
if (iserror(fputs(f,
|
||||||
@@ -67,9 +67,9 @@ define stest(str, verbose)
|
|||||||
print '**** fputs(f, "Fourscore ... failed';
|
print '**** fputs(f, "Fourscore ... failed';
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (iserror(freopen(f, "r"))) {
|
if (iserror(freopen(f, "rb"))) {
|
||||||
print 'failed';
|
print 'failed';
|
||||||
print '**** iserror(freopen(f, "r")) failed';
|
print '**** iserror(freopen(f, "rb")) failed';
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (iserror(rewind(f))) {
|
if (iserror(rewind(f))) {
|
||||||
@@ -173,7 +173,7 @@ define ttest(str, m, n, verbose)
|
|||||||
print str:":",:;
|
print str:":",:;
|
||||||
}
|
}
|
||||||
i = rm("-f", "junk4600");
|
i = rm("-f", "junk4600");
|
||||||
f = fopen("junk4600", "w");
|
f = fopen("junk4600", "wb");
|
||||||
|
|
||||||
if (isnull(n))
|
if (isnull(n))
|
||||||
n = 4;
|
n = 4;
|
||||||
@@ -198,7 +198,7 @@ define ttest(str, m, n, verbose)
|
|||||||
fflush(f);
|
fflush(f);
|
||||||
if (verbose > 1)
|
if (verbose > 1)
|
||||||
printf("File has size %d\n", pos[i]);
|
printf("File has size %d\n", pos[i]);
|
||||||
freopen(f, "r");
|
freopen(f, "rb");
|
||||||
if (size(f) != pos[i]) {
|
if (size(f) != pos[i]) {
|
||||||
print 'failed';
|
print 'failed';
|
||||||
printf("**** Failure 1 for file size\n");
|
printf("**** Failure 1 for file size\n");
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test5100.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test5100.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test5100.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test5100.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/12/02 23:57:10
|
* Under source code control: 1996/12/02 23:57:10
|
||||||
* File existed as early as: 1996
|
* File existed as early as: 1996
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test5200.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test5200.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test5200.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test5200.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/02/07 02:48:10
|
* Under source code control: 1997/02/07 02:48:10
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,15 +17,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test8400.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test8400.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test8400.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test8400.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1999/10/31 01:00:03
|
* Under source code control: 1999/10/31 01:00:03
|
||||||
* File existed as early as: 1999
|
* File existed as early as: 1999
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: test8500.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: test8500.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test8500.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/test8500.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1999/11/12 20:59:59
|
* Under source code control: 1999/11/12 20:59:59
|
||||||
* File existed as early as: 1999
|
* File existed as early as: 1999
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
1406
cal/test8600.cal
Normal file
1406
cal/test8600.cal
Normal file
File diff suppressed because it is too large
Load Diff
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: unitfrac.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: unitfrac.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/unitfrac.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/unitfrac.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:50:38
|
* Under source code control: 1990/02/15 01:50:38
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: varargs.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: varargs.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/varargs.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/varargs.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/05/22 21:56:34
|
* Under source code control: 1991/05/22 21:56:34
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: xx_print.cal,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: xx_print.cal,v 29.2 2000/06/07 14:02:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/xx_print.cal,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/cal/RCS/xx_print.cal,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1997/04/17 00:08:50
|
* Under source code control: 1997/04/17 00:08:50
|
||||||
* File existed as early as: 1997
|
* File existed as early as: 1997
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
775
calc.c
775
calc.c
@@ -19,23 +19,40 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.8 $
|
||||||
* @(#) $Id: calc.c,v 29.1 1999/12/14 09:15:34 chongo Exp $
|
* @(#) $Id: calc.c,v 29.8 2001/04/10 22:03:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/calc.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/calc.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:11
|
* Under source code control: 1990/02/15 01:48:11
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
|
#if !defined (_WIN32)
|
||||||
# include <pwd.h>
|
# include <pwd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
|
#if defined(_WIN32)
|
||||||
|
# include <io.h>
|
||||||
|
/*
|
||||||
|
* getopt.h file is from the Cygwin GNU library
|
||||||
|
*
|
||||||
|
* See:
|
||||||
|
* http://sources.redhat.com/cygwin/
|
||||||
|
*/
|
||||||
|
# include "../getopt/getopt.h"
|
||||||
|
# define strdup _strdup
|
||||||
|
# define isatty _isatty
|
||||||
|
#endif /* Windoz */
|
||||||
|
|
||||||
#define CALC_C
|
#define CALC_C
|
||||||
#include "calc.h"
|
#include "calc.h"
|
||||||
#include "hist.h"
|
#include "hist.h"
|
||||||
@@ -49,6 +66,7 @@
|
|||||||
#include "custom.h"
|
#include "custom.h"
|
||||||
#include "math_error.h"
|
#include "math_error.h"
|
||||||
#include "args.h"
|
#include "args.h"
|
||||||
|
#include "zmath.h"
|
||||||
|
|
||||||
#include "have_unistd.h"
|
#include "have_unistd.h"
|
||||||
#if defined(HAVE_UNISTD_H)
|
#if defined(HAVE_UNISTD_H)
|
||||||
@@ -70,8 +88,8 @@
|
|||||||
* static definitions and functions
|
* static definitions and functions
|
||||||
*/
|
*/
|
||||||
static void intint(int arg); /* interrupt routine */
|
static void intint(int arg); /* interrupt routine */
|
||||||
static int script_args(int argc,char ***argv,char **shellfile,char **program);
|
static int nextcp(char **cpp, int *ip, int argc, char **argv, BOOL haveendstr);
|
||||||
|
static void set_run_state(run state);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Top level calculator routine.
|
* Top level calculator routine.
|
||||||
@@ -81,26 +99,57 @@ main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
int want_defhelp = 0; /* 1=> we only want the default help */
|
int want_defhelp = 0; /* 1=> we only want the default help */
|
||||||
int cmdlen; /* length of the command string */
|
int cmdlen; /* length of the command string */
|
||||||
char *shellfile = NULL; /* != NULL ==> name of calc shell script */
|
int newcmdlen;
|
||||||
extern char *optarg; /* option argument */
|
|
||||||
extern int optind; /* option index */
|
|
||||||
int c; /* option */
|
int c; /* option */
|
||||||
char *p;
|
int index;
|
||||||
long i;
|
int maxindex;
|
||||||
|
char *cp;
|
||||||
|
char *endcp;
|
||||||
|
char *bp;
|
||||||
|
BOOL done = FALSE;
|
||||||
|
BOOL havearg;
|
||||||
|
BOOL haveendstr;
|
||||||
|
int len;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* parse args
|
* parse args
|
||||||
*/
|
*/
|
||||||
program = argv[0];
|
program = argv[0];
|
||||||
/* catch the case of a leading -S option */
|
|
||||||
if (argc > 2 && strncmp(argv[1], "-S", 2) == 0) {
|
cmdbuf[0] = '\0';
|
||||||
/* convert the calc shell options into command line options */
|
cmdlen = 0;
|
||||||
argc = script_args(argc, &argv, &shellfile, &program);
|
|
||||||
/* -S implies -s */
|
|
||||||
s_flag = TRUE;
|
|
||||||
}
|
|
||||||
/* process command line options */
|
/* process command line options */
|
||||||
while ((c = getopt(argc, argv, "Cehim:npquvcdD:s")) != -1) {
|
|
||||||
|
index = 1;
|
||||||
|
cp = endcp = NULL;
|
||||||
|
maxindex = argc;
|
||||||
|
havecommands = FALSE;
|
||||||
|
while (index < maxindex && !done) {
|
||||||
|
cp = argv[index];
|
||||||
|
if (*cp == '\0') {
|
||||||
|
index++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
for (;;) {
|
||||||
|
havearg = FALSE;
|
||||||
|
if (*cp != '-') {
|
||||||
|
done = TRUE;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
++cp;
|
||||||
|
if (*cp == '-') {
|
||||||
|
cp++;
|
||||||
|
while (*cp == ' ')
|
||||||
|
++cp;
|
||||||
|
done = TRUE;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
c = *cp;
|
||||||
|
if (c == '\0' || c == ' ')
|
||||||
|
break;
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'C':
|
case 'C':
|
||||||
#if defined(CUSTOM)
|
#if defined(CUSTOM)
|
||||||
@@ -108,12 +157,14 @@ main(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
#else /* CUSTOM */
|
#else /* CUSTOM */
|
||||||
/*
|
/*
|
||||||
* we are too early in processing to call
|
* we are too early in processing to
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
* call libcalc_call_me_last() -
|
||||||
|
* nothing to cleanup
|
||||||
*/
|
*/
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"%s: calc was built with custom functions "
|
"%s: calc was built with custom"
|
||||||
"disabled, -C usage is disallowed\n", program);
|
" functions disabled, -C usage is"
|
||||||
|
" disallowed\n", program);
|
||||||
exit(1);
|
exit(1);
|
||||||
#endif /* CUSTOM */
|
#endif /* CUSTOM */
|
||||||
case 'e':
|
case 'e':
|
||||||
@@ -126,19 +177,41 @@ main(int argc, char **argv)
|
|||||||
i_flag = TRUE;
|
i_flag = TRUE;
|
||||||
break;
|
break;
|
||||||
case 'm':
|
case 'm':
|
||||||
if (optarg[1] != '\0' || *optarg<'0' || *optarg>'7') {
|
cp++;
|
||||||
|
while (*cp == ' ' || *cp == '\t')
|
||||||
|
cp++;
|
||||||
|
if (*cp == '\0') {
|
||||||
|
index++;
|
||||||
|
if (index >= argc) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"-m expects"
|
||||||
|
" argument");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
cp = argv[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (*cp < '0' || *cp > '7') {
|
||||||
/*
|
/*
|
||||||
* we are too early in processing to
|
* we are too early in
|
||||||
* call libcalc_call_me_last()
|
* processing to call
|
||||||
|
* libcalc_call_me_last()
|
||||||
* nothing to cleanup
|
* nothing to cleanup
|
||||||
*/
|
*/
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"%s: unknown -m arg\n", program);
|
"%s: unknown -m arg\n",
|
||||||
|
program);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
allow_read = (((*optarg-'0') & 04) > 0);
|
allow_read = (((*cp-'0') & 04) > 0);
|
||||||
allow_write = (((*optarg-'0') & 02) > 0);
|
allow_write = (((*cp-'0') & 02) > 0);
|
||||||
allow_exec = (((*optarg-'0') & 01) > 0);
|
allow_exec = (((*cp-'0') & 01) > 0);
|
||||||
|
cp++;
|
||||||
|
if (*cp != ' ' && *cp != '\0') {
|
||||||
|
fprintf(stderr, "??? m-arg");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
havearg = TRUE;
|
||||||
break;
|
break;
|
||||||
case 'n':
|
case 'n':
|
||||||
new_std = TRUE;
|
new_std = TRUE;
|
||||||
@@ -160,107 +233,242 @@ main(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
/*
|
/*
|
||||||
* we are too early in processing to call
|
* we are too early in processing to
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
* call libcalc_call_me_last() -
|
||||||
|
* nothing to cleanup
|
||||||
*/
|
*/
|
||||||
printf("%s (version %s)\n", CALC_TITLE, version());
|
printf("%s (version %s)\n",
|
||||||
|
CALC_TITLE, version());
|
||||||
exit(0);
|
exit(0);
|
||||||
case 'D':
|
case 'D':
|
||||||
/*
|
/*
|
||||||
* parse the -D optarg
|
* parse the -D arg
|
||||||
*
|
*
|
||||||
* Could be calc_debug
|
* Could be:
|
||||||
* or calc_debug:resource_debug
|
*
|
||||||
* or calc_debug:resource_debug:user_debug
|
* calc_debug
|
||||||
|
* calc_debug:resource_debug
|
||||||
|
* calc_debug:resource_debug:user_debug
|
||||||
*/
|
*/
|
||||||
calc_debug = optarg;
|
if (nextcp(&cp, &index, argc, argv,
|
||||||
p = strchr(optarg, ':');
|
FALSE)) {
|
||||||
if (p != NULL) {
|
fprintf(stderr,
|
||||||
*p = '\0';
|
"-D expects argument\n");
|
||||||
resource_debug = p+1;
|
exit (1);
|
||||||
p = strchr(resource_debug, ':');
|
|
||||||
if (p != NULL) {
|
|
||||||
*p = '\0';
|
|
||||||
user_debug = p+1;
|
|
||||||
}
|
}
|
||||||
|
havearg = TRUE;
|
||||||
|
if (*cp != ':') {
|
||||||
|
if (*cp < '0' || *cp > '9') {
|
||||||
|
fprintf(stderr,
|
||||||
|
"-D expects"
|
||||||
|
" integer\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
calc_debug = cp;
|
||||||
|
(void) strtol(cp, &endcp, 10);
|
||||||
|
cp = endcp;
|
||||||
|
if (*cp != '\0' &&
|
||||||
|
*cp != ' ' && *cp != ':') {
|
||||||
|
fprintf(stderr,
|
||||||
|
"Bad syntax im -D"
|
||||||
|
" arg\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
if (*cp != ':') {
|
||||||
|
if (nextcp(&cp, &index,
|
||||||
|
argc, argv,
|
||||||
|
FALSE)
|
||||||
|
|| *cp != ':')
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (nextcp(&cp, &index, argc, argv,
|
||||||
|
FALSE)) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"-D : expects"
|
||||||
|
" argument\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
if (*cp != ':') {
|
||||||
|
if (*cp < '0' || *cp > '9') {
|
||||||
|
fprintf(stderr,
|
||||||
|
"-D : expects"
|
||||||
|
" integer\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
resource_debug = cp;
|
||||||
|
(void) strtol(cp, &endcp, 10);
|
||||||
|
cp = endcp;
|
||||||
|
if (*cp != '\0' &&
|
||||||
|
*cp != ' ' && *cp != ':') {
|
||||||
|
fprintf(stderr,
|
||||||
|
"Bad syntax im -D"
|
||||||
|
" : arg\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
if (*cp != ':') {
|
||||||
|
if (nextcp(&cp, &index,
|
||||||
|
argc, argv,
|
||||||
|
FALSE)
|
||||||
|
|| *cp != ':') {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (nextcp(&cp, &index, argc, argv,
|
||||||
|
FALSE)) {
|
||||||
|
fprintf(stderr, "-D : : expects"
|
||||||
|
" argument\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
if (*cp < '0' || *cp > '9') {
|
||||||
|
fprintf(stderr, "-D :: expects"
|
||||||
|
" integer\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
user_debug = cp;
|
||||||
|
(void) strtol(cp, &endcp, 10);
|
||||||
|
cp = endcp;
|
||||||
|
if (*cp != '\0' && *cp != ' ') {
|
||||||
|
fprintf(stderr, "Bad syntax in"
|
||||||
|
" -D : : arg\n");
|
||||||
|
exit (1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case 'f':
|
||||||
|
haveendstr = (cp[1] == '\0');
|
||||||
|
if (nextcp(&cp, &index, argc, argv,
|
||||||
|
haveendstr)) {
|
||||||
|
fprintf(stderr, "-f expects"
|
||||||
|
" filename\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
if (*cp == ';') {
|
||||||
|
fprintf(stderr,
|
||||||
|
"-f expects"
|
||||||
|
" filename\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
havearg = TRUE;
|
||||||
|
if (cmdlen > 0)
|
||||||
|
cmdbuf[cmdlen++] = ' ';
|
||||||
|
strcpy(cmdbuf + cmdlen, "read ");
|
||||||
|
cmdlen += 5;
|
||||||
|
if (strncmp(cp, "-once", 5) == 0 &&
|
||||||
|
(cp[5] == '\0' || cp[5] == ' ')) {
|
||||||
|
cp += 5;
|
||||||
|
haveendstr = (*cp == '\0');
|
||||||
|
strcpy(cmdbuf+cmdlen, "-once ");
|
||||||
|
cmdlen += 6;
|
||||||
|
if (nextcp(&cp, &index, argc,
|
||||||
|
argv, haveendstr)) {
|
||||||
|
fprintf(stderr, "-f -once"
|
||||||
|
" expects"
|
||||||
|
" filename\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bp = cmdbuf + cmdlen;
|
||||||
|
if (haveendstr) {
|
||||||
|
len = strlen(cp);
|
||||||
|
if (len == 0) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"Null"
|
||||||
|
" filename!");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
if (cmdlen + len + 2 > MAXCMD) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"Commands too"
|
||||||
|
" long");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
/* XXX What if *cp = '\''? */
|
||||||
|
*bp++ = '\'';
|
||||||
|
strcpy(bp, cp);
|
||||||
|
bp += len;
|
||||||
|
*bp++ = '\'';
|
||||||
|
cp += len;
|
||||||
|
cmdlen += len + 2;
|
||||||
|
} else {
|
||||||
|
do {
|
||||||
|
if (cmdlen > MAXCMD) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"Commands"
|
||||||
|
" too long");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
*bp++ = *cp++;
|
||||||
|
cmdlen++;
|
||||||
|
} while (*cp != '\0' &&
|
||||||
|
*cp != ';' &&
|
||||||
|
*cp != ' ');
|
||||||
|
}
|
||||||
|
if (*cp == ';')
|
||||||
|
cp++;
|
||||||
|
*bp++ = ';';
|
||||||
|
cmdlen++;
|
||||||
|
break;
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
s_flag = TRUE;
|
s_flag = TRUE;
|
||||||
|
maxindex = index + 1;
|
||||||
break;
|
break;
|
||||||
case 'S':
|
|
||||||
/*FALLTHRU*/
|
|
||||||
default:
|
default:
|
||||||
/*
|
/*
|
||||||
* we are too early in processing to call
|
* we are too early in processing to
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
* call libcalc_call_me_last() -
|
||||||
|
* nothing to cleanup
|
||||||
*/
|
*/
|
||||||
|
fprintf(stderr, "Illegal option -%c\n",
|
||||||
|
c);
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"usage: %s [-c] [-C] [-d] [-e] [-h] [-i] [-m mode]\n"
|
"usage: %s [-a] [-c] [-C] [-d] [-e] [-h] [-i] [-m mode]\n"
|
||||||
"\t[-D calc_debug[:resource_debug:[user_debug]]]\n"
|
"\t[-D calc_debug[:resource_debug[:user_debug]]]\n"
|
||||||
"\t[-n] [-p] [-q] [-s] [-u] [-v] "
|
"\t[-n] [-p] [-q] [-u] [-v] "
|
||||||
"[[--] calc_cmd ...]\n",
|
"[--] [calc_cmd ...]\n",
|
||||||
program);
|
program);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
if (havearg)
|
||||||
|
break;
|
||||||
|
cp++;
|
||||||
|
}
|
||||||
|
while (*cp == ' ')
|
||||||
|
cp++;
|
||||||
|
if (*cp == '\0') {
|
||||||
|
index++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
while (index < maxindex) {
|
||||||
* If -S was given via a calc shell script, imply -p and -d
|
if (cmdlen > 0)
|
||||||
* unless -i was also given.
|
|
||||||
*/
|
|
||||||
if (shellfile != NULL && !i_flag) {
|
|
||||||
p_flag = TRUE;
|
|
||||||
d_flag = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* look at the length of any trailing command args
|
|
||||||
*
|
|
||||||
* We make room for the trailing '\0\n' as well as an extra guard byte.
|
|
||||||
*
|
|
||||||
* However, if -S is in effect, we will pretend that we have no
|
|
||||||
* command args and allow the argv() builtin access to the strings.
|
|
||||||
*/
|
|
||||||
cmdbuf[0] = '\0';
|
|
||||||
if (s_flag) {
|
|
||||||
havecommands = FALSE;
|
|
||||||
argc_value = argc - optind;
|
|
||||||
argv_value = argv + optind;
|
|
||||||
} else {
|
|
||||||
havecommands = (optind < argc);
|
|
||||||
for (cmdlen=0, i=optind; i < argc; ++i) {
|
|
||||||
/* argument + space separator */
|
|
||||||
cmdlen += strlen(argv[i]) + 1;
|
|
||||||
}
|
|
||||||
if (i > MAXCMD) {
|
|
||||||
/*
|
|
||||||
* we are too early in processing to call
|
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
|
||||||
*/
|
|
||||||
fprintf(stderr,
|
|
||||||
"%s: command in arg list is too long\n",
|
|
||||||
program);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Form a command the remaining args separated by spaces.
|
|
||||||
*/
|
|
||||||
if (optind < argc) {
|
|
||||||
strcpy(cmdbuf, argv[optind]);
|
|
||||||
cmdlen = strlen(argv[optind]);
|
|
||||||
for (i=optind+1; i < argc; ++i) {
|
|
||||||
cmdbuf[cmdlen++] = ' ';
|
cmdbuf[cmdlen++] = ' ';
|
||||||
strcpy(cmdbuf+cmdlen, argv[i]);
|
newcmdlen = cmdlen + strlen(cp);
|
||||||
cmdlen += strlen(argv[i]);
|
if (newcmdlen > MAXCMD) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s: commands too long\n",
|
||||||
|
program);
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
strcpy(cmdbuf + cmdlen, cp);
|
||||||
|
cmdlen = newcmdlen;
|
||||||
|
index++;
|
||||||
|
if (index < maxindex)
|
||||||
|
cp = argv[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
havecommands = (cmdlen > 0);
|
||||||
|
|
||||||
|
if (havecommands) {
|
||||||
cmdbuf[cmdlen++] = '\n';
|
cmdbuf[cmdlen++] = '\n';
|
||||||
cmdbuf[cmdlen] = '\0';
|
cmdbuf[cmdlen] = '\0';
|
||||||
}
|
}
|
||||||
argc_value = 0;
|
|
||||||
argv_value = argv+argc;
|
argc_value = argc - maxindex;
|
||||||
}
|
argv_value = argv + maxindex;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* unbuffered mode
|
* unbuffered mode
|
||||||
@@ -270,6 +478,7 @@ main(int argc, char **argv)
|
|||||||
setbuf(stdout, NULL);
|
setbuf(stdout, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* initialize
|
* initialize
|
||||||
*/
|
*/
|
||||||
@@ -333,18 +542,10 @@ main(int argc, char **argv)
|
|||||||
*/
|
*/
|
||||||
if (run_state == RUN_BEGIN) {
|
if (run_state == RUN_BEGIN) {
|
||||||
if (!q_flag && allow_read) {
|
if (!q_flag && allow_read) {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_RCFILES);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_RCFILES));
|
|
||||||
run_state = RUN_RCFILES;
|
|
||||||
runrcfiles();
|
runrcfiles();
|
||||||
}
|
}
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_PRE_CMD_ARGS);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_PRE_CMD_ARGS));
|
|
||||||
run_state = RUN_PRE_CMD_ARGS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while (run_state == RUN_RCFILES) {
|
while (run_state == RUN_RCFILES) {
|
||||||
@@ -354,55 +555,27 @@ main(int argc, char **argv)
|
|||||||
if (inputlevel() == 0) {
|
if (inputlevel() == 0) {
|
||||||
closeinput();
|
closeinput();
|
||||||
runrcfiles();
|
runrcfiles();
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_PRE_CMD_ARGS);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_PRE_CMD_ARGS));
|
|
||||||
run_state = RUN_PRE_CMD_ARGS;
|
|
||||||
} else {
|
} else {
|
||||||
closeinput();
|
closeinput();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ((havecommands && !i_flag) || !stdin_tty) {
|
if ((havecommands && !i_flag) || !stdin_tty) {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_EXIT_WITH_ERROR);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_EXIT_WITH_ERROR));
|
|
||||||
run_state = RUN_EXIT_WITH_ERROR;
|
|
||||||
} else {
|
} else {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_PRE_CMD_ARGS);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_PRE_CMD_ARGS));
|
|
||||||
run_state = RUN_PRE_CMD_ARGS;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (run_state == RUN_PRE_CMD_ARGS) {
|
if (run_state == RUN_PRE_CMD_ARGS) {
|
||||||
if (havecommands) {
|
if (havecommands) {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_CMD_ARGS);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_CMD_ARGS));
|
|
||||||
run_state = RUN_CMD_ARGS;
|
|
||||||
(void) openstring(cmdbuf, (long) strlen(cmdbuf));
|
(void) openstring(cmdbuf, (long) strlen(cmdbuf));
|
||||||
getcommands(FALSE);
|
getcommands(FALSE);
|
||||||
closeinput();
|
closeinput();
|
||||||
} else if (shellfile != NULL) {
|
|
||||||
/* XXX - shellfile stuff needs it own run_state name */
|
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_CMD_ARGS));
|
|
||||||
run_state = RUN_CMD_ARGS;
|
|
||||||
getshellfile(shellfile);
|
|
||||||
}
|
}
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_PRE_TOP_LEVEL);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_PRE_TOP_LEVEL));
|
|
||||||
run_state = RUN_PRE_TOP_LEVEL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while (run_state == RUN_CMD_ARGS) {
|
while (run_state == RUN_CMD_ARGS) {
|
||||||
@@ -410,38 +583,22 @@ main(int argc, char **argv)
|
|||||||
if ((c_flag && !stoponerror) || stoponerror < 0) {
|
if ((c_flag && !stoponerror) || stoponerror < 0) {
|
||||||
getcommands(FALSE);
|
getcommands(FALSE);
|
||||||
if (inputlevel() == 0)
|
if (inputlevel() == 0)
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_PRE_TOP_LEVEL);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_PRE_TOP_LEVEL));
|
|
||||||
run_state = RUN_PRE_TOP_LEVEL;
|
|
||||||
closeinput();
|
closeinput();
|
||||||
} else {
|
} else {
|
||||||
closeinput();
|
closeinput();
|
||||||
if (!stdin_tty || !i_flag || p_flag) {
|
if (!stdin_tty || !i_flag || p_flag) {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_EXIT_WITH_ERROR);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_EXIT_WITH_ERROR));
|
|
||||||
run_state = RUN_EXIT_WITH_ERROR;
|
|
||||||
} else {
|
} else {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_PRE_TOP_LEVEL);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_PRE_TOP_LEVEL));
|
|
||||||
run_state = RUN_PRE_TOP_LEVEL;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (run_state == RUN_PRE_TOP_LEVEL) {
|
if (run_state == RUN_PRE_TOP_LEVEL) {
|
||||||
if (stdin_tty &&
|
if (stdin_tty &&
|
||||||
(((havecommands || shellfile) && !i_flag) || p_flag)) {
|
(((havecommands) && !i_flag) || p_flag)) {
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_EXIT);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_EXIT));
|
|
||||||
run_state = RUN_EXIT;
|
|
||||||
} else {
|
} else {
|
||||||
if (stdin_tty) {
|
if (stdin_tty) {
|
||||||
reinitialize();
|
reinitialize();
|
||||||
@@ -449,40 +606,89 @@ main(int argc, char **argv)
|
|||||||
resetinput();
|
resetinput();
|
||||||
openterminal();
|
openterminal();
|
||||||
}
|
}
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
set_run_state(RUN_TOP_LEVEL);
|
||||||
printf("main: run_state from %s to %s\n",
|
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_TOP_LEVEL));
|
|
||||||
run_state = RUN_TOP_LEVEL;
|
|
||||||
getcommands(TRUE);
|
getcommands(TRUE);
|
||||||
}
|
}
|
||||||
|
if (p_flag || (!i_flag && havecommands))
|
||||||
|
set_run_state(RUN_EXIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (run_state == RUN_TOP_LEVEL) {
|
while (run_state == RUN_TOP_LEVEL) {
|
||||||
|
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
||||||
|
printf("main: run_state = TOP_LEVEL\n");
|
||||||
if ((c_flag && !stoponerror) || stoponerror < 0) {
|
if ((c_flag && !stoponerror) || stoponerror < 0) {
|
||||||
getcommands(TRUE);
|
getcommands(TRUE);
|
||||||
if (!inputisterminal())
|
if (!inputisterminal()) {
|
||||||
closeinput();
|
closeinput();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (!p_flag && i_flag && !stdin_tty) {
|
||||||
|
closeinput();
|
||||||
|
if(!freopen("/dev/tty", "r", stdin)) {
|
||||||
|
#if defined (_WIN32)
|
||||||
|
fprintf(stderr,
|
||||||
|
"/dev/tty does not exist on "
|
||||||
|
"this operating system. "
|
||||||
|
"Change operating systems\n"
|
||||||
|
"or don't use this calc mode "
|
||||||
|
"in the future, sorry!\n");
|
||||||
|
#else /* Windoz free systems */
|
||||||
|
fprintf(stderr,
|
||||||
|
"Unable to associate stdin"
|
||||||
|
" with /dev/tty");
|
||||||
|
#endif /* Windoz free systems */
|
||||||
|
set_run_state(RUN_EXIT_WITH_ERROR);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
stdin_tty = TRUE;
|
||||||
|
if (conf->calc_debug & CALCDBG_TTY)
|
||||||
|
printf("main: stdin_tty is %d\n",
|
||||||
|
stdin_tty);
|
||||||
|
reinitialize();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (stdin_tty) {
|
if (stdin_tty) {
|
||||||
reinitialize();
|
reinitialize();
|
||||||
getcommands(TRUE);
|
getcommands(TRUE);
|
||||||
|
} else if (inputisterminal() &&
|
||||||
|
!p_flag && (!havecommands||i_flag)) {
|
||||||
|
closeinput();
|
||||||
|
if(!freopen("/dev/tty", "r", stdin)) {
|
||||||
|
#if defined (_WIN32)
|
||||||
|
fprintf(stderr,
|
||||||
|
"/dev/tty does not exist on "
|
||||||
|
"this operating system. "
|
||||||
|
"Change operating systems\n"
|
||||||
|
"or don't use this calc mode "
|
||||||
|
"in the future, sorry!\n");
|
||||||
|
#else /* Windoz free systems */
|
||||||
|
fprintf(stderr,
|
||||||
|
"Unable to associate stdin"
|
||||||
|
" with /dev/tty");
|
||||||
|
#endif /* Windoz free systems */
|
||||||
|
set_run_state(RUN_EXIT_WITH_ERROR);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
stdin_tty = TRUE;
|
||||||
|
if (conf->calc_debug & CALCDBG_TTY)
|
||||||
|
printf("main: stdin_tty is %d\n",
|
||||||
|
stdin_tty);
|
||||||
|
reinitialize();
|
||||||
} else {
|
} else {
|
||||||
|
set_run_state(RUN_EXIT_WITH_ERROR);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
||||||
printf("main: run_state from %s to %s\n",
|
printf("main: run_state = %s\n", run_state_name(run_state));
|
||||||
run_state_name(run_state),
|
|
||||||
run_state_name(RUN_EXIT_WITH_ERROR));
|
|
||||||
run_state = RUN_EXIT_WITH_ERROR;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* all done
|
* all done
|
||||||
*/
|
*/
|
||||||
libcalc_call_me_last();
|
libcalc_call_me_last();
|
||||||
return (run_state == RUN_EXIT_WITH_ERROR ||
|
return (run_state == RUN_EXIT_WITH_ERROR ||
|
||||||
run_state == RUN_UNKNOWN) ? 1 : 0;
|
run_state == RUN_ZERO) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -540,183 +746,52 @@ math_error(char *fmt, ...)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* script_args - concert shell script options into command line form
|
|
||||||
*
|
|
||||||
* When a calc shell script is executed, the args are presented to calc
|
|
||||||
* in a different form. Consider the a calc shell script called /tmp/calcit:
|
|
||||||
*
|
|
||||||
* #!/usr/local/bin/calc -S -q -p
|
|
||||||
* a=eval(prompt("Enter a: "));
|
|
||||||
* b=eval(prompt("Enter b: "));
|
|
||||||
* print a+b;
|
|
||||||
*
|
|
||||||
* When it is executed as:
|
|
||||||
*
|
|
||||||
* /tmp/calcit -D 31
|
|
||||||
*
|
|
||||||
* then calc will receive the following as args to main():
|
|
||||||
*
|
|
||||||
* argc: 5
|
|
||||||
* argv[0]: "/usr/local/bin/calc"
|
|
||||||
* argv[1]: "-S -q -p -e"
|
|
||||||
* argv[2]: "/tmp/calcit"
|
|
||||||
* argv[3]: "-D"
|
|
||||||
* argv[4]: "31"
|
|
||||||
* argv[5]: NULL
|
|
||||||
*
|
|
||||||
* NOTE: The user MUST put -S as the first characters on the calc shell
|
|
||||||
* script #! line, right after the calc binary path.
|
|
||||||
*
|
|
||||||
* NOTE: The arg supplied on the #! calc shell script line are returned
|
|
||||||
* as a single string. All tabs are converted into spaces.
|
|
||||||
*
|
|
||||||
* We must remember the calc script filename, break apart the #! args
|
|
||||||
* and remove the -S argument. In the above case we would return:
|
|
||||||
*
|
|
||||||
* argc: 6
|
|
||||||
* argv[0]: "/usr/local/bin/calc"
|
|
||||||
* argv[1]: "-q"
|
|
||||||
* argv[2]: "-p"
|
|
||||||
* argv[3]: "-e"
|
|
||||||
* argv[4]: "-D"
|
|
||||||
* argv[5]: "31"
|
|
||||||
* argv[6]: NULL
|
|
||||||
*
|
|
||||||
* shellfile: "/tmp/calcit"
|
|
||||||
* s_flag: TRUE
|
|
||||||
*/
|
|
||||||
static int
|
static int
|
||||||
script_args(int argc, char ***argv_p, char **shellfile_p, char **program_p)
|
nextcp(char **cpp, int *ip, int argc, char **argv, BOOL haveendstr)
|
||||||
{
|
{
|
||||||
char **argv; /* new argv to return */
|
char *cp;
|
||||||
char *shellfile; /* shell file pathname to return */
|
int index;
|
||||||
int delta; /* the change needed in argc */
|
|
||||||
int i;
|
|
||||||
int j;
|
|
||||||
char *p;
|
|
||||||
char *q;
|
|
||||||
|
|
||||||
/*
|
cp = *cpp;
|
||||||
* must have at least 3 args and the 2nd must start with -S
|
index = *ip;
|
||||||
*/
|
|
||||||
argv = *argv_p;
|
|
||||||
if (argc < 3 || strncmp(argv[1], "-S", 2) != 0) {
|
|
||||||
/*
|
|
||||||
* we are too early in processing to call
|
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
|
||||||
*/
|
|
||||||
fprintf(stderr,
|
|
||||||
"%s: FATAL: bad args passed to script_args\n", program);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
shellfile = argv[2];
|
|
||||||
|
|
||||||
/*
|
|
||||||
* count the additional args beyond the -S
|
|
||||||
*/
|
|
||||||
if (argv[1][2] == ' ') {
|
|
||||||
|
|
||||||
/*
|
if (haveendstr) {
|
||||||
* process args beyond -S on the #!/usr/local/bin line
|
index++;
|
||||||
*/
|
*ip = index;
|
||||||
p = argv[1]+3 + strspn(argv[1]+3," ");
|
if (index >= argc)
|
||||||
q = p;
|
return 1;
|
||||||
if (q == '\0') {
|
*cpp = argv[index];
|
||||||
|
return 0;
|
||||||
/* only trailing spaces after -S, ignore them */
|
|
||||||
for (i = 3; i <= argc; ++i) {
|
|
||||||
argv[i-2] = argv[i];
|
|
||||||
}
|
|
||||||
argc -= 2;
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
/* count the space separated strings that follow -S */
|
|
||||||
for (delta = -1; p != NULL && *p;
|
|
||||||
p = strchr(p+1,' '), ++delta) {
|
|
||||||
/* skip multiple spaces in a row */
|
|
||||||
p += strspn(p, " ");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* allocate the new set of argv pointers */
|
if (*cp != '\0')
|
||||||
argv = (char **)malloc(sizeof(char *) * argc+delta);
|
cp++;
|
||||||
if (argv == NULL) {
|
for (;;) {
|
||||||
/*
|
if (*cp == '\0') {
|
||||||
* we are too early in processing to call
|
index++;
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
*ip = index;
|
||||||
*/
|
if (index >= argc)
|
||||||
fprintf(stderr,
|
return 1;
|
||||||
"%s: failed to malloc %d pointers\n",
|
cp = argv[index];
|
||||||
shellfile, argc+delta);
|
}
|
||||||
exit(1);
|
while (*cp == ' ')
|
||||||
|
cp++;
|
||||||
|
if (*cp != '\0')
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
*cpp = cp;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we have the same 0th arg */
|
|
||||||
argv[0] = (*argv_p)[0];
|
|
||||||
|
|
||||||
/* args may be read-only, so duplicate 1st arg */
|
static void
|
||||||
p = strdup(q);
|
set_run_state(run state)
|
||||||
if (p == NULL) {
|
{
|
||||||
/*
|
if (conf->calc_debug & CALCDBG_RUNSTATE)
|
||||||
* we are too early in processing to call
|
printf("main: run_state from %s to %s\n",
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
run_state_name(run_state),
|
||||||
*/
|
run_state_name(state));
|
||||||
fprintf(stderr,
|
run_state = state;
|
||||||
"%s: failed to duplicate 1st arg\n",
|
|
||||||
shellfile);
|
|
||||||
exit(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* tokenize the 1st arg */
|
|
||||||
for (p=strtok(q," "), i=1; p != NULL;
|
|
||||||
p=strtok(NULL," "), ++i) {
|
|
||||||
argv[i] = p;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* save the 3rd and later args */
|
|
||||||
for (j=3; (*argv_p)[j] != NULL; ++j, ++i) {
|
|
||||||
argv[i] = (*argv_p)[j];
|
|
||||||
}
|
|
||||||
argv[i] = NULL;
|
|
||||||
|
|
||||||
/* set argc */
|
|
||||||
argc = i;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* catch the case of #!/usr/local/bin -Stuff_not_extra_args
|
|
||||||
*/
|
|
||||||
} else if (argv[1][2] != '\0') {
|
|
||||||
|
|
||||||
/*
|
|
||||||
* we are too early in processing to call
|
|
||||||
* libcalc_call_me_last() - nothing to cleanup
|
|
||||||
*/
|
|
||||||
fprintf(stderr,
|
|
||||||
"%s: malformed #! line, -S must be "
|
|
||||||
"followed by space or newline\n",
|
|
||||||
shellfile);
|
|
||||||
exit(1);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Only -S was given in the #!/usr/local/bin line, so we just
|
|
||||||
* toss the 2nd and 3rd args
|
|
||||||
*/
|
|
||||||
} else {
|
|
||||||
for (i = 3; i <= argc; ++i) {
|
|
||||||
argv[i-2] = argv[i];
|
|
||||||
}
|
|
||||||
argc -= 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* return and set the argc, argv, shellfile_p and s_flag values
|
|
||||||
*/
|
|
||||||
*argv_p = argv;
|
|
||||||
*shellfile_p = shellfile;
|
|
||||||
*program_p = shellfile;
|
|
||||||
s_flag = TRUE;
|
|
||||||
return argc;
|
|
||||||
}
|
|
||||||
|
265
calc.h
265
calc.h
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.2 $
|
* @(#) $Revision: 29.10 $
|
||||||
* @(#) $Id: calc.h,v 29.2 1999/12/14 19:37:46 chongo Exp $
|
* @(#) $Id: calc.h,v 29.10 2002/03/12 09:40:57 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/calc.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/calc.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:31
|
* Under source code control: 1990/02/15 01:48:31
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -32,10 +32,15 @@
|
|||||||
#define __CALC_H__
|
#define __CALC_H__
|
||||||
|
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
|
#if defined(CALC_SRC) /* if we are building from the calc source tree */
|
||||||
|
# include "win32dll.h"
|
||||||
# include "value.h"
|
# include "value.h"
|
||||||
|
|
||||||
# include "have_const.h"
|
# include "have_const.h"
|
||||||
|
#else
|
||||||
|
# include <calc/win32dll.h>
|
||||||
|
# include <calc/value.h>
|
||||||
|
# include <calc/have_const.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -55,15 +60,18 @@
|
|||||||
#define HOMECHAR '~' /* char which indicates home directory */
|
#define HOMECHAR '~' /* char which indicates home directory */
|
||||||
#define DOTCHAR '.' /* char which indicates current directory */
|
#define DOTCHAR '.' /* char which indicates current directory */
|
||||||
#define PATHCHAR '/' /* char which separates path components */
|
#define PATHCHAR '/' /* char which separates path components */
|
||||||
|
#if defined(__MSDOS__) || defined(__WIN32)
|
||||||
|
#define LISTCHAR ';' /* char which separates paths in a list */
|
||||||
|
#else
|
||||||
#define LISTCHAR ':' /* char which separates paths in a list */
|
#define LISTCHAR ':' /* char which separates paths in a list */
|
||||||
|
#endif
|
||||||
#define MAXCMD 16384 /* maximum length of command invocation */
|
#define MAXCMD 16384 /* maximum length of command invocation */
|
||||||
#define MAXERROR 512 /* maximum length of error message string */
|
#define MAXERROR 512 /* maximum length of error message string */
|
||||||
|
|
||||||
#define SYMBOLSIZE 256 /* maximum symbol name size */
|
#define SYMBOLSIZE 256 /* maximum symbol name size */
|
||||||
#define MAXINDICES 20 /* maximum number of indices for objects */
|
|
||||||
#define MAXLABELS 100 /* maximum number of user labels in function */
|
#define MAXLABELS 100 /* maximum number of user labels in function */
|
||||||
#define MAXSTRING 1024 /* maximum size of string constant */
|
#define MAXSTRING 1024 /* maximum size of string constant */
|
||||||
#define MAXSTACK 1000 /* maximum depth of evaluation stack */
|
#define MAXSTACK 2048 /* maximum depth of evaluation stack */
|
||||||
#define MAXFILES 20 /* maximum number of opened files */
|
#define MAXFILES 20 /* maximum number of opened files */
|
||||||
#define PROMPT1 "> " /* default normal prompt*/
|
#define PROMPT1 "> " /* default normal prompt*/
|
||||||
#define PROMPT2 ">> " /* default prompt inside multi-line input */
|
#define PROMPT2 ">> " /* default prompt inside multi-line input */
|
||||||
@@ -95,152 +103,157 @@
|
|||||||
/*
|
/*
|
||||||
* File I/O routines.
|
* File I/O routines.
|
||||||
*/
|
*/
|
||||||
extern FILEID openid(char *name, char *mode);
|
extern DLL FILEID openid(char *name, char *mode);
|
||||||
extern FILEID indexid(long index);
|
extern DLL FILEID indexid(long index);
|
||||||
extern BOOL validid(FILEID id);
|
extern DLL BOOL validid(FILEID id);
|
||||||
extern BOOL errorid(FILEID id);
|
extern DLL BOOL errorid(FILEID id);
|
||||||
extern BOOL eofid(FILEID id);
|
extern DLL BOOL eofid(FILEID id);
|
||||||
extern int closeid(FILEID id);
|
extern DLL int closeid(FILEID id);
|
||||||
extern int getcharid(FILEID id);
|
extern DLL int getcharid(FILEID id);
|
||||||
extern int idprintf(FILEID id, char *fmt, int count, VALUE **vals);
|
extern DLL int idprintf(FILEID id, char *fmt, int count, VALUE **vals);
|
||||||
extern int idfputc(FILEID id, int ch);
|
extern DLL int idfputc(FILEID id, int ch);
|
||||||
extern int idfputs(FILEID id, char *str);
|
extern DLL int idfputs(FILEID id, char *str);
|
||||||
extern int printid(FILEID id, int flags);
|
extern DLL int printid(FILEID id, int flags);
|
||||||
extern int flushid(FILEID id);
|
extern DLL int flushid(FILEID id);
|
||||||
extern int readid(FILEID id, int flags, char **retptr);
|
extern DLL int readid(FILEID id, int flags, char **retptr);
|
||||||
extern int getloc(FILEID id, ZVALUE *loc);
|
extern DLL int getloc(FILEID id, ZVALUE *loc);
|
||||||
extern int setloc(FILEID id, ZVALUE zpos);
|
extern DLL int setloc(FILEID id, ZVALUE zpos);
|
||||||
extern int getsize(FILEID id, ZVALUE *size);
|
extern DLL int getsize(FILEID id, ZVALUE *size);
|
||||||
extern int get_device(FILEID id, ZVALUE *dev);
|
extern DLL int get_device(FILEID id, ZVALUE *dev);
|
||||||
extern int get_inode(FILEID id, ZVALUE *ino);
|
extern DLL int get_inode(FILEID id, ZVALUE *ino);
|
||||||
extern FILEID reopenid(FILEID id, char *mode, char *name);
|
extern DLL FILEID reopenid(FILEID id, char *mode, char *name);
|
||||||
extern int closeall(void);
|
extern DLL int closeall(void);
|
||||||
extern int flushall(void);
|
|
||||||
extern int idfputstr(FILEID id, char *str);
|
#if !defined(_WIN32)
|
||||||
extern int rewindid(FILEID id);
|
extern DLL int flushall(void);
|
||||||
extern void rewindall(void);
|
#endif
|
||||||
extern ZVALUE zfilesize(FILEID id);
|
|
||||||
extern void showfiles(void);
|
extern DLL int idfputstr(FILEID id, char *str);
|
||||||
extern int fscanfid(FILEID id, char *fmt, int count, VALUE **vals);
|
extern DLL int rewindid(FILEID id);
|
||||||
extern int scanfstr(char *str, char *fmt, int count, VALUE **vals);
|
extern DLL void rewindall(void);
|
||||||
extern int ftellid(FILEID id, ZVALUE *res);
|
extern DLL ZVALUE zfilesize(FILEID id);
|
||||||
extern int fseekid(FILEID id, ZVALUE offset, int whence);
|
extern DLL void showfiles(void);
|
||||||
extern int isattyid(FILEID id);
|
extern DLL int fscanfid(FILEID id, char *fmt, int count, VALUE **vals);
|
||||||
extern int fsearch(FILEID id, char *str, ZVALUE start, ZVALUE end, ZVALUE *res);
|
extern DLL int scanfstr(char *str, char *fmt, int count, VALUE **vals);
|
||||||
extern int frsearch(FILEID id, char *str, ZVALUE first, ZVALUE last, ZVALUE *res);
|
extern DLL int ftellid(FILEID id, ZVALUE *res);
|
||||||
extern void showconstants(void);
|
extern DLL int fseekid(FILEID id, ZVALUE offset, int whence);
|
||||||
extern void freeconstant(unsigned long);
|
extern DLL int isattyid(FILEID id);
|
||||||
extern void freestringconstant(long);
|
extern DLL int fsearch(FILEID id, char *str, ZVALUE start, ZVALUE end, ZVALUE *res);
|
||||||
extern void trimconstants(void);
|
extern DLL int frsearch(FILEID id, char *str, ZVALUE first, ZVALUE last, ZVALUE *res);
|
||||||
|
extern DLL void showconstants(void);
|
||||||
|
extern DLL void freeconstant(unsigned long);
|
||||||
|
extern DLL void freestringconstant(long);
|
||||||
|
extern DLL void trimconstants(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Input routines.
|
* Input routines.
|
||||||
*/
|
*/
|
||||||
extern int openstring(char *str, long num);
|
extern DLL int openstring(char *str, long num);
|
||||||
extern int openterminal(void);
|
extern DLL int openterminal(void);
|
||||||
extern int opensearchfile(char *name, char *pathlist, char *exten, int reopen_ok);
|
extern DLL int opensearchfile(char *name, char *pathlist, char *exten, int reopen_ok);
|
||||||
extern char *nextline(void);
|
extern DLL char *nextline(void);
|
||||||
extern int nextchar(void);
|
extern DLL int nextchar(void);
|
||||||
extern void reread(void);
|
extern DLL void reread(void);
|
||||||
extern void resetinput(void);
|
extern DLL void resetinput(void);
|
||||||
extern void setprompt(char *);
|
extern DLL void setprompt(char *);
|
||||||
extern BOOL inputisterminal(void);
|
extern DLL BOOL inputisterminal(void);
|
||||||
extern int inputlevel(void);
|
extern DLL int inputlevel(void);
|
||||||
extern long calclevel(void);
|
extern DLL long calclevel(void);
|
||||||
extern char *inputname(void);
|
extern DLL char *inputname(void);
|
||||||
extern long linenumber(void);
|
extern DLL long linenumber(void);
|
||||||
extern void runrcfiles(void);
|
extern DLL void runrcfiles(void);
|
||||||
extern void closeinput(void);
|
extern DLL void closeinput(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Other routines.
|
* Other routines.
|
||||||
*/
|
*/
|
||||||
extern NUMBER *constvalue(unsigned long index);
|
extern DLL NUMBER *constvalue(unsigned long index);
|
||||||
extern long addnumber(char *str);
|
extern DLL long addnumber(char *str);
|
||||||
extern long addqconstant(NUMBER *q);
|
extern DLL long addqconstant(NUMBER *q);
|
||||||
extern void initstack(void);
|
extern DLL void initstack(void);
|
||||||
extern void getcommands(BOOL toplevel);
|
extern DLL void getcommands(BOOL toplevel);
|
||||||
extern void givehelp(char *type);
|
extern DLL void givehelp(char *type);
|
||||||
extern void libcalc_call_me_first(void);
|
extern DLL void libcalc_call_me_first(void);
|
||||||
extern void libcalc_call_me_last(void);
|
extern DLL void libcalc_call_me_last(void);
|
||||||
extern BOOL calc_tty(int fd);
|
extern DLL BOOL calc_tty(int fd);
|
||||||
extern BOOL orig_tty(int fd);
|
extern DLL BOOL orig_tty(int fd);
|
||||||
extern void showerrors(void);
|
extern DLL void showerrors(void);
|
||||||
extern char *calc_strdup(CONST char *);
|
extern DLL char *calc_strdup(CONST char *);
|
||||||
extern void getshellfile(char *shellfile);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialization
|
* Initialization
|
||||||
*/
|
*/
|
||||||
extern void initialize(void);
|
extern DLL void initialize(void);
|
||||||
extern void reinitialize(void);
|
extern DLL void reinitialize(void);
|
||||||
extern int isatty(int tty); /* TRUE if fd is a tty */
|
#if !defined (_WIN32)
|
||||||
extern char *version(void); /* return version string */
|
extern DLL int isatty(int tty); /* TRUE if fd is a tty */
|
||||||
extern int post_init; /* TRUE => setjmp for math_error is ready */
|
#endif
|
||||||
|
extern DLL char *version(void); /* return version string */
|
||||||
|
extern DLL int post_init; /* TRUE => math_error setjmp is ready */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* global flags and definitions
|
* global flags and definitions
|
||||||
*/
|
*/
|
||||||
extern int abortlevel; /* current level of aborts */
|
extern DLL int abortlevel; /* current level of aborts */
|
||||||
extern BOOL inputwait; /* TRUE if in a terminal input wait */
|
extern DLL BOOL inputwait; /* TRUE if in a terminal input wait */
|
||||||
extern jmp_buf jmpbuf; /* for errors */
|
extern DLL jmp_buf jmpbuf; /* for errors */
|
||||||
|
|
||||||
extern int p_flag; /* TRUE => pipe mode */
|
extern DLL int p_flag; /* TRUE => pipe mode */
|
||||||
extern int q_flag; /* TRUE => don't execute rc files */
|
extern DLL int q_flag; /* TRUE => don't execute rc files */
|
||||||
extern int u_flag; /* TRUE => unbuffer stdin and stdout */
|
extern DLL int u_flag; /* TRUE => unbuffer stdin and stdout */
|
||||||
extern int d_flag; /* TRUE => disable heading, resource_debug */
|
extern DLL int d_flag; /* TRUE => disable heading, resource_debug */
|
||||||
extern int c_flag; /* TRUE => continue after error if permitted */
|
extern DLL int c_flag; /* TRUE => continue after error if permitted */
|
||||||
extern int i_flag; /* TRUE => try to go interactive after error */
|
extern DLL int i_flag; /* TRUE => try to go interactive after error */
|
||||||
extern int s_flag; /* TRUE => keep args as strings for argv() */
|
extern DLL int s_flag; /* TRUE => keep args as strings for argv() */
|
||||||
extern int stoponerror; /* >0 => stop, <0 => continue, ==0 => use -c */
|
extern DLL int stoponerror; /* >0 => stop, <0 => continue, ==0 => use -c */
|
||||||
extern BOOL abort_now; /* TRUE => try to go interactive */
|
extern DLL BOOL abort_now; /* TRUE => try to go interactive */
|
||||||
|
|
||||||
extern int argc_value; /* count of argv[] strings for argv() builtin */
|
extern DLL int argc_value; /* count of argv[] strings for argv() builtin */
|
||||||
extern char **argv_value; /* argv[] strings for argv() builtin */
|
extern DLL char **argv_value; /* argv[] strings for argv() builtin */
|
||||||
|
|
||||||
extern char *pager; /* $PAGER or default */
|
extern DLL char *pager; /* $PAGER or default */
|
||||||
extern int stdin_tty; /* TRUE if stdin is a tty */
|
extern DLL int stdin_tty; /* TRUE if stdin is a tty */
|
||||||
extern int havecommands; /* TRUE if have cmd args) */
|
extern DLL int havecommands; /* TRUE if have cmd args) */
|
||||||
extern char *program; /* our name */
|
extern DLL char *program; /* our name */
|
||||||
extern char *base_name; /* basename of our name */
|
extern DLL char *base_name; /* basename of our name */
|
||||||
extern char cmdbuf[]; /* command line expression */
|
extern DLL char cmdbuf[]; /* command line expression */
|
||||||
|
|
||||||
extern int abortlevel; /* current level of aborts */
|
extern DLL int abortlevel; /* current level of aborts */
|
||||||
extern BOOL inputwait; /* TRUE if in a terminal input wait */
|
extern DLL BOOL inputwait; /* TRUE if in a terminal input wait */
|
||||||
extern VALUE *stack; /* execution stack */
|
extern DLL VALUE *stack; /* execution stack */
|
||||||
extern int dumpnames; /* TRUE => dump names rather than indices */
|
extern DLL int dumpnames; /* TRUE => dump names rather than indices */
|
||||||
|
|
||||||
extern char *calcpath; /* $CALCPATH or default */
|
extern DLL char *calcpath; /* $CALCPATH or default */
|
||||||
extern char *calcrc; /* $CALCRC or default */
|
extern DLL char *calcrc; /* $CALCRC or default */
|
||||||
extern char *calcbindings; /* $CALCBINDINGS or default */
|
extern DLL char *calcbindings; /* $CALCBINDINGS or default */
|
||||||
extern char *home; /* $HOME or default */
|
extern DLL char *home; /* $HOME or default */
|
||||||
extern char *shell; /* $SHELL or default */
|
extern DLL char *shell; /* $SHELL or default */
|
||||||
extern char *program; /* our name (argv[0]) */
|
extern DLL char *program; /* our name (argv[0]) */
|
||||||
|
|
||||||
extern int no_env; /* TRUE (-e) => ignore env vars on startup */
|
extern DLL int no_env; /* TRUE (-e) => ignore env vars on startup */
|
||||||
extern int errmax; /* if >= 0, error when errcount exceeds errmax */
|
extern DLL int errmax; /* if >= 0, error when errcount exceeds errmax */
|
||||||
extern int new_std; /* TRUE (-n) => use newstd configuration */
|
extern DLL int new_std; /* TRUE (-n) => use newstd configuration */
|
||||||
|
|
||||||
extern int allow_read; /* FALSE => may not open any files for reading */
|
extern DLL int allow_read; /* FALSE => dont open any files for reading */
|
||||||
extern int allow_write; /* FALSE => may not open any files for writing */
|
extern DLL int allow_write; /* FALSE => dont open any files for writing */
|
||||||
extern int allow_exec; /* FALSE => may not execute any commands */
|
extern DLL int allow_exec; /* FALSE => may not execute any commands */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* calc startup and run state
|
* calc startup and run state
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
RUN_UNKNOWN = -1, /* unknown or unset start state */
|
RUN_ZERO, /* unknown or unset start state */
|
||||||
RUN_BEGIN = 0, /* calc execution starts */
|
RUN_BEGIN, /* calc execution starts */
|
||||||
RUN_RCFILES = 1, /* rc files being evaluated */
|
RUN_RCFILES, /* rc files being evaluated */
|
||||||
RUN_PRE_CMD_ARGS = 2, /* prepare to evaluate cmd args */
|
RUN_PRE_CMD_ARGS, /* prepare to evaluate cmd args */
|
||||||
RUN_CMD_ARGS = 3, /* cmd args being evaluated */
|
RUN_CMD_ARGS, /* cmd args being evaluated */
|
||||||
RUN_PRE_TOP_LEVEL = 4, /* prepare to start top level activity */
|
RUN_PRE_TOP_LEVEL, /* prepare to start top level activity */
|
||||||
RUN_TOP_LEVEL = 5, /* running at top level */
|
RUN_TOP_LEVEL, /* running at top level */
|
||||||
RUN_EXIT = 6, /* normal exit from calc */
|
RUN_EXIT, /* normal exit from calc */
|
||||||
RUN_EXIT_WITH_ERROR = 7 /* exit with error */
|
RUN_EXIT_WITH_ERROR /* exit with error */
|
||||||
} run;
|
} run;
|
||||||
extern run run_state;
|
extern DLL run run_state;
|
||||||
extern char *run_state_name(run state);
|
extern DLL char *run_state_name(run state);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* calc version information
|
* calc version information
|
||||||
@@ -249,9 +262,9 @@ extern char *run_state_name(run state);
|
|||||||
extern int calc_major_ver;
|
extern int calc_major_ver;
|
||||||
extern int calc_minor_ver;
|
extern int calc_minor_ver;
|
||||||
extern int calc_major_patch;
|
extern int calc_major_patch;
|
||||||
extern char *calc_minor_patch;
|
extern int calc_minor_patch;
|
||||||
extern char *Copyright;
|
extern char *Copyright;
|
||||||
extern char *version(void);
|
extern DLL char *version(void);
|
||||||
|
|
||||||
|
|
||||||
#endif /* !__CALC_H__ */
|
#endif /* !__CALC_H__ */
|
||||||
|
366
calc.man
366
calc.man
@@ -15,15 +15,15 @@
|
|||||||
.\" received a copy with calc; if not, write to Free Software Foundation, Inc.
|
.\" received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
.\" 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
.\" 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
.\"
|
.\"
|
||||||
.\" @(#) $Revision: 29.1 $
|
.\" @(#) $Revision: 29.9 $
|
||||||
.\" @(#) $Id: calc.man,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
.\" @(#) $Id: calc.man,v 29.9 2002/03/14 00:28:28 chongo Exp $
|
||||||
.\" @(#) $Source: /usr/local/src/cmd/calc/RCS/calc.man,v $
|
.\" @(#) $Source: /usr/local/src/cmd/calc/RCS/calc.man,v $
|
||||||
.\"
|
.\"
|
||||||
.\" Under source code control: 1991/07/23 05:48:26
|
.\" Under source code control: 1991/07/23 05:48:26
|
||||||
.\" File existed as early as: 1991
|
.\" File existed as early as: 1991
|
||||||
.\"
|
.\"
|
||||||
.\" chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
.\" chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
.\" Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
.\" Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
.\"
|
.\"
|
||||||
.\" calculator by David I. Bell
|
.\" calculator by David I. Bell
|
||||||
.\" man page by Landon Noll
|
.\" man page by Landon Noll
|
||||||
@@ -36,24 +36,25 @@ calc \- arbitrary precision calculator
|
|||||||
.RB [ \-c ]
|
.RB [ \-c ]
|
||||||
.RB [ \-C ]
|
.RB [ \-C ]
|
||||||
.RB [ \-d ]
|
.RB [ \-d ]
|
||||||
.RB [ -D\ \&calc_debug[:resource_debug:[user_debug]] ]
|
|
||||||
.br
|
.br
|
||||||
.in +5n
|
.in +5n
|
||||||
|
.RB [ -D\ \&calc_debug[:resource_debug[:user_debug]] ]
|
||||||
|
.br
|
||||||
.RB [ \-e ]
|
.RB [ \-e ]
|
||||||
.RB [ \-h ]
|
.RB [ \-h ]
|
||||||
.RB [ \-i ]
|
.RB [ \-i ]
|
||||||
.RB [ \-m\ \&mode ]
|
.RB [ \-m\ \&mode ]
|
||||||
.RB [ \-n ]
|
.RB [ \-n ]
|
||||||
|
.br
|
||||||
.RB [ \-p ]
|
.RB [ \-p ]
|
||||||
.RB [ \-q ]
|
.RB [ \-q ]
|
||||||
.RB [ \-s ]
|
.RB [ \-s ]
|
||||||
.RB [ \-u ]
|
.RB [ \-u ]
|
||||||
.RB [ \-v ]
|
.RB [ \-v ]
|
||||||
.br
|
|
||||||
.RB [ calc_cmd\ \&.\|.\|. ]
|
.RB [ calc_cmd\ \&.\|.\|. ]
|
||||||
.in -5n
|
.in -5n
|
||||||
.sp
|
.sp
|
||||||
\fI#!${BINDIR}/calc\fP\ \fB\-S\fP\ [\-other_flags\ \&...]
|
\fI#!${BINDIR}/calc\fP\ \fB\-f\fP\ [other_flags\ \&...]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\&
|
\&
|
||||||
.br
|
.br
|
||||||
@@ -89,7 +90,7 @@ cause
|
|||||||
to try to process each line being read
|
to try to process each line being read
|
||||||
despite the errors that it encounters.
|
despite the errors that it encounters.
|
||||||
.sp 1
|
.sp 1
|
||||||
By default, calc startup resource files ($CALCRC) are silently
|
By default, calc startup resource files are silently
|
||||||
ignored if not found.
|
ignored if not found.
|
||||||
This flag will report missing
|
This flag will report missing
|
||||||
startup resource files unless
|
startup resource files unless
|
||||||
@@ -103,10 +104,10 @@ Without
|
|||||||
this flag, calling the custom() builtin function will
|
this flag, calling the custom() builtin function will
|
||||||
simply generate an error.
|
simply generate an error.
|
||||||
.sp 1
|
.sp 1
|
||||||
Use if this flag may cause
|
Use of this flag may cause
|
||||||
.B calc
|
.B calc
|
||||||
to execute functions that
|
to execute functions
|
||||||
are non-standard and that are not portable. Custom builtin
|
that are non-standard and that are not portable. Custom builtin
|
||||||
functions are disabled by default for this reason.
|
functions are disabled by default for this reason.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
@@ -147,14 +148,14 @@ It's nearly ten past six.
|
|||||||
.in -5n
|
.in -5n
|
||||||
.sp 1
|
.sp 1
|
||||||
This flag disables the reporting of missing calc
|
This flag disables the reporting of missing calc
|
||||||
startup resource files ($CALCRC).
|
startup resource files.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.BR -D " calc_debug[:resource_debug:[user_debug]]"
|
.BR -D " calc_debug[:resource_debug[:user_debug]]"
|
||||||
Force the initial value of config("calc_debug"),
|
Force the initial value of config("calc_debug"),
|
||||||
config("resource_debug") and config("user_debug").
|
config("resource_debug") and config("user_debug").
|
||||||
.sp 1
|
.sp 1
|
||||||
The : separated strings are interpreted as signed 32 bit values.
|
The : separated strings are interpreted as signed 32 bit integers.
|
||||||
After an optional leading sign a leading zero indicates octal
|
After an optional leading sign a leading zero indicates octal
|
||||||
conversion, and a leading ``0x'' or ``0X'' hexadecimal
|
conversion, and a leading ``0x'' or ``0X'' hexadecimal
|
||||||
conversion. Otherwise, decimal conversion is assumed.
|
conversion. Otherwise, decimal conversion is assumed.
|
||||||
@@ -197,14 +198,14 @@ See
|
|||||||
.TP
|
.TP
|
||||||
.B \-i
|
.B \-i
|
||||||
Become interactive if possible.
|
Become interactive if possible.
|
||||||
Be default, if
|
If
|
||||||
.I calc_cmd
|
.I calc_cmd
|
||||||
args are given,
|
args are given,
|
||||||
.B calc
|
.B calc
|
||||||
will execute them and exit.
|
by default, calc will execute them and exit.
|
||||||
This flag args are given,
|
This flag causes
|
||||||
.B calc
|
.B calc
|
||||||
will execute them and exit.
|
to drop into interactive mode after the commands are executed.
|
||||||
This flag will cause
|
This flag will cause
|
||||||
.B calc
|
.B calc
|
||||||
to drop into interactive mode after the
|
to drop into interactive mode after the
|
||||||
@@ -294,7 +295,7 @@ unknown mode.
|
|||||||
will attempt to read or write them if directed.
|
will attempt to read or write them if directed.
|
||||||
.sp 1
|
.sp 1
|
||||||
If the mode disables opening of files for reading, then
|
If the mode disables opening of files for reading, then
|
||||||
the startup resource files are disabled as of
|
the startup resource files are disabled as if
|
||||||
.B \-q
|
.B \-q
|
||||||
was given.
|
was given.
|
||||||
The reading of key bindings is also disabled
|
The reading of key bindings is also disabled
|
||||||
@@ -330,7 +331,7 @@ flag overrides
|
|||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B \-q
|
.B \-q
|
||||||
Disable the use of the $CALCRC startup resource files.
|
Disable the reading of the startup scripts.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B \-s
|
.B \-s
|
||||||
@@ -355,26 +356,20 @@ version number and exit.
|
|||||||
.br
|
.br
|
||||||
CALC COMMAND LINE
|
CALC COMMAND LINE
|
||||||
.PP
|
.PP
|
||||||
Without
|
With no
|
||||||
.IR calc_cmd ,
|
.I calc_cmd
|
||||||
|
arguments,
|
||||||
.B calc
|
.B calc
|
||||||
operates interactively.
|
operates interactively.
|
||||||
If one or more
|
If one or more
|
||||||
.I calc_cmd
|
arguments are given on the command line and
|
||||||
are given on the command line and
|
|
||||||
.B \-s
|
.B \-s
|
||||||
is NOT given, then
|
is NOT given, then
|
||||||
.B calc
|
.B calc
|
||||||
will evaluate and execute them and then exit.
|
will read and execute them and either attempt
|
||||||
.sp
|
to go interactive according as the
|
||||||
If
|
|
||||||
.B \-i
|
.B \-i
|
||||||
is given,
|
flag was present or absent.
|
||||||
.B calc
|
|
||||||
will attempt to become interactive
|
|
||||||
even of one or more
|
|
||||||
.I calc_cmd
|
|
||||||
are given on the command line.
|
|
||||||
.sp
|
.sp
|
||||||
If
|
If
|
||||||
.B \-s
|
.B \-s
|
||||||
@@ -384,32 +379,157 @@ will not evaluate any
|
|||||||
.I calc_cmd
|
.I calc_cmd
|
||||||
arguments but instead make them available
|
arguments but instead make them available
|
||||||
as strings to the argv() builtin function.
|
as strings to the argv() builtin function.
|
||||||
|
|
||||||
|
Sufficiently simple commands with no no characters like
|
||||||
|
parentheses, brackets, semicolons, '*', which have special
|
||||||
|
interpretations in UNIX shells may be entered, possibly with
|
||||||
|
spaces, until the terminating newline.
|
||||||
|
For example:
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
calc 23 + 47
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp 1
|
||||||
|
should respond with display of 70, but
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
calc 23 * 47
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp 1
|
||||||
|
may fail.
|
||||||
|
Such cases can usually be made to work as expected by
|
||||||
|
enclosing the command between single marks as in:
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
calc '23 * 47'
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp 1
|
||||||
|
and
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
calc 'print sqrt(2), exp(1)'
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp
|
||||||
|
If '!' is to be used to indicate the factorial function, for
|
||||||
|
shells like
|
||||||
|
.BI csh (1)
|
||||||
|
for which '!' followed by a non-space character
|
||||||
|
is used for history substitution, it may be necessary to
|
||||||
|
include a space or use a backslash to escape the special
|
||||||
|
meaning of '!'.
|
||||||
|
For example, the command:
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
print 27!^2
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp 1
|
||||||
|
may have to be replaced by:
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
print 27! ^2 or print 27\!^2
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
|
||||||
|
\&
|
||||||
|
.br
|
||||||
|
CALC STARTUP FILES
|
||||||
.PP
|
.PP
|
||||||
Normally on startup,
|
Normally on startup,
|
||||||
|
if the environment variable
|
||||||
|
.B $CALCRC
|
||||||
|
is undefined and
|
||||||
.B calc
|
.B calc
|
||||||
attempts to execute a collection of
|
is invoked without the
|
||||||
startup resource files.
|
|
||||||
The environment variable $CALCRC (if non-existent
|
|
||||||
then a compiled in value) contains a : separated list of startup
|
|
||||||
resource files.
|
|
||||||
No error conditions are produced if these startup
|
|
||||||
resource files are not found.
|
|
||||||
.PP
|
|
||||||
If the mode disables opening of files for reading, then the startup
|
|
||||||
resource files are disabled as of
|
|
||||||
.B \-q
|
.B \-q
|
||||||
was given and $CALCRC as well
|
flag, or if
|
||||||
as the default compiled in value are ignored.
|
.B $CALCRC
|
||||||
|
is defined and calc is invoked with
|
||||||
|
.BR \-e ,
|
||||||
|
.B calc
|
||||||
|
looks for a file "startup" in the calc resource directory
|
||||||
|
.B .calcrc
|
||||||
|
in the user's home directory, and
|
||||||
|
.B .calcinit in the current directory.
|
||||||
|
If one or more of these are found, they are read in succession as
|
||||||
|
.B calc
|
||||||
|
scripts and their commands executed.
|
||||||
|
When defined,
|
||||||
|
.B $CALCRC
|
||||||
|
is to contain a ':' separated list of names of files,
|
||||||
|
and if calc is then invoked without either the
|
||||||
|
.B \-q
|
||||||
|
or
|
||||||
|
.B \-e
|
||||||
|
flags, these files are read in succession and their commands executed.
|
||||||
|
No error condition is produced if a listed file is not found.
|
||||||
|
.sp
|
||||||
|
If the mode specified by
|
||||||
|
.B \-m
|
||||||
|
disables opening of files for reading, then the reading of startup
|
||||||
|
files is also disabled as if
|
||||||
|
.B \-q
|
||||||
|
was given.
|
||||||
|
|
||||||
|
\&
|
||||||
|
.br
|
||||||
|
CALC FILE SEARCH PATH
|
||||||
.PP
|
.PP
|
||||||
Filenames are subject to ``~'' expansion (see below).
|
If the environment variable
|
||||||
The
|
.B $CALCPATH
|
||||||
environment variable $CALCPATH (if non-existent then a compiled in
|
is undefined, or if it
|
||||||
value) contains a : separated list of search directories.
|
is defined and
|
||||||
If a
|
.B calc
|
||||||
file does not begin with /, ~ or ./, then it is searched for under
|
is invoked with the
|
||||||
each directory listed in the $CALCPATH.
|
.B \-e
|
||||||
It is an error if no such
|
flag, when a file name not beginning with
|
||||||
readable file is found.
|
.BR / ,
|
||||||
|
.B ~
|
||||||
|
or
|
||||||
|
.BR ./ ,
|
||||||
|
is specified as in:
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
calc read myfile
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp 1
|
||||||
|
.B calc
|
||||||
|
searches in succession:
|
||||||
|
.sp 1
|
||||||
|
.in +5n
|
||||||
|
.nf
|
||||||
|
./myfile
|
||||||
|
./myfile.cal
|
||||||
|
${LIBDIR}/myfile
|
||||||
|
${LIBDIR}/myfile.cal
|
||||||
|
${CUSTOMCALDIR}/myfile
|
||||||
|
${CUSTOMCALDIR}/myfile.cal
|
||||||
|
.fi
|
||||||
|
.in -5n
|
||||||
|
.sp 1
|
||||||
|
If the file is found, the
|
||||||
|
search stops and the commands in the file are executed.
|
||||||
|
It is an error if no readable file with the specified name is found.
|
||||||
|
An alternative search path can be specified by defining
|
||||||
|
.B $CALCPATH
|
||||||
|
in the same way as PATH is defined, as a ':' separated
|
||||||
|
list of directories, and then invoking
|
||||||
|
.B calc
|
||||||
|
without the
|
||||||
|
.B \-e
|
||||||
|
flag.
|
||||||
.PP
|
.PP
|
||||||
.B Calc
|
.B Calc
|
||||||
treats all open files, other than stdin, stdout and
|
treats all open files, other than stdin, stdout and
|
||||||
@@ -447,34 +567,41 @@ help config
|
|||||||
.br
|
.br
|
||||||
SHELL SCRIPT MODE
|
SHELL SCRIPT MODE
|
||||||
.PP
|
.PP
|
||||||
If an executable file begins with:
|
If first line of an executable file begins
|
||||||
|
.B #!
|
||||||
|
followed by the absolute pathname of the
|
||||||
|
.B calc
|
||||||
|
program and the flag
|
||||||
|
.B \-f
|
||||||
|
as in:
|
||||||
.sp 1
|
.sp 1
|
||||||
.in +5n
|
.in +5n
|
||||||
.nf
|
.nf
|
||||||
\fI#!${BINDIR}/calc\fP\ \fB\-S\fP\ [\-other_flags\ \&...]
|
\fI#!${BINDIR}/calc\fP\ \fB\-f\fP\ [other_flags\ \&...]
|
||||||
.fi
|
.fi
|
||||||
.in -5n
|
.in -5n
|
||||||
.sp 1
|
.sp 1
|
||||||
the rest of the file will be processed in
|
the rest of the file will be processed in
|
||||||
.BR "shell script mode" .
|
.BR "shell script mode" .
|
||||||
Note that
|
Note that
|
||||||
.B \-S
|
.B \-f
|
||||||
(UPPER CASE
|
|
||||||
.BR \-S )
|
|
||||||
must be the first \-flag on the ``#!'' line.
|
must be the first \-flag on the ``#!'' line.
|
||||||
Any other optional ``\-other_flags'' must come after
|
Any other optional
|
||||||
|
.B "other_flags"
|
||||||
|
must come after
|
||||||
the
|
the
|
||||||
.BR \-S .
|
.BR \-f .
|
||||||
.sp 1
|
.sp 1
|
||||||
In
|
In
|
||||||
.B "shell script mode"
|
.B "shell script mode"
|
||||||
the contents of the file
|
the contents of the file are read and
|
||||||
are evaluated and executed as if they were processed
|
executed as if they were in a file being processed by a read
|
||||||
by the
|
command, except that a "command" beginning with '#' followed by
|
||||||
.B read
|
whitespace and ending at the next newline is treated as a comment.
|
||||||
command.
|
Any optional
|
||||||
Any optional ``\-other_flags'' will by parsed first
|
.B "other_flags"
|
||||||
followed by any arguments given shell script itself.
|
will be parsed first followed by
|
||||||
|
the later lines within the script itself.
|
||||||
.sp 1
|
.sp 1
|
||||||
In
|
In
|
||||||
.BR "shell script mode" ,
|
.BR "shell script mode" ,
|
||||||
@@ -496,7 +623,7 @@ the file
|
|||||||
.sp 1
|
.sp 1
|
||||||
.in +5n
|
.in +5n
|
||||||
.nf
|
.nf
|
||||||
\fI#!${BINDIR}/calc\fP\ \fB\-S\fP\ \&\fB\-q\fP
|
\fI#!${BINDIR}/calc\fP\ \fB\-f\fP\ \&\fB\-q\fP
|
||||||
#
|
#
|
||||||
# mersenne - an example of a calc \fBshell script file\fP
|
# mersenne - an example of a calc \fBshell script file\fP
|
||||||
|
|
||||||
@@ -710,7 +837,7 @@ ${LIBDIR}/bindings
|
|||||||
non-GNU-readline command line editor bindings
|
non-GNU-readline command line editor bindings
|
||||||
.sp 1
|
.sp 1
|
||||||
.TP 5
|
.TP 5
|
||||||
${INCDIRCALC}/*.h
|
${CALC_INCDIR}/*.h
|
||||||
include files for C interface use
|
include files for C interface use
|
||||||
.sp 1
|
.sp 1
|
||||||
.TP 5
|
.TP 5
|
||||||
@@ -722,7 +849,7 @@ ${LIBDIR}/libcustcalc.a
|
|||||||
custom binary link library
|
custom binary link library
|
||||||
.sp 1
|
.sp 1
|
||||||
.TP 5
|
.TP 5
|
||||||
${CUSTOMLIBDIR}/*.cal
|
${CUSTOMCALDIR}/*.cal
|
||||||
custom resource files
|
custom resource files
|
||||||
.sp 1
|
.sp 1
|
||||||
.TP 5
|
.TP 5
|
||||||
@@ -865,36 +992,78 @@ Copyright (C) 1999 Landon Curt Noll
|
|||||||
and is covered under version 2.1 GNU Lesser General
|
and is covered under version 2.1 GNU Lesser General
|
||||||
Public License.
|
Public License.
|
||||||
.sp
|
.sp
|
||||||
.SH "BUG REPORTS / BUG FIXES / ENHANCEMENTS"
|
.SH "CALC MAILING LIST / CALC UPDATES / ENHANCEMENTS"
|
||||||
\&
|
\&
|
||||||
.br
|
.br
|
||||||
.sp
|
.sp
|
||||||
Send comments, suggestions, bug fixes, enhancements
|
To contribute comments, suggestions, enhancements
|
||||||
and interesting
|
and interesting
|
||||||
.B calc
|
.B calc
|
||||||
resource files,
|
resource files, and
|
||||||
.B calc
|
shell scripts please join the low volume calc mailing list.
|
||||||
shell scripts that you would like you see included
|
.sp
|
||||||
in future distributions to:
|
To join the low volume calc mailing list, send EMail to:
|
||||||
.sp
|
.sp
|
||||||
.in +0.5i
|
.in +0.5i
|
||||||
.nf
|
.nf
|
||||||
calc-tester at postofc dot corp dot sgi dot com
|
calc-tester-request at asthe dot com
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
|
||||||
.fi
|
.fi
|
||||||
.in -0.5i
|
.in -0.5i
|
||||||
.sp
|
.sp
|
||||||
Bug reports are sent to:
|
Your subject must contain the words:
|
||||||
.sp
|
.sp
|
||||||
.in +0.5i
|
.in +0.5i
|
||||||
.nf
|
.nf
|
||||||
calc-bugs at postofc dot corp dot sgi dot com
|
calc mailing list subscription
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
|
||||||
.fi
|
.fi
|
||||||
.in -0.5i
|
.in -0.5i
|
||||||
.sp
|
.sp
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
.sp
|
||||||
|
Your message body must contain:
|
||||||
|
.sp
|
||||||
|
.in +0.5i
|
||||||
|
.nf
|
||||||
|
subscribe calc-tester address
|
||||||
|
end
|
||||||
|
name your_full_name
|
||||||
|
.fi
|
||||||
|
.in -0.5i
|
||||||
|
.sp
|
||||||
|
where
|
||||||
|
.B address
|
||||||
|
s your EMail address and
|
||||||
|
.B your_full_name
|
||||||
|
is your full name.
|
||||||
|
Feel free to follow the
|
||||||
|
.B name
|
||||||
|
line with additional EMail text as desired.
|
||||||
|
.sp
|
||||||
|
.SH "BUG REPORTS / BUG FIXES"
|
||||||
|
\&
|
||||||
|
.br
|
||||||
|
.sp
|
||||||
|
Send bug reports and bug fixes to:
|
||||||
|
.sp
|
||||||
|
.in +0.5i
|
||||||
|
.nf
|
||||||
|
calc-bugs at asthe dot com
|
||||||
|
|
||||||
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe' and the web site URL uses 'isthe' ]]
|
||||||
|
.fi
|
||||||
|
.in -0.5i
|
||||||
|
.sp
|
||||||
|
Your subject must contain the words:
|
||||||
|
.sp
|
||||||
|
.in +0.5i
|
||||||
|
.nf
|
||||||
|
calc bug report
|
||||||
|
.fi
|
||||||
|
.in -0.5i
|
||||||
|
.sp
|
||||||
|
You may have additional words in your subject line.
|
||||||
|
.sp
|
||||||
See the
|
See the
|
||||||
.I BUGS
|
.I BUGS
|
||||||
source file or use the
|
source file or use the
|
||||||
@@ -909,7 +1078,7 @@ help bugs
|
|||||||
.sp
|
.sp
|
||||||
for more information about bug reporting.
|
for more information about bug reporting.
|
||||||
.sp
|
.sp
|
||||||
.SH "CALC WEB SITE / MAILING LIST"
|
.SH "CALC WEB SITE"
|
||||||
\&
|
\&
|
||||||
.br
|
.br
|
||||||
Landon Noll maintains the the
|
Landon Noll maintains the the
|
||||||
@@ -917,32 +1086,7 @@ Landon Noll maintains the the
|
|||||||
web site is located at:
|
web site is located at:
|
||||||
.sp
|
.sp
|
||||||
.in +0.5i
|
.in +0.5i
|
||||||
http://reality.sgi.com/chongo/tech/comp/calc/
|
http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
.in -0.5i
|
.in -0.5i
|
||||||
.sp
|
.sp
|
||||||
One may join the
|
|
||||||
.B calc
|
|
||||||
testing group by sending a request to:
|
|
||||||
.sp
|
|
||||||
.in +0.5i
|
|
||||||
.nf
|
|
||||||
calc-tester-request at postofc dot corp dot sgi dot com
|
|
||||||
|
|
||||||
[[ Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
|
||||||
.fi
|
|
||||||
.in -0.5i
|
|
||||||
.sp
|
|
||||||
Your message body (not the subject) should consist of:
|
|
||||||
.sp
|
|
||||||
.in +0.5i
|
|
||||||
.nf
|
|
||||||
subscribe calc-tester address
|
|
||||||
end
|
|
||||||
name your_full_name
|
|
||||||
.fi
|
|
||||||
.in -0.5i
|
|
||||||
.sp
|
|
||||||
where "address" is your EMail address and "your_full_name"
|
|
||||||
is your full name.
|
|
||||||
.sp
|
|
||||||
Share and Enjoy! :\-)
|
Share and Enjoy! :\-)
|
||||||
|
28
calcerr.tbl
28
calcerr.tbl
@@ -17,14 +17,14 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.4 $
|
||||||
# @(#) $Id: calcerr.tbl,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: calcerr.tbl,v 29.4 2001/04/10 22:06:46 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr.tbl,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr.tbl,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1996/05/23 17:38:44
|
# Under source code control: 1996/05/23 17:38:44
|
||||||
# File existed as early as: 1996
|
# File existed as early as: 1996
|
||||||
#
|
#
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
|
||||||
# This file is used to build calcerr.h include file.
|
# This file is used to build calcerr.h include file.
|
||||||
#
|
#
|
||||||
@@ -108,8 +108,8 @@ E_FGETSTR1 Non-file first argument for fgetstr
|
|||||||
E_FGETSTR2 File not open for reading for fgetstr
|
E_FGETSTR2 File not open for reading for fgetstr
|
||||||
E_FGETLINE1 Non-file argument for fgetline
|
E_FGETLINE1 Non-file argument for fgetline
|
||||||
E_FGETLINE2 File not open for reading for fgetline
|
E_FGETLINE2 File not open for reading for fgetline
|
||||||
E_FGETWORD1 Non-file argument for fgetword
|
E_FGETFIELD1 Non-file argument for fgetfield
|
||||||
E_FGETWORD2 File not open for reading for fgetword
|
E_FGETFIELD2 File not open for reading for fgetfield
|
||||||
E_REWIND1 Non-file argument for rewind
|
E_REWIND1 Non-file argument for rewind
|
||||||
E_FILES Non-integer argument for files
|
E_FILES Non-integer argument for files
|
||||||
E_PRINTF1 Non-string fmt argument for fprint
|
E_PRINTF1 Non-string fmt argument for fprint
|
||||||
@@ -375,3 +375,21 @@ E_GD3 Infinite or too-large result for gd
|
|||||||
E_AGD3 Infinite or too-large result for agd
|
E_AGD3 Infinite or too-large result for agd
|
||||||
E_POWER4 Too-large value for power
|
E_POWER4 Too-large value for power
|
||||||
E_ROOT4 Too-large value for root
|
E_ROOT4 Too-large value for root
|
||||||
|
E_DGT1 Non-real first arg for digit
|
||||||
|
E_DGT2 Non-integral second arg for digit
|
||||||
|
E_DGT3 Bad third arg for digit
|
||||||
|
E_PLCS1 Bad first argument for places
|
||||||
|
E_PLCS2 Bad second argument for places
|
||||||
|
E_DGTS1 Bad first argument for digits
|
||||||
|
E_DGTS2 Bad second argument for digits
|
||||||
|
E_ILOG Bad first argument for ilog
|
||||||
|
E_ILOGB Bad second argument for ilog
|
||||||
|
E_ILOG10 Bad argument for ilog10
|
||||||
|
E_ILOG2 Bad argument for ilog2
|
||||||
|
E_COMB1 Non-integer second arg for comb
|
||||||
|
E_COMB2 Too-large second arg for comb
|
||||||
|
E_CTLN Bad argument for catalan
|
||||||
|
E_BERN Bad argument for bern
|
||||||
|
E_EULER Bad argument for euler
|
||||||
|
E_SLEEP Bad argument for sleep
|
||||||
|
E_TTY calc_tty failure
|
||||||
|
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.2 $
|
||||||
# @(#) $Id: calcerr_c.awk,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: calcerr_c.awk,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_c.awk,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_c.awk,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1996/05/24 03:15:35
|
# Under source code control: 1996/05/24 03:15:35
|
||||||
# File existed as early as: 1996
|
# File existed as early as: 1996
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
BEGIN {
|
BEGIN {
|
||||||
printf("#include <stdio.h>\n");
|
printf("#include <stdio.h>\n");
|
||||||
|
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.2 $
|
||||||
# @(#) $Id: calcerr_c.sed,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: calcerr_c.sed,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_c.sed,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_c.sed,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1996/05/24 03:15:35
|
# Under source code control: 1996/05/24 03:15:35
|
||||||
# File existed as early as: 1996
|
# File existed as early as: 1996
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
s/#.*//
|
s/#.*//
|
||||||
s/[ ][ ]*$//
|
s/[ ][ ]*$//
|
||||||
|
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.2 $
|
||||||
# @(#) $Id: calcerr_h.awk,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: calcerr_h.awk,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_h.awk,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_h.awk,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1996/05/23 17:38:44
|
# Under source code control: 1996/05/23 17:38:44
|
||||||
# File existed as early as: 1996
|
# File existed as early as: 1996
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
BEGIN {
|
BEGIN {
|
||||||
ebase = 10000;
|
ebase = 10000;
|
||||||
|
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.2 $
|
||||||
# @(#) $Id: calcerr_h.sed,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: calcerr_h.sed,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_h.sed,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/calcerr_h.sed,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1996/05/23 17:38:44
|
# Under source code control: 1996/05/23 17:38:44
|
||||||
# File existed as early as: 1996
|
# File existed as early as: 1996
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
s/#.*//
|
s/#.*//
|
||||||
s/[ ][ ]*$//
|
s/[ ][ ]*$//
|
||||||
|
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.2 $
|
||||||
# @(#) $Id: check.awk,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: check.awk,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/RCS/check.awk,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/RCS/check.awk,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1996/05/25 22:07:58
|
# Under source code control: 1996/05/25 22:07:58
|
||||||
# File existed as early as: 1996
|
# File existed as early as: 1996
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
# This awk script will print 3 lines before and after any non-blank line that
|
# This awk script will print 3 lines before and after any non-blank line that
|
||||||
# does not begin with a number. This allows the 'make debug' rule to remove
|
# does not begin with a number. This allows the 'make debug' rule to remove
|
||||||
|
16
cmath.h
16
cmath.h
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.6 $
|
||||||
* @(#) $Id: cmath.h,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
* @(#) $Id: cmath.h,v 29.6 2002/03/12 09:38:26 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/cmath.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/cmath.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1993/07/30 19:42:45
|
* Under source code control: 1993/07/30 19:42:45
|
||||||
* File existed as early as: 1993
|
* File existed as early as: 1993
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -32,7 +32,11 @@
|
|||||||
#define __CMATH_H__
|
#define __CMATH_H__
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(CALC_SRC) /* if we are building from the calc source tree */
|
||||||
# include "qmath.h"
|
# include "qmath.h"
|
||||||
|
#else
|
||||||
|
# include <calc/qmath.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -58,6 +62,7 @@ extern void cprintfr(COMPLEX *c);
|
|||||||
/*
|
/*
|
||||||
* Basic numeric routines.
|
* Basic numeric routines.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern COMPLEX *cadd(COMPLEX *c1, COMPLEX *c2);
|
extern COMPLEX *cadd(COMPLEX *c1, COMPLEX *c2);
|
||||||
extern COMPLEX *csub(COMPLEX *c1, COMPLEX *c2);
|
extern COMPLEX *csub(COMPLEX *c1, COMPLEX *c2);
|
||||||
extern COMPLEX *cmul(COMPLEX *c1, COMPLEX *c2);
|
extern COMPLEX *cmul(COMPLEX *c1, COMPLEX *c2);
|
||||||
@@ -70,8 +75,8 @@ extern COMPLEX *cscale(COMPLEX *c, long i);
|
|||||||
extern COMPLEX *cshift(COMPLEX *c, long i);
|
extern COMPLEX *cshift(COMPLEX *c, long i);
|
||||||
extern COMPLEX *csquare(COMPLEX *c);
|
extern COMPLEX *csquare(COMPLEX *c);
|
||||||
extern COMPLEX *cconj(COMPLEX *c);
|
extern COMPLEX *cconj(COMPLEX *c);
|
||||||
extern COMPLEX *creal(COMPLEX *c);
|
extern COMPLEX *c_real(COMPLEX *c);
|
||||||
extern COMPLEX *cimag(COMPLEX *c);
|
extern COMPLEX *c_imag(COMPLEX *c);
|
||||||
extern COMPLEX *cneg(COMPLEX *c);
|
extern COMPLEX *cneg(COMPLEX *c);
|
||||||
extern COMPLEX *cinv(COMPLEX *c);
|
extern COMPLEX *cinv(COMPLEX *c);
|
||||||
extern COMPLEX *cint(COMPLEX *c);
|
extern COMPLEX *cint(COMPLEX *c);
|
||||||
@@ -83,6 +88,7 @@ extern BOOL ccmp(COMPLEX *c1, COMPLEX *c2);
|
|||||||
* More complicated functions.
|
* More complicated functions.
|
||||||
*/
|
*/
|
||||||
extern COMPLEX *cpowi(COMPLEX *c, NUMBER *q);
|
extern COMPLEX *cpowi(COMPLEX *c, NUMBER *q);
|
||||||
|
extern NUMBER *cilog(COMPLEX *c, ZVALUE base);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
281
codegen.c
281
codegen.c
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.7 $
|
||||||
* @(#) $Id: codegen.c,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
* @(#) $Id: codegen.c,v 29.7 2002/07/10 11:51:51 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/codegen.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/codegen.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:13
|
* Under source code control: 1990/02/15 01:48:13
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -45,11 +45,15 @@
|
|||||||
#include "func.h"
|
#include "func.h"
|
||||||
#include "conf.h"
|
#include "conf.h"
|
||||||
|
|
||||||
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
|
# include <direct.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
static BOOL rdonce; /* TRUE => do not reread this file */
|
static BOOL rdonce; /* TRUE => do not reread this file */
|
||||||
|
|
||||||
FUNC *curfunc;
|
FUNC *curfunc;
|
||||||
|
|
||||||
static BOOL getfilename(char *name, BOOL msg_ok, BOOL *once);
|
static int getfilename(char *name, BOOL *once);
|
||||||
static BOOL getid(char *buf);
|
static BOOL getid(char *buf);
|
||||||
static void getshowstatement(void);
|
static void getshowstatement(void);
|
||||||
static void getfunction(void);
|
static void getfunction(void);
|
||||||
@@ -71,7 +75,7 @@ static void getsimplebody(void);
|
|||||||
static void getcondition(void);
|
static void getcondition(void);
|
||||||
static void getmatargs(void);
|
static void getmatargs(void);
|
||||||
static void getelement(void);
|
static void getelement(void);
|
||||||
static void usesymbol(char *name, BOOL autodef);
|
static void usesymbol(char *name, int autodef);
|
||||||
static void definesymbol(char *name, int symtype);
|
static void definesymbol(char *name, int symtype);
|
||||||
static void getcallargs(char *name);
|
static void getcallargs(char *name);
|
||||||
static void do_changedir(void);
|
static void do_changedir(void);
|
||||||
@@ -90,9 +94,16 @@ static int getshiftexpr(void);
|
|||||||
static int getreference(void);
|
static int getreference(void);
|
||||||
static int getincdecexpr(void);
|
static int getincdecexpr(void);
|
||||||
static int getterm(void);
|
static int getterm(void);
|
||||||
static int getidexpr(BOOL okmat, BOOL autodef);
|
static int getidexpr(BOOL okmat, int autodef);
|
||||||
static long getinitlist(void);
|
static long getinitlist(void);
|
||||||
|
|
||||||
|
#define INDICALLOC 8
|
||||||
|
|
||||||
|
static int quickindices[INDICALLOC];
|
||||||
|
static int * newindices;
|
||||||
|
static int * indices;
|
||||||
|
static int maxindices;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read all the commands from an input file.
|
* Read all the commands from an input file.
|
||||||
@@ -116,6 +127,7 @@ getcommands(BOOL toplevel)
|
|||||||
if (!toplevel)
|
if (!toplevel)
|
||||||
enterfilescope();
|
enterfilescope();
|
||||||
for (;;) {
|
for (;;) {
|
||||||
|
int i;
|
||||||
(void) tokenmode(TM_NEWLINES);
|
(void) tokenmode(TM_NEWLINES);
|
||||||
switch (gettoken()) {
|
switch (gettoken()) {
|
||||||
|
|
||||||
@@ -133,49 +145,67 @@ getcommands(BOOL toplevel)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
case T_HELP:
|
case T_HELP:
|
||||||
if (!getfilename(name, FALSE, NULL)) {
|
for (i=1;;i++) {
|
||||||
|
switch(getfilename(name, NULL)) {
|
||||||
|
case -1:
|
||||||
|
if(i == 1) {
|
||||||
strcpy(name, DEFAULTCALCHELP);
|
strcpy(name, DEFAULTCALCHELP);
|
||||||
}
|
|
||||||
givehelp(name);
|
givehelp(name);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 0:
|
||||||
|
givehelp(name);
|
||||||
|
continue;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case T_READ:
|
case T_READ:
|
||||||
if (!getfilename(name, TRUE, &rdonce))
|
|
||||||
break;
|
|
||||||
if (!allow_read) {
|
if (!allow_read) {
|
||||||
scanerror(T_NULL,
|
scanerror(T_NULL,
|
||||||
"read command disallowed by -m mode\n");
|
"read command disallowed by -m mode\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switch (opensearchfile(name,calcpath,CALCEXT,rdonce)) {
|
for (;;) {
|
||||||
|
if (getfilename(name, &rdonce))
|
||||||
|
break;
|
||||||
|
switch (opensearchfile(name,calcpath,
|
||||||
|
CALCEXT,rdonce)) {
|
||||||
case 0:
|
case 0:
|
||||||
getcommands(FALSE);
|
getcommands(FALSE);
|
||||||
closeinput();
|
closeinput();
|
||||||
break;
|
continue;
|
||||||
case 1:
|
case 1:
|
||||||
/* previously read and -once was given */
|
/* prev read and -once was given */
|
||||||
break;
|
continue;
|
||||||
case -2:
|
case -2:
|
||||||
scanerror(T_NULL,
|
scanerror(T_NULL,
|
||||||
"Maximum input depth reached");
|
"Maximum input depth reached");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
scanerror(T_NULL, "Cannot open \"%s\"\n", name);
|
scanerror(T_NULL,
|
||||||
|
"Cannot open \"%s\"", name);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case T_WRITE:
|
case T_WRITE:
|
||||||
if (!getfilename(name, TRUE, NULL))
|
|
||||||
break;
|
|
||||||
if (!allow_write) {
|
if (!allow_write) {
|
||||||
scanerror(T_NULL,
|
scanerror(T_NULL,
|
||||||
"write command disallowed by -m mode\n");
|
"write command disallowed by -m mode\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (writeglobals(name))
|
if (getfilename(name, NULL))
|
||||||
|
break;
|
||||||
|
if (writeglobals(name)) {
|
||||||
scanerror(T_NULL,
|
scanerror(T_NULL,
|
||||||
"Error writing \"%s\"\n", name);
|
"Error writing \"%s\"\n", name);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case T_CD:
|
case T_CD:
|
||||||
@@ -497,9 +527,10 @@ getsimpledeclaration(int symtype)
|
|||||||
switch (gettoken()) {
|
switch (gettoken()) {
|
||||||
case T_SYMBOL:
|
case T_SYMBOL:
|
||||||
rescantoken();
|
rescantoken();
|
||||||
res = getonevariable(symtype);
|
if (getonevariable(symtype)) {
|
||||||
if (res)
|
res = 1;
|
||||||
addop(OP_POP);
|
addop(OP_POP);
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
case T_COMMA:
|
case T_COMMA:
|
||||||
continue;
|
continue;
|
||||||
@@ -529,7 +560,7 @@ getonevariable(int symtype)
|
|||||||
res = getonevariable(symtype);
|
res = getonevariable(symtype);
|
||||||
definesymbol(name, symtype);
|
definesymbol(name, symtype);
|
||||||
if (res) {
|
if (res) {
|
||||||
usesymbol(name, FALSE);
|
usesymbol(name, 0);
|
||||||
addop(OP_ASSIGNBACK);
|
addop(OP_ASSIGNBACK);
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
@@ -892,7 +923,7 @@ getstatement(LABEL *contlabel, LABEL *breaklabel, LABEL *nextcaselabel, LABEL *d
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
case T_ELSE:
|
case T_ELSE:
|
||||||
scanerror(T_SEMICOLON, "ELSE without preceeding IF");
|
scanerror(T_SEMICOLON, "ELSE without preceding IF");
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case T_SHOW:
|
case T_SHOW:
|
||||||
@@ -1021,7 +1052,6 @@ getobjdeclaration(int symtype)
|
|||||||
int count; /* number of elements */
|
int count; /* number of elements */
|
||||||
int index; /* current index */
|
int index; /* current index */
|
||||||
int i; /* loop counter */
|
int i; /* loop counter */
|
||||||
int indices[MAXINDICES]; /* indices for elements */
|
|
||||||
int oldmode;
|
int oldmode;
|
||||||
|
|
||||||
if (gettoken() != T_SYMBOL) {
|
if (gettoken() != T_SYMBOL) {
|
||||||
@@ -1038,23 +1068,46 @@ getobjdeclaration(int symtype)
|
|||||||
* Read in the definition of the elements of the object.
|
* Read in the definition of the elements of the object.
|
||||||
*/
|
*/
|
||||||
count = 0;
|
count = 0;
|
||||||
|
indices = quickindices;
|
||||||
|
maxindices = INDICALLOC;
|
||||||
|
|
||||||
oldmode = tokenmode(TM_DEFAULT);
|
oldmode = tokenmode(TM_DEFAULT);
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
switch (gettoken()) {
|
switch (gettoken()) {
|
||||||
case T_SYMBOL:
|
case T_SYMBOL:
|
||||||
if (count == MAXINDICES) {
|
if (count == maxindices) {
|
||||||
scanerror(T_SEMICOLON,
|
if (maxindices == INDICALLOC) {
|
||||||
"Too many elements in OBJ "
|
maxindices += INDICALLOC;
|
||||||
"statement");
|
newindices = (int *) malloc(maxindices *
|
||||||
|
sizeof(int));
|
||||||
|
if (newindices == NULL) {
|
||||||
|
scanerror(T_SEMICOLON, "Out of memory for indices malloc");
|
||||||
(void) tokenmode(oldmode);
|
(void) tokenmode(oldmode);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
memcpy(newindices, quickindices,
|
||||||
|
INDICALLOC * sizeof(int));
|
||||||
|
indices = newindices;
|
||||||
|
} else {
|
||||||
|
maxindices += INDICALLOC;
|
||||||
|
newindices = (int *) realloc(indices,
|
||||||
|
maxindices * sizeof(int));
|
||||||
|
if (newindices == NULL) {
|
||||||
|
free(indices);
|
||||||
|
scanerror(T_SEMICOLON, "Out of memory for indices realloc");
|
||||||
|
(void) tokenmode(oldmode);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
indices = newindices;
|
||||||
|
}
|
||||||
|
}
|
||||||
index = addelement(tokensymbol());
|
index = addelement(tokensymbol());
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
if (indices[i] == index) {
|
if (indices[i] == index) {
|
||||||
scanerror(T_SEMICOLON,
|
if (indices != quickindices)
|
||||||
"Duplicate element name "
|
free(indices);
|
||||||
"\"%s\"", tokensymbol());
|
scanerror(T_SEMICOLON, "Duplicate element name \"%s\"", tokensymbol());
|
||||||
(void) tokenmode(oldmode);
|
(void) tokenmode(oldmode);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1064,8 +1117,9 @@ getobjdeclaration(int symtype)
|
|||||||
continue;
|
continue;
|
||||||
rescantoken();
|
rescantoken();
|
||||||
if (gettoken() != T_RIGHTBRACE) {
|
if (gettoken() != T_RIGHTBRACE) {
|
||||||
scanerror(T_SEMICOLON,
|
if (indices != quickindices)
|
||||||
"Bad object type definition");
|
free(indices);
|
||||||
|
scanerror(T_SEMICOLON, "Bad object type definition");
|
||||||
(void) tokenmode(oldmode);
|
(void) tokenmode(oldmode);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1073,23 +1127,30 @@ getobjdeclaration(int symtype)
|
|||||||
case T_RIGHTBRACE:
|
case T_RIGHTBRACE:
|
||||||
(void) tokenmode(oldmode);
|
(void) tokenmode(oldmode);
|
||||||
if (defineobject(name, indices, count)) {
|
if (defineobject(name, indices, count)) {
|
||||||
|
if (indices != quickindices)
|
||||||
|
free(indices);
|
||||||
scanerror(T_NULL,
|
scanerror(T_NULL,
|
||||||
"Object type \"%s\" is already defined", name);
|
"Object type \"%s\" is already defined", name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (indices != quickindices)
|
||||||
|
free(indices);
|
||||||
getobjvars(name, symtype);
|
getobjvars(name, symtype);
|
||||||
return;
|
return;
|
||||||
case T_NEWLINE:
|
case T_NEWLINE:
|
||||||
continue;
|
continue;
|
||||||
default:
|
default:
|
||||||
scanerror(T_SEMICOLON,
|
if (indices != quickindices)
|
||||||
"Bad object type definition");
|
free(indices);
|
||||||
|
scanerror(T_SEMICOLON, "Bad object type definition");
|
||||||
(void) tokenmode(oldmode);
|
(void) tokenmode(oldmode);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
getoneobj(long index, int symtype)
|
getoneobj(long index, int symtype)
|
||||||
{
|
{
|
||||||
@@ -1098,11 +1159,11 @@ getoneobj(long index, int symtype)
|
|||||||
if (gettoken() == T_SYMBOL) {
|
if (gettoken() == T_SYMBOL) {
|
||||||
if (symtype == SYM_UNDEFINED) {
|
if (symtype == SYM_UNDEFINED) {
|
||||||
rescantoken();
|
rescantoken();
|
||||||
(void) getidexpr(TRUE, TRUE);
|
(void) getidexpr(TRUE, 1);
|
||||||
} else {
|
} else {
|
||||||
symname = tokensymbol();
|
symname = tokensymbol();
|
||||||
definesymbol(symname, symtype);
|
definesymbol(symname, symtype);
|
||||||
usesymbol(symname, FALSE);
|
usesymbol(symname, 0);
|
||||||
}
|
}
|
||||||
getoneobj(index, symtype);
|
getoneobj(index, symtype);
|
||||||
addop(OP_ASSIGN);
|
addop(OP_ASSIGN);
|
||||||
@@ -1181,11 +1242,11 @@ getonematrix(int symtype)
|
|||||||
if (gettoken() == T_SYMBOL) {
|
if (gettoken() == T_SYMBOL) {
|
||||||
if (symtype == SYM_UNDEFINED) {
|
if (symtype == SYM_UNDEFINED) {
|
||||||
rescantoken();
|
rescantoken();
|
||||||
(void) getidexpr(FALSE, TRUE);
|
(void) getidexpr(FALSE, 1);
|
||||||
} else {
|
} else {
|
||||||
name = tokensymbol();
|
name = tokensymbol();
|
||||||
definesymbol(name, symtype);
|
definesymbol(name, symtype);
|
||||||
usesymbol(name, FALSE);
|
usesymbol(name, 0);
|
||||||
}
|
}
|
||||||
while (gettoken() == T_COMMA);
|
while (gettoken() == T_COMMA);
|
||||||
rescantoken();
|
rescantoken();
|
||||||
@@ -2028,7 +2089,25 @@ getterm(void)
|
|||||||
|
|
||||||
case T_SYMBOL:
|
case T_SYMBOL:
|
||||||
rescantoken();
|
rescantoken();
|
||||||
type = getidexpr(TRUE, FALSE);
|
type = getidexpr(TRUE, 0);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case T_GLOBAL:
|
||||||
|
if (gettoken() != T_SYMBOL) {
|
||||||
|
scanerror(T_NULL, "Global id expected");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
rescantoken();
|
||||||
|
type = getidexpr(TRUE, T_GLOBAL);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case T_LOCAL:
|
||||||
|
if (gettoken() != T_SYMBOL) {
|
||||||
|
scanerror(T_NULL, "Local id expected");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
rescantoken();
|
||||||
|
type = getidexpr(TRUE, T_LOCAL);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case T_LEFTBRACKET:
|
case T_LEFTBRACKET:
|
||||||
@@ -2077,11 +2156,11 @@ getterm(void)
|
|||||||
/*
|
/*
|
||||||
* Read in an identifier expressions.
|
* Read in an identifier expressions.
|
||||||
* This is a symbol name followed by parenthesis, or by square brackets or
|
* This is a symbol name followed by parenthesis, or by square brackets or
|
||||||
* element refernces. The symbol can be a global or a local variable name.
|
* element references. The symbol can be a global or a local variable name.
|
||||||
* Returns the type of expression found.
|
* Returns the type of expression found.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
getidexpr(BOOL okmat, BOOL autodef)
|
getidexpr(BOOL okmat, int autodef)
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
char name[SYMBOLSIZE+1]; /* symbol name */
|
char name[SYMBOLSIZE+1]; /* symbol name */
|
||||||
@@ -2098,7 +2177,8 @@ getidexpr(BOOL okmat, BOOL autodef)
|
|||||||
type = 0;
|
type = 0;
|
||||||
break;
|
break;
|
||||||
case T_ASSIGN:
|
case T_ASSIGN:
|
||||||
autodef = TRUE;
|
if (autodef != T_GLOBAL && autodef != T_LOCAL)
|
||||||
|
autodef = 1;
|
||||||
/* fall into default case */
|
/* fall into default case */
|
||||||
default:
|
default:
|
||||||
rescantoken();
|
rescantoken();
|
||||||
@@ -2144,16 +2224,16 @@ getidexpr(BOOL okmat, BOOL autodef)
|
|||||||
*
|
*
|
||||||
* given:
|
* given:
|
||||||
* name filename to read
|
* name filename to read
|
||||||
* msg_ok TRUE => ok to print error messages
|
|
||||||
* once non-NULL => set to TRUE of -once read
|
* once non-NULL => set to TRUE of -once read
|
||||||
*/
|
*/
|
||||||
static BOOL
|
static int
|
||||||
getfilename(char *name, BOOL msg_ok, BOOL *once)
|
getfilename(char *name, BOOL *once)
|
||||||
{
|
{
|
||||||
STRING *s;
|
STRING *s;
|
||||||
|
int i;
|
||||||
|
|
||||||
/* look at the next token */
|
|
||||||
(void) tokenmode(TM_NEWLINES | TM_ALLSYMS);
|
(void) tokenmode(TM_NEWLINES | TM_ALLSYMS);
|
||||||
|
for (i = 2; i > 0; i--) {
|
||||||
switch (gettoken()) {
|
switch (gettoken()) {
|
||||||
case T_STRING:
|
case T_STRING:
|
||||||
s = findstring(tokenstring());
|
s = findstring(tokenstring());
|
||||||
@@ -2164,51 +2244,17 @@ getfilename(char *name, BOOL msg_ok, BOOL *once)
|
|||||||
strcpy(name, tokensymbol());
|
strcpy(name, tokensymbol());
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (msg_ok)
|
rescantoken();
|
||||||
scanerror(T_SEMICOLON, "Filename expected");
|
return -1;
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* determine if we care about a possible -once option */
|
if (i == 2 && once != NULL) {
|
||||||
if (once != NULL) {
|
if ((*once = !strcmp(name, "-once")))
|
||||||
/* we care about a possible -once option */
|
continue;
|
||||||
if (strcmp(name, "-once") == 0) {
|
}
|
||||||
/* -once option found */
|
|
||||||
*once = TRUE;
|
|
||||||
/* look for the filename */
|
|
||||||
switch (gettoken()) {
|
|
||||||
case T_STRING:
|
|
||||||
s = findstring(tokenstring());
|
|
||||||
strcpy(name, s->s_str);
|
|
||||||
sfree(s);
|
|
||||||
break;
|
break;
|
||||||
case T_SYMBOL:
|
|
||||||
strcpy(name, tokensymbol());
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
if (msg_ok)
|
|
||||||
scanerror(T_SEMICOLON,
|
|
||||||
"Filename expected");
|
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
} else {
|
return 0;
|
||||||
*once = FALSE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* look at the next token */
|
|
||||||
switch (gettoken()) {
|
|
||||||
case T_SEMICOLON:
|
|
||||||
case T_NEWLINE:
|
|
||||||
case T_EOF:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
if (msg_ok)
|
|
||||||
scanerror(T_SEMICOLON,
|
|
||||||
"Missing semicolon after filename");
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -2433,11 +2479,26 @@ definesymbol(char *name, int symtype)
|
|||||||
*
|
*
|
||||||
* given:
|
* given:
|
||||||
* name symbol name to be checked
|
* name symbol name to be checked
|
||||||
* autodef TRUE => define is symbol is not known
|
* autodef 1 => define if symbol is not known
|
||||||
|
* T_GLOBAL => get global, define if necessary
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
usesymbol(char *name, BOOL autodef)
|
usesymbol(char *name, int autodef)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
if (autodef == T_GLOBAL) {
|
||||||
|
addopptr(OP_GLOBALADDR, (char *) addglobal(name, FALSE));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (autodef == T_LOCAL) {
|
||||||
|
if (symboltype(name) == SYM_PARAM) {
|
||||||
|
scanerror(T_COMMA,
|
||||||
|
"Variable \"%s\" is already defined", name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
addopone(OP_LOCALADDR, addlocal(name));
|
||||||
|
return;
|
||||||
|
}
|
||||||
switch (symboltype(name)) {
|
switch (symboltype(name)) {
|
||||||
case SYM_LOCAL:
|
case SYM_LOCAL:
|
||||||
addopone(OP_LOCALADDR, (long) findlocal(name));
|
addopone(OP_LOCALADDR, (long) findlocal(name));
|
||||||
@@ -2544,24 +2605,25 @@ static void
|
|||||||
do_changedir(void)
|
do_changedir(void)
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
|
STRING *s;
|
||||||
|
|
||||||
/* look at the next token */
|
/* look at the next token */
|
||||||
(void) tokenmode(TM_NEWLINES | TM_ALLSYMS);
|
(void) tokenmode(TM_NEWLINES | TM_ALLSYMS);
|
||||||
|
|
||||||
/* determine the new directory */
|
/* determine the new directory */
|
||||||
|
s = NULL;
|
||||||
switch (gettoken()) {
|
switch (gettoken()) {
|
||||||
case T_NULL:
|
case T_STRING:
|
||||||
case T_NEWLINE:
|
s = findstring(tokenstring());
|
||||||
case T_SEMICOLON:
|
p = s->s_str;
|
||||||
p = home;
|
break;
|
||||||
|
case T_SYMBOL:
|
||||||
|
p = tokensymbol();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
p = tokensymbol(); /* This is not enough XXX */
|
|
||||||
if (p == NULL) {
|
|
||||||
p = home;
|
p = home;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (p == NULL) {
|
if (p == NULL) {
|
||||||
fprintf(stderr, "Cannot determine HOME directory\n");
|
fprintf(stderr, "Cannot determine HOME directory\n");
|
||||||
}
|
}
|
||||||
@@ -2570,29 +2632,8 @@ do_changedir(void)
|
|||||||
if (chdir(p)) {
|
if (chdir(p)) {
|
||||||
perror(p);
|
perror(p);
|
||||||
}
|
}
|
||||||
return;
|
if (s != NULL)
|
||||||
|
sfree(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* getshellfile - process the contents of a shellfile
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
getshellfile(char *shellfile)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* treat the calc shell script as if we were reading it
|
|
||||||
*/
|
|
||||||
if (!allow_read) {
|
|
||||||
scanerror(T_NULL,
|
|
||||||
"reading of calc shell script \"%s\" "
|
|
||||||
"dislloaed by -m mode\n", shellfile);
|
|
||||||
} else if (opensearchfile(shellfile, NULL, NULL, FALSE) == 0) {
|
|
||||||
getcommands(FALSE);
|
|
||||||
closeinput();
|
|
||||||
} else {
|
|
||||||
scanerror(T_NULL,
|
|
||||||
"Cannot open calc shell script \"%s\"\n", shellfile);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
32
comfunc.c
32
comfunc.c
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: comfunc.c,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
* @(#) $Id: comfunc.c,v 29.3 2000/07/17 15:35:49 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/comfunc.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/comfunc.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:13
|
* Under source code control: 1990/02/15 01:48:13
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -1007,7 +1007,7 @@ cpolar(NUMBER *q1, NUMBER *q2, NUMBER *epsilon)
|
|||||||
long m, n;
|
long m, n;
|
||||||
|
|
||||||
if (qiszero(epsilon)) {
|
if (qiszero(epsilon)) {
|
||||||
math_error("Zero epsilson for cpolar");
|
math_error("Zero epsilon for cpolar");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
if (qiszero(q1))
|
if (qiszero(q1))
|
||||||
@@ -1162,3 +1162,27 @@ cprintfr(COMPLEX *c)
|
|||||||
zprintval(i->den, 0L, 0L);
|
zprintval(i->den, 0L, 0L);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NUMBER *
|
||||||
|
cilog(COMPLEX *c, ZVALUE base)
|
||||||
|
{
|
||||||
|
NUMBER *qr, *qi;
|
||||||
|
|
||||||
|
qr = qilog(c->real, base);
|
||||||
|
qi = qilog(c->imag, base);
|
||||||
|
|
||||||
|
if (qr == NULL) {
|
||||||
|
if (qi == NULL)
|
||||||
|
return NULL;
|
||||||
|
return qi;
|
||||||
|
}
|
||||||
|
if (qi == NULL)
|
||||||
|
return qr;
|
||||||
|
if (qrel(qr, qi) >= 0) {
|
||||||
|
qfree(qi);
|
||||||
|
return qr;
|
||||||
|
}
|
||||||
|
qfree(qr);
|
||||||
|
return qi;
|
||||||
|
}
|
||||||
|
10
commath.c
10
commath.c
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.3 $
|
||||||
* @(#) $Id: commath.c,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
* @(#) $Id: commath.c,v 29.3 2002/03/12 09:38:26 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/commath.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/commath.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:10
|
* Under source code control: 1990/02/15 01:48:10
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -381,7 +381,7 @@ cconj(COMPLEX *c)
|
|||||||
* Return the real part of a complex number.
|
* Return the real part of a complex number.
|
||||||
*/
|
*/
|
||||||
COMPLEX *
|
COMPLEX *
|
||||||
creal(COMPLEX *c)
|
c_real(COMPLEX *c)
|
||||||
{
|
{
|
||||||
COMPLEX *r;
|
COMPLEX *r;
|
||||||
|
|
||||||
@@ -400,7 +400,7 @@ creal(COMPLEX *c)
|
|||||||
* Return the imaginary part of a complex number as a real.
|
* Return the imaginary part of a complex number as a real.
|
||||||
*/
|
*/
|
||||||
COMPLEX *
|
COMPLEX *
|
||||||
cimag(COMPLEX *c)
|
c_imag(COMPLEX *c)
|
||||||
{
|
{
|
||||||
COMPLEX *r;
|
COMPLEX *r;
|
||||||
|
|
||||||
|
338
config.c
338
config.c
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* config - configuration routines
|
* config - configuration routines
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999 David I. Bell and Landon Curt Noll
|
* Copyright (C) 1999-2002 David I. Bell and Landon Curt Noll
|
||||||
*
|
*
|
||||||
* Primary author: David I. Bell
|
* Primary author: David I. Bell
|
||||||
*
|
*
|
||||||
@@ -19,14 +19,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.2 $
|
* @(#) $Revision: 29.8 $
|
||||||
* @(#) $Id: config.c,v 29.2 1999/12/14 19:37:46 chongo Exp $
|
* @(#) $Id: config.c,v 29.8 2002/12/29 09:20:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/config.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/config.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1991/07/20 00:21:56
|
* Under source code control: 1991/07/20 00:21:56
|
||||||
* File existed as early as: 1991
|
* File existed as early as: 1991
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -51,6 +51,7 @@
|
|||||||
NAMETYPE configs[] = {
|
NAMETYPE configs[] = {
|
||||||
{"all", CONFIG_ALL},
|
{"all", CONFIG_ALL},
|
||||||
{"mode", CONFIG_MODE},
|
{"mode", CONFIG_MODE},
|
||||||
|
{"mode2", CONFIG_MODE2},
|
||||||
{"display", CONFIG_DISPLAY},
|
{"display", CONFIG_DISPLAY},
|
||||||
{"epsilon", CONFIG_EPSILON},
|
{"epsilon", CONFIG_EPSILON},
|
||||||
/*epsilonprec -- tied to epsilon not a configuration type*/
|
/*epsilonprec -- tied to epsilon not a configuration type*/
|
||||||
@@ -90,6 +91,7 @@ NAMETYPE configs[] = {
|
|||||||
{"ctrl-d", CONFIG_CTRL_D}, /* alias for ctrl_d */
|
{"ctrl-d", CONFIG_CTRL_D}, /* alias for ctrl_d */
|
||||||
{"program", CONFIG_PROGRAM},
|
{"program", CONFIG_PROGRAM},
|
||||||
{"basename", CONFIG_BASENAME},
|
{"basename", CONFIG_BASENAME},
|
||||||
|
{"windows", CONFIG_WINDOWS},
|
||||||
{"version", CONFIG_VERSION},
|
{"version", CONFIG_VERSION},
|
||||||
{NULL, 0}
|
{NULL, 0}
|
||||||
};
|
};
|
||||||
@@ -100,6 +102,7 @@ NAMETYPE configs[] = {
|
|||||||
*/
|
*/
|
||||||
CONFIG oldstd = { /* backward compatible standard configuration */
|
CONFIG oldstd = { /* backward compatible standard configuration */
|
||||||
MODE_INITIAL, /* current output mode */
|
MODE_INITIAL, /* current output mode */
|
||||||
|
MODE2_INITIAL, /* current secondary output mode */
|
||||||
20, /* current output digits for float or exp */
|
20, /* current output digits for float or exp */
|
||||||
NULL, /* loaded in at startup - default error for real functions */
|
NULL, /* loaded in at startup - default error for real functions */
|
||||||
EPSILONPREC_DEFAULT, /* binary precision of epsilon */
|
EPSILONPREC_DEFAULT, /* binary precision of epsilon */
|
||||||
@@ -109,10 +112,10 @@ CONFIG oldstd = { /* backward compatible standard configuration */
|
|||||||
SQ_ALG2, /* size of number to use square alg 2 */
|
SQ_ALG2, /* size of number to use square alg 2 */
|
||||||
POW_ALG2, /* size of modulus to use REDC for powers */
|
POW_ALG2, /* size of modulus to use REDC for powers */
|
||||||
REDC_ALG2, /* size of modulus to use REDC algorithm 2 */
|
REDC_ALG2, /* size of modulus to use REDC algorithm 2 */
|
||||||
TRUE, /* ok to print a tilde on aproximations */
|
TRUE, /* ok to print a tilde on approximations */
|
||||||
TRUE, /* ok to print tab before numeric values */
|
TRUE, /* ok to print tab before numeric values */
|
||||||
0, /* quomod() default rounding mode */
|
0, /* quomod() default rounding mode */
|
||||||
2, /* quotent // default rounding mode */
|
2, /* quotient // default rounding mode */
|
||||||
0, /* mod % default rounding mode */
|
0, /* mod % default rounding mode */
|
||||||
24, /* sqrt() default rounding mode */
|
24, /* sqrt() default rounding mode */
|
||||||
24, /* appr() default rounding mode */
|
24, /* appr() default rounding mode */
|
||||||
@@ -132,14 +135,20 @@ CONFIG oldstd = { /* backward compatible standard configuration */
|
|||||||
0, /* internal calc debug level */
|
0, /* internal calc debug level */
|
||||||
3, /* calc resource file debug level */
|
3, /* calc resource file debug level */
|
||||||
0, /* user defined debug level */
|
0, /* user defined debug level */
|
||||||
TRUE, /* print Quit or abort executed messages */
|
FALSE, /* print Quit or abort executed messages */
|
||||||
CTRL_D_VIRGIN_EOF, /* ^D only exits on virgin lines */
|
CTRL_D_VIRGIN_EOF, /* ^D only exits on virgin lines */
|
||||||
NULL, /* our name */
|
NULL, /* our name */
|
||||||
NULL, /* basename of our name */
|
NULL, /* basename of our name */
|
||||||
|
#if defined(_WIN32)
|
||||||
|
TRUE, /* running under windows */
|
||||||
|
#else
|
||||||
|
FALSE, /* congrats, you are not using windows */
|
||||||
|
#endif
|
||||||
NULL /* version */
|
NULL /* version */
|
||||||
};
|
};
|
||||||
CONFIG newstd = { /* new non-backward compatible configuration */
|
CONFIG newstd = { /* new non-backward compatible configuration */
|
||||||
MODE_INITIAL, /* current output mode */
|
MODE_INITIAL, /* current output mode */
|
||||||
|
MODE2_INITIAL, /* current output mode */
|
||||||
10, /* current output digits for float or exp */
|
10, /* current output digits for float or exp */
|
||||||
NULL, /* loaded in at startup - default error for real functions */
|
NULL, /* loaded in at startup - default error for real functions */
|
||||||
NEW_EPSILONPREC_DEFAULT, /* binary precision of epsilon */
|
NEW_EPSILONPREC_DEFAULT, /* binary precision of epsilon */
|
||||||
@@ -149,10 +158,10 @@ CONFIG newstd = { /* new non-backward compatible configuration */
|
|||||||
SQ_ALG2, /* size of number to use square alg 2 */
|
SQ_ALG2, /* size of number to use square alg 2 */
|
||||||
POW_ALG2, /* size of modulus to use REDC for powers */
|
POW_ALG2, /* size of modulus to use REDC for powers */
|
||||||
REDC_ALG2, /* size of modulus to use REDC algorithm 2 */
|
REDC_ALG2, /* size of modulus to use REDC algorithm 2 */
|
||||||
TRUE, /* ok to print a tilde on aproximations */
|
TRUE, /* ok to print a tilde on approximations */
|
||||||
TRUE, /* ok to print tab before numeric values */
|
TRUE, /* ok to print tab before numeric values */
|
||||||
0, /* quomod() default rounding mode */
|
0, /* quomod() default rounding mode */
|
||||||
0, /* quotent // default rounding mode */
|
0, /* quotient // default rounding mode */
|
||||||
0, /* mod % default rounding mode */
|
0, /* mod % default rounding mode */
|
||||||
24, /* sqrt() default rounding mode */
|
24, /* sqrt() default rounding mode */
|
||||||
24, /* appr() default rounding mode */
|
24, /* appr() default rounding mode */
|
||||||
@@ -172,10 +181,15 @@ CONFIG newstd = { /* new non-backward compatible configuration */
|
|||||||
0, /* internal calc debug level */
|
0, /* internal calc debug level */
|
||||||
3, /* calc resource file debug level */
|
3, /* calc resource file debug level */
|
||||||
0, /* user defined debug level */
|
0, /* user defined debug level */
|
||||||
TRUE, /* print Quit or abort executed messages */
|
FALSE, /* print Quit or abort executed messages */
|
||||||
CTRL_D_VIRGIN_EOF, /* ^D only exits on virgin lines */
|
CTRL_D_VIRGIN_EOF, /* ^D only exits on virgin lines */
|
||||||
NULL, /* our name */
|
NULL, /* our name */
|
||||||
NULL, /* basename of our name */
|
NULL, /* basename of our name */
|
||||||
|
#if defined(_WIN32)
|
||||||
|
TRUE, /* running under windows */
|
||||||
|
#else
|
||||||
|
FALSE, /* congrats, you are not using windows */
|
||||||
|
#endif
|
||||||
NULL /* version */
|
NULL /* version */
|
||||||
};
|
};
|
||||||
CONFIG *conf = NULL; /* loaded in at startup - current configuration */
|
CONFIG *conf = NULL; /* loaded in at startup - current configuration */
|
||||||
@@ -201,6 +215,7 @@ static NAMETYPE modes[] = {
|
|||||||
{"oct", MODE_OCTAL},
|
{"oct", MODE_OCTAL},
|
||||||
{"binary", MODE_BINARY},
|
{"binary", MODE_BINARY},
|
||||||
{"bin", MODE_BINARY},
|
{"bin", MODE_BINARY},
|
||||||
|
{"off", MODE2_OFF},
|
||||||
{NULL, 0}
|
{NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -287,10 +302,11 @@ static NAMETYPE truth[] = {
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* declate static functions
|
* declare static functions
|
||||||
*/
|
*/
|
||||||
static long lookup_long(NAMETYPE *set, char *name);
|
static long lookup_long(NAMETYPE *set, char *name);
|
||||||
static char *lookup_name(NAMETYPE *set, long val);
|
static char *lookup_name(NAMETYPE *set, long val);
|
||||||
|
static int getlen(VALUE *vp, LEN *lp);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -360,6 +376,26 @@ lookup_name(NAMETYPE *set, long val)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check whether VALUE at vp is a LEN (32-bit signed integer) and if so,
|
||||||
|
* copy that integer to lp.
|
||||||
|
* Return: 1, 2, 0, or -1 XXX
|
||||||
|
*/
|
||||||
|
|
||||||
|
static int
|
||||||
|
getlen(VALUE *vp, LEN *lp)
|
||||||
|
{
|
||||||
|
if (vp->v_type != V_NUM || !qisint(vp->v_num))
|
||||||
|
return 1;
|
||||||
|
if (zge31b(vp->v_num->num))
|
||||||
|
return 2;
|
||||||
|
*lp = ztoi(vp->v_num->num);
|
||||||
|
if (*lp < 0)
|
||||||
|
return -1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the specified configuration type to the specified value.
|
* Set the specified configuration type to the specified value.
|
||||||
* An error is generated if the type number or value is illegal.
|
* An error is generated if the type number or value is illegal.
|
||||||
@@ -370,6 +406,7 @@ setconfig(int type, VALUE *vp)
|
|||||||
NUMBER *q;
|
NUMBER *q;
|
||||||
CONFIG *newconf; /* new configuration to set */
|
CONFIG *newconf; /* new configuration to set */
|
||||||
long temp;
|
long temp;
|
||||||
|
LEN len;
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
@@ -414,15 +451,11 @@ setconfig(int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_DISPLAY:
|
case CONFIG_DISPLAY:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non-numeric for display");
|
math_error("Bad value for display");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
math_setdigits(len);
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num))
|
|
||||||
temp = -1;
|
|
||||||
math_setdigits(temp);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_MODE:
|
case CONFIG_MODE:
|
||||||
@@ -438,6 +471,19 @@ setconfig(int type, VALUE *vp)
|
|||||||
math_setmode((int) temp);
|
math_setmode((int) temp);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case CONFIG_MODE2:
|
||||||
|
if (vp->v_type != V_STR) {
|
||||||
|
math_error("Non-string for mode");
|
||||||
|
/*NOTREACHED*/
|
||||||
|
}
|
||||||
|
temp = lookup_long(modes, vp->v_str->s_str);
|
||||||
|
if (temp < 0) {
|
||||||
|
math_error("Unknown mode \"%s\"", vp->v_str);
|
||||||
|
/*NOTREACHED*/
|
||||||
|
}
|
||||||
|
math_setmode2((int) temp);
|
||||||
|
break;
|
||||||
|
|
||||||
case CONFIG_EPSILON:
|
case CONFIG_EPSILON:
|
||||||
if (vp->v_type != V_NUM) {
|
if (vp->v_type != V_NUM) {
|
||||||
math_error("Non-numeric for epsilon");
|
math_error("Non-numeric for epsilon");
|
||||||
@@ -447,91 +493,51 @@ setconfig(int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_MAXPRINT:
|
case CONFIG_MAXPRINT:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non-numeric for maxprint");
|
math_error("Bad value for maxprint");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->maxprint = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num))
|
|
||||||
temp = -1;
|
|
||||||
if (temp < 0) {
|
|
||||||
math_error("Maxprint value is out of range");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->maxprint = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_MUL2:
|
case CONFIG_MUL2:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non-numeric for mul2");
|
math_error("Bad value for mul2");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
if (len == 0)
|
||||||
temp = qtoi(q);
|
len = MUL_ALG2;
|
||||||
if (qisfrac(q) || qisneg(q))
|
conf->mul2 = len;
|
||||||
temp = -1;
|
|
||||||
if (temp == 0)
|
|
||||||
temp = MUL_ALG2;
|
|
||||||
if (temp < 2) {
|
|
||||||
math_error("Illegal mul2 value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->mul2 = (int)temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_SQ2:
|
case CONFIG_SQ2:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non-numeric for sq2");
|
math_error("Bad value for sq2");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
if (len == 0)
|
||||||
temp = qtoi(q);
|
len = SQ_ALG2;
|
||||||
if (qisfrac(q) || qisneg(q))
|
conf->sq2 = len;
|
||||||
temp = -1;
|
|
||||||
if (temp == 0)
|
|
||||||
temp = SQ_ALG2;
|
|
||||||
if (temp < 2) {
|
|
||||||
math_error("Illegal sq2 value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->sq2 = (int)temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_POW2:
|
case CONFIG_POW2:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non-numeric for pow2");
|
math_error("Bad value for pow2");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
if (len == 0)
|
||||||
temp = qtoi(q);
|
len = POW_ALG2;
|
||||||
if (qisfrac(q) || qisneg(q))
|
conf->pow2 = len;
|
||||||
temp = -1;
|
|
||||||
if (temp == 0)
|
|
||||||
temp = POW_ALG2;
|
|
||||||
if (temp < 1) {
|
|
||||||
math_error("Illegal pow2 value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->pow2 = (int)temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_REDC2:
|
case CONFIG_REDC2:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non-numeric for redc2");
|
math_error("Bad value for redc2");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
if (len == 0)
|
||||||
temp = qtoi(q);
|
len = REDC_ALG2;
|
||||||
if (qisfrac(q) || qisneg(q))
|
conf->redc2 = len;
|
||||||
temp = -1;
|
|
||||||
if (temp == 0)
|
|
||||||
temp = REDC_ALG2;
|
|
||||||
if (temp < 1) {
|
|
||||||
math_error("Illegal redc2 value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->redc2 = (int)temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_TILDE:
|
case CONFIG_TILDE:
|
||||||
@@ -563,129 +569,75 @@ setconfig(int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_QUOMOD:
|
case CONFIG_QUOMOD:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for quomod");
|
math_error("Illegal value for quomod");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->quomod = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal quomod parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->quomod = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_QUO:
|
case CONFIG_QUO:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for quo");
|
math_error("Illegal value for quo");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->quo = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal quo parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->quo = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_MOD:
|
case CONFIG_MOD:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for mod");
|
math_error("Illegal value for mod");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->mod = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal mod parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->mod = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_SQRT:
|
case CONFIG_SQRT:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for sqrt");
|
math_error("Illegal value for sqrt");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->sqrt = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal sqrt parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->sqrt = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_APPR:
|
case CONFIG_APPR:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for appr");
|
math_error("Illegal value for appr");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->appr = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal appr parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->appr = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_CFAPPR:
|
case CONFIG_CFAPPR:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for cfappr");
|
math_error("Illegal value for cfappr");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->cfappr = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal cfappr parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->cfappr = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_CFSIM:
|
case CONFIG_CFSIM:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for cfsim");
|
math_error("Illegal value for cfsim");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->cfsim = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal cfsim parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->cfsim = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_OUTROUND:
|
case CONFIG_OUTROUND:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for outround");
|
math_error("Illegal value for outround");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->outround = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal output parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->outround = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_ROUND:
|
case CONFIG_ROUND:
|
||||||
if (vp->v_type != V_NUM) {
|
if (getlen(vp, &len)) {
|
||||||
math_error("Non numeric for round");
|
math_error("Illegal value for round");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
q = vp->v_num;
|
conf->round = len;
|
||||||
temp = qtoi(q);
|
|
||||||
if (qisfrac(q) || qisneg(q) || !zistiny(q->num)) {
|
|
||||||
math_error("Illegal output parameter value");
|
|
||||||
/*NOTREACHED*/
|
|
||||||
}
|
|
||||||
conf->round = temp;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_LEADZERO:
|
case CONFIG_LEADZERO:
|
||||||
@@ -898,11 +850,15 @@ setconfig(int type, VALUE *vp)
|
|||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
|
|
||||||
case CONFIG_BASENAME:
|
case CONFIG_BASENAME:
|
||||||
math_error("The program config parameter is read-only");
|
math_error("The basename config parameter is read-only");
|
||||||
|
/*NOTREACHED*/
|
||||||
|
|
||||||
|
case CONFIG_WINDOWS:
|
||||||
|
math_error("The windows config parameter is read-only");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
|
|
||||||
case CONFIG_VERSION:
|
case CONFIG_VERSION:
|
||||||
math_error("The program config parameter is read-only");
|
math_error("The version config parameter is read-only");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@@ -1079,6 +1035,16 @@ config_value(CONFIG *cfg, int type, VALUE *vp)
|
|||||||
vp->v_str = makenewstring(p);
|
vp->v_str = makenewstring(p);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
case CONFIG_MODE2:
|
||||||
|
vp->v_type = V_STR;
|
||||||
|
p = lookup_name(modes, cfg->outmode2);
|
||||||
|
if (p == NULL) {
|
||||||
|
math_error("invalid secondary output mode: %d", cfg->outmode2);
|
||||||
|
/*NOTREACHED*/
|
||||||
|
}
|
||||||
|
vp->v_str = makenewstring(p);
|
||||||
|
return;
|
||||||
|
|
||||||
case CONFIG_EPSILON:
|
case CONFIG_EPSILON:
|
||||||
vp->v_num = qlink(cfg->epsilon);
|
vp->v_num = qlink(cfg->epsilon);
|
||||||
return;
|
return;
|
||||||
@@ -1104,20 +1070,18 @@ config_value(CONFIG *cfg, int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_TILDE:
|
case CONFIG_TILDE:
|
||||||
vp->v_type = V_STR;
|
|
||||||
if (cfg->tilde_ok) {
|
if (cfg->tilde_ok) {
|
||||||
vp->v_str = makenewstring(TRUE_STRING);
|
vp->v_num = itoq(1);
|
||||||
} else {
|
} else {
|
||||||
vp->v_str = makenewstring(FALSE_STRING);
|
vp->v_num = itoq(0);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case CONFIG_TAB:
|
case CONFIG_TAB:
|
||||||
vp->v_type = V_STR;
|
|
||||||
if (cfg->tab_ok) {
|
if (cfg->tab_ok) {
|
||||||
vp->v_str = makenewstring(TRUE_STRING);
|
vp->v_num = itoq(1);
|
||||||
} else {
|
} else {
|
||||||
vp->v_str = makenewstring(FALSE_STRING);
|
vp->v_num = itoq(0);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -1158,20 +1122,18 @@ config_value(CONFIG *cfg, int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_LEADZERO:
|
case CONFIG_LEADZERO:
|
||||||
vp->v_type = V_STR;
|
|
||||||
if (cfg->leadzero) {
|
if (cfg->leadzero) {
|
||||||
vp->v_str = makenewstring(TRUE_STRING);
|
vp->v_num = itoq(1);
|
||||||
} else {
|
} else {
|
||||||
vp->v_str = makenewstring(FALSE_STRING);
|
vp->v_num = itoq(0);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case CONFIG_FULLZERO:
|
case CONFIG_FULLZERO:
|
||||||
vp->v_type = V_STR;
|
|
||||||
if (cfg->fullzero) {
|
if (cfg->fullzero) {
|
||||||
vp->v_str = makenewstring(TRUE_STRING);
|
vp->v_num = itoq(1);
|
||||||
} else {
|
} else {
|
||||||
vp->v_str = makenewstring(FALSE_STRING);
|
vp->v_num = itoq(0);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -1194,11 +1156,10 @@ config_value(CONFIG *cfg, int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_BLKVERBOSE:
|
case CONFIG_BLKVERBOSE:
|
||||||
vp->v_type = V_STR;
|
|
||||||
if (cfg->blkverbose) {
|
if (cfg->blkverbose) {
|
||||||
vp->v_str = makenewstring(TRUE_STRING);
|
vp->v_num = itoq(1);
|
||||||
} else {
|
} else {
|
||||||
vp->v_str = makenewstring(FALSE_STRING);
|
vp->v_num = itoq(0);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -1235,11 +1196,10 @@ config_value(CONFIG *cfg, int type, VALUE *vp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case CONFIG_VERBOSE_QUIT:
|
case CONFIG_VERBOSE_QUIT:
|
||||||
vp->v_type = V_STR;
|
|
||||||
if (cfg->verbose_quit) {
|
if (cfg->verbose_quit) {
|
||||||
vp->v_str = makenewstring(TRUE_STRING);
|
vp->v_num = itoq(1);
|
||||||
} else {
|
} else {
|
||||||
vp->v_str = makenewstring(FALSE_STRING);
|
vp->v_num = itoq(0);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -1271,6 +1231,14 @@ config_value(CONFIG *cfg, int type, VALUE *vp)
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
case CONFIG_WINDOWS:
|
||||||
|
if (cfg->windows) {
|
||||||
|
vp->v_num = itoq(1);
|
||||||
|
} else {
|
||||||
|
vp->v_num = itoq(0);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
case CONFIG_VERSION:
|
case CONFIG_VERSION:
|
||||||
vp->v_type = V_STR;
|
vp->v_type = V_STR;
|
||||||
if (cfg->version == NULL) {
|
if (cfg->version == NULL) {
|
||||||
@@ -1311,12 +1279,12 @@ config_cmp(CONFIG *cfg1, CONFIG *cfg2)
|
|||||||
*/
|
*/
|
||||||
if (cfg1 == NULL || cfg1->epsilon == NULL || cfg1->prompt1 == NULL ||
|
if (cfg1 == NULL || cfg1->epsilon == NULL || cfg1->prompt1 == NULL ||
|
||||||
cfg1->prompt2 == NULL) {
|
cfg1->prompt2 == NULL) {
|
||||||
math_error("CONFIG #1 value is invaid");
|
math_error("CONFIG #1 value is invalid");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
if (cfg2 == NULL || cfg2->epsilon == NULL || cfg2->prompt1 == NULL ||
|
if (cfg2 == NULL || cfg2->epsilon == NULL || cfg2->prompt1 == NULL ||
|
||||||
cfg2->prompt2 == NULL) {
|
cfg2->prompt2 == NULL) {
|
||||||
math_error("CONFIG #2 value is invaid");
|
math_error("CONFIG #2 value is invalid");
|
||||||
/*NOTREACHED*/
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1326,6 +1294,7 @@ config_cmp(CONFIG *cfg1, CONFIG *cfg2)
|
|||||||
return cfg1->traceflags != cfg2->traceflags ||
|
return cfg1->traceflags != cfg2->traceflags ||
|
||||||
cfg1->outdigits != cfg2->outdigits ||
|
cfg1->outdigits != cfg2->outdigits ||
|
||||||
cfg1->outmode != cfg2->outmode ||
|
cfg1->outmode != cfg2->outmode ||
|
||||||
|
cfg1->outmode2 != cfg2->outmode2 ||
|
||||||
qcmp(cfg1->epsilon, cfg2->epsilon) ||
|
qcmp(cfg1->epsilon, cfg2->epsilon) ||
|
||||||
cfg1->epsilonprec != cfg2->epsilonprec ||
|
cfg1->epsilonprec != cfg2->epsilonprec ||
|
||||||
cfg1->maxprint != cfg2->maxprint ||
|
cfg1->maxprint != cfg2->maxprint ||
|
||||||
@@ -1371,6 +1340,7 @@ config_cmp(CONFIG *cfg1, CONFIG *cfg2)
|
|||||||
|
|
||||||
(cfg1->version == NULL && cfg2->version != NULL) ||
|
(cfg1->version == NULL && cfg2->version != NULL) ||
|
||||||
(cfg1->version != NULL && cfg2->version == NULL) ||
|
(cfg1->version != NULL && cfg2->version == NULL) ||
|
||||||
|
cfg1->windows != cfg2->windows ||
|
||||||
(cfg1->version != NULL && cfg2->version != NULL &&
|
(cfg1->version != NULL && cfg2->version != NULL &&
|
||||||
strcmp(cfg1->version, cfg2->version) != 0);
|
strcmp(cfg1->version, cfg2->version) != 0);
|
||||||
}
|
}
|
||||||
|
73
config.h
73
config.h
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* config - configuration routines
|
* config - configuration routines
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999 Landon Curt Noll and David I. Bell
|
* Copyright (C) 1999-2002 Landon Curt Noll and David I. Bell
|
||||||
*
|
*
|
||||||
* Primary author: Landon Curt Noll
|
* Primary author: Landon Curt Noll
|
||||||
*
|
*
|
||||||
@@ -19,15 +19,15 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.2 $
|
* @(#) $Revision: 29.12 $
|
||||||
* @(#) $Id: config.h,v 29.2 1999/12/14 19:37:46 chongo Exp $
|
* @(#) $Id: config.h,v 29.12 2002/12/29 09:20:25 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/config.h,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/config.h,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1995/11/01 22:20:17
|
* Under source code control: 1995/11/01 22:20:17
|
||||||
* File existed as early as: 1995
|
* File existed as early as: 1995
|
||||||
*
|
*
|
||||||
* chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -35,8 +35,15 @@
|
|||||||
#define __CONFIG_H__
|
#define __CONFIG_H__
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(CALC_SRC) /* if we are building from the calc source tree */
|
||||||
|
# include "win32dll.h"
|
||||||
# include "nametype.h"
|
# include "nametype.h"
|
||||||
# include "qmath.h"
|
# include "qmath.h"
|
||||||
|
#else
|
||||||
|
# include <calc/win32dll.h>
|
||||||
|
# include <calc/nametype.h>
|
||||||
|
# include <calc/qmath.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -82,6 +89,8 @@
|
|||||||
#define CONFIG_PROGRAM 35
|
#define CONFIG_PROGRAM 35
|
||||||
#define CONFIG_BASENAME 36
|
#define CONFIG_BASENAME 36
|
||||||
#define CONFIG_VERSION 37
|
#define CONFIG_VERSION 37
|
||||||
|
#define CONFIG_WINDOWS 38
|
||||||
|
#define CONFIG_MODE2 39
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -110,26 +119,27 @@
|
|||||||
*/
|
*/
|
||||||
struct config {
|
struct config {
|
||||||
int outmode; /* current output mode */
|
int outmode; /* current output mode */
|
||||||
long outdigits; /* current output digits for float or exp */
|
int outmode2; /* current secondary output mode */
|
||||||
|
LEN outdigits; /* current output digits for float or exp */
|
||||||
NUMBER *epsilon; /* default error for real functions */
|
NUMBER *epsilon; /* default error for real functions */
|
||||||
long epsilonprec; /* epsilon binary precision (tied to epsilon) */
|
long epsilonprec; /* epsilon binary precision (tied to epsilon) */
|
||||||
FLAG traceflags; /* tracing flags */
|
FLAG traceflags; /* tracing flags */
|
||||||
long maxprint; /* number of elements to print */
|
LEN maxprint; /* number of elements to print */
|
||||||
LEN mul2; /* size of number to use multiply algorithm 2 */
|
LEN mul2; /* size of number to use multiply algorithm 2 */
|
||||||
LEN sq2; /* size of number to use square algorithm 2 */
|
LEN sq2; /* size of number to use square algorithm 2 */
|
||||||
LEN pow2; /* size of modulus to use REDC for powers */
|
LEN pow2; /* size of modulus to use REDC for powers */
|
||||||
LEN redc2; /* size of modulus to use REDC algorithm 2 */
|
LEN redc2; /* size of modulus to use REDC algorithm 2 */
|
||||||
BOOL tilde_ok; /* ok to print a tilde on aproximations */
|
BOOL tilde_ok; /* ok to print a tilde on aproximations */
|
||||||
BOOL tab_ok; /* ok to print tab before numeric values */
|
BOOL tab_ok; /* ok to print tab before numeric values */
|
||||||
long quomod; /* quomod() default rounding mode */
|
LEN quomod; /* quomod() default rounding mode */
|
||||||
long quo; /* quotent // default rounding mode */
|
LEN quo; /* quotient // default rounding mode */
|
||||||
long mod; /* mod % default rounding mode */
|
LEN mod; /* mod % default rounding mode */
|
||||||
long sqrt; /* sqrt() default rounding mode */
|
LEN sqrt; /* sqrt() default rounding mode */
|
||||||
long appr; /* appr() default rounding mode */
|
LEN appr; /* appr() default rounding mode */
|
||||||
long cfappr; /* cfappr() default rounding mode */
|
LEN cfappr; /* cfappr() default rounding mode */
|
||||||
long cfsim; /* cfsim() default rounding mode */
|
LEN cfsim; /* cfsim() default rounding mode */
|
||||||
long outround; /* output default rounding mode */
|
LEN outround; /* output default rounding mode */
|
||||||
long round; /* round()/bround() default rounding mode */
|
LEN round; /* round()/bround() default rounding mode */
|
||||||
BOOL leadzero; /* ok to print leading 0 before decimal pt */
|
BOOL leadzero; /* ok to print leading 0 before decimal pt */
|
||||||
BOOL fullzero; /* ok to print trailing 0's */
|
BOOL fullzero; /* ok to print trailing 0's */
|
||||||
long maxscancount; /* max scan errors before abort */
|
long maxscancount; /* max scan errors before abort */
|
||||||
@@ -146,6 +156,7 @@ struct config {
|
|||||||
int ctrl_d; /* see CTRL_D_xyz below */
|
int ctrl_d; /* see CTRL_D_xyz below */
|
||||||
char *program; /* our name */
|
char *program; /* our name */
|
||||||
char *base_name; /* basename of our name */
|
char *base_name; /* basename of our name */
|
||||||
|
BOOL windows; /* TRUE => running under MS windows */
|
||||||
char *version; /* calc version string */
|
char *version; /* calc version string */
|
||||||
};
|
};
|
||||||
typedef struct config CONFIG;
|
typedef struct config CONFIG;
|
||||||
@@ -157,7 +168,8 @@ typedef struct config CONFIG;
|
|||||||
#define RSCDBG_STDIN_FUNC (0x00000001) /* interactive func define debug */
|
#define RSCDBG_STDIN_FUNC (0x00000001) /* interactive func define debug */
|
||||||
#define RSCDBG_FILE_FUNC (0x00000002) /* file read func define debug */
|
#define RSCDBG_FILE_FUNC (0x00000002) /* file read func define debug */
|
||||||
#define RSCDBG_FUNC_INFO (0x00000004) /* print extra info for show func */
|
#define RSCDBG_FUNC_INFO (0x00000004) /* print extra info for show func */
|
||||||
#define RSCDBG_MASK (0x00000007)
|
#define RSCDBG_PRINT_DBG (0x00000008) /* print debug messages */
|
||||||
|
#define RSCDBG_MASK (0x0000000f)
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -169,7 +181,8 @@ typedef struct config CONFIG;
|
|||||||
#define CALCDBG_BLOCK (0x00000008) /* block debug */
|
#define CALCDBG_BLOCK (0x00000008) /* block debug */
|
||||||
#define CALCDBG_TTY (0x00000010) /* report TTY state changes */
|
#define CALCDBG_TTY (0x00000010) /* report TTY state changes */
|
||||||
#define CALCDBG_RUNSTATE (0x00000020) /* report run_state changes */
|
#define CALCDBG_RUNSTATE (0x00000020) /* report run_state changes */
|
||||||
#define CALCDBG_MASK (0x0000003f)
|
#define CALCDBG_RAND (0x00000040) /* report rand() activity */
|
||||||
|
#define CALCDBG_MASK (0x0000007f)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ctrl-d meanings
|
* ctrl-d meanings
|
||||||
@@ -182,23 +195,23 @@ typedef struct config CONFIG;
|
|||||||
/*
|
/*
|
||||||
* global configuration states and aliases
|
* global configuration states and aliases
|
||||||
*/
|
*/
|
||||||
extern CONFIG *conf; /* current configuration */
|
extern DLL CONFIG *conf; /* current configuration */
|
||||||
extern CONFIG oldstd; /* backward compatible standard configuration */
|
extern DLL CONFIG oldstd; /* backward compatible standard configuration */
|
||||||
extern CONFIG newstd; /* new non-backward compatible configuration */
|
extern DLL CONFIG newstd; /* new non-backward compatible configuration */
|
||||||
extern char *calc_debug; /* !=NULL => value of config("calc_debug") */
|
extern DLL char *calc_debug; /* !=NULL => value of config("calc_debug") */
|
||||||
extern char *resource_debug; /* !=NULL => config("resource_debug") value */
|
extern DLL char *resource_debug; /* !=NULL => config("resource_debug") value */
|
||||||
extern char *user_debug; /* !=NULL => value of config("user_debug") */
|
extern DLL char *user_debug; /* !=NULL => value of config("user_debug") */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* configuration externals
|
* configuration externals
|
||||||
*/
|
*/
|
||||||
extern CONFIG *config_copy(CONFIG *src);
|
extern DLL CONFIG *config_copy(CONFIG *src);
|
||||||
extern void config_free(CONFIG *cfg);
|
extern DLL void config_free(CONFIG *cfg);
|
||||||
extern void config_print(CONFIG *cfg);
|
extern DLL void config_print(CONFIG *cfg);
|
||||||
extern int configtype(char*);
|
extern DLL int configtype(char*);
|
||||||
extern void config_print(CONFIG*);
|
extern DLL void config_print(CONFIG*);
|
||||||
extern BOOL config_cmp(CONFIG*, CONFIG*);
|
extern DLL BOOL config_cmp(CONFIG*, CONFIG*);
|
||||||
|
|
||||||
|
|
||||||
#endif /* !__CONFIG_H__ */
|
#endif /* !__CONFIG_H__ */
|
||||||
|
6
const.c
6
const.c
@@ -17,14 +17,14 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.1 $
|
* @(#) $Revision: 29.2 $
|
||||||
* @(#) $Id: const.c,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
* @(#) $Id: const.c,v 29.2 2000/06/07 14:02:13 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/const.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/const.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/02/15 01:48:14
|
* Under source code control: 1990/02/15 01:48:14
|
||||||
* File existed as early as: before 1990
|
* File existed as early as: before 1990
|
||||||
*
|
*
|
||||||
* Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
320
cscript/4dsphere.calc
Normal file
320
cscript/4dsphere.calc
Normal file
@@ -0,0 +1,320 @@
|
|||||||
|
#!/usr/local/src/cmd/calc/calc -q -s -f
|
||||||
|
/*
|
||||||
|
* 4dsphere - determine if 6 points lie on the surface of a sphere in R^4
|
||||||
|
*
|
||||||
|
* usage:
|
||||||
|
* 4dsphere x0 y0 z0 w0 x1 y1 z1 w1 ... x5 y5 z5 w5
|
||||||
|
*
|
||||||
|
* x0 y0 z0 w0 point 0 in R^4
|
||||||
|
* x1 y1 z1 w1 point 1 in R^4
|
||||||
|
* ... ...
|
||||||
|
* x5 y5 z5 w5 point 5 in R^4
|
||||||
|
*
|
||||||
|
* Copyright (C) 2001 Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 1.3 $
|
||||||
|
* @(#) $Id: 4dsphere.calc,v 1.3 2001/06/06 09:06:29 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/4dsphere.calc,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 2001/05/03 19:02:03
|
||||||
|
* File existed as early as: 2001
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* parse args
|
||||||
|
*/
|
||||||
|
argc = argv();
|
||||||
|
if (argc != 25) {
|
||||||
|
fprintf(files(2), "usage: %s x0 y0 z0 w0 x1 y1 z1 w1 ... x5 y5 z5 w5\n",
|
||||||
|
argv(0));
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
x0 = eval(argv(1));
|
||||||
|
y0 = eval(argv(2));
|
||||||
|
z0 = eval(argv(3));
|
||||||
|
w0 = eval(argv(4));
|
||||||
|
x1 = eval(argv(5));
|
||||||
|
y1 = eval(argv(6));
|
||||||
|
z1 = eval(argv(7));
|
||||||
|
w1 = eval(argv(8));
|
||||||
|
x2 = eval(argv(9));
|
||||||
|
y2 = eval(argv(10));
|
||||||
|
z2 = eval(argv(11));
|
||||||
|
w2 = eval(argv(12));
|
||||||
|
x3 = eval(argv(13));
|
||||||
|
y3 = eval(argv(14));
|
||||||
|
z3 = eval(argv(15));
|
||||||
|
w3 = eval(argv(16));
|
||||||
|
x4 = eval(argv(17));
|
||||||
|
y4 = eval(argv(18));
|
||||||
|
z4 = eval(argv(19));
|
||||||
|
w4 = eval(argv(20));
|
||||||
|
x5 = eval(argv(21));
|
||||||
|
y5 = eval(argv(22));
|
||||||
|
z5 = eval(argv(23));
|
||||||
|
w5 = eval(argv(24));
|
||||||
|
|
||||||
|
/*
|
||||||
|
* verbose output setup
|
||||||
|
*/
|
||||||
|
print "(":x0:",":y0:",":z0:",":w0:") ":;
|
||||||
|
print "(":x1:",":y1:",":z1:",":w1:") ":;
|
||||||
|
print "(":x2:",":y2:",":z2:",":w2:") ":;
|
||||||
|
print "(":x3:",":y3:",":z3:",":w3:") ":;
|
||||||
|
print "(":x4:",":y4:",":z4:",":w4:") ":;
|
||||||
|
print "(":x5:",":y5:",":z5:",":w5:") ":;
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* Given the 5 points:
|
||||||
|
*
|
||||||
|
* (x0,y1,z1,w1)
|
||||||
|
* (x1,y1,z1,w1)
|
||||||
|
* (x2,y2,z2,w2)
|
||||||
|
* (x3,y3,z3,w3)
|
||||||
|
* (x4,y4,z4,w4)
|
||||||
|
* (x5,y5,z5,w5)
|
||||||
|
*
|
||||||
|
* we can determine if they lie in the surface of 4D sphere in R^4 if the
|
||||||
|
* following matrix is 0:
|
||||||
|
*
|
||||||
|
* | x0^2+y0^2+z0^2+w0^2 x0 y0 z0 w0 1 |
|
||||||
|
* | x1^2+y1^2+z1^2+w1^2 x1 y1 z1 w1 1 |
|
||||||
|
* | x2^2+y2^2+z2^2+w2^2 x2 y2 z2 w2 1 | = 0
|
||||||
|
* | x3^2+y3^2+z3^2+w3^2 x3 y3 z3 w3 1 |
|
||||||
|
* | x4^2+y4^2+z4^2+w4^2 x4 y4 z4 w4 1 |
|
||||||
|
* | x5^2+y5^2+z5^2+w5^2 x5 y5 z5 w5 1 |
|
||||||
|
*/
|
||||||
|
if ((w0*(-x1*(-y2*(-z4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-z3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +
|
||||||
|
(z4^2+y4^2+x4^2+w4^2)*z5+ (z3^2+y3^2+x3^2+w3^2)*(z4-z5))
|
||||||
|
+y3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z2*(-y4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-y3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+y5*(z4^2+y4^2+x4^2+w4^2) + (y4-y5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
-z3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z2^2+y2^2+x2^2+w2^2)*(y4*z5+y3*(z4-z5) -y5*z4- (y4-y5)*z3) -
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(y4*z5-y5*z4)) +y1*(-x2*(-z4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-z3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +
|
||||||
|
(z4^2+y4^2+x4^2+w4^2)*z5+ (z3^2+y3^2+x3^2+w3^2)*(z4-z5))
|
||||||
|
+x3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z2*(-x4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-x3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (x4-x5)*(z3^2+y3^2+x3^2+w3^2)) -z3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) + (z2^2+y2^2+x2^2+w2^2)*(x4*z5+x3*(z4-z5)
|
||||||
|
-x5*z4- (x4-x5)*z3) - (z3^2+y3^2+x3^2+w3^2)*(x4*z5-x5*z4))
|
||||||
|
-x2*(-y3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+ (z3^2+y3^2+x3^2+w3^2)*(y4*z5-y5*z4))
|
||||||
|
+y2*(-x3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(x4*z5-x5*z4)) -z1*(-x2*(-y4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-y3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (y4-y5)*(z3^2+y3^2+x3^2+w3^2)) +x3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) +y2*(-x4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-x3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+x5*(z4^2+y4^2+x4^2+w4^2) + (x4-x5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
-y3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2)) -
|
||||||
|
(x4*y5-x5*y4)*(z3^2+y3^2+x3^2+w3^2) + (x4*y5+x3*(y4-y5) -x5*y4-
|
||||||
|
(x4-x5)*y3)*(z2^2+y2^2+x2^2+w2^2)) -z2*(-x3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) +y3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) + (x4*y5-x5*y4)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+ (z1^2+y1^2+x1^2+w1^2)*(x2*(y4*z5+y3*(z4-z5) -y5*z4-
|
||||||
|
(y4-y5)*z3) -x3*(y4*z5-y5*z4) -y2*(x4*z5+x3*(z4-z5) -x5*z4-
|
||||||
|
(x4-x5)*z3) +y3*(x4*z5-x5*z4) - (x4*y5-x5*y4)*z3+
|
||||||
|
(x4*y5+x3*(y4-y5) -x5*y4- (x4-x5)*y3)*z2) +
|
||||||
|
(z2^2+y2^2+x2^2+w2^2)*(x3*(y4*z5-y5*z4) -y3*(x4*z5-x5*z4) +
|
||||||
|
(x4*y5-x5*y4)*z3)) -x0*(-w1*(-y2*(-z4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-z3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +
|
||||||
|
(z4^2+y4^2+x4^2+w4^2)*z5+ (z3^2+y3^2+x3^2+w3^2)*(z4-z5))
|
||||||
|
+y3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z2*(-y4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-y3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+y5*(z4^2+y4^2+x4^2+w4^2) + (y4-y5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
-z3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z2^2+y2^2+x2^2+w2^2)*(y4*z5+y3*(z4-z5) -y5*z4- (y4-y5)*z3) -
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(y4*z5-y5*z4)) -y1*(w2*(-z4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-z3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +
|
||||||
|
(z4^2+y4^2+x4^2+w4^2)*z5+ (z3^2+y3^2+x3^2+w3^2)*(z4-z5))
|
||||||
|
-w3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-z2*(-w4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-w3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (w4-w5)*(z3^2+y3^2+x3^2+w3^2)) +z3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (z2^2+y2^2+x2^2+w2^2)*(-w4*z5-w3*(z4-z5)
|
||||||
|
+w5*z4+ (w4-w5)*z3) - (z3^2+y3^2+x3^2+w3^2)*(w5*z4-w4*z5))
|
||||||
|
-w2*(-y3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+ (z3^2+y3^2+x3^2+w3^2)*(y4*z5-y5*z4))
|
||||||
|
-y2*(w3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-z3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(w5*z4-w4*z5)) +z1*(w2*(-y4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-y3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (y4-y5)*(z3^2+y3^2+x3^2+w3^2)) -w3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) -y2*(-w4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-w3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+w5*(z4^2+y4^2+x4^2+w4^2) + (w4-w5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+y3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) -
|
||||||
|
(w5*y4-w4*y5)*(z3^2+y3^2+x3^2+w3^2) + (-w4*y5-w3*(y4-y5) +w5*y4+
|
||||||
|
(w4-w5)*y3)*(z2^2+y2^2+x2^2+w2^2)) +z2*(w3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) -y3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (w5*y4-w4*y5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+ (z1^2+y1^2+x1^2+w1^2)*(w2*(y4*z5+y3*(z4-z5) -y5*z4-
|
||||||
|
(y4-y5)*z3) -w3*(y4*z5-y5*z4) +y2*(-w4*z5-w3*(z4-z5)
|
||||||
|
+w5*z4+ (w4-w5)*z3) -y3*(w5*z4-w4*z5) + (w5*y4-w4*y5)*z3-
|
||||||
|
(-w4*y5-w3*(y4-y5) +w5*y4+ (w4-w5)*y3)*z2) +
|
||||||
|
(z2^2+y2^2+x2^2+w2^2)*(w3*(y4*z5-y5*z4) +y3*(w5*z4-w4*z5) -
|
||||||
|
(w5*y4-w4*y5)*z3)) +y0*(-w1*(-x2*(-z4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-z3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +
|
||||||
|
(z4^2+y4^2+x4^2+w4^2)*z5+ (z3^2+y3^2+x3^2+w3^2)*(z4-z5))
|
||||||
|
+x3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z2*(-x4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-x3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+x5*(z4^2+y4^2+x4^2+w4^2) + (x4-x5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
-z3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z2^2+y2^2+x2^2+w2^2)*(x4*z5+x3*(z4-z5) -x5*z4- (x4-x5)*z3) -
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(x4*z5-x5*z4)) -x1*(w2*(-z4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-z3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +
|
||||||
|
(z4^2+y4^2+x4^2+w4^2)*z5+ (z3^2+y3^2+x3^2+w3^2)*(z4-z5))
|
||||||
|
-w3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-z2*(-w4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-w3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (w4-w5)*(z3^2+y3^2+x3^2+w3^2)) +z3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (z2^2+y2^2+x2^2+w2^2)*(-w4*z5-w3*(z4-z5)
|
||||||
|
+w5*z4+ (w4-w5)*z3) - (z3^2+y3^2+x3^2+w3^2)*(w5*z4-w4*z5))
|
||||||
|
-w2*(-x3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+ (z3^2+y3^2+x3^2+w3^2)*(x4*z5-x5*z4))
|
||||||
|
-x2*(w3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-z3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(w5*z4-w4*z5)) +z1*(w2*(-x4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-x3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (x4-x5)*(z3^2+y3^2+x3^2+w3^2)) -w3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) -x2*(-w4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-w3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+w5*(z4^2+y4^2+x4^2+w4^2) + (w4-w5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+x3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) -
|
||||||
|
(w5*x4-w4*x5)*(z3^2+y3^2+x3^2+w3^2) + (-w4*x5-w3*(x4-x5) +w5*x4+
|
||||||
|
(w4-w5)*x3)*(z2^2+y2^2+x2^2+w2^2)) +z2*(w3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) -x3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (w5*x4-w4*x5)*(z3^2+y3^2+x3^2+w3^2)) +
|
||||||
|
(z1^2+y1^2+x1^2+w1^2)*(w2*(x4*z5+x3*(z4-z5) -x5*z4- (x4-x5)*z3)
|
||||||
|
-w3*(x4*z5-x5*z4) +x2*(-w4*z5-w3*(z4-z5) +w5*z4+ (w4-w5)*z3)
|
||||||
|
-x3*(w5*z4-w4*z5) + (w5*x4-w4*x5)*z3- (-w4*x5-w3*(x4-x5) +w5*x4+
|
||||||
|
(w4-w5)*x3)*z2) + (z2^2+y2^2+x2^2+w2^2)*(w3*(x4*z5-x5*z4)
|
||||||
|
+x3*(w5*z4-w4*z5) - (w5*x4-w4*x5)*z3))
|
||||||
|
-w1*(-x2*(-y3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+ (z3^2+y3^2+x3^2+w3^2)*(y4*z5-y5*z4))
|
||||||
|
+y2*(-x3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(x4*z5-x5*z4)) -z2*(-x3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) +y3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) + (x4*y5-x5*y4)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+ (z2^2+y2^2+x2^2+w2^2)*(x3*(y4*z5-y5*z4)
|
||||||
|
-y3*(x4*z5-x5*z4) + (x4*y5-x5*y4)*z3))
|
||||||
|
+x1*(-w2*(-y3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+ (z3^2+y3^2+x3^2+w3^2)*(y4*z5-y5*z4))
|
||||||
|
-y2*(w3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-z3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(w5*z4-w4*z5)) +z2*(w3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) -y3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (w5*y4-w4*y5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+ (z2^2+y2^2+x2^2+w2^2)*(w3*(y4*z5-y5*z4)
|
||||||
|
+y3*(w5*z4-w4*z5) - (w5*y4-w4*y5)*z3))
|
||||||
|
-y1*(-w2*(-x3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+z3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+ (z3^2+y3^2+x3^2+w3^2)*(x4*z5-x5*z4))
|
||||||
|
-x2*(w3*((z4^2+y4^2+x4^2+w4^2)*z5-z4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-z3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(z3^2+y3^2+x3^2+w3^2)*(w5*z4-w4*z5)) +z2*(w3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) -x3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (w5*x4-w4*x5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+ (z2^2+y2^2+x2^2+w2^2)*(w3*(x4*z5-x5*z4) +x3*(w5*z4-w4*z5)
|
||||||
|
- (w5*x4-w4*x5)*z3)) -z0*(-w1*(-x2*(-y4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-y3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (y4-y5)*(z3^2+y3^2+x3^2+w3^2)) +x3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) +y2*(-x4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-x3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+x5*(z4^2+y4^2+x4^2+w4^2) + (x4-x5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
-y3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2)) -
|
||||||
|
(x4*y5-x5*y4)*(z3^2+y3^2+x3^2+w3^2) + (x4*y5+x3*(y4-y5) -x5*y4-
|
||||||
|
(x4-x5)*y3)*(z2^2+y2^2+x2^2+w2^2)) -x1*(w2*(-y4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-y3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (y4-y5)*(z3^2+y3^2+x3^2+w3^2)) -w3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) -y2*(-w4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-w3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2)
|
||||||
|
+w5*(z4^2+y4^2+x4^2+w4^2) + (w4-w5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+y3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) -
|
||||||
|
(w5*y4-w4*y5)*(z3^2+y3^2+x3^2+w3^2) + (-w4*y5-w3*(y4-y5) +w5*y4+
|
||||||
|
(w4-w5)*y3)*(z2^2+y2^2+x2^2+w2^2)) -w2*(-x3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) +y3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) + (x4*y5-x5*y4)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
-x2*(w3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-y3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(w5*y4-w4*y5)*(z3^2+y3^2+x3^2+w3^2)) +y1*(w2*(-x4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-x3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (x4-x5)*(z3^2+y3^2+x3^2+w3^2)) -w3*(x5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-x4*(z5^2+y5^2+x5^2+w5^2)) -x2*(-w4*(z5^2+y5^2+x5^2+w5^2)
|
||||||
|
-w3*(-z5^2+z4^2-y5^2+y4^2-x5^2+x4^2-w5^2+w4^2) +w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
+ (w4-w5)*(z3^2+y3^2+x3^2+w3^2)) +x3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) - (w5*x4-w4*x5)*(z3^2+y3^2+x3^2+w3^2)
|
||||||
|
+ (-w4*x5-w3*(x4-x5) +w5*x4+ (w4-w5)*x3)*(z2^2+y2^2+x2^2+w2^2))
|
||||||
|
+y2*(w3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-x3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(w5*x4-w4*x5)*(z3^2+y3^2+x3^2+w3^2)) + (w3*(x4*y5-x5*y4) +x3*(w5*y4-w4*y5)
|
||||||
|
- (w5*x4-w4*x5)*y3)*(z2^2+y2^2+x2^2+w2^2) + (w2*(x4*y5+x3*(y4-y5)
|
||||||
|
-x5*y4- (x4-x5)*y3) -w3*(x4*y5-x5*y4) +x2*(-w4*y5-w3*(y4-y5)
|
||||||
|
+w5*y4+ (w4-w5)*y3) -x3*(w5*y4-w4*y5) + (w5*x4-w4*x5)*y3-
|
||||||
|
(-w4*x5-w3*(x4-x5) +w5*x4+ (w4-w5)*x3)*y2)*(z1^2+y1^2+x1^2+w1^2))
|
||||||
|
+z1*(-w2*(-x3*(y5*(z4^2+y4^2+x4^2+w4^2) -y4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
+y3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(x4*y5-x5*y4)*(z3^2+y3^2+x3^2+w3^2)) -x2*(w3*(y5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-y4*(z5^2+y5^2+x5^2+w5^2)) -y3*(w5*(z4^2+y4^2+x4^2+w4^2)
|
||||||
|
-w4*(z5^2+y5^2+x5^2+w5^2)) + (w5*y4-w4*y5)*(z3^2+y3^2+x3^2+w3^2))
|
||||||
|
+y2*(w3*(x5*(z4^2+y4^2+x4^2+w4^2) -x4*(z5^2+y5^2+x5^2+w5^2))
|
||||||
|
-x3*(w5*(z4^2+y4^2+x4^2+w4^2) -w4*(z5^2+y5^2+x5^2+w5^2)) +
|
||||||
|
(w5*x4-w4*x5)*(z3^2+y3^2+x3^2+w3^2)) + (w3*(x4*y5-x5*y4)
|
||||||
|
+x3*(w5*y4-w4*y5) - (w5*x4-w4*x5)*y3)*(z2^2+y2^2+x2^2+w2^2)) +
|
||||||
|
(z0^2+y0^2+x0^2+w0^2)*(-w1*(x2*(y4*z5+y3*(z4-z5) -y5*z4- (y4-y5)*z3)
|
||||||
|
-x3*(y4*z5-y5*z4) -y2*(x4*z5+x3*(z4-z5) -x5*z4- (x4-x5)*z3)
|
||||||
|
+y3*(x4*z5-x5*z4) - (x4*y5-x5*y4)*z3+ (x4*y5+x3*(y4-y5) -x5*y4-
|
||||||
|
(x4-x5)*y3)*z2) +x1*(w2*(y4*z5+y3*(z4-z5) -y5*z4- (y4-y5)*z3)
|
||||||
|
-w3*(y4*z5-y5*z4) +y2*(-w4*z5-w3*(z4-z5) +w5*z4+ (w4-w5)*z3)
|
||||||
|
-y3*(w5*z4-w4*z5) + (w5*y4-w4*y5)*z3- (-w4*y5-w3*(y4-y5) +w5*y4+
|
||||||
|
(w4-w5)*y3)*z2) -w2*(x3*(y4*z5-y5*z4) -y3*(x4*z5-x5*z4) +
|
||||||
|
(x4*y5-x5*y4)*z3) +x2*(w3*(y4*z5-y5*z4) +y3*(w5*z4-w4*z5) -
|
||||||
|
(w5*y4-w4*y5)*z3) -y1*(w2*(x4*z5+x3*(z4-z5) -x5*z4- (x4-x5)*z3)
|
||||||
|
-w3*(x4*z5-x5*z4) +x2*(-w4*z5-w3*(z4-z5) +w5*z4+ (w4-w5)*z3)
|
||||||
|
-x3*(w5*z4-w4*z5) + (w5*x4-w4*x5)*z3- (-w4*x5-w3*(x4-x5) +w5*x4+
|
||||||
|
(w4-w5)*x3)*z2) -y2*(w3*(x4*z5-x5*z4) +x3*(w5*z4-w4*z5) -
|
||||||
|
(w5*x4-w4*x5)*z3) + (w3*(x4*y5-x5*y4) +x3*(w5*y4-w4*y5) -
|
||||||
|
(w5*x4-w4*x5)*y3)*z2+ (w2*(x4*y5+x3*(y4-y5) -x5*y4- (x4-x5)*y3)
|
||||||
|
-w3*(x4*y5-x5*y4) +x2*(-w4*y5-w3*(y4-y5) +w5*y4+ (w4-w5)*y3)
|
||||||
|
-x3*(w5*y4-w4*y5) + (w5*x4-w4*x5)*y3- (-w4*x5-w3*(x4-x5) +w5*x4+
|
||||||
|
(w4-w5)*x3)*y2)*z1) - (z1^2+y1^2+x1^2+w1^2)*(-w2*(x3*(y4*z5-y5*z4)
|
||||||
|
-y3*(x4*z5-x5*z4) + (x4*y5-x5*y4)*z3) +x2*(w3*(y4*z5-y5*z4)
|
||||||
|
+y3*(w5*z4-w4*z5) - (w5*y4-w4*y5)*z3) -y2*(w3*(x4*z5-x5*z4)
|
||||||
|
+x3*(w5*z4-w4*z5) - (w5*x4-w4*x5)*z3) + (w3*(x4*y5-x5*y4)
|
||||||
|
+x3*(w5*y4-w4*y5) - (w5*x4-w4*x5)*y3)*z2)) == 0) {
|
||||||
|
print "are in the surface of a 4D sphere";
|
||||||
|
} else {
|
||||||
|
print "are NOT on a 4D sphere surface";
|
||||||
|
}
|
280
cscript/Makefile
280
cscript/Makefile
@@ -17,15 +17,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.3 $
|
# @(#) $Revision: 29.23 $
|
||||||
# @(#) $Id: Makefile,v 29.3 1999/12/14 19:30:19 chongo Exp $
|
# @(#) $Id: Makefile,v 29.23 2003/01/14 01:58:18 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/Makefile,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/Makefile,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1999/11/29 11:10:26
|
# Under source code control: 1999/11/29 11:10:26
|
||||||
# File existed as early as: 1999
|
# File existed as early as: 1999
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
#
|
#
|
||||||
# calculator by David I. Bell with help/mods from others
|
# calculator by David I. Bell with help/mods from others
|
||||||
# Makefile by Landon Curt Noll
|
# Makefile by Landon Curt Noll
|
||||||
@@ -36,15 +36,121 @@
|
|||||||
SHELL= /bin/sh
|
SHELL= /bin/sh
|
||||||
MAKE_FILE = Makefile
|
MAKE_FILE = Makefile
|
||||||
|
|
||||||
|
####
|
||||||
# Normally, the upper level makefile will set these values. We provide
|
# Normally, the upper level makefile will set these values. We provide
|
||||||
# a default here just in case you want to build from this directory.
|
# a default here just in case you want to build from this directory.
|
||||||
|
####
|
||||||
|
|
||||||
|
# Where the system include (.h) files are kept
|
||||||
|
#
|
||||||
|
# For DJGPP, select:
|
||||||
|
#
|
||||||
|
# INCDIR= /dev/env/DJDIR/include
|
||||||
|
#
|
||||||
|
# If in doubt, set:
|
||||||
|
#
|
||||||
|
# INCDIR= /usr/include
|
||||||
|
#
|
||||||
|
|
||||||
|
#INCDIR= /usr/local/include
|
||||||
|
#INCDIR= /dev/env/DJDIR/include
|
||||||
|
INCDIR= /usr/include
|
||||||
|
|
||||||
|
# where to install calc realted things
|
||||||
|
#
|
||||||
|
# ${BINDIR} where to install calc binary files
|
||||||
|
# ${LIBDIR} where calc link library (*.a) files are installed
|
||||||
|
# ${CALC_SHAREDIR} where to install calc help, .cal, startup, config files
|
||||||
|
#
|
||||||
|
# NOTE: The install rule prepends installation paths with $T, which
|
||||||
|
# by default is empty. If $T is non-empty, then installation
|
||||||
|
# locations will be relative to the $T directory.
|
||||||
|
#
|
||||||
|
# For DJGPP, select:
|
||||||
|
#
|
||||||
|
# BINDIR= /dev/env/DJDIR/bin
|
||||||
|
# LIBDIR= /dev/env/DJDIR/lib
|
||||||
|
# CALC_SHAREDIR= /dev/env/DJDIR/share/calc
|
||||||
|
#
|
||||||
|
# If in doubt, set:
|
||||||
#
|
#
|
||||||
BINDIR= /usr/local/bin
|
|
||||||
# BINDIR= /usr/bin
|
# BINDIR= /usr/bin
|
||||||
#BINDIR= /usr/contrib/bin
|
# LIBDIR= /usr/lib
|
||||||
|
# CALC_SHAREDIR= /usr/share/calc
|
||||||
#
|
#
|
||||||
|
#BINDIR= /usr/local/bin
|
||||||
|
#BINDIR= /dev/env/DJDIR/bin
|
||||||
|
BINDIR= /usr/bin
|
||||||
|
|
||||||
|
#LIBDIR= /usr/local/lib
|
||||||
|
#LIBDIR= /dev/env/DJDIR/lib
|
||||||
|
LIBDIR= /usr/lib
|
||||||
|
|
||||||
|
#CALC_SHAREDIR= /usr/local/lib/calc
|
||||||
|
#CALC_SHAREDIR= /dev/env/DJDIR/share/calc
|
||||||
|
CALC_SHAREDIR= /usr/share/calc
|
||||||
|
|
||||||
|
# By default, these values are based CALC_SHAREDIR, INCDIR, BINDIR
|
||||||
|
# ---------------------------------------------------------------
|
||||||
|
# ${HELPDIR} where the help directory is installed
|
||||||
|
# ${CALC_INCDIR} where the calc include files are installed
|
||||||
|
# ${CUSTOMCALDIR} where custom *.cal files are installed
|
||||||
|
# ${CUSTOMHELPDIR} where custom help files are installed
|
||||||
|
# ${CUSTOMINCPDIR} where custom .h files are installed
|
||||||
|
# ${SCRIPTDIR} where calc shell scripts are installed
|
||||||
|
#
|
||||||
|
# NOTE: The install rule prepends installation paths with $T, which
|
||||||
|
# by default is empty. If $T is non-empty, then installation
|
||||||
|
# locations will be relative to the $T directory.
|
||||||
|
#
|
||||||
|
# If in doubt, set:
|
||||||
|
#
|
||||||
|
# HELPDIR= ${CALC_SHAREDIR}/help
|
||||||
|
# CALC_INCDIR= ${INCDIR}/calc
|
||||||
|
# CUSTOMCALDIR= ${CALC_SHAREDIR}/custom
|
||||||
|
# CUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelp
|
||||||
|
# CUSTOMINCDIR= ${CALC_INCDIR}/custom
|
||||||
|
# SCRIPTDIR= ${BINDIR}/cscript
|
||||||
|
#
|
||||||
|
HELPDIR= ${CALC_SHAREDIR}/help
|
||||||
|
CALC_INCDIR= ${INCDIR}/calc
|
||||||
|
CUSTOMCALDIR= ${CALC_SHAREDIR}/custom
|
||||||
|
CUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelp
|
||||||
|
CUSTOMINCDIR= ${CALC_INCDIR}/custom
|
||||||
SCRIPTDIR= ${BINDIR}/cscript
|
SCRIPTDIR= ${BINDIR}/cscript
|
||||||
|
|
||||||
|
# T - top level directory under which calc will be installed
|
||||||
|
#
|
||||||
|
# The calc install is performed under $T, the calc build is
|
||||||
|
# performed under /. The purpose for $T is to allow someone
|
||||||
|
# to install calc somewhere other than into the system area.
|
||||||
|
#
|
||||||
|
# For example, if:
|
||||||
|
#
|
||||||
|
# BINDIR= /usr/bin
|
||||||
|
# LIBDIR= /usr/lib
|
||||||
|
# CALC_SHAREDIR= /usr/share/calc
|
||||||
|
#
|
||||||
|
# and if:
|
||||||
|
#
|
||||||
|
# T= /var/tmp/testing
|
||||||
|
#
|
||||||
|
# Then the installation locations will be:
|
||||||
|
#
|
||||||
|
# calc binary files: /var/tmp/testing/usr/bin
|
||||||
|
# calc link library: /var/tmp/testing/usr/lib
|
||||||
|
# calc help, .cal ...: /var/tmp/testing/usr/share/calc
|
||||||
|
# ... etc ... /var/tmp/testing/...
|
||||||
|
#
|
||||||
|
# If $T is empty, calc is installed under /, which is the same
|
||||||
|
# top of tree for which it was built. If $T is non-empty, then
|
||||||
|
# calc is installed under $T, as if one had to chroot under
|
||||||
|
# $T for calc to operate.
|
||||||
|
#
|
||||||
|
# If in doubt, use T=
|
||||||
|
#
|
||||||
|
T=
|
||||||
|
|
||||||
# Makefile debug
|
# Makefile debug
|
||||||
#
|
#
|
||||||
# Q=@ do not echo internal makefile actions (quiet mode)
|
# Q=@ do not echo internal makefile actions (quiet mode)
|
||||||
@@ -59,13 +165,14 @@ CHMOD= chmod
|
|||||||
SED= sed
|
SED= sed
|
||||||
SORT= sort
|
SORT= sort
|
||||||
FMT= fmt
|
FMT= fmt
|
||||||
|
CMP= cmp
|
||||||
|
|
||||||
# The ${SCRIPT} list is the list of calc shell script files (without the .calc
|
# The ${SCRIPT} list is the list of calc shell script files (without the .calc
|
||||||
# extension) which will be installed.
|
# extension) which will be installed.
|
||||||
#
|
#
|
||||||
# The ${SCRIPT_SRC} is built from ${SCRIPT} and has the .calc extensions.
|
# The ${SCRIPT_SRC} is built from ${SCRIPT} and has the .calc extensions.
|
||||||
#
|
#
|
||||||
# This list is prodiced by the detaillist rule when no WARNINGS are detected.
|
# This list is produced by the detaillist rule when no WARNINGS are detected.
|
||||||
# To add a script:
|
# To add a script:
|
||||||
#
|
#
|
||||||
# 1) Name the file with a .calc filename extension
|
# 1) Name the file with a .calc filename extension
|
||||||
@@ -76,26 +183,36 @@ FMT= fmt
|
|||||||
#
|
#
|
||||||
# make detaillist
|
# make detaillist
|
||||||
#
|
#
|
||||||
SCRIPT= mersenne piforever plus simple
|
SCRIPT= 4dsphere fproduct mersenne piforever plus powerterm \
|
||||||
|
simple square
|
||||||
|
|
||||||
SCRIPT_SRC= mersenne.calc piforever.calc plus.calc simple.calc
|
SCRIPT_SRC= 4dsphere.calc fproduct.calc mersenne.calc \
|
||||||
|
piforever.calc plus.calc powerterm.calc simple.calc square.calc
|
||||||
|
|
||||||
# These files are found (but not built) in the distribution
|
# These files are found (but not built) in the distribution
|
||||||
#
|
#
|
||||||
DISTLIST= ${SCRIPT_SRC} ${MAKE_FILE}
|
DISTLIST= ${SCRIPT_SRC} ${MAKE_FILE} README
|
||||||
|
|
||||||
# These files are used to make (but not built) a calc .a library
|
# These files are used to make (but not build) a calc .a library
|
||||||
#
|
#
|
||||||
CALCLIBLIST=
|
CALCLIBLIST=
|
||||||
|
|
||||||
|
# complete list of targets
|
||||||
|
#
|
||||||
|
# NOTE: This list MUST be co-ordinated with the ${CSCRIPT_TARGETS} variable
|
||||||
|
# in the upper level ../Makefile
|
||||||
|
#
|
||||||
|
CSCRIPT_TARGETS= ${SCRIPT}
|
||||||
|
TARGETS= ${CSCRIPT_TARGETS}
|
||||||
|
|
||||||
# The reason for this Makefile
|
# The reason for this Makefile
|
||||||
#
|
#
|
||||||
all: ${SCRIPT} ${SCRIPT_SRC} .all
|
all: ${TARGETS} .all
|
||||||
|
|
||||||
# used by the upper level Makefile to determine of we have done all
|
# used by the upper level Makefile to determine if we have done all
|
||||||
#
|
#
|
||||||
# NOTE: Due to bogus shells found on one common system we must have
|
# NOTE: Due to bogus shells found on one common system we must have
|
||||||
# an non-emoty else clause for every if condition. *sigh*
|
# a non-empty else clause for every if condition. *sigh*
|
||||||
#
|
#
|
||||||
.all:
|
.all:
|
||||||
rm -f .all
|
rm -f .all
|
||||||
@@ -112,9 +229,11 @@ all: ${SCRIPT} ${SCRIPT_SRC} .all
|
|||||||
##
|
##
|
||||||
|
|
||||||
distlist: ${DISTLIST}
|
distlist: ${DISTLIST}
|
||||||
${Q}for i in ${DISTLIST}; do \
|
${Q}for i in ${DISTLIST} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
echo cscript/$$i; \
|
echo cscript/$$i; \
|
||||||
done | ${SORT}
|
fi; \
|
||||||
|
done | LANG=C ${SORT}
|
||||||
|
|
||||||
distdir:
|
distdir:
|
||||||
${Q}echo cscript
|
${Q}echo cscript
|
||||||
@@ -125,24 +244,28 @@ calcliblist:
|
|||||||
#
|
#
|
||||||
detaillist:
|
detaillist:
|
||||||
${Q}-(echo "xxxxxxx"; \
|
${Q}-(echo "xxxxxxx"; \
|
||||||
for i in ${SCRIPT}; do \
|
for i in ${SCRIPT} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
if [ ! -f RCS/$$i.calc,v ]; then \
|
if [ ! -f RCS/$$i.calc,v ]; then \
|
||||||
echo "WARNING: $$i.calc not under RCS control" 1>&2; \
|
echo "WARNING: $$i.calc not under RCS control" 1>&2; \
|
||||||
else \
|
else \
|
||||||
echo $$i; \
|
echo $$i; \
|
||||||
fi; \
|
fi; \
|
||||||
done | ${SORT}) | ${FMT} -70 | \
|
fi; \
|
||||||
|
done | LANG=C ${SORT}) | ${FMT} -70 | \
|
||||||
${SED} -e '1s/xxxxxxx/SCRIPT=/' -e '2,$$s/^/ /' \
|
${SED} -e '1s/xxxxxxx/SCRIPT=/' -e '2,$$s/^/ /' \
|
||||||
-e 's/$$/ \\/' -e '$$s/ \\$$//'
|
-e 's/$$/ \\/' -e '$$s/ \\$$//'
|
||||||
${Q}echo
|
${Q}echo
|
||||||
${Q}-(echo "xxxxxxxxxxx"; \
|
${Q}-(echo "xxxxxxxxxxx"; \
|
||||||
for i in ${SCRIPT}; do \
|
for i in ${SCRIPT} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
if [ ! -f RCS/$$i.calc,v ]; then \
|
if [ ! -f RCS/$$i.calc,v ]; then \
|
||||||
echo "WARNING: $$i.calc not under RCS control" 1>&2; \
|
echo "WARNING: $$i.calc not under RCS control" 1>&2; \
|
||||||
else \
|
else \
|
||||||
echo $$i.calc; \
|
echo $$i.calc; \
|
||||||
fi; \
|
fi; \
|
||||||
done | ${SORT}) | ${FMT} -70 | \
|
fi; \
|
||||||
|
done | LANG=C ${SORT}) | ${FMT} -70 | \
|
||||||
${SED} -e '1s/xxxxxxxxxxx/SCRIPT_SRC=/' -e '2,$$s/^/ /' \
|
${SED} -e '1s/xxxxxxxxxxx/SCRIPT_SRC=/' -e '2,$$s/^/ /' \
|
||||||
-e 's/$$/ \\/' -e '$$s/ \\$$//'
|
-e 's/$$/ \\/' -e '$$s/ \\$$//'
|
||||||
|
|
||||||
@@ -170,11 +293,13 @@ depend:
|
|||||||
${Q}echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > \
|
${Q}echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > \
|
||||||
makedep.out
|
makedep.out
|
||||||
${Q}echo "" >> makedep.out
|
${Q}echo "" >> makedep.out
|
||||||
${Q}for i in ${SCRIPT}; do \
|
${Q}for i in ${SCRIPT} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
echo "$$i: $$i.calc"; \
|
echo "$$i: $$i.calc"; \
|
||||||
echo ' rm -f $$@'; \
|
echo ' @rm -f $$@'; \
|
||||||
echo ' $${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!$${BINDIR}/calc:" $$?>$$@'; \
|
echo ' @$${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!$${BINDIR}/calc:" $$?>$$@'; \
|
||||||
echo ' $${CHMOD} +x $$@'; \
|
echo ' @$${CHMOD} +x $$@'; \
|
||||||
|
fi; \
|
||||||
done >> makedep.out
|
done >> makedep.out
|
||||||
${Q}echo sample dependency list formed
|
${Q}echo sample dependency list formed
|
||||||
${Q}echo forming new cscript/Makefile
|
${Q}echo forming new cscript/Makefile
|
||||||
@@ -184,7 +309,7 @@ depend:
|
|||||||
${Q}echo "" >> Makefile
|
${Q}echo "" >> Makefile
|
||||||
${Q}${SED} -n '3,$$p' makedep.out >> Makefile
|
${Q}${SED} -n '3,$$p' makedep.out >> Makefile
|
||||||
-${Q}rm -f makedep.out
|
-${Q}rm -f makedep.out
|
||||||
-${Q}if cmp -s Makefile.bak Makefile; then \
|
-${Q}if ${CMP} -s Makefile.bak Makefile; then \
|
||||||
echo 'sample Makefile was already up to date'; \
|
echo 'sample Makefile was already up to date'; \
|
||||||
mv -f Makefile.bak Makefile; \
|
mv -f Makefile.bak Makefile; \
|
||||||
else \
|
else \
|
||||||
@@ -199,49 +324,102 @@ depend:
|
|||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
##
|
||||||
|
#
|
||||||
|
# rpm rules
|
||||||
|
#
|
||||||
|
##
|
||||||
|
|
||||||
|
echo_inst_files:
|
||||||
|
${Q}for i in ${SCRIPT} /dev/null; do \
|
||||||
|
if [ X"$$i" != X"/dev/null" ]; then \
|
||||||
|
echo __file__ ${SCRIPTDIR}/$$i; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
|
##
|
||||||
|
#
|
||||||
|
# Utility rules
|
||||||
|
#
|
||||||
|
##
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -f makedep.out
|
-rm -f makedep.out
|
||||||
|
|
||||||
clobber:
|
clobber:
|
||||||
-rm -f ${SCRIPT}
|
-rm -f ${TARGETS}
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
-${Q}if [ ! -d ${BINDIR} ]; then \
|
-${Q}if [ ! -d $T${BINDIR} ]; then \
|
||||||
echo mkdir ${BINDIR}; \
|
echo mkdir $T${BINDIR}; \
|
||||||
mkdir ${BINDIR}; \
|
mkdir $T${BINDIR}; \
|
||||||
|
if [ ! -d "$T${BINDIR}" ]; then \
|
||||||
|
echo mkdir -p "$T${BINDIR}"; \
|
||||||
|
mkdir -p "$T${BINDIR}"; \
|
||||||
|
fi; \
|
||||||
|
echo ${CHMOD} 0755 $T${BINDIR}; \
|
||||||
|
${CHMOD} 0755 $T${BINDIR}; \
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi
|
fi
|
||||||
-${Q}if [ ! -d ${SCRIPTDIR} ]; then \
|
-${Q}if [ ! -d $T${SCRIPTDIR} ]; then \
|
||||||
echo mkdir ${SCRIPTDIR}; \
|
echo mkdir $T${SCRIPTDIR}; \
|
||||||
mkdir ${SCRIPTDIR}; \
|
mkdir $T${SCRIPTDIR}; \
|
||||||
|
if [ ! -d "$T${SCRIPTDIR}" ]; then \
|
||||||
|
echo mkdir -p "$T${SCRIPTDIR}"; \
|
||||||
|
mkdir -p "$T${SCRIPTDIR}"; \
|
||||||
|
fi; \
|
||||||
|
echo ${CHMOD} 0755 $T${SCRIPTDIR}; \
|
||||||
|
${CHMOD} 0755 $T${SCRIPTDIR}; \
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi
|
fi
|
||||||
${Q}for i in ${SCRIPT}; do \
|
${Q}for i in ${SCRIPT} /dev/null; do \
|
||||||
echo rm -f ${SCRIPTDIR}/$$i; \
|
if [ "$$i" = "/dev/null" ]; then \
|
||||||
rm -f ${SCRIPTDIR}/$$i; \
|
continue; \
|
||||||
echo cp $$i ${SCRIPTDIR}; \
|
fi; \
|
||||||
cp $$i ${SCRIPTDIR}; \
|
if ${CMP} -s $$i $T${SCRIPTDIR}/$$i; then \
|
||||||
echo ${CHMOD} 0555 ${SCRIPTDIR}/$$i; \
|
true; \
|
||||||
${CHMOD} 0555 ${SCRIPTDIR}/$$i; \
|
else \
|
||||||
|
rm -f $T${SCRIPTDIR}/$$i.new; \
|
||||||
|
cp -f $$i $T${SCRIPTDIR}/$$i.new; \
|
||||||
|
${CHMOD} 0555 $T${SCRIPTDIR}/$$i.new; \
|
||||||
|
mv -f $T${SCRIPTDIR}/$$i.new $T${SCRIPTDIR}/$$i; \
|
||||||
|
echo "installed $T${SCRIPTDIR}/$$i"; \
|
||||||
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||||
|
|
||||||
|
4dsphere: 4dsphere.calc
|
||||||
|
@rm -f $@
|
||||||
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
|
@${CHMOD} +x $@
|
||||||
|
fproduct: fproduct.calc
|
||||||
|
@rm -f $@
|
||||||
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
|
@${CHMOD} +x $@
|
||||||
mersenne: mersenne.calc
|
mersenne: mersenne.calc
|
||||||
rm -f $@
|
@rm -f $@
|
||||||
${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
${CHMOD} +x $@
|
@${CHMOD} +x $@
|
||||||
piforever: piforever.calc
|
piforever: piforever.calc
|
||||||
rm -f $@
|
@rm -f $@
|
||||||
${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
${CHMOD} +x $@
|
@${CHMOD} +x $@
|
||||||
plus: plus.calc
|
plus: plus.calc
|
||||||
rm -f $@
|
@rm -f $@
|
||||||
${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
${CHMOD} +x $@
|
@${CHMOD} +x $@
|
||||||
|
powerterm: powerterm.calc
|
||||||
|
@rm -f $@
|
||||||
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
|
@${CHMOD} +x $@
|
||||||
simple: simple.calc
|
simple: simple.calc
|
||||||
rm -f $@
|
@rm -f $@
|
||||||
${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
${CHMOD} +x $@
|
@${CHMOD} +x $@
|
||||||
|
square: square.calc
|
||||||
|
@rm -f $@
|
||||||
|
@${SED} -e "1s:^#!/usr/local/src/cmd/calc/calc:#!${BINDIR}/calc:" $?>$@
|
||||||
|
@${CHMOD} +x $@
|
||||||
|
88
cscript/README
Normal file
88
cscript/README
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
calc shell script examples
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
These calc shell scripts are provided because they serve as examples of
|
||||||
|
how use the calc language, and/or because the authors thought them to
|
||||||
|
be useful!
|
||||||
|
|
||||||
|
If you write something that you think is useful, please send it to:
|
||||||
|
|
||||||
|
calc-contrib at asthe dot com
|
||||||
|
|
||||||
|
[[ NOTE: Replace 'at' with @, 'dot' is with . and remove the spaces ]]
|
||||||
|
[[ NOTE: The EMail address uses 'asthe' and the web site URL uses 'isthe' ]]
|
||||||
|
|
||||||
|
For more info, see:
|
||||||
|
|
||||||
|
help script
|
||||||
|
help cscript
|
||||||
|
|
||||||
|
=-=
|
||||||
|
|
||||||
|
4dsphere
|
||||||
|
|
||||||
|
Determine if 6 points lie on the surface of a 4-dimensional sphere in R^4.
|
||||||
|
|
||||||
|
4dsphere x0 y0 z0 w0 x1 y1 z1 w1 ... x5 y5 z5 w5
|
||||||
|
|
||||||
|
x0 y0 z0 w0 point 0 in R^4
|
||||||
|
x1 y1 z1 w1 point 1 in R^4
|
||||||
|
... ...
|
||||||
|
x5 y5 z5 w5 point 5 in R^4
|
||||||
|
|
||||||
|
|
||||||
|
fproduct filename term ...
|
||||||
|
|
||||||
|
Write the big Endian product of terms to a file. Use - for stdout.
|
||||||
|
|
||||||
|
|
||||||
|
mersenne exp
|
||||||
|
|
||||||
|
Print the value of 2^exp-1.
|
||||||
|
|
||||||
|
|
||||||
|
piforever
|
||||||
|
|
||||||
|
Print the value of pi forever, or as long as you cpu / memory allows.
|
||||||
|
|
||||||
|
|
||||||
|
plus arg ...
|
||||||
|
|
||||||
|
Print the sum of 1 or more arguments.
|
||||||
|
|
||||||
|
|
||||||
|
powerterm [base_limit] value
|
||||||
|
|
||||||
|
Print the value as a sum (or difference) of powers of integers up
|
||||||
|
to and including powers <= base_limit. By default, base_limit is 10000.
|
||||||
|
|
||||||
|
|
||||||
|
simple
|
||||||
|
|
||||||
|
A trivial example of a calc shell script.
|
||||||
|
|
||||||
|
## Copyright (C) 1999 Landon Curt Noll
|
||||||
|
##
|
||||||
|
## Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
## the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
## as published by the Free Software Foundation.
|
||||||
|
##
|
||||||
|
## Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
## Public License for more details.
|
||||||
|
##
|
||||||
|
## A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
## distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
##
|
||||||
|
## @(#) $Revision: 29.10 $
|
||||||
|
## @(#) $Id: README,v 29.10 2001/06/10 19:34:40 chongo Exp $
|
||||||
|
## @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/README,v $
|
||||||
|
##
|
||||||
|
## Under source code control: 1999/12/17 10:23:40
|
||||||
|
## File existed as early as: 1999
|
||||||
|
##
|
||||||
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
88
cscript/fproduct.calc
Normal file
88
cscript/fproduct.calc
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
#!/usr/local/src/cmd/calc/calc -q -s -f
|
||||||
|
/*
|
||||||
|
* fproduct - write the big Endian product of terms to a file
|
||||||
|
*
|
||||||
|
* usage:
|
||||||
|
* fproduct filename term [term ...]
|
||||||
|
*
|
||||||
|
* filename where to write the product, use - for stdout
|
||||||
|
* term ... terms to multiply
|
||||||
|
*
|
||||||
|
* Copyright (C) 2001 Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 29.2 $
|
||||||
|
* @(#) $Id: fproduct.calc,v 29.2 2001/06/06 09:06:29 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/fproduct.calc,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 2001/04/07 20:13:11
|
||||||
|
* File existed as early as: 2001
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* parse args
|
||||||
|
*/
|
||||||
|
argc = argv();
|
||||||
|
if (argc < 2) {
|
||||||
|
fprintf(files(2), "usage: %s term [term ...]\n", argv(0));
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
filename = argv(1);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* build the product
|
||||||
|
*/
|
||||||
|
product = 1;
|
||||||
|
for (i=2; i < argc; ++i) {
|
||||||
|
product *= eval(argv(i));
|
||||||
|
}
|
||||||
|
product = abs(product);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* open the file for writing, "-" is stdout
|
||||||
|
*/
|
||||||
|
if (filename == "-") {
|
||||||
|
fd = files(1);
|
||||||
|
} else {
|
||||||
|
fd = fopen(filename, "w");
|
||||||
|
if (!isfile(fd)) quit "be2file: cannot open file for writing";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* write the octets to the file
|
||||||
|
*
|
||||||
|
* The most significant bits of the integer become the first file octets.
|
||||||
|
*/
|
||||||
|
if (product > 0) {
|
||||||
|
octlen = int((highbit(product)+8) / 8);
|
||||||
|
for (i=octlen-1; i >= 0; --i) {
|
||||||
|
fputc(fd, char(product >> (i*8)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cleanup
|
||||||
|
*/
|
||||||
|
if (filename != "-") {
|
||||||
|
fclose(fd);
|
||||||
|
}
|
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/local/src/cmd/calc/calc -S
|
#!/usr/local/src/cmd/calc/calc -q -s -f
|
||||||
#
|
#
|
||||||
# mersenne - print the value of a mersenne number
|
# mersenne - print the value of a mersenne number
|
||||||
#
|
#
|
||||||
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.3 $
|
||||||
# @(#) $Id: mersenne.calc,v 29.1 1999/12/14 09:15:35 chongo Exp $
|
# @(#) $Id: mersenne.calc,v 29.3 2000/12/15 14:56:54 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/mersenne.calc,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/mersenne.calc,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1999/11/30 00:09:01;
|
# Under source code control: 1999/11/30 00:09:01;
|
||||||
# File existed as early as: 1999
|
# File existed as early as: 1999
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
|
||||||
# usage:
|
# usage:
|
||||||
# mersenne exp
|
# mersenne exp
|
||||||
@@ -35,13 +35,19 @@
|
|||||||
/*
|
/*
|
||||||
* parse args
|
* parse args
|
||||||
*/
|
*/
|
||||||
if (argv() != 1) {
|
if (argv() != 2) {
|
||||||
/* we include the name of this script in the error message */
|
/* we include the name of this script in the error message */
|
||||||
fprintf(files(2), "usage: %s exp\n", config("program"));
|
fprintf(files(2), "usage: %s exp\n", config("program"));
|
||||||
abort "wrong number of args";
|
abort "wrong number of args";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
global n = eval(argv(1));
|
||||||
|
|
||||||
|
if (!isint(n) || n <= 0) {
|
||||||
|
quit "Argument to be a positive integer";
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* print the decimal value of 2^n-1
|
* print the decimal value of 2^n-1
|
||||||
*/
|
*/
|
||||||
print "2^": argv(0) : "-1 =", 2^eval(argv(0))-1;
|
print "2^": n : "-1 =", 2^n-1;
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/local/src/cmd/calc/calc -S
|
#!/usr/local/src/cmd/calc/calc -q -f
|
||||||
#
|
#
|
||||||
# piforever - print digits of pi forever (or as long as your mem/cpu allow)
|
# piforever - print digits of pi forever (or as long as your mem/cpu allow)
|
||||||
#
|
#
|
||||||
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.3 $
|
||||||
# @(#) $Id: piforever.calc,v 29.1 1999/12/14 09:15:36 chongo Exp $
|
# @(#) $Id: piforever.calc,v 29.3 2000/12/15 14:56:54 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/piforever.calc,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/piforever.calc,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1999/11/30 00:11:36
|
# Under source code control: 1999/11/30 00:11:36
|
||||||
# File existed as early as: 1999
|
# File existed as early as: 1999
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
|
||||||
# usage:
|
# usage:
|
||||||
# piforever
|
# piforever
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/local/src/cmd/calc/calc -S
|
#!/usr/local/src/cmd/calc/calc -q -s -f
|
||||||
#
|
#
|
||||||
# plus - add two or more arguments together
|
# plus - add two or more arguments together
|
||||||
#
|
#
|
||||||
@@ -18,15 +18,15 @@
|
|||||||
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
# received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#
|
#
|
||||||
# @(#) $Revision: 29.1 $
|
# @(#) $Revision: 29.3 $
|
||||||
# @(#) $Id: plus.calc,v 29.1 1999/12/14 09:15:36 chongo Exp $
|
# @(#) $Id: plus.calc,v 29.3 2000/12/15 14:56:54 chongo Exp $
|
||||||
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/plus.calc,v $
|
# @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/plus.calc,v $
|
||||||
#
|
#
|
||||||
# Under source code control: 1999/11/29 10:22:37
|
# Under source code control: 1999/11/29 10:22:37
|
||||||
# File existed as early as: 1999
|
# File existed as early as: 1999
|
||||||
#
|
#
|
||||||
# chongo <was here> /\oo/\ http://reality.sgi.com/chongo/
|
# chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
# Share and enjoy! :-) http://reality.sgi.com/chongo/tech/comp/calc/
|
# Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
|
||||||
# usage:
|
# usage:
|
||||||
# plus val ...
|
# plus val ...
|
||||||
@@ -35,19 +35,19 @@
|
|||||||
/*
|
/*
|
||||||
* parse args
|
* parse args
|
||||||
*/
|
*/
|
||||||
if (argv() < 1) {
|
if (argv() < 2) {
|
||||||
/* we include the name of this script in the error message */
|
/* we include the name of this script in the error message */
|
||||||
fprintf(files(2), "usage: %s value ...\n", config("program"));
|
fprintf(files(2), "usage: %s value ...\n", config("program"));
|
||||||
abort "not enough args";
|
abort "not enough args";
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* print the sum of the 2 args
|
* print the sum of the args
|
||||||
*
|
*
|
||||||
* Since args are strings, we must eval them before using them numerically.
|
* Since args are strings, we must eval them before using them numerically.
|
||||||
*/
|
*/
|
||||||
sum = 0;
|
sum = 0;
|
||||||
for (i=0; i < argv(); ++i) {
|
for (i=1; i < argv(); ++i) {
|
||||||
sum += eval(argv(i));
|
sum += eval(argv(i));
|
||||||
}
|
}
|
||||||
print sum;
|
print sum;
|
||||||
|
185
cscript/powerterm.calc
Normal file
185
cscript/powerterm.calc
Normal file
@@ -0,0 +1,185 @@
|
|||||||
|
#!/usr/local/src/cmd/calc/calc -q -s -f
|
||||||
|
/*
|
||||||
|
* powerterm - print the argument as a sum of powers of integers
|
||||||
|
*
|
||||||
|
* usage:
|
||||||
|
* powerterm [base_limit] value
|
||||||
|
*
|
||||||
|
* base_limit largest base we will consider (def: 10000)
|
||||||
|
* value value to convert into sums of powers of integers
|
||||||
|
*
|
||||||
|
* Copyright (C) 2001 Landon Curt Noll
|
||||||
|
*
|
||||||
|
* Calc is open software; you can redistribute it and/or modify it under
|
||||||
|
* the powerterm of the version 2.1 of the GNU Lesser General Public License
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* Calc is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
||||||
|
* Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of version 2.1 of the GNU Lesser General Public License is
|
||||||
|
* distributed with calc under the filename COPYING-LGPL. You should have
|
||||||
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* @(#) $Revision: 29.6 $
|
||||||
|
* @(#) $Id: powerterm.calc,v 29.6 2001/06/06 09:06:29 chongo Exp $
|
||||||
|
* @(#) $Source: /usr/local/src/cmd/calc/cscript/RCS/powerterm.calc,v $
|
||||||
|
*
|
||||||
|
* Under source code control: 2001/04/24 23:49:11
|
||||||
|
* File existed as early as: 2001
|
||||||
|
*
|
||||||
|
* chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
||||||
|
* Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* parse args
|
||||||
|
*/
|
||||||
|
config("verbose_quit", 0),;
|
||||||
|
base_lim = 10000; /* default: highest base we will consider */
|
||||||
|
if (argv() < 2 || argv() > 3) {
|
||||||
|
fprintf(files(2), "usage: %s [base_limit] value\n", argv(0));
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
if (argv() == 3) {
|
||||||
|
x = eval(argv(2));
|
||||||
|
base_lim = eval(argv(1));
|
||||||
|
} else {
|
||||||
|
x = eval(argv(1));
|
||||||
|
}
|
||||||
|
if (! isint(x)) {
|
||||||
|
fprintf(files(2), "%s: value must be an integer\n");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
if (! isint(base_lim)) {
|
||||||
|
fprintf(files(2), "%s: base limit must be an integer\n");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
if (base_lim <= 1) {
|
||||||
|
fprintf(files(2), "%s: base limit is too small\n");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
++base_lim;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* setup loop variables
|
||||||
|
*/
|
||||||
|
term = 0; /* number of powerterm found */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* log constants
|
||||||
|
*/
|
||||||
|
if (base_lim <= 2^20+1) { /* 2^20 requires ~96 Megs of memory */
|
||||||
|
mat lni[base_lim]; /* log of integers */
|
||||||
|
for (i=2; i < base_lim; ++i) {
|
||||||
|
lni[i] = ln(i);
|
||||||
|
}
|
||||||
|
have_lni = 1; /* have lni[x] array */
|
||||||
|
} else {
|
||||||
|
mat lni[1]; /* not used */
|
||||||
|
have_lni = 0; /* base_lim too large for array */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* remove nestest powers
|
||||||
|
*/
|
||||||
|
while (abs(x) >= base_lim) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* look for the nearest power
|
||||||
|
*/
|
||||||
|
lnx = ln(abs(x)); /* log of the remaining co-factor */
|
||||||
|
closest = 0.5;
|
||||||
|
base = 1;
|
||||||
|
exponent = 0;
|
||||||
|
if (have_lni) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* use pre-calculated log array when looking for the nearest power
|
||||||
|
*/
|
||||||
|
for (i = 2; i < base_lim; ++i) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* determine exponent closeness to an integer
|
||||||
|
*/
|
||||||
|
ex = lnx / lni[i];
|
||||||
|
power = int(ex + 0.5);
|
||||||
|
diff = ex - power;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* look for a closer power
|
||||||
|
*/
|
||||||
|
if (abs(diff) < closest) {
|
||||||
|
closest = abs(diff);
|
||||||
|
base = i;
|
||||||
|
exponent = power;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* re-calculate logs when looking for the nearest power
|
||||||
|
*/
|
||||||
|
for (i = 2; i < base_lim; ++i) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* determine exponent closeness to an integer
|
||||||
|
*/
|
||||||
|
ex = lnx / ln(i);
|
||||||
|
power = int(ex + 0.5);
|
||||||
|
diff = ex - power;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* look for a closer power
|
||||||
|
*/
|
||||||
|
if (abs(diff) < closest) {
|
||||||
|
closest = abs(diff);
|
||||||
|
base = i;
|
||||||
|
exponent = power;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* output current term and then subtract it
|
||||||
|
*/
|
||||||
|
if (x != 0) {
|
||||||
|
if (x < 0) {
|
||||||
|
print "-",;
|
||||||
|
} else if (term > 0) {
|
||||||
|
print "+",;
|
||||||
|
}
|
||||||
|
if (exponent > 1) {
|
||||||
|
print base: "^": exponent,;
|
||||||
|
} else {
|
||||||
|
print base,;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* subtract (or add) this near power
|
||||||
|
*/
|
||||||
|
if (x < 0) {
|
||||||
|
x = x + base^exponent;
|
||||||
|
} else {
|
||||||
|
x = x - base^exponent;
|
||||||
|
}
|
||||||
|
++term;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* print the final term
|
||||||
|
*/
|
||||||
|
if (x < 0) {
|
||||||
|
print "-", -x;
|
||||||
|
} else if (x > 0) {
|
||||||
|
print "+", x;
|
||||||
|
} else {
|
||||||
|
print "";
|
||||||
|
}
|
||||||
|
exit;
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user