blob: 18a4ca07c4ed4987d3ae4af076ded3405df475cc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include<stdio.h>
#include<gsl/gsl_permutation.h>
int* gsl_per_init(size_t N, int* y, void *p)
{
gsl_permutation* op = (gsl_permutation*)p;
gsl_permutation_init(op);
y = (op -> data);
return y;
}
|