run_enviroment.h
来自「利用c++语言写的三维FDTD」· C头文件 代码 · 共 24 行
H
24 行
#define USE_MPI 1 //comment out to compile without MPI
//select the run enviroment -WIN or -IBM_AIX
#ifdef _WIN32
#include <windows.h>
#define run_enviroment 1
#else //IBM AIX
#include <unistd.h> //for getwd()
#include <sys/stat.h> //for mkdir()
#endif
#include <iostream>
using std::cout;
using std::endl;
using std::cerr;
#include <math.h>
#include <ctime>
#include "Matrix.h"
#include "Load_Save_File_Data.h"
extern int errno;//error handling
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?