Skip to content

Commit

Permalink
the new addition and subtraction routines pass all the random tests a…
Browse files Browse the repository at this point in the history
…nd testall.sh
  • Loading branch information
graff committed Dec 10, 2018
1 parent c281595 commit ba86d05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ install:
# for invoking arbitraire's testing mechanisms in a simple way -- `make test'
#
# Before releases, make sure to run all of the tests with valgrind mode turned
# on and run: grep 'no leaks' | wc -l on the logfile. If it outputs "1100" then
# we know that all 1100 pseudo-random tests were completed in their entirety
# and with no memory errors. Use the following command:
# `make clean ; make release ; grep 'no leaks' *tests-passed.txt | wc -l'
#
# on. This can be done with `make release', 1100 passing tests should be
# reported as "1100"


release:
make clean ; make release_inter ; grep 'no leaks' *tests-passed.txt | wc -l

release_inter:
./configure
CFLAGS="-O3" $(MAKE) all
echo "sqrt tests"
Expand Down
2 changes: 1 addition & 1 deletion src/add-sub.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
answer = 1000 - 999
Instead of performing this operation in its entirety however, the
inverse solution is calculated along side the normative one and
inverse solution is calculated alongside the normative one and
simply discarded in the case it is not needed (there is no left
over carry).
Expand Down

0 comments on commit ba86d05

Please sign in to comment.