Skip to content
Snippets Groups Projects
Commit cbaac534 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

Corrected bug with command win

parent 30aa6c54
No related branches found
No related tags found
No related merge requests found
/* $Id: Message.h,v 1.3 2000-11-23 23:20:34 geuzaine Exp $ */
/* $Id: Message.h,v 1.4 2000-11-24 00:11:25 geuzaine Exp $ */
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
......@@ -26,7 +26,7 @@
#define PARSER_INFO_STR "Parse Info : "
#define DEBUG_STR "Debug : "
#define WHITE_STR " "
#define WHITE_STR " : "
void Signal (int signum);
void Msg (int level, char *fmt, ...);
......
#define GMSH_VERSION 0.995
#define GMSH_DATE "Thu Nov 23 18:15:16 CET 2000"
#define GMSH_HOST "elap20.montefiore.ulg.ac.be"
#define GMSH_DATE "Fri Nov 24 00:22:29 CET 2000"
#define GMSH_HOST "geuz.montefiore.ulg.ac.be"
#define GMSH_PACKAGER "geuzaine"
#define GMSH_OS "IRIX64 6.5"
#define GMSH_OS "Linux 2.2.16-22"
#define GMSH_URL "http://www.geuz.org/gmsh/"
#define GMSH_EMAIL "Christophe.Geuzaine@ulg.ac.be, Remacle@scorec.rpi.edu"
some rules to follow:
Some easy rules to make the code easy to read/debug/maintain:
- please!, enable full warnings with your compiler (e.g. gcc -Wall)
- use Msg() to print information/erros/etc.
- *please* enable full warnings for your compiler (e.g. gcc -Wall)
- *always* use Msg() to print information/erros/etc.
- indent your files and suppress the tabs (untabify)
To download the latset full source by CVS, type
cvs -d :pserver:YOUR_NAME@elap57.montefiore.ulg.ac.be:/usr/users57/cvs-master COMMAND
where YOUR_NAME is your username on elap57.montefiore.ulg.ac.be, and where COMMAND is
first 'login' (you will be prompted for a password), and then 'checkout gmsh'. When
this is done, you can use 'logout' to exit.
To update your local version, type
cvs update
To submit your changes, type
cvs commit
affichier un point de couleur au CG de chaque element indiquant sa
qualite.
/* $Id: Main.cpp,v 1.6 2000-11-23 23:20:35 geuzaine Exp $ */
/* $Id: Main.cpp,v 1.7 2000-11-24 00:11:25 geuzaine Exp $ */
#include <signal.h>
......@@ -454,6 +454,8 @@ int main(int argc, char *argv[]){
XColor ov_color_def, ov_color_exact;
extern char *TextBuffer, TextAbout[1024];
fprintf(stderr, "%s, Version %g\n", gmsh_progname, GMSH_VERSION);
/* Gmsh default context options */
InitContext(&CTX);
......@@ -462,8 +464,6 @@ int main(int argc, char *argv[]){
Get_Options(argc, argv, &nbf);
Msg(INFOS, "%s %g", gmsh_progname, GMSH_VERSION);
/* Initialize the static Mesh */
M.Vertices = NULL ;
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment