Go to the first, previous, next, last section, table of contents.

Minimal structs

We prefer to make structs which are minimal. For example, if a certain type of problem can be solved by several classes of algorithm (e.g. with and without derivative information) it is better to make separate types of struct to handle those cases. i.e. run time type identification is not desirable.


Go to the first, previous, next, last section, table of contents.