[BACK]Return to code-n.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / hgm / mh / src

Diff for /OpenXM/src/hgm/mh/src/code-n.c between version 1.8 and 1.9

version 1.8, 2015/03/24 05:59:43 version 1.9, 2015/04/02 01:11:13
Line 1 
Line 1 
 /*  /*
 $OpenXM: OpenXM/src/hgm/mh/src/code-n.c,v 1.7 2013/03/07 05:23:31 takayama Exp $  $OpenXM: OpenXM/src/hgm/mh/src/code-n.c,v 1.8 2015/03/24 05:59:43 takayama Exp $
 License: LGPL  License: LGPL
 Ref: Copied from this11/misc-2011/A1/wishart/Prog  Ref: Copied from this11/misc-2011/A1/wishart/Prog
 cf. @s/2011/12/01-my-note-code-n.pdf  cf. @s/2011/12/01-my-note-code-n.pdf
Line 11  cf. @s/2011/12/01-my-note-code-n.pdf
Line 11  cf. @s/2011/12/01-my-note-code-n.pdf
 #include "mh.h"  #include "mh.h"
   
 static void error_code(char *s);  static void error_code(char *s);
   #ifdef STANDALONE
 static void showf(char *s,double *v,int m);  static void showf(char *s,double *v,int m);
 static void showf(char *s,double *v,int m);  static void showf(char *s,double *v,int m);
 static void showf2(char *s,double *v,int m,int n);  static void showf2(char *s,double *v,int m,int n);
   #endif
   
 extern int MH_M;  extern int MH_M;
 extern int MH_RANK;  extern int MH_RANK;
Line 177  static void error_code(char *s) {
Line 179  static void error_code(char *s) {
   mh_exit(10);    mh_exit(10);
 }  }
   
   #ifdef STANDALONE
 /* for debug */  /* for debug */
 static void showf(char *s,double *v,int m) {  static void showf(char *s,double *v,int m) {
   int i;    int i;
Line 209  static void showf2(char *s,double *v,int m,int n) {
Line 212  static void showf2(char *s,double *v,int m,int n) {
   oxprintf("member(0,0)=%d, member(0,1)=%d, member(0,2)=%d,member(0,3)=%d\n",    oxprintf("member(0,0)=%d, member(0,1)=%d, member(0,2)=%d,member(0,3)=%d\n",
          member(0,0),member(0,1),member(0,2),member(0,3));           member(0,0),member(0,1),member(0,2),member(0,3));
 }  }
   #endif

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>