Skip to content

Commit

Permalink
Updated size
Browse files Browse the repository at this point in the history
  • Loading branch information
richmit committed Sep 19, 2024
1 parent 36778c0 commit 65c0b2e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/kalisetJ.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ typedef mjr::ramCanvas3c8b::colorType ct;
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
int main(void) {
std::chrono::time_point<std::chrono::system_clock> startTime = std::chrono::system_clock::now();
const int WIDTH = 1920*1;
const int HEIGHT = 1920*1;
const int WIDTH = 1920*4;
const int HEIGHT = 1920*4;
const int NUMITR = 100;
const double MAXZ = 4.0;
mjr::ramCanvas3c8b theRamCanvas(WIDTH, HEIGHT, -2.0, 2.0, -2.0, 2.0);
Expand Down
4 changes: 2 additions & 2 deletions examples/kalisetM1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ typedef mjr::ramCanvas3c8b::colorType ct;
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
int main(void) {
std::chrono::time_point<std::chrono::system_clock> startTime = std::chrono::system_clock::now();
const int WIDTH = 1920*1;
const int HEIGHT = 1920*1;
const int WIDTH = 1920*4;
const int HEIGHT = 1920*4;
const int NUMITR = 100;
const double MAXZ = 4.0;
mjr::ramCanvas3c8b theRamCanvas(WIDTH, HEIGHT, -0.59, -0.53, -0.812, -0.773);
Expand Down
6 changes: 3 additions & 3 deletions examples/kalisetM2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ typedef mjr::ramCanvas3c8b::colorType ct;
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
int main(void) {
std::chrono::time_point<std::chrono::system_clock> startTime = std::chrono::system_clock::now();
const int WIDTH = 1920*1;
const int HEIGHT = 1920*1;
const int NUMITR = 100;
const int WIDTH = 1920*4;
const int HEIGHT = 1920*4;
const int NUMITR = 500;
const double MAXZ = 4.0;
mjr::ramCanvas3c8b theRamCanvas(WIDTH, HEIGHT, -2.0, 0.0, -2.0, 0.0);
# pragma omp parallel for schedule(static,1)
Expand Down

0 comments on commit 65c0b2e

Please sign in to comment.