adding nucleic2 test

This commit is contained in:
Danny Yoo 2012-02-21 18:04:51 -05:00
parent d490992f99
commit 578b745dfe
4 changed files with 3514 additions and 1 deletions

View File

@ -944,7 +944,6 @@
};
var checkedGreaterThan = function(M, x, y) {
var i;
// fast path optimization: binop comparison on fixnums
if (arguments.length === 3) {
if (typeof(x) === 'number' && typeof(y) === 'number') {
@ -955,6 +954,7 @@
};
var checkedGreaterThanSlowPath = function(M, args) {
var i;
if (! isNumber(args[0])) {
raiseArgumentTypeError(M, '>', 'number', 0, args[0]);
}

View File

@ -0,0 +1 @@
33.797594890762696

File diff suppressed because it is too large Load Diff

View File

@ -49,3 +49,4 @@
(test "more-tests/graphs.rkt")
(test "more-tests/scheme-whalesong.rkt")
(test "more-tests/nestedloop.rkt")
(test "more-tests/nucleic2.rkt")