Skip to content

Commit 50a6f9a

Browse files
committed
Include TOC for Performance Improvement
Signed-off-by: Hartanto Ario Widjaya <[email protected]>
1 parent b276000 commit 50a6f9a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

COBOL Programming Course #2 - Advanced Topics/COBOL Programming Course #2 - Advanced Topics.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,30 @@ We can also write programs that result in more efficient use of the available se
568568

569569
If you are interested in learning more about performance tuning with COBOL, check out the [Enterprise COBOL for z/OS Performance Tuning Guide](http://publibfp.dhe.ibm.com/epubs/pdf/igy6tg30.pdf).
570570

571+
572+
- **Optimal programming style**
573+
574+
- **Using structured programming**
575+
576+
- **Factoring expressions**
577+
578+
- **Using symbolic constants**
579+
580+
- **Choosing efficient data types**
581+
582+
- **Efficient computational data types**
583+
584+
- **Consistent data types**
585+
586+
- **Efficient arithmetic expressions**
587+
588+
- **Efficient exponentiations**
589+
590+
- **Handling tables efficiently**
591+
592+
- **Choosing compiler features to enhance performance**
593+
594+
571595
## Optimal programming style
572596

573597
Enterprise COBOL came with an in-build optimizer, and the coding style we use can affect how it handles our code. We can improve optimization through the use of structured programming techniques, factoring expressions, using symbolic constants or grouping constant and duplicate computations.

0 commit comments

Comments
 (0)