GPUE  v1.0
GPU Gross-Pitaevskii Equation numerical solver for Bose-Einstein condensates
parser.h
Go to the documentation of this file.
1 //##############################################################################
12 //##############################################################################
13 
14 #ifndef PARSER_H
15 #define PARSER_H
16 
17 #include <cstdio>
18 #include <cstdlib>
19 #include <string>
20 #include <getopt.h>
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <unistd.h>
24 #include <fstream>
25 #include <sys/stat.h>
26 #include <algorithm>
27 #include "../include/ds.h"
28 #include "../include/unit_test.h"
29 
33 Grid parseArgs(int argc, char** argv);
34 
35 #endif
Grid parseArgs(int argc, char **argv)
Parses command-line input, creates initial grid.
Class to hold the variable map and grid information.
Definition: ds.h:86