2020-11-26 17:27:07 +00:00
|
|
|
.\"
|
|
|
|
.\" SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
.\"
|
2021-01-31 19:56:48 +00:00
|
|
|
.\" Copyright (c) 2018-2021 Gavin D. Howard and contributors.
|
2020-11-26 17:27:07 +00:00
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions are met:
|
|
|
|
.\"
|
|
|
|
.\" * Redistributions of source code must retain the above copyright notice,
|
|
|
|
.\" this list of conditions and the following disclaimer.
|
|
|
|
.\"
|
|
|
|
.\" * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
.\" this list of conditions and the following disclaimer in the documentation
|
|
|
|
.\" and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
.\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2021-04-06 08:44:52 +00:00
|
|
|
.TH "BCL" "3" "April 2021" "Gavin D. Howard" "Libraries Manual"
|
2020-11-26 17:27:07 +00:00
|
|
|
.SH NAME
|
|
|
|
.PP
|
|
|
|
bcl - library of arbitrary precision decimal arithmetic
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.SS Use
|
|
|
|
.PP
|
|
|
|
\f[I]#include <bcl.h>\f[R]
|
|
|
|
.PP
|
|
|
|
Link with \f[I]-lbcl\f[R].
|
|
|
|
.SS Signals
|
|
|
|
.PP
|
|
|
|
This procedure will allow clients to use signals to interrupt
|
|
|
|
computations running in bcl(3).
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bool bcl_running(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Setup
|
|
|
|
.PP
|
|
|
|
These items allow clients to set up bcl(3).
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_init(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_free(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bool bcl_abortOnFatalError(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_setAbortOnFatalError(bool\f[R] \f[I]abrt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_gc(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Contexts
|
|
|
|
.PP
|
|
|
|
These items will allow clients to handle contexts, which are isolated
|
|
|
|
from each other.
|
|
|
|
This allows more than one client to use bcl(3) in the same program.
|
|
|
|
.PP
|
|
|
|
\f[B]struct BclCtxt;\f[R]
|
|
|
|
.PP
|
|
|
|
\f[B]typedef struct BclCtxt* BclContext;\f[R]
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclContext bcl_ctxt_create(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_ctxt_free(BclContext\f[R] \f[I]ctxt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_pushContext(BclContext\f[R] \f[I]ctxt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_popContext(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclContext bcl_context(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_ctxt_freeNums(BclContext\f[R] \f[I]ctxt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]size_t bcl_ctxt_scale(BclContext\f[R] \f[I]ctxt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_ctxt_setScale(BclContext\f[R] \f[I]ctxt\f[R]**, size_t**
|
|
|
|
\f[I]scale\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]size_t bcl_ctxt_ibase(BclContext\f[R] \f[I]ctxt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_ctxt_setIbase(BclContext\f[R] \f[I]ctxt\f[R]**, size_t**
|
|
|
|
\f[I]ibase\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]size_t bcl_ctxt_obase(BclContext\f[R] \f[I]ctxt\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_ctxt_setObase(BclContext\f[R] \f[I]ctxt\f[R]**, size_t**
|
|
|
|
\f[I]obase\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Errors
|
|
|
|
.PP
|
|
|
|
These items allow clients to handle errors.
|
|
|
|
.PP
|
|
|
|
\f[B]typedef enum BclError BclError;\f[R]
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_err(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Numbers
|
|
|
|
.PP
|
|
|
|
These items allow clients to manipulate and query the
|
|
|
|
arbitrary-precision numbers managed by bcl(3).
|
|
|
|
.PP
|
|
|
|
\f[B]typedef struct { size_t i; } BclNumber;\f[R]
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_num_create(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_num_free(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bool bcl_num_neg(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_num_setNeg(BclNumber\f[R] \f[I]n\f[R]**, bool**
|
|
|
|
\f[I]neg\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]size_t bcl_num_scale(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_num_setScale(BclNumber\f[R] \f[I]n\f[R]**, size_t**
|
|
|
|
\f[I]scale\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]size_t bcl_num_len(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Conversion
|
|
|
|
.PP
|
|
|
|
These items allow clients to convert numbers into and from strings and
|
|
|
|
integers.
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_parse(const char *restrict\f[R] \f[I]val\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]char* bcl_string(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_bigdig(BclNumber\f[R] \f[I]n\f[R]**, BclBigDig
|
|
|
|
*\f[I]\f[BI]result\f[I]\f[R]);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_bigdig2num(BclBigDig\f[R] \f[I]val\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Math
|
|
|
|
.PP
|
|
|
|
These items allow clients to run math on numbers.
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_add(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_sub(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_mul(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_div(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_mod(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_pow(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_lshift(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_rshift(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_sqrt(BclNumber\f[R] \f[I]a\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_divmod(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**, BclNumber *\f[I]\f[BI]c\f[I]\f[R], BclNumber
|
|
|
|
*\f[I]\f[BI]d\f[I]\f[R]);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_modexp(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**, BclNumber** \f[I]c\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Miscellaneous
|
|
|
|
.PP
|
|
|
|
These items are miscellaneous.
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_zero(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_one(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]ssize_t bcl_cmp(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_copy(BclNumber\f[R] \f[I]d\f[R]**, BclNumber**
|
|
|
|
\f[I]s\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_dup(BclNumber\f[R] \f[I]s\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Pseudo-Random Number Generator
|
|
|
|
.PP
|
|
|
|
These items allow clients to manipulate the seeded pseudo-random number
|
|
|
|
generator in bcl(3).
|
|
|
|
.PP
|
|
|
|
\f[B]#define BCL_SEED_ULONGS\f[R]
|
|
|
|
.PP
|
|
|
|
\f[B]#define BCL_SEED_SIZE\f[R]
|
|
|
|
.PP
|
|
|
|
\f[B]typedef unsigned long BclBigDig;\f[R]
|
|
|
|
.PP
|
|
|
|
\f[B]typedef unsigned long BclRandInt;\f[R]
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_irand(BclNumber\f[R] \f[I]a\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_frand(size_t\f[R] \f[I]places\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_ifrand(BclNumber\f[R] \f[I]a\f[R]**, size_t**
|
|
|
|
\f[I]places\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_rand_seedWithNum(BclNumber\f[R] \f[I]n\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclError bcl_rand_seed(unsigned char\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[I]seed\f[R]**[\f[I]\f[BI]BC_SEED_SIZE\f[I]\f[R]]);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_rand_reseed(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_rand_seed2num(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclRandInt bcl_rand_int(\f[BI]\f[I]void\f[BI]\f[B]);\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclRandInt bcl_rand_bounded(BclRandInt\f[R] \f[I]bound\f[R]**);**
|
2020-11-26 17:27:07 +00:00
|
|
|
.SH DESCRIPTION
|
|
|
|
.PP
|
|
|
|
bcl(3) is a library that implements arbitrary-precision decimal math, as
|
|
|
|
standardized by
|
|
|
|
POSIX (https://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html)
|
|
|
|
in bc(1).
|
|
|
|
.PP
|
|
|
|
bcl(3) is async-signal-safe if
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R] is used properly.
|
2020-11-26 17:27:07 +00:00
|
|
|
(See the \f[B]SIGNAL HANDLING\f[R] section.)
|
|
|
|
.PP
|
|
|
|
All of the items in its interface are described below.
|
|
|
|
See the documentation for each function for what each function can
|
|
|
|
return.
|
|
|
|
.SS Signals
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]void bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: An async-signal-safe function that can be called from a signal
|
|
|
|
handler.
|
2020-11-26 17:27:07 +00:00
|
|
|
If called from a signal handler on the same thread as any executing
|
|
|
|
bcl(3) functions, it will interrupt the functions and force them to
|
|
|
|
return early.
|
|
|
|
It is undefined behavior if this function is called from a thread that
|
|
|
|
is \f[I]not\f[R] executing any bcl(3) functions while any bcl(3)
|
|
|
|
functions are executing.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If execution *is* interrupted, **bcl_handleSignal(***void***)** does *not*
|
2020-11-26 17:27:07 +00:00
|
|
|
return to its caller.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
See the **SIGNAL HANDLING** section.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]bool bcl_running(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: An async-signal-safe function that can be called from a signal
|
|
|
|
handler.
|
2020-11-26 17:27:07 +00:00
|
|
|
It will return \f[B]true\f[R] if any bcl(3) procedures are running,
|
|
|
|
which means it is safe to call
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
Otherwise, it returns \f[B]false\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
See the **SIGNAL HANDLING** section.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Setup
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclError bcl_init(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Initializes this library.
|
2020-11-26 17:27:07 +00:00
|
|
|
This function can be called multiple times, but each call must be
|
2021-04-06 08:44:52 +00:00
|
|
|
matched by a call to \f[B]bcl_free(\f[BI]\f[I]void\f[BI]\f[B])\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
This is to make it possible for multiple libraries and applications to
|
|
|
|
initialize bcl(3) without problem.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
|
|
|
|
This function must be the first one clients call. Calling any other
|
|
|
|
function without calling this one first is undefined behavior.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_free(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Decrements bcl(3)\[aq]s reference count and frees the data associated
|
2020-11-26 17:27:07 +00:00
|
|
|
with it if the reference count is \f[B]0\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
This function must be the last one clients call. Calling this function
|
|
|
|
before calling any other function is undefined behavior.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bool bcl_abortOnFatalError(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Queries and returns the current state of calling \f[B]abort()\f[R] on
|
2020-11-26 17:27:07 +00:00
|
|
|
fatal errors.
|
|
|
|
If \f[B]true\f[R] is returned, bcl(3) will cause a \f[B]SIGABRT\f[R] if
|
|
|
|
a fatal error occurs.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
If activated, clients do not need to check for fatal errors.
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_setAbortOnFatalError(bool\f[R] \f[I]abrt\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets the state of calling \f[B]abort()\f[R] on fatal errors.
|
2020-11-26 17:27:07 +00:00
|
|
|
If \f[I]abrt\f[R] is \f[B]false\f[R], bcl(3) will not cause a
|
|
|
|
\f[B]SIGABRT\f[R] on fatal errors after the call.
|
|
|
|
If \f[I]abrt\f[R] is \f[B]true\f[R], bcl(3) will cause a
|
|
|
|
\f[B]SIGABRT\f[R] on fatal errors after the call.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
If activated, clients do not need to check for fatal errors.
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_gc(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Garbage collects cached instances of arbitrary-precision numbers.
|
2020-11-26 17:27:07 +00:00
|
|
|
This only frees the memory of numbers that are \f[I]not\f[R] in use, so
|
|
|
|
it is safe to call at any time.
|
|
|
|
.SS Contexts
|
|
|
|
.PP
|
|
|
|
All procedures that take a \f[B]BclContext\f[R] parameter a require a
|
|
|
|
valid context as an argument.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]struct BclCtxt\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A forward declaration for a hidden \f[B]struct\f[R] type.
|
2020-11-26 17:27:07 +00:00
|
|
|
Clients cannot access the internals of the \f[B]struct\f[R] type
|
|
|
|
directly.
|
|
|
|
All interactions with the type are done through pointers.
|
|
|
|
See \f[B]BclContext\f[R] below.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BclContext\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A typedef to a pointer of \f[B]struct BclCtxt\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
This is the only handle clients can get to \f[B]struct BclCtxt\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
A **BclContext** contains the values **scale**, **ibase**, and **obase**, as
|
|
|
|
well as a list of numbers.
|
|
|
|
|
|
|
|
**scale** is a value used to control how many decimal places calculations
|
|
|
|
should use. A value of **0** means that calculations are done on integers
|
|
|
|
only, where applicable, and a value of 20, for example, means that all
|
|
|
|
applicable calculations return results with 20 decimal places. The default
|
|
|
|
is **0**.
|
|
|
|
|
|
|
|
**ibase** is a value used to control the input base. The minimum **ibase**
|
|
|
|
is **2**, and the maximum is **36**. If **ibase** is **2**, numbers are
|
|
|
|
parsed as though they are in binary, and any digits larger than **1** are
|
|
|
|
clamped. Likewise, a value of **10** means that numbers are parsed as though
|
|
|
|
they are decimal, and any larger digits are clamped. The default is **10**.
|
|
|
|
|
|
|
|
**obase** is a value used to control the output base. The minimum **obase**
|
|
|
|
is **0** and the maximum is **BC_BASE_MAX** (see the **LIMITS** section).
|
|
|
|
|
|
|
|
Numbers created in one context are not valid in another context. It is
|
|
|
|
undefined behavior to use a number created in a different context. Contexts
|
|
|
|
are meant to isolate the numbers used by different clients in the same
|
|
|
|
application.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclContext bcl_ctxt_create(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Creates a context and returns it.
|
2020-11-26 17:27:07 +00:00
|
|
|
Returns \f[B]NULL\f[R] if there was an error.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]void bcl_ctxt_free(BclContext\f[R] \f[I]ctxt\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Frees \f[I]ctxt\f[R], after which it is no longer valid.
|
2020-11-26 17:27:07 +00:00
|
|
|
It is undefined behavior to attempt to use an invalid context.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclError bcl_pushContext(BclContext\f[R] \f[I]ctxt\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Pushes \f[I]ctxt\f[R] onto bcl(3)\[aq]s stack of contexts.
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]ctxt\f[R] must have been created with
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_ctxt_create(\f[BI]\f[I]void\f[BI]\f[B])\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
|
|
|
|
There *must* be a valid context to do any arithmetic.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_popContext(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Pops the current context off of the stack, if one exists.
|
|
|
|
.PP
|
|
|
|
\f[B]BclContext bcl_context(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Returns the current context, or \f[B]NULL\f[R] if no context exists.
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_ctxt_freeNums(BclContext\f[R] \f[I]ctxt\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Frees all numbers in use that are associated with \f[I]ctxt\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
It is undefined behavior to attempt to use a number associated with
|
|
|
|
\f[I]ctxt\f[R] after calling this procedure unless such numbers have
|
2021-04-06 08:44:52 +00:00
|
|
|
been created with \f[B]bcl_num_create(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
after calling this procedure.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]size_t bcl_ctxt_scale(BclContext\f[R] \f[I]ctxt\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns the \f[B]scale\f[R] for given context.
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_ctxt_setScale(BclContext\f[R] \f[I]ctxt\f[R]**, size_t**
|
|
|
|
\f[I]scale\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets the \f[B]scale\f[R] for the given context to the argument
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]scale\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]size_t bcl_ctxt_ibase(BclContext\f[R] \f[I]ctxt\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns the \f[B]ibase\f[R] for the given context.
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_ctxt_setIbase(BclContext\f[R] \f[I]ctxt\f[R]**, size_t**
|
|
|
|
\f[I]ibase\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets the \f[B]ibase\f[R] for the given context to the argument
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]ibase\f[R].
|
|
|
|
If the argument \f[I]ibase\f[R] is invalid, it clamped, so an
|
|
|
|
\f[I]ibase\f[R] of \f[B]0\f[R] or \f[B]1\f[R] is clamped to \f[B]2\f[R],
|
|
|
|
and any values above \f[B]36\f[R] are clamped to \f[B]36\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]size_t bcl_ctxt_obase(BclContext\f[R] \f[I]ctxt\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns the \f[B]obase\f[R] for the given context.
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_ctxt_setObase(BclContext\f[R] \f[I]ctxt\f[R]**, size_t**
|
|
|
|
\f[I]obase\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets the \f[B]obase\f[R] for the given context to the argument
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]obase\f[R].
|
|
|
|
.SS Errors
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BclError\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: An \f[B]enum\f[R] of possible error codes.
|
2020-11-26 17:27:07 +00:00
|
|
|
See the \f[B]ERRORS\f[R] section for a complete listing the codes.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclError bcl_err(BclNumber\f[R] \f[I]n\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Checks for errors in a \f[B]BclNumber\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
All functions that can return a \f[B]BclNumber\f[R] can encode an error
|
|
|
|
in the number, and this function will return the error, if any.
|
|
|
|
If there was no error, it will return \f[B]BCL_ERROR_NONE\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
There must be a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Numbers
|
|
|
|
.PP
|
|
|
|
All procedures in this section require a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BclNumber\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A handle to an arbitrary-precision number.
|
2020-11-26 17:27:07 +00:00
|
|
|
The actual number type is not exposed; the \f[B]BclNumber\f[R] handle is
|
|
|
|
the only way clients can refer to instances of arbitrary-precision
|
|
|
|
numbers.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclNumber bcl_num_create(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Creates and returns a \f[B]BclNumber\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]void bcl_num_free(BclNumber\f[R] \f[I]n\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Frees \f[I]n\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
It is undefined behavior to use \f[I]n\f[R] after calling this function.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]bool bcl_num_neg(BclNumber\f[R] \f[I]n\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns \f[B]true\f[R] if \f[I]n\f[R] is negative, \f[B]false\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
otherwise.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]void bcl_num_setNeg(BclNumber\f[R] \f[I]n\f[R]**, bool**
|
|
|
|
\f[I]neg\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets \f[I]n\f[R]\[aq]s sign to \f[I]neg\f[R], where \f[B]true\f[R] is
|
2020-11-26 17:27:07 +00:00
|
|
|
negative, and \f[B]false\f[R] is positive.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]size_t bcl_num_scale(BclNumber\f[R] \f[I]n\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns the \f[I]scale\f[R] of \f[I]n\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
The *scale* of a number is the number of decimal places it has after the
|
|
|
|
radix (decimal point).
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]BclError bcl_num_setScale(BclNumber\f[R] \f[I]n\f[R]**, size_t**
|
|
|
|
\f[I]scale\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets the \f[I]scale\f[R] of \f[I]n\f[R] to the argument
|
|
|
|
\f[I]scale\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
If the argument \f[I]scale\f[R] is greater than the \f[I]scale\f[R] of
|
|
|
|
\f[I]n\f[R], \f[I]n\f[R] is extended.
|
|
|
|
If the argument \f[I]scale\f[R] is less than the \f[I]scale\f[R] of
|
|
|
|
\f[I]n\f[R], \f[I]n\f[R] is truncated.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]size_t bcl_num_len(BclNumber\f[R] \f[I]n\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns the number of \f[I]significant decimal digits\f[R] in
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]n\f[R].
|
|
|
|
.SS Conversion
|
|
|
|
.PP
|
|
|
|
All procedures in this section require a valid current context.
|
|
|
|
.PP
|
|
|
|
All procedures in this section consume the given \f[B]BclNumber\f[R]
|
|
|
|
arguments that are not given to pointer arguments.
|
|
|
|
See the \f[B]Consumption and Propagation\f[R] subsection below.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclNumber bcl_parse(const char *restrict\f[R] \f[I]val\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Parses a number string according to the current context\[aq]s
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]ibase\f[R] and returns the resulting number.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*val* must be non-**NULL** and a valid string. See
|
|
|
|
**BCL_ERROR_PARSE_INVALID_STR** in the **ERRORS** section for more
|
|
|
|
information.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_PARSE_INVALID_STR**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]char* bcl_string(BclNumber\f[R] \f[I]n\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Returns a string representation of \f[I]n\f[R] according the the
|
|
|
|
current context\[aq]s \f[B]ibase\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
The string is dynamically allocated and must be freed by the caller.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*n* is consumed; it cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_bigdig(BclNumber\f[R] \f[I]n\f[R]**, BclBigDig
|
|
|
|
*\f[I]\f[BI]result\f[I]\f[R])**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Converts \f[I]n\f[R] into a \f[B]BclBigDig\f[R] and returns the result
|
|
|
|
in the space pointed to by \f[I]result\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* must be smaller than **BC_OVERFLOW_MAX**. See the **LIMITS** section.
|
|
|
|
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_OVERFLOW**
|
|
|
|
|
|
|
|
*n* is consumed; it cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_bigdig2num(BclBigDig\f[R] \f[I]val\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Creates a \f[B]BclNumber\f[R] from \f[I]val\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Math
|
|
|
|
.PP
|
|
|
|
All procedures in this section require a valid current context.
|
|
|
|
.PP
|
|
|
|
All procedures in this section can return the following errors:
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[B]BCL_ERROR_INVALID_NUM\f[R]
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[B]BCL_ERROR_INVALID_CONTEXT\f[R]
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[B]BCL_ERROR_FATAL_ALLOC_ERR\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclNumber bcl_add(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Adds \f[I]a\f[R] and \f[I]b\f[R] and returns the result.
|
2020-11-26 17:27:07 +00:00
|
|
|
The \f[I]scale\f[R] of the result is the max of the \f[I]scale\f[R]s of
|
|
|
|
\f[I]a\f[R] and \f[I]b\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_sub(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Subtracts \f[I]b\f[R] from \f[I]a\f[R] and returns the result.
|
2020-11-26 17:27:07 +00:00
|
|
|
The \f[I]scale\f[R] of the result is the max of the \f[I]scale\f[R]s of
|
|
|
|
\f[I]a\f[R] and \f[I]b\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_mul(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Multiplies \f[I]a\f[R] and \f[I]b\f[R] and returns the result.
|
2020-11-26 17:27:07 +00:00
|
|
|
If \f[I]ascale\f[R] is the \f[I]scale\f[R] of \f[I]a\f[R] and
|
|
|
|
\f[I]bscale\f[R] is the \f[I]scale\f[R] of \f[I]b\f[R], the
|
|
|
|
\f[I]scale\f[R] of the result is equal to
|
|
|
|
\f[B]min(ascale+bscale,max(scale,ascale,bscale))\f[R], where
|
|
|
|
\f[B]min()\f[R] and \f[B]max()\f[R] return the obvious values.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_div(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Divides \f[I]a\f[R] by \f[I]b\f[R] and returns the result.
|
2020-11-26 17:27:07 +00:00
|
|
|
The \f[I]scale\f[R] of the result is the \f[I]scale\f[R] of the current
|
|
|
|
context.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*b* cannot be **0**.
|
|
|
|
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_DIVIDE_BY_ZERO**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_mod(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Divides \f[I]a\f[R] by \f[I]b\f[R] to the \f[I]scale\f[R] of the
|
|
|
|
current context, computes the modulus \f[B]a-(a/b)*b\f[R], and returns
|
|
|
|
the modulus.
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*b* cannot be **0**.
|
|
|
|
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_DIVIDE_BY_ZERO**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_pow(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Calculates \f[I]a\f[R] to the power of \f[I]b\f[R] to the
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]scale\f[R] of the current context.
|
|
|
|
\f[I]b\f[R] must be an integer, but can be negative.
|
|
|
|
If it is negative, \f[I]a\f[R] must be non-zero.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*b* must be an integer. If *b* is negative, *a* must not be **0**.
|
|
|
|
|
|
|
|
*a* must be smaller than **BC_OVERFLOW_MAX**. See the **LIMITS** section.
|
|
|
|
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NON_INTEGER**
|
|
|
|
* **BCL_ERROR_MATH_OVERFLOW**
|
|
|
|
* **BCL_ERROR_MATH_DIVIDE_BY_ZERO**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_lshift(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Shifts \f[I]a\f[R] left (moves the radix right) by \f[I]b\f[R] places
|
2020-11-26 17:27:07 +00:00
|
|
|
and returns the result.
|
|
|
|
This is done in decimal.
|
|
|
|
\f[I]b\f[R] must be an integer.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*b* must be an integer.
|
|
|
|
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NON_INTEGER**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_rshift(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Shifts \f[I]a\f[R] right (moves the radix left) by \f[I]b\f[R] places
|
2020-11-26 17:27:07 +00:00
|
|
|
and returns the result.
|
|
|
|
This is done in decimal.
|
|
|
|
\f[I]b\f[R] must be an integer.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*b* must be an integer.
|
|
|
|
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*a* and *b* can be the same number.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NON_INTEGER**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_sqrt(BclNumber\f[R] \f[I]a\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Calculates the square root of \f[I]a\f[R] and returns the result.
|
2020-11-26 17:27:07 +00:00
|
|
|
The \f[I]scale\f[R] of the result is equal to the \f[B]scale\f[R] of the
|
|
|
|
current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* cannot be negative.
|
|
|
|
|
|
|
|
*a* is consumed; it cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NEGATIVE**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_divmod(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**, BclNumber *\f[I]\f[BI]c\f[I]\f[R], BclNumber
|
|
|
|
*\f[I]\f[BI]d\f[I]\f[R])**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Divides \f[I]a\f[R] by \f[I]b\f[R] and returns the quotient in a new
|
2020-11-26 17:27:07 +00:00
|
|
|
number which is put into the space pointed to by \f[I]c\f[R], and puts
|
|
|
|
the modulus in a new number which is put into the space pointed to by
|
|
|
|
\f[I]d\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*b* cannot be **0**.
|
|
|
|
|
|
|
|
*a* and *b* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
*c* and *d* cannot point to the same place, nor can they point to the space
|
|
|
|
occupied by *a* or *b*.
|
|
|
|
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_DIVIDE_BY_ZERO**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_modexp(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**, BclNumber** \f[I]c\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Computes a modular exponentiation where \f[I]a\f[R] is the base,
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]b\f[R] is the exponent, and \f[I]c\f[R] is the modulus, and returns
|
|
|
|
the result.
|
|
|
|
The \f[I]scale\f[R] of the result is equal to the \f[B]scale\f[R] of the
|
|
|
|
current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a*, *b*, and *c* must be integers. *c* must not be **0**. *b* must not be
|
|
|
|
negative.
|
|
|
|
|
|
|
|
*a*, *b*, and *c* are consumed; they cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NEGATIVE**
|
|
|
|
* **BCL_ERROR_MATH_NON_INTEGER**
|
|
|
|
* **BCL_ERROR_MATH_DIVIDE_BY_ZERO**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.SS Miscellaneous
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_zero(BclNumber\f[R] \f[I]n\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Sets \f[I]n\f[R] to \f[B]0\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_one(BclNumber\f[R] \f[I]n\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Sets \f[I]n\f[R] to \f[B]1\f[R].
|
|
|
|
.PP
|
|
|
|
\f[B]ssize_t bcl_cmp(BclNumber\f[R] \f[I]a\f[R]**, BclNumber**
|
|
|
|
\f[I]b\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Compares \f[I]a\f[R] and \f[I]b\f[R] and returns \f[B]0\f[R] if
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[I]a\f[R] and \f[I]b\f[R] are equal, \f[B]<0\f[R] if \f[I]a\f[R] is
|
|
|
|
less than \f[I]b\f[R], and \f[B]>0\f[R] if \f[I]a\f[R] is greater than
|
|
|
|
\f[I]b\f[R].
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_copy(BclNumber\f[R] \f[I]d\f[R]**, BclNumber**
|
|
|
|
\f[I]s\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Copies \f[I]s\f[R] into \f[I]d\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]BclNumber bcl_dup(BclNumber\f[R] \f[I]s\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Creates and returns a new \f[B]BclNumber\f[R] that is a copy of
|
|
|
|
\f[I]s\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Pseudo-Random Number Generator
|
|
|
|
.PP
|
|
|
|
The pseudo-random number generator in bcl(3) is a \f[I]seeded\f[R] PRNG.
|
|
|
|
Given the same seed twice, it will produce the same sequence of
|
|
|
|
pseudo-random numbers twice.
|
|
|
|
.PP
|
|
|
|
By default, bcl(3) attempts to seed the PRNG with data from
|
|
|
|
\f[B]/dev/urandom\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
If that fails, it seeds itself with by calling \f[B]libc\f[R]\[aq]s
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]srand(time(NULL))\f[R] and then calling \f[B]rand()\f[R] for each
|
|
|
|
byte, since \f[B]rand()\f[R] is only guaranteed to return \f[B]15\f[R]
|
|
|
|
bits.
|
|
|
|
.PP
|
|
|
|
This should provide fairly good seeding in the standard case while also
|
|
|
|
remaining fairly portable.
|
|
|
|
.PP
|
|
|
|
If necessary, the PRNG can be reseeded with one of the following
|
|
|
|
functions:
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[B]bcl_rand_seedWithNum(BclNumber)\f[R]
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[B]bcl_rand_seed(unsigned char[BC_SEED_SIZE])\f[R]
|
|
|
|
.IP \[bu] 2
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_rand_reseed(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
|
|
|
The following items allow clients to use the pseudo-random number
|
|
|
|
generator.
|
|
|
|
All procedures require a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_SEED_ULONGS\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The number of \f[B]unsigned long\f[R]\[aq]s in a seed for bcl(3)\[aq]s
|
2020-11-26 17:27:07 +00:00
|
|
|
random number generator.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_SEED_SIZE\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The size, in \f[B]char\f[R]\[aq]s, of a seed for bcl(3)\[aq]s random
|
2020-11-26 17:27:07 +00:00
|
|
|
number generator.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BclBigDig\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: bcl(3)\[aq]s overflow type (see the \f[B]PERFORMANCE\f[R] section).
|
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BclRandInt\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: An unsigned integer type returned by bcl(3)\[aq]s random number
|
2020-11-26 17:27:07 +00:00
|
|
|
generator.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BclNumber bcl_irand(BclNumber\f[R] \f[I]a\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns a random number that is not larger than \f[I]a\f[R] in a new
|
2020-11-26 17:27:07 +00:00
|
|
|
number.
|
|
|
|
If \f[I]a\f[R] is \f[B]0\f[R] or \f[B]1\f[R], the new number is equal to
|
|
|
|
\f[B]0\f[R].
|
|
|
|
The bound is unlimited, so it is not bound to the size of
|
|
|
|
\f[B]BclRandInt\f[R].
|
|
|
|
This is done by generating as many random numbers as necessary,
|
|
|
|
multiplying them by certain exponents, and adding them all together.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* must be an integer and non-negative.
|
|
|
|
|
|
|
|
*a* is consumed; it cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure requires a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NEGATIVE**
|
|
|
|
* **BCL_ERROR_MATH_NON_INTEGER**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_frand(size_t\f[R] \f[I]places\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Returns a random number between \f[B]0\f[R] (inclusive) and
|
|
|
|
\f[B]1\f[R] (exclusive) that has \f[I]places\f[R] decimal digits after
|
|
|
|
the radix (decimal point).
|
|
|
|
There are no limits on \f[I]places\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure requires a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_ifrand(BclNumber\f[R] \f[I]a\f[R]**, size_t**
|
|
|
|
\f[I]places\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns a random number less than \f[I]a\f[R] with \f[I]places\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
decimal digits after the radix (decimal point).
|
|
|
|
There are no limits on \f[I]a\f[R] or \f[I]places\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*a* must be an integer and non-negative.
|
|
|
|
|
|
|
|
*a* is consumed; it cannot be used after the call. See the
|
|
|
|
**Consumption and Propagation** subsection below.
|
|
|
|
|
|
|
|
This procedure requires a valid current context.
|
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_MATH_NEGATIVE**
|
|
|
|
* **BCL_ERROR_MATH_NON_INTEGER**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_rand_seedWithNum(BclNumber\f[R] \f[I]n\f[R]**)**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Seeds the PRNG with \f[I]n\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
*n* is *not* consumed.
|
|
|
|
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure requires a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_NUM**
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
|
|
|
|
Note that if **bcl_rand_seed2num(***void***)** or
|
|
|
|
**bcl_rand_seed2num_err(BclNumber)** are called right after this function,
|
|
|
|
they are not guaranteed to return a number equal to *n*.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclError bcl_rand_seed(unsigned char\f[R]
|
|
|
|
\f[I]seed\f[R]**[\f[I]\f[BI]BC_SEED_SIZE\f[I]\f[R]])**
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Seeds the PRNG with the bytes in \f[I]seed\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If there was no error, **BCL_ERROR_NONE** is returned. Otherwise, this
|
|
|
|
function can return:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]void bcl_rand_reseed(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Reseeds the PRNG with the default reseeding behavior.
|
2020-11-26 17:27:07 +00:00
|
|
|
First, it attempts to read data from \f[B]/dev/urandom\f[R] and falls
|
2021-04-06 08:44:52 +00:00
|
|
|
back to \f[B]libc\f[R]\[aq]s \f[B]rand()\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure cannot fail.
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclNumber bcl_rand_seed2num(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
|
|
|
.PP
|
|
|
|
: Returns the current seed of the PRNG as a \f[B]BclNumber\f[R].
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure requires a valid current context.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
bcl(3) will encode an error in the return value, if there was one. The error
|
|
|
|
can be queried with **bcl_err(BclNumber)**. Possible errors include:
|
|
|
|
|
|
|
|
* **BCL_ERROR_INVALID_CONTEXT**
|
|
|
|
* **BCL_ERROR_FATAL_ALLOC_ERR**
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]BclRandInt bcl_rand_int(\f[BI]\f[I]void\f[BI]\f[B])\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: Returns a random integer between \f[B]0\f[R] and \f[B]BC_RAND_MAX\f[R]
|
|
|
|
(inclusive).
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure cannot fail.
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\f[B]BclRandInt bcl_rand_bounded(BclRandInt\f[R] \f[I]bound\f[R]**)**
|
|
|
|
.PP
|
|
|
|
: Returns a random integer between \f[B]0\f[R] and \f[I]bound\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
(exclusive).
|
|
|
|
Bias is removed before returning the integer.
|
2021-04-06 08:44:52 +00:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2020-11-26 17:27:07 +00:00
|
|
|
This procedure cannot fail.
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.SS Consumption and Propagation
|
|
|
|
.PP
|
|
|
|
Some functions are listed as consuming some or all of their arguments.
|
|
|
|
This means that the arguments are freed, regardless of if there were
|
|
|
|
errors or not.
|
|
|
|
.PP
|
|
|
|
This is to enable compact code like the following:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
BclNumber n = bcl_num_add(bcl_num_mul(a, b), bcl_num_div(c, d));
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
If arguments to those functions were not consumed, memory would be
|
|
|
|
leaked until reclaimed with \f[B]bcl_ctxt_freeNums(BclContext)\f[R].
|
|
|
|
.PP
|
|
|
|
When errors occur, they are propagated through.
|
|
|
|
The result should always be checked with \f[B]bcl_err(BclNumber)\f[R],
|
|
|
|
so the example above should properly be:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
BclNumber n = bcl_num_add(bcl_num_mul(a, b), bcl_num_div(c, d));
|
|
|
|
if (bc_num_err(n) != BCL_ERROR_NONE) {
|
|
|
|
// Handle the error.
|
|
|
|
}
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.SH ERRORS
|
|
|
|
.PP
|
|
|
|
Most functions in bcl(3) return, directly or indirectly, any one of the
|
|
|
|
error codes defined in \f[B]BclError\f[R].
|
|
|
|
The complete list of codes is the following:
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_NONE\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: Success; no error occurred.
|
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_INVALID_NUM\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: An invalid \f[B]BclNumber\f[R] was given as a parameter.
|
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_INVALID_CONTEXT\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: An invalid \f[B]BclContext\f[R] is being used.
|
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_SIGNAL\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A signal interrupted execution.
|
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_MATH_NEGATIVE\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A negative number was given as an argument to a parameter that cannot
|
2020-11-26 17:27:07 +00:00
|
|
|
accept negative numbers, such as for square roots.
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_MATH_NON_INTEGER\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A non-integer was given as an argument to a parameter that cannot
|
|
|
|
accept non-integer numbers, such as for the second parameter of
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]bcl_num_pow()\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_MATH_OVERFLOW\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A number that would overflow its result was given as an argument, such
|
2020-11-26 17:27:07 +00:00
|
|
|
as for converting a \f[B]BclNumber\f[R] to a \f[B]BclBigDig\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_MATH_DIVIDE_BY_ZERO\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: A divide by zero occurred.
|
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BCL_ERROR_PARSE_INVALID_STR\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: An invalid number string was passed to a parsing function.
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
A valid number string can only be one radix (period). In addition, any
|
|
|
|
lowercase ASCII letters, symbols, or non-ASCII characters are invalid. It is
|
|
|
|
allowed for the first character to be a dash. In that case, the number is
|
|
|
|
considered to be negative.
|
|
|
|
|
|
|
|
There is one exception to the above: one lowercase **e** is allowed in the
|
|
|
|
number, after the radix, if it exists. If the letter **e** exists, the
|
|
|
|
number is considered to be in scientific notation, where the part before the
|
|
|
|
**e** is the number, and the part after, which must be an integer, is the
|
|
|
|
exponent. There can be a dash right after the **e** to indicate a negative
|
2020-11-26 17:27:07 +00:00
|
|
|
exponent.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
**WARNING**: Both the number and the exponent in scientific notation are
|
|
|
|
interpreted according to the current **ibase**, but the number is still
|
|
|
|
multiplied by **10\[rs]\[ha]exponent** regardless of the current **ibase**. For
|
|
|
|
example, if **ibase** is **16** and bcl(3) is given the number string
|
|
|
|
**FFeA**, the resulting decimal number will be **2550000000000**, and if
|
|
|
|
bcl(3) is given the number string **10e-4**, the resulting decimal number
|
|
|
|
will be **0.0016**.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BCL_ERROR_FATAL_ALLOC_ERR\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: bcl(3) failed to allocate memory.
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If clients call **bcl_setAbortOnFatalError()** with an **true** argument,
|
|
|
|
this error will cause bcl(3) to throw a **SIGABRT**. This behavior can also
|
|
|
|
be turned off later by calling that same function with a **false** argument.
|
2020-11-26 17:27:07 +00:00
|
|
|
By default, this behavior is off.
|
2021-04-06 08:44:52 +00:00
|
|
|
|
|
|
|
It is highly recommended that client libraries do *not* activate this
|
|
|
|
behavior.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
|
|
|
\f[B]BCL_ERROR_FATAL_UNKNOWN_ERR\f[R]
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
: An unknown error occurred.
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
If clients call **bcl_setAbortOnFatalError()** with an **true** argument,
|
|
|
|
this error will cause bcl(3) to throw a **SIGABRT**. This behavior can also
|
|
|
|
be turned off later by calling that same function with a **false** argument.
|
|
|
|
By default, this behavior is off.
|
|
|
|
|
|
|
|
It is highly recommended that client libraries do *not* activate this
|
|
|
|
behavior.
|
|
|
|
\f[R]
|
|
|
|
.fi
|
2020-11-26 17:27:07 +00:00
|
|
|
.SH ATTRIBUTES
|
|
|
|
.PP
|
2021-04-06 08:44:52 +00:00
|
|
|
When \f[B]bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R] is used
|
2020-11-26 17:27:07 +00:00
|
|
|
properly, bcl(3) is async-signal-safe.
|
|
|
|
.PP
|
|
|
|
bcl(3) is \f[I]MT-Unsafe\f[R]: it is unsafe to call any functions from
|
|
|
|
more than one thread.
|
|
|
|
.SH PERFORMANCE
|
|
|
|
.PP
|
|
|
|
Most bc(1) implementations use \f[B]char\f[R] types to calculate the
|
|
|
|
value of \f[B]1\f[R] decimal digit at a time, but that can be slow.
|
|
|
|
bcl(3) does something different.
|
|
|
|
.PP
|
|
|
|
It uses large integers to calculate more than \f[B]1\f[R] decimal digit
|
|
|
|
at a time.
|
|
|
|
If built in a environment where \f[B]BC_LONG_BIT\f[R] (see the
|
|
|
|
\f[B]LIMITS\f[R] section) is \f[B]64\f[R], then each integer has
|
|
|
|
\f[B]9\f[R] decimal digits.
|
|
|
|
If built in an environment where \f[B]BC_LONG_BIT\f[R] is \f[B]32\f[R]
|
|
|
|
then each integer has \f[B]4\f[R] decimal digits.
|
|
|
|
This value (the number of decimal digits per large integer) is called
|
|
|
|
\f[B]BC_BASE_DIGS\f[R].
|
|
|
|
.PP
|
|
|
|
In addition, this bcl(3) uses an even larger integer for overflow
|
|
|
|
checking.
|
|
|
|
This integer type depends on the value of \f[B]BC_LONG_BIT\f[R], but is
|
|
|
|
always at least twice as large as the integer type used to store digits.
|
|
|
|
.SH LIMITS
|
|
|
|
.PP
|
|
|
|
The following are the limits on bcl(3):
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_LONG_BIT\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The number of bits in the \f[B]long\f[R] type in the environment where
|
2020-11-26 17:27:07 +00:00
|
|
|
bcl(3) was built.
|
|
|
|
This determines how many decimal digits can be stored in a single large
|
|
|
|
integer (see the \f[B]PERFORMANCE\f[R] section).
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_BASE_DIGS\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The number of decimal digits per large integer (see the
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]PERFORMANCE\f[R] section).
|
|
|
|
Depends on \f[B]BC_LONG_BIT\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_BASE_POW\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The max decimal number that each large integer can store (see
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_BASE_DIGS\f[R]) plus \f[B]1\f[R].
|
|
|
|
Depends on \f[B]BC_BASE_DIGS\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_OVERFLOW_MAX\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The max number that the overflow type (see the \f[B]PERFORMANCE\f[R]
|
2020-11-26 17:27:07 +00:00
|
|
|
section) can hold.
|
|
|
|
Depends on \f[B]BC_LONG_BIT\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_BASE_MAX\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The maximum output base.
|
2020-11-26 17:27:07 +00:00
|
|
|
Set at \f[B]BC_BASE_POW\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_SCALE_MAX\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The maximum \f[B]scale\f[R].
|
2020-11-26 17:27:07 +00:00
|
|
|
Set at \f[B]BC_OVERFLOW_MAX-1\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_NUM_MAX\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The maximum length of a number (in decimal digits), which includes
|
2020-11-26 17:27:07 +00:00
|
|
|
digits after the decimal point.
|
|
|
|
Set at \f[B]BC_OVERFLOW_MAX-1\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
\f[B]BC_RAND_MAX\f[R]
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The maximum integer (inclusive) returned by the
|
|
|
|
\f[B]bcl_rand_int()\f[R] function.
|
2020-11-26 17:27:07 +00:00
|
|
|
Set at \f[B]2\[ha]BC_LONG_BIT-1\f[R].
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
2020-11-26 17:27:07 +00:00
|
|
|
Exponent
|
2021-04-06 08:44:52 +00:00
|
|
|
.PP
|
|
|
|
: The maximum allowable exponent (positive or negative).
|
2020-11-26 17:27:07 +00:00
|
|
|
Set at \f[B]BC_OVERFLOW_MAX\f[R].
|
|
|
|
.PP
|
|
|
|
These limits are meant to be effectively non-existent; the limits are so
|
|
|
|
large (at least on 64-bit machines) that there should not be any point
|
|
|
|
at which they become a problem.
|
|
|
|
In fact, memory should be exhausted before these limits should be hit.
|
|
|
|
.SH SIGNAL HANDLING
|
|
|
|
.PP
|
|
|
|
If a signal handler calls
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R] from the same
|
2020-11-26 17:27:07 +00:00
|
|
|
thread that there are bcl(3) functions executing in, it will cause all
|
|
|
|
execution to stop as soon as possible, interrupting long-running
|
|
|
|
calculations, if necessary and cause the function that was executing to
|
|
|
|
return.
|
|
|
|
If possible, the error code \f[B]BC_ERROR_SIGNAL\f[R] is returned.
|
|
|
|
.PP
|
|
|
|
If execution \f[I]is\f[R] interrupted,
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R] does
|
|
|
|
\f[I]not\f[R] return to its caller.
|
2020-11-26 17:27:07 +00:00
|
|
|
.PP
|
|
|
|
It is undefined behavior if
|
2021-04-06 08:44:52 +00:00
|
|
|
\f[B]bcl_handleSignal(\f[BI]\f[I]void\f[BI]\f[B])\f[R] is called from a
|
2020-11-26 17:27:07 +00:00
|
|
|
thread that is not executing bcl(3) functions, if bcl(3) functions are
|
|
|
|
executing.
|
|
|
|
.SH SEE ALSO
|
|
|
|
.PP
|
|
|
|
bc(1) and dc(1)
|
|
|
|
.SH STANDARDS
|
|
|
|
.PP
|
|
|
|
bcl(3) is compliant with the arithmetic defined in the IEEE Std
|
|
|
|
1003.1-2017
|
|
|
|
(\[lq]POSIX.1-2017\[rq]) (https://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html)
|
|
|
|
specification for bc(1).
|
|
|
|
.PP
|
|
|
|
Note that the specification explicitly says that bc(1) only accepts
|
|
|
|
numbers that use a period (\f[B].\f[R]) as a radix point, regardless of
|
|
|
|
the value of \f[B]LC_NUMERIC\f[R].
|
|
|
|
This is also true of bcl(3).
|
|
|
|
.SH BUGS
|
|
|
|
.PP
|
|
|
|
None are known.
|
|
|
|
Report bugs at https://git.yzena.com/gavin/bc.
|
|
|
|
.SH AUTHORS
|
|
|
|
.PP
|
|
|
|
Gavin D.
|
|
|
|
Howard <gavin@yzena.com> and contributors.
|