Mentions légales du service

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

Update perl XS files

- new ppport.h file
- xs and inc files patched as suggested by ppport.h
parent 81706bbf
No related branches found
No related tags found
No related merge requests found
...@@ -123,14 +123,14 @@ DoublePermutation(nb_sample, nb_chi2, data) ...@@ -123,14 +123,14 @@ DoublePermutation(nb_sample, nb_chi2, data)
av_push(ra, newSVnv(rep[j])); av_push(ra, newSVnv(rep[j]));
//fprintf(stderr, "chi2[%i]=%lf\n", j ,rep[j]); //fprintf(stderr, "chi2[%i]=%lf\n", j ,rep[j]);
} }
hv_store(RETVAL, "chi2", 4, newRV((SV *)ra), 0); hv_store(RETVAL, "chi2", 4, newRV_inc((SV *)ra), 0);
ra = (AV *)sv_2mortal((SV *)newAV()); ra = (AV *)sv_2mortal((SV *)newAV());
for (j=0; j<nb_sample; j++) { for (j=0; j<nb_sample; j++) {
av_push(ra, newSVnv(ens[j])); av_push(ra, newSVnv(ens[j]));
//fprintf(stderr, "pmin[%i]=%lf\n", j ,rep[j]); //fprintf(stderr, "pmin[%i]=%lf\n", j ,rep[j]);
} }
hv_store(RETVAL, "distrib_pmin", 12, newRV((SV *)ra), 0); hv_store(RETVAL, "distrib_pmin", 12, newRV_inc((SV *)ra), 0);
free_matrice(mat, nb_sample, nb_chi2); free_matrice(mat, nb_sample, nb_chi2);
free_replicat(rep); free_replicat(rep);
...@@ -221,7 +221,7 @@ ResamplingChi2(leaf_refs, leaf_depth, leaf_parent, nleaf_parent, max_depth, prol ...@@ -221,7 +221,7 @@ ResamplingChi2(leaf_refs, leaf_depth, leaf_parent, nleaf_parent, max_depth, prol
av_push(ra, newSVnv(results[i])); av_push(ra, newSVnv(results[i]));
//fprintf(stderr, "chi2[%i]=%lf\n", i ,results[i]); //fprintf(stderr, "chi2[%i]=%lf\n", i ,results[i]);
} }
hv_store(RETVAL, "chi2s", 5, newRV((SV *)ra), 0); hv_store(RETVAL, "chi2s", 5, newRV_inc((SV *)ra), 0);
free(lcc); free(lcc);
free(tree.ld); free(tree.ld);
......
...@@ -32,37 +32,37 @@ constant(sv) ...@@ -32,37 +32,37 @@ constant(sv)
break; break;
/* Uncomment this if you need to return IVs /* Uncomment this if you need to return IVs
case PERL_constant_ISIV: case PERL_constant_ISIV:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHi(iv); PUSHi(iv);
break; */ break; */
/* Uncomment this if you need to return NOs /* Uncomment this if you need to return NOs
case PERL_constant_ISNO: case PERL_constant_ISNO:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHs(&PL_sv_no); PUSHs(&PL_sv_no);
break; */ break; */
/* Uncomment this if you need to return NVs /* Uncomment this if you need to return NVs
case PERL_constant_ISNV: case PERL_constant_ISNV:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHn(nv); PUSHn(nv);
break; */ break; */
/* Uncomment this if you need to return PVs /* Uncomment this if you need to return PVs
case PERL_constant_ISPV: case PERL_constant_ISPV:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHp(pv, strlen(pv)); PUSHp(pv, strlen(pv));
break; */ break; */
/* Uncomment this if you need to return PVNs /* Uncomment this if you need to return PVNs
case PERL_constant_ISPVN: case PERL_constant_ISPVN:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHp(pv, iv); PUSHp(pv, iv);
break; */ break; */
/* Uncomment this if you need to return SVs /* Uncomment this if you need to return SVs
case PERL_constant_ISSV: case PERL_constant_ISSV:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHs(sv); PUSHs(sv);
break; */ break; */
...@@ -71,13 +71,13 @@ constant(sv) ...@@ -71,13 +71,13 @@ constant(sv)
break; */ break; */
/* Uncomment this if you need to return UVs /* Uncomment this if you need to return UVs
case PERL_constant_ISUV: case PERL_constant_ISUV:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHu((UV)iv); PUSHu((UV)iv);
break; */ break; */
/* Uncomment this if you need to return YESs /* Uncomment this if you need to return YESs
case PERL_constant_ISYES: case PERL_constant_ISYES:
EXTEND(SP, 1); EXTEND(SP, 2);
PUSHs(&PL_sv_undef); PUSHs(&PL_sv_undef);
PUSHs(&PL_sv_yes); PUSHs(&PL_sv_yes);
break; */ break; */
......
#include "ppport.h"
#define PERL_constant_NOTFOUND 1 #define PERL_constant_NOTFOUND 1
#define PERL_constant_NOTDEF 2 #define PERL_constant_NOTDEF 2
#define PERL_constant_ISIV 3 #define PERL_constant_ISIV 3
......
#include "ppport.h"
void void
constant(sv) constant(sv)
PREINIT: PREINIT:
......
This diff is collapsed.
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