mit-scheme.git
2018-11-07 Taylor R CampbellRewrite random number generator.
2018-11-07 Taylor R CampbellTest that make-random-source is deterministic.
2018-11-07 Taylor R CampbellRandomize the dispatch tag cache; don't copy the system...
2018-11-07 Taylor R CampbellUse get-entropy primitive to initialize random states.
2018-11-07 Taylor R CampbellRemember to close /dev/urandom when done.
2018-11-07 Taylor R CampbellCheck for fenv.h and ieeefp.h functions only if the...
2018-11-07 Taylor R CampbellAdd -Werror after all autoconf checks.
2018-11-07 Taylor R CampbellNeed "osentropy.h" for OS_get_entropy.
2018-11-07 Taylor R CampbellUse "config.h" to get uint8_t. No more need of <stddef...
2018-11-07 Taylor R CampbellFix prototypes for x87_read/write_environment.
2018-11-07 Taylor R CampbellUse a fresh random state for randomized tests.
2018-11-07 Taylor R CampbellMore floating-point parameters.
2018-11-07 Taylor R CampbellNew primitive (get-entropy bv) randomly fills a 32...
2018-11-07 Taylor R CampbellTurn off -Werror here; breaks configure.
2018-11-07 Taylor R CampbellMissed a run-sub-test.
2018-11-07 Taylor R CampbellNew procedure (bytevector-zero-explicit! <bv> [<start...
2018-11-07 Taylor R CampbellFix indentation.
2018-11-07 Taylor R CampbellMake some of my stupid old randomized tests a little...
2018-11-07 Taylor R CampbellHalfway fix some broken tests.
2018-11-07 Taylor R CampbellDepend on x11-const directly, not via a stamp and submake.
2018-11-07 Taylor R CampbellMake the C compiler warnings that we subscribe to fatal.
2018-11-07 Taylor R CampbellConfirm the primitive respects the bounds too.
2018-11-07 Taylor R CampbellSimplify construction of chacha core test vector tests.
2018-11-07 Taylor R CampbellTest fenceposts in chacha core primitives.
2018-11-07 Taylor R CampbellUnfix the fix for an off-by-zero.
2018-11-07 Taylor R CampbellFix more formatting.
2018-11-06 Chris HansonEliminate unused variable warnings.
2018-11-06 Chris HansonFix a bug in prchacha: compiler warned of unused variable.
2018-11-05 Taylor R CampbellFix sign of (flo:ulp -infinity). Simplify.
2018-11-05 Taylor R CampbellTidy up ieee754.scm, add some tests, and export some...
2018-11-04 Chris HansonAllow sequences to contain zero elements.
2018-11-02 Chris HansonDon't use upper-case symbols in loader.
2018-11-02 Chris HansonDon't print internals of promises.
2018-11-02 Chris HansonFix printing of promises.
2018-11-01 Chris HansonMerge branch 'release-10'
2018-11-01 Chris HansonMake macos dmg file read only.
2018-11-01 Chris HansonFix problem with building and installing x11 plugin...
2018-10-31 Taylor R CampbellComment what log-logistic and logit-exp are for.
2018-10-31 Taylor R CampbellDefine (flo:ulp x) to be distance to next float in...
2018-10-31 Taylor R CampbellAdd Mode: C line on request from mejja.
2018-10-30 Taylor R CampbellClarify some comments.
2018-10-30 Taylor R CampbellReorganize logsumexp for clarity. No functional change.
2018-10-30 Taylor R CampbellMask underflow exception in logsumexp because it doesn...
2018-10-30 Taylor R CampbellAdd (logsumexp (list 1 2 3)) = (log (+ (exp 1) (exp...
2018-10-30 Chris HansonDon't assume that it's possible to run MIT_SCHEME_EXE...
2018-10-30 Chris HansonBump revision to 10.1.1 to fix stupid bug.
2018-10-28 Chris HansonReduce default heap size for 32-bit systems.
2018-10-28 Chris HansonFix typo in previous change.
2018-10-28 Taylor R CampbellEliminate flo:epsilon.
2018-10-28 Taylor R CampbellTidy up error analysis of logit and logistic.
2018-10-28 Chris HansonMerge branch 'release-10'
2018-10-28 Chris HansonNo need to separately configure plugins.
2018-10-28 Chris HansonChange "module" to "plugin".
2018-10-28 Chris HansonEliminate compiler warning.
2018-10-27 Chris HansonUse create-dmg script to automate building of macOS...
2018-10-27 Chris HansonFix a couple of compiler warnings from 32-bit system.
2018-10-27 Chris HansonMerge branch 'release-10' of git.sv.gnu.org:/srv/git...
2018-10-27 Chris HansonFix thinko.
2018-10-27 Chris HansonEliminate unavailable (and unused) load option.
2018-10-27 Taylor R CampbellForgot to define this. Ummm, I guess cref accidentally...
2018-10-27 Taylor R CampbellExpose flo:radix = 2 too, just for good measure, and...
2018-10-27 Taylor R CampbellExport primitive flonum-denormalize as flo:ldexp and...
2018-10-27 Taylor R CampbellDisable errno checking in libm functions.
2018-10-27 Taylor R Campbelllog1pexp(x) is never exactly x even if that's the best...
2018-10-27 Taylor R CampbellTabify.
2018-10-27 Taylor R CampbellUse named constants rather than magic numbers.
2018-10-27 Taylor R CampbellDefine and export some more floating-point parameters.
2018-10-27 Chris HansonFix typo.
2018-10-27 Chris HansonUpdate make-doc-files to work with plugins.
2018-10-27 Taylor R Campbelltest-driver is autocrud too.
2018-10-27 Chris HansonChange way that plugins are registered so that lib...
2018-10-27 Taylor R CampbellSimple-minded criterion to compute x^-y by 1/x^y was...
2018-10-27 Taylor R CampbellOmit unnecessary case for logistic. Add a test for...
2018-10-26 Chris HansonFix potential shell portability issues.
2018-10-26 Taylor R CampbellExtend expt to generate subnormals with exact integer...
2018-10-26 Taylor R CampbellExpose the minimum and maximum finite normal floating...
2018-10-26 Taylor R CampbellAdd some .gitignore files so I can use git status.
2018-10-26 Taylor R CampbellNew primitives for ChaCha stream cipher core.
2018-10-26 Taylor R CampbellFix unparser->print method fallout.
2018-10-26 Taylor R CampbellAvoid using uninitialized stack garbage.
2018-10-26 Taylor R Campbellclock() returns (clock_t)-1 on error, not necessarily...
2018-10-26 Chris HansonAdd plugin docs to doc files.
2018-10-26 Chris HansonMore version numbers.
2018-10-26 Chris HansonRemove no-longer-needed args to configure.
2018-10-26 Chris HansonMore version numbers.
2018-10-26 Chris HansonUpdate some version numbers.
2018-10-26 Chris HansonNo need to separately configure plugins.
2018-10-26 Chris HansonChange "module" to "plugin".
2018-10-25 Chris HansonBug reported by Arthur: case-fold-string was dropping...
2018-10-25 Chris HansonAdd --no-init-file to those places that might be calls...
2018-10-25 Taylor R CampbellApply the same bound to the other region.
2018-10-25 Taylor R Campbell...yes, I know how to count.
2018-10-25 Taylor R CampbellCatch more stray `.' loitering around.
2018-10-25 Taylor R CampbellClarify justification for ditching the denominator.
2018-10-25 Taylor R Campbelllog(a/b), not log(a)/log(b).
2018-10-25 Taylor R CampbellOmit stray sentence terminator.
2018-10-25 Taylor R CampbellThe bounds of Lemma 4 are <=, not <, as is this branch...
2018-10-25 Taylor R CampbellInadvertently substituted d0 for d2. Fix.
2018-10-25 Taylor R CampbellI accidentally a predicate.
2018-10-25 Taylor R CampbellFix stray line, clarify, and simplify.
next