This generates the
Fibonacci sequence on its output channel.
CSProcess Diagram
External View
___________
| | out
| Fibonacci |------>
|___________|
Internal View
________________________________
| |
| ____________ ________ |
| | | | | | out
| | Prefix (0)
|-->--| Delta2
|------>--
| |____________| |________| |
| | | |
| ^ V |
| ______|_____ ___|___ |
| | | | | |
| | Prefix (1)
|--<--| Pairs
| |
| |____________| |_______| |
| |
| Fibonacci |
|________________________________|
Description
FibonacciInt generates the sequence of
Fibonacci
Numbers on its output channel.
Channel Protocols
Output Channels |
out |
java.lang.Integer |
The output will always be of type Integer.
|