Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 0155e448 authored by Vincent Danjean's avatar Vincent Danjean
Browse files

Cleanup headers

git-svn-id: svn+ssh://imag/users/huron/danjean/svnroot/claire/altree/trunk@454 cf695345-040a-0410-a956-b889e835fe2e
parent 8cd630ff
No related branches found
No related tags found
No related merge requests found
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
#include "ppport.h" #include "ppport.h"
#include <fisher.h> #include "fisher.h"
#include <chisq.h> #include "chisq.h"
#include <double_permutation.h> #include "double_permutation.h"
#include "const-c.inc" #include "const-c.inc"
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
#include "double_permutation.h" #include "double_permutation.h"
#define CALC_PVAL(count, nb_sample) \ #define CALC_PVAL(count, nb_sample) \
((datatype_t)(count-1))/* On s'enlève soi-même*/ \ (((datatype_t)(count-1))/* On s'enlève soi-même*/ \
/nb_sample /(nb_sample))
int read_matrice(matrice_t mat, int nb_sample, int nb_chi2) int read_matrice(matrice_t mat, int nb_sample, int nb_chi2)
......
#ifndef _DOUBLE_PERMUTATION_H #ifndef _DOUBLE_PERMUTATION_H
#define _DOUBLE_PERMUTATION_H #define _DOUBLE_PERMUTATION_H
#include <datatype.h> #include "datatype.h"
typedef datatype_t *ensemble_t; typedef datatype_t *ensemble_t;
typedef ensemble_t *matrice_t; typedef ensemble_t *matrice_t;
......
#include "./fisher.h" #include "fisher.h"
#include <math.h> #include <math.h>
typedef struct { typedef struct {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment