fibonacci while works just as well now

surprisingly much faster though,
This commit is contained in:
Torsten Ruger 2015-11-05 13:37:08 +02:00
parent aad50021fe
commit 1309ea37de
2 changed files with 6 additions and 3 deletions

View File

@ -7,4 +7,4 @@ require_relative "test_if"
require_relative "test_putint" require_relative "test_putint"
require_relative "test_recursive_fibo" require_relative "test_recursive_fibo"
require_relative "test_return" require_relative "test_return"
#require_relative "test_while_fibo" require_relative "test_while_fibo"

View File

@ -9,6 +9,7 @@ class Object
int fibonaccit(int n) int fibonaccit(int n)
int a = 0 int a = 0
int b = 1 int b = 1
n = n - 1
while_plus( n ) while_plus( n )
int tmp = a int tmp = a
a = b a = b
@ -20,12 +21,14 @@ class Object
end end
int main() int main()
fibonaccit( 10 ) return fibonaccit( 10 )
end end
end end
HERE HERE
@length = 5 @length = 278
check check
assert_equal Parfait::Message , @interpreter.get_register(:r1).class
assert_equal 55 , @interpreter.get_register(:r1).return_value
end end
end end