This commit is contained in:
Andrea Bontempi 2018-02-21 15:16:53 +01:00
parent adba3efab5
commit 016f42c086
4 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -ffast-math -fopenmp")
add_executable(${EXECUTABLE_NAME} main.cpp functions.hpp Fractal.hpp Fractal.cpp)
add_executable(${EXECUTABLE_NAME} main.cpp Functions.hpp Fractal.hpp Fractal.cpp)
#Find Boost
set(BOOST_LIBS program_options)

View File

@ -4,7 +4,7 @@
#include <functional>
#include <complex>
#include <SFML/Graphics.hpp>
#include "functions.hpp"
#include "Functions.hpp"
struct Domain {

View File

@ -8,7 +8,7 @@
#include <ctime>
#include <chrono>
#include "functions.hpp"
#include "Functions.hpp"
#include "Fractal.hpp"
const double DOMAIN_X_MIN = -2.0;