chiark
/
gitweb
/
~mdw
/
catacomb
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
cleanup: Big pile of whitespace fixes, all at once.
[catacomb]
/
gfx.c
diff --git
a/gfx.c
b/gfx.c
index 40f639d406b0a80dae8ed4fb7cebc534c4bd2391..b1bdd51279855741a39ced9b371e5a943b5d69b8 100644
(file)
--- a/
gfx.c
+++ b/
gfx.c
@@
-7,7
+7,7
@@
* (c) 2000 Straylight/Edgeware
*/
* (c) 2000 Straylight/Edgeware
*/
-/*----- Licensing notice --------------------------------------------------*
+/*----- Licensing notice --------------------------------------------------*
*
* This file is part of Catacomb.
*
*
* This file is part of Catacomb.
*
@@
-15,12
+15,12
@@
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
- *
+ *
* Catacomb 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 Library General Public License for more details.
* Catacomb 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 Library General Public License for more details.
- *
+ *
* You should have received a copy of the GNU Library General Public
* License along with Catacomb; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
* You should have received a copy of the GNU Library General Public
* License along with Catacomb; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
@@
-186,12
+186,12
@@
void gfx_mul(mpw *dv, mpw *dvl, const mpw *av, const mpw *avl,
/* --- @gfx_div@ --- *
*
* Arguments: @mpw *qv, *qvl@ = quotient vector base and limit
/* --- @gfx_div@ --- *
*
* Arguments: @mpw *qv, *qvl@ = quotient vector base and limit
- *
@mpw *rv, *rvl@ = dividend/remainder vector base and limit
- *
@const mpw *dv, *dvl@ = divisor vector base and limit
+ * @mpw *rv, *rvl@ = dividend/remainder vector base and limit
+ * @const mpw *dv, *dvl@ = divisor vector base and limit
*
*
- * Returns:
---
+ * Returns: ---
*
*
- * Use: Performs division on polynomials over %$\gf{2}$%.
+ * Use:
Performs division on polynomials over %$\gf{2}$%.
*/
void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl,
*/
void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl,
@@
-276,7
+276,7
@@
void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl,
} while (0)
#define MAX(x, y) ((x) > (y) ? (x) : (y))
} while (0)
#define MAX(x, y) ((x) > (y) ? (x) : (y))
-
+
static void dumpmp(const char *msg, const mpw *v, const mpw *vl)
{
fputs(msg, stderr);
static void dumpmp(const char *msg, const mpw *v, const mpw *vl)
{
fputs(msg, stderr);
@@
-302,8
+302,8
@@
static int vadd(dstr *v)
gfx_add(d, dl, a, al, b, bl);
if (!mpx_ueq(d, dl, c, cl)) {
fprintf(stderr, "\n*** vadd failed\n");
gfx_add(d, dl, a, al, b, bl);
if (!mpx_ueq(d, dl, c, cl)) {
fprintf(stderr, "\n*** vadd failed\n");
- dumpmp("
a", a, al);
- dumpmp("
b", b, bl);
+ dumpmp(" a", a, al);
+ dumpmp(" b", b, bl);
dumpmp("expected", c, cl);
dumpmp(" result", d, dl);
ok = 0;
dumpmp("expected", c, cl);
dumpmp(" result", d, dl);
ok = 0;
@@
-329,8
+329,8
@@
static int vmul(dstr *v)
gfx_mul(d, dl, a, al, b, bl);
if (!mpx_ueq(d, dl, c, cl)) {
fprintf(stderr, "\n*** vmul failed\n");
gfx_mul(d, dl, a, al, b, bl);
if (!mpx_ueq(d, dl, c, cl)) {
fprintf(stderr, "\n*** vmul failed\n");
- dumpmp("
a", a, al);
- dumpmp("
b", b, bl);
+ dumpmp(" a", a, al);
+ dumpmp(" b", b, bl);
dumpmp("expected", c, cl);
dumpmp(" result", d, dl);
ok = 0;
dumpmp("expected", c, cl);
dumpmp(" result", d, dl);
ok = 0;