Example - Regula Falsi method
Task 1
Section 9.3.3 of the Textbook (+ source code), up to the CFG.
Task 2
source code with annotated instructions + Control Flow Graph
Something like:
for (i = 1 /* B1 */; i < length /* B2 */; ++i /* B3 */) { value = a[i]; /* B4 */ }
No Comments