Python Collatz Conjecture Calculator
This is a short python program that checks if a number will reach 1 through the 'Collatz Conjecture' process.
I created this whilst learning how to program with python3. The program uses a while loop; some parameter passing, global variables, formatting, and some other interesting programming consepts. This project will likely not be actively maintained.
UPDATE LOG:
17/12/20 (10:27):
- Updated to non-deprecated time module
- Removed Test/Beta Files
- Noted project is not actively maintained
13/08/17 (02:24):
- Added Iteration Count
- Fixed 0 Loop Error
- Added AVGTIME to TestStuffs
- Solved Max Float Error
- Removed Printing Of Numbers (Due to reduced speeds)
Although printing has been removed to increase speeds it can enabled by uncommenting the two print lines in the code. The speed issue is really only visible on larger numbers.
12/08/17:
- Created and added to Github
- Basic Output Design
- Some known bugs/issues
~Lewis W