This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <math.h> | |
#include <limits.h> | |
#include <float.h> | |
#include <stdio.h> | |
#define N 300000 | |
#define K 100 | |
#define TOLERANCE 0.00001 | |
#define SEED 11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <pvm3.h> | |
int main() { | |
const double yMin = -1.0; | |
const double yMax = +1.0; | |
const double xMin = -2.0; | |
const double xMax = +0.5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <limits.h> | |
#include <sys/mman.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
NewerOlder