HΦ  3.2.0
splash.c
Go to the documentation of this file.
1 /* HPhi - Quantum Lattice Model Simulator */
2 /* Copyright (C) 2015 The University of Tokyo */
3 
4 /* This program is free software: you can redistribute it and/or modify */
5 /* it under the terms of the GNU General Public License as published by */
6 /* the Free Software Foundation, either version 3 of the License, or */
7 /* (at your option) any later version. */
8 
9 /* This program is distributed in the hope that it will be useful, */
10 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12 /* GNU General Public License for more details. */
13 
14 /* You should have received a copy of the GNU General Public License */
15 /* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 /*-------------------------------------------------------------*/
20 #include <stdio.h>
21 #include "global.h"
25 void splash(){
26  int ver_maj =
27 #include "version_major.h"
28 ;
29  int ver_min =
30 #include "version_minor.h"
31 ;
32  int ver_pat =
33 #include "version_patch.h"
34 ;
35 
36  fprintf(stdoutMPI, " \n");
37  fprintf(stdoutMPI, " ,ammmmmmmmmmmmmmb,, Welcome to the \n");
38  fprintf(stdoutMPI, " ,@@` dm mb ===m \n");
39  fprintf(stdoutMPI, " ,@@` d@@@@@@@@@@@@@@@@b Pm, @@ @@ @@ \n");
40  fprintf(stdoutMPI, " d@ d@@@ @@@ @@@@@@ @@@@b ~@a @@ @@ @@@@@@@@ \n");
41  fprintf(stdoutMPI, "d@ @@@@ ^^^ @@@@ m m @@@ @, @@ @@ @@@ @@ @@@ \n");
42  fprintf(stdoutMPI, "@ @@@@_@@@_@@@@mm mm@@@ @| @@mmmmmmmmmm@@ @@ @@ @@ \n");
43  fprintf(stdoutMPI, "P@ 9@@@@@@@@@@@@@@@@@P @~ @@@@@@@@@@@@@@ @@ @@ @@ \n");
44  fprintf(stdoutMPI, " @@ ~~9@@@@@@PPP~ @P @@ @@ @@@ @@ @@@ \n");
45  fprintf(stdoutMPI, " ~@@b @@@@@@@ ,@@~ @@ @@ @@@@@@@@ \n");
46  fprintf(stdoutMPI, " ~@@@m,,@@@@@@@@@ ,m@~` @@ @@ @@ \n");
47  fprintf(stdoutMPI, " ~~9@@@@@@@@@ ~ \n");
48  fprintf(stdoutMPI, " 9@P~~~9@P Version %d.%d.%d \n", ver_maj, ver_min, ver_pat);
49  fprintf(stdoutMPI, " \n");
50 
51 }/*void splash()*/
void splash()
Print logo mark and version number.
Definition: splash.c:25
FILE * stdoutMPI
File pointer to the standard output defined in InitializeMPI()
Definition: global.h:165