Code Reduction

From BRL-CAD
Revision as of 08:20, 23 November 2017 by User000name (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

BRL-CAD is a large code base with more than a million lines of code across hundreds of binaries and dozens of libraries. Improving maintainability is an active requirement which includes identifying code duplication and refactoring accordingly.

This project entails identifying common patterns of duplication throughout the code (there are tools that can help automate this). Once identified, the code can be carefully refactored into new routines, common functionality, library code, etc.

Testing is required to make sure refactoring was correct and functionality was not changed. Test-driven development would be helpful here.

References

Requirements

  • Ability to write regression tests
  • Ability to refactor C/C++

Past Efforts

See also