aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/js/fib10.qml
blob: 5f39ec61651ecc733e3baa40242b997b0877ec1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import QtQuick 2.0

Item {
    id: root;
    property int count: 50;
    property int staticCount: 1000;

    property real t;
    NumberAnimation on t { from: 0; to: 1; duration: 1000; loops: Animation.Infinite }
    onTChanged: {
        repeater.model = 0;
        repeater.model = root.count
    }

    Component.onCompleted: repeater.model = root.count

    function fib(n) {
        if (n < 2)
            return Math.max(0, n);
        else
            return fib(n-1) + fib(n-2);
    }

    Repeater {
        id: repeater
        Item {
            x: fib(10);
        }
    }
}