Skip to content

Commit 898083f

Browse files
author
Eric Holk
committed
Commenting out the huge-memory-using lines in pfib.
1 parent 5cdb010 commit 898083f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/bench/shootout/pfib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ fn fib(int n) -> int {
4343
fn main(vec[str] argv) {
4444
if(vec::len(argv) == 1u) {
4545
assert (fib(8) == 21);
46-
assert (fib(15) == 610);
46+
//assert (fib(15) == 610);
4747
log fib(8);
48-
log fib(15);
48+
//log fib(15);
4949
}
5050
else {
5151
// Interactive mode! Wooo!!!!

0 commit comments

Comments
 (0)