-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProblem-Parameters.h
More file actions
21 lines (17 loc) · 884 Bytes
/
Problem-Parameters.h
File metadata and controls
21 lines (17 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*==============================================================================
Project: Bulk Synchronous Farm (BSF)
Theme: BSF Skeleton
Module: Problem-Parameters.h (Problem Parameters)
Prefix: PP
Author: Leonid B. Sokolinsky
This source code is a part of BSF Skeleton (https://github.com/leonid-sokolinsky/BSF-skeleton)
==============================================================================*/
//=========================== Problem Parameters =========================
#define PP_N 11 // Dimension of space
//#define PP_MAX_ITER_COUNT 10
#define PP_EPS 1E-9 // Precision
//-------------------------- Outpoot Parameters ---------------------------
#define PP_OUTPUT_LIMIT 11 // Number of Elements to output
#define PP_MATRIX_OUTPUT // Output Matrix
//-------------------------- Macroses ---------------------------
#define PF_MIN(x,y) (x<y?x:y)