Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 987 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 987 Bytes

fatou

Codacy Badge Coverity Scan

Simple viewer for convergence conduct of polynomials solved using Newton's method

Build

For Linux use:

sudo apt-get install xorg-dev libglu1-mesa-dev zenity
mkdir fatou
cd fatou
git clone git://github.com/Agapanthus/fatou.git ./
git submodule init
git submodule update
cmake ./
make
cd bin
./fatou

For Windows use:

git clone git://github.com/Agapanthus/fatou.git ./
git submodule init
git submodule update
cmake ./

...and compile with MSVC.

When using MSVC, use "MinSizeRelease" for a faster Release build. "Release" usually takes much longer (because of the /GL compiler option)!