Line data Source code
1 : /**********************************************************************/ 2 : /* DO NOT MODIFY THIS HEADER */ 3 : /* Swift, a Fourier spectral solver for MOOSE */ 4 : /* */ 5 : /* Copyright 2024 Battelle Energy Alliance, LLC */ 6 : /* ALL RIGHTS RESERVED */ 7 : /**********************************************************************/ 8 : 9 : #include "SwiftApp.h" 10 : #include "MooseMain.h" 11 : 12 : // Begin the main program. 13 : int 14 136 : main(int argc, char * argv[]) 15 : { 16 136 : Moose::main<SwiftApp>(argc, argv); 17 : 18 : return 0; 19 : }