- Steven Johnson
- Brandon Rodriguez
- Joshua Sziede
A console program to solve quadratic equations. See program help for more details.
To build run:
$ make
Now you can run the program and see the help text:
$ src/quad_solver -h
For development, you should use valgrind. First install valgrind if not installed:
$ sudo apt install valgrind
Then to build and run valgrind on the executable, run:
$ make valgrind
Valgrind will report pointers that were allocated but not freed.
To create a .tar.gz of source files run:
$ make distribute
The file will be named quad-solver-.tar.gz
To run all the tests:
$ make test