PSCF v1.1
pscf_pg2.cu
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include <pspg/System.h>
9
10int main(int argc, char **argv)
11{
12
14
15 // Process command line options
16 system.setOptions(argc, argv);
17
18 // Read parameters from default parameter file
19 system.readParam();
20
21 // Read command script to run system
22 system.readCommands();
23 //cudaDeviceReset();
24 return 0;
25}
Main class in SCFT simulation of one system.
Definition: pspg/System.h:71
virtual void readParam(std::istream &in)
Read input parameters (with opening and closing lines).
void readCommands(std::istream &in)
Read command script.
void setOptions(int argc, char **argv)
Process command line options.