mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 06:41:42 +00:00
refactoring
This commit is contained in:
BIN
graph/graph
Executable file
BIN
graph/graph
Executable file
Binary file not shown.
@ -162,7 +162,14 @@ void main()
|
||||
for (i=0; i<n; i++)
|
||||
p[i] = 0;
|
||||
iso();
|
||||
|
||||
|
||||
for (i=0; i<n; i++)
|
||||
for (j=0; j<n; j++)
|
||||
printf ("%lf\n", a[i][j]);
|
||||
printf ("\n");
|
||||
for (i=0; i<n; i++)
|
||||
for (j=0; j<n; j++)
|
||||
printf ("%lf\n", b[i][j]);
|
||||
|
||||
for (i=0; i<n; i++)
|
||||
printf ("%i\t", p[i]);
|
||||
@ -176,5 +183,5 @@ void main()
|
||||
else
|
||||
printf ("\nGraphs aren't isomorthic.\n");
|
||||
|
||||
getch();
|
||||
// getch();
|
||||
}
|
||||
|
8
graph/graph.txt
Executable file
8
graph/graph.txt
Executable file
@ -0,0 +1,8 @@
|
||||
3
|
||||
0 1 0
|
||||
1 0 1
|
||||
0 1 0
|
||||
|
||||
0 0 1
|
||||
0 0 1
|
||||
1 1 0
|
152
graph/new/graph.c
Normal file
152
graph/new/graph.c
Normal file
@ -0,0 +1,152 @@
|
||||
/* Library for check isomorphic graph
|
||||
*
|
||||
* Usage:
|
||||
* iso_check (number_of_vertex, graph)
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include "nrutil.h"
|
||||
|
||||
|
||||
int equat (const int num_mol_agl, float *c, const int rang, float *sol)
|
||||
{
|
||||
int i, j, k, imax;
|
||||
float max, res;
|
||||
|
||||
for (i=0; i<num_mol_agl; i++)
|
||||
if (i == rang)
|
||||
c[i*num_mol_agl+num_mol_agl] = 1;
|
||||
else
|
||||
c[i*num_mol_agl+num_mol_agl] = 0;
|
||||
|
||||
for (i=0; i<num_mol_agl; i++)
|
||||
{
|
||||
imax = 0;
|
||||
max = c[imax*num_mol_agl+i];
|
||||
for (j=i; j<num_mol_agl; j++)
|
||||
if (fabs (c[j*num_mol_agl+i]) > max)
|
||||
{
|
||||
max = fabs (c[j*num_mol_agl+i]);
|
||||
imax = j;
|
||||
}
|
||||
for (j=0; j<=num_mol_agl; j++)
|
||||
{
|
||||
res = c[i*num_mol_agl+j];
|
||||
c[i*num_mol_agl+j] = c[imax*num_mol_agl+j];
|
||||
c[imax*num_mol_agl+j] = res;
|
||||
}
|
||||
|
||||
for (j=0; j<num_mol_agl; j++)
|
||||
if (j != i)
|
||||
{
|
||||
res = c[j*num_mol_agl+i] / c[i*num_mol_agl+i];
|
||||
for(k=i; k<=num_mol_agl; k++)
|
||||
c[j*num_mol_agl+k] = c[j*num_mol_agl+k] - (res * c[i*num_mol_agl+k]);
|
||||
}
|
||||
}
|
||||
|
||||
for (i=0; i<num_mol_agl; i++)
|
||||
sol[i] = c[i*num_mol_agl+num_mol_agl] / c[i*num_mol_agl+i];
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int three_vertex (const int *matrix)
|
||||
{
|
||||
int i, j;
|
||||
int test_mtx[2][9] = {{0, 1, 0, 1, 0, 1, 0, 1, 0}, {0, 1, 1, 1, 0, 1, 1, 1, 0}};
|
||||
|
||||
for (i=0; i<2; i++)
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int iso (const int N, const int *mtx, const int *ref_mtx)
|
||||
{
|
||||
int i, j, k, *indx;
|
||||
float *a, *b, *d, dmax, det, eps, **nr_mtx, *x;
|
||||
|
||||
// initialization of variables
|
||||
a = (float *) malloc (N * N * sizeof (float));
|
||||
d = (float *) malloc (N * sizeof (float));
|
||||
nr_mtx = matrix (1, N, 1, N);
|
||||
indx = ivector (1, N);
|
||||
x = vector (1, N);
|
||||
// copy matrix
|
||||
for (i=0; i<N; i++)
|
||||
for (j=0; j<N; j++)
|
||||
a[i*N+j] = mtx[i*N+j];
|
||||
// create d-matrix
|
||||
for (i=0; i<N; i++)
|
||||
{
|
||||
d[i] = 0;
|
||||
for (j=0; j<N; j++)
|
||||
if (j != i)
|
||||
d[i] += a[i*N+j];
|
||||
}
|
||||
dmax = d[0];
|
||||
for (i=0; i<N; i++)
|
||||
if (d[i] > dmax)
|
||||
dmax = d[i];
|
||||
|
||||
for (i=0; i<N; i++)
|
||||
{
|
||||
// to nr object
|
||||
for (j=1; j<=N; j++)
|
||||
for (k=1; k<=N; k++)
|
||||
nr_mtx[j][k] = a[(j-1)*N+(k-1)];
|
||||
ludcmp (nr_mtx, N, indx, &det);
|
||||
for(j=1; j<=N; j++) det *= nr_mtx[j][j];
|
||||
|
||||
// define SLE
|
||||
eps = sqrt (pow ((d + d[i]), 2) + 2 / n * (det + 2 + 2 / n)) - (d + d[i]);
|
||||
for (j=0; j<N; j++)
|
||||
for (k=0; k<N; k++)
|
||||
if ((j == k) && (j == i))
|
||||
a[j*N+k] = a[j*N+k] + eps;
|
||||
else
|
||||
a[j*N+k] = a[j*N+k];
|
||||
// solution of SLE
|
||||
for (j=1; j<=N; j++)
|
||||
{
|
||||
if (j == i)
|
||||
x[j] = 1;
|
||||
else
|
||||
x[j] = 0;
|
||||
for (k=1; k<=N; k++)
|
||||
nr_mtx[j][k] = a[(j-1)*N+(k-1)];
|
||||
ludcmp (nr_mtx, N, indx, &det);
|
||||
lubksb (nr_mtx, N, indx, x);
|
||||
}
|
||||
}
|
||||
|
||||
free_vector (i);
|
||||
free_ivector (indx);
|
||||
free_matrix (nr_mtx);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int iso_check (const int num_mol_agl, const int *matrix)
|
||||
{
|
||||
int i, j, type;
|
||||
|
||||
type = 0;
|
||||
|
||||
switch (num_mol_agl)
|
||||
{
|
||||
case 2:
|
||||
type = 1;
|
||||
break;
|
||||
case 3:
|
||||
type = three_vertex (matrix);
|
||||
}
|
||||
|
||||
return type;
|
||||
}
|
113
graph/new/nr_lautil.c
Normal file
113
graph/new/nr_lautil.c
Normal file
@ -0,0 +1,113 @@
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include "nrutil.h"
|
||||
#define TINY 1.0e-20
|
||||
// #define N 2
|
||||
|
||||
|
||||
void ludcmp (float **a, int n, int *indx, float *d)
|
||||
{
|
||||
int i, imax, j, k;
|
||||
float big, dum, sum, temp;
|
||||
float *vv;
|
||||
|
||||
vv = vector (1,n);
|
||||
*d = 1.0;
|
||||
for (i=1; i<=n; i++)
|
||||
{
|
||||
big = 0.0;
|
||||
for (j=1; j<=n; j++)
|
||||
if ((temp = fabs(a[i][j])) > big) big = temp;
|
||||
if (big == 0.0) nrerror("Singular matrix in routine ludcmp");
|
||||
vv[i] = 1.0 / big;
|
||||
}
|
||||
|
||||
for (j=1; j<=n; j++)
|
||||
{
|
||||
for (i=1; i<j; i++)
|
||||
{
|
||||
sum = a[i][j];
|
||||
for (k=1; k<i; k++) sum -= a[i][k] * a[k][j];
|
||||
a[i][j] = sum;
|
||||
}
|
||||
big = 0.0;
|
||||
for (i=j; i<=n; i++)
|
||||
{
|
||||
sum = a[i][j];
|
||||
for (k=1; k<j; k++)
|
||||
sum -= a[i][k] * a[k][j];
|
||||
a[i][j] = sum;
|
||||
if ((dum = vv[i] * fabs(sum)) >= big)
|
||||
{
|
||||
big = dum;
|
||||
imax = i;
|
||||
}
|
||||
}
|
||||
if (j != imax)
|
||||
{
|
||||
for (k=1; k<=n; k++)
|
||||
{
|
||||
dum = a[imax][k];
|
||||
a[imax][k] = a[j][k];
|
||||
a[j][k] = dum;
|
||||
}
|
||||
*d = -(*d);
|
||||
vv[imax] = vv[j];
|
||||
}
|
||||
indx[j] = imax;
|
||||
if (a[j][j] == 0.0) a[j][j] = TINY;
|
||||
if (j != n)
|
||||
{
|
||||
dum = 1.0 / a[j][j];
|
||||
for (i=j+1; i<=n; i++) a[i][j] *= dum;
|
||||
}
|
||||
}
|
||||
free_vector (vv, 1, n);
|
||||
}
|
||||
|
||||
|
||||
void lubksb (float **a, int n, int *indx, float b[])
|
||||
{
|
||||
int i, ii=0, ip, j;
|
||||
float sum;
|
||||
|
||||
for (i=1; i<=n; i++)
|
||||
{
|
||||
ip = indx[i];
|
||||
sum = b[ip];
|
||||
b[ip] = b[i];
|
||||
if (ii)
|
||||
for (j=ii; j<=i-1; j++) sum -= a[i][j] * b[j];
|
||||
else if (sum) ii = i;
|
||||
b[i] = sum;
|
||||
}
|
||||
for (i=n; i>=1; i--)
|
||||
{
|
||||
sum = b[i];
|
||||
for (j=i+1; j<=n; j++) sum -= a[i][j] * b[j];
|
||||
b[i] = sum / a[i][i];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// int main ()
|
||||
// {
|
||||
// float **a, d;
|
||||
// int i, j, *indx;
|
||||
//
|
||||
// float a_array[N][N] = {
|
||||
// { 1.0, 2.0 },
|
||||
// { 3.0, 4.0 }
|
||||
// };
|
||||
// a = matrix (1, N, 1, N);
|
||||
// for (i=1; i<N+1; i++)
|
||||
// for (j=1; j<N+1; j++)
|
||||
// a[i][j] = a_array[i-1][j-1];
|
||||
// indx = ivector (1, N);
|
||||
// ludcmp (a, N, indx, &d);
|
||||
// for(j=1; j<=N; j++) d *= a[j][j];
|
||||
// printf ("%lf\n", d);
|
||||
//
|
||||
// return 0;
|
||||
// }
|
614
graph/new/nrutil.c
Normal file
614
graph/new/nrutil.c
Normal file
@ -0,0 +1,614 @@
|
||||
#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#define NR_END 1
|
||||
#define FREE_ARG char*
|
||||
|
||||
void nrerror(char error_text[])
|
||||
/* Numerical Recipes standard error handler */
|
||||
{
|
||||
fprintf(stderr,"Numerical Recipes run-time error...\n");
|
||||
fprintf(stderr,"%s\n",error_text);
|
||||
fprintf(stderr,"...now exiting to system...\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
float *vector(long nl, long nh)
|
||||
/* allocate a float vector with subscript range v[nl..nh] */
|
||||
{
|
||||
float *v;
|
||||
|
||||
v=(float *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(float)));
|
||||
if (!v) nrerror("allocation failure in vector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
int *ivector(long nl, long nh)
|
||||
/* allocate an int vector with subscript range v[nl..nh] */
|
||||
{
|
||||
int *v;
|
||||
|
||||
v=(int *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(int)));
|
||||
if (!v) nrerror("allocation failure in ivector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
unsigned char *cvector(long nl, long nh)
|
||||
/* allocate an unsigned char vector with subscript range v[nl..nh] */
|
||||
{
|
||||
unsigned char *v;
|
||||
|
||||
v=(unsigned char *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(unsigned char)));
|
||||
if (!v) nrerror("allocation failure in cvector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
unsigned long *lvector(long nl, long nh)
|
||||
/* allocate an unsigned long vector with subscript range v[nl..nh] */
|
||||
{
|
||||
unsigned long *v;
|
||||
|
||||
v=(unsigned long *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(long)));
|
||||
if (!v) nrerror("allocation failure in lvector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
double *dvector(long nl, long nh)
|
||||
/* allocate a double vector with subscript range v[nl..nh] */
|
||||
{
|
||||
double *v;
|
||||
|
||||
v=(double *)malloc((size_t) ((nh-nl+1+NR_END)*sizeof(double)));
|
||||
if (!v) nrerror("allocation failure in dvector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
float **matrix(long nrl, long nrh, long ncl, long nch)
|
||||
/* allocate a float matrix with subscript range m[nrl..nrh][ncl..nch] */
|
||||
{
|
||||
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
float **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(float **) malloc((size_t)((nrow+NR_END)*sizeof(float*)));
|
||||
if (!m) nrerror("allocation failure 1 in matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
m[nrl]=(float *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(float)));
|
||||
if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
|
||||
m[nrl] += NR_END;
|
||||
m[nrl] -= ncl;
|
||||
|
||||
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
double **dmatrix(long nrl, long nrh, long ncl, long nch)
|
||||
/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */
|
||||
{
|
||||
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
double **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(double **) malloc((size_t)((nrow+NR_END)*sizeof(double*)));
|
||||
if (!m) nrerror("allocation failure 1 in matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
m[nrl]=(double *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(double)));
|
||||
if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
|
||||
m[nrl] += NR_END;
|
||||
m[nrl] -= ncl;
|
||||
|
||||
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
int **imatrix(long nrl, long nrh, long ncl, long nch)
|
||||
/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */
|
||||
{
|
||||
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
int **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(int **) malloc((size_t)((nrow+NR_END)*sizeof(int*)));
|
||||
if (!m) nrerror("allocation failure 1 in matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
m[nrl]=(int *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(int)));
|
||||
if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
|
||||
m[nrl] += NR_END;
|
||||
m[nrl] -= ncl;
|
||||
|
||||
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch,
|
||||
long newrl, long newcl)
|
||||
/* point a submatrix [newrl..][newcl..] to a[oldrl..oldrh][oldcl..oldch] */
|
||||
{
|
||||
long i,j,nrow=oldrh-oldrl+1,ncol=oldcl-newcl;
|
||||
float **m;
|
||||
|
||||
/* allocate array of pointers to rows */
|
||||
m=(float **) malloc((size_t) ((nrow+NR_END)*sizeof(float*)));
|
||||
if (!m) nrerror("allocation failure in submatrix()");
|
||||
m += NR_END;
|
||||
m -= newrl;
|
||||
|
||||
/* set pointers to rows */
|
||||
for(i=oldrl,j=newrl;i<=oldrh;i++,j++) m[j]=a[i]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch)
|
||||
/* allocate a float matrix m[nrl..nrh][ncl..nch] that points to the matrix
|
||||
declared in the standard C manner as a[nrow][ncol], where nrow=nrh-nrl+1
|
||||
and ncol=nch-ncl+1. The routine should be called with the address
|
||||
&a[0][0] as the first argument. */
|
||||
{
|
||||
long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
float **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(float **) malloc((size_t) ((nrow+NR_END)*sizeof(float*)));
|
||||
if (!m) nrerror("allocation failure in convert_matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
/* set pointers to rows */
|
||||
m[nrl]=a-ncl;
|
||||
for(i=1,j=nrl+1;i<nrow;i++,j++) m[j]=m[j-1]+ncol;
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
float ***f3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh)
|
||||
/* allocate a float 3tensor with range t[nrl..nrh][ncl..nch][ndl..ndh] */
|
||||
{
|
||||
long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1,ndep=ndh-ndl+1;
|
||||
float ***t;
|
||||
|
||||
/* allocate pointers to pointers to rows */
|
||||
t=(float ***) malloc((size_t)((nrow+NR_END)*sizeof(float**)));
|
||||
if (!t) nrerror("allocation failure 1 in f3tensor()");
|
||||
t += NR_END;
|
||||
t -= nrl;
|
||||
|
||||
/* allocate pointers to rows and set pointers to them */
|
||||
t[nrl]=(float **) malloc((size_t)((nrow*ncol+NR_END)*sizeof(float*)));
|
||||
if (!t[nrl]) nrerror("allocation failure 2 in f3tensor()");
|
||||
t[nrl] += NR_END;
|
||||
t[nrl] -= ncl;
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
t[nrl][ncl]=(float *) malloc((size_t)((nrow*ncol*ndep+NR_END)*sizeof(float)));
|
||||
if (!t[nrl][ncl]) nrerror("allocation failure 3 in f3tensor()");
|
||||
t[nrl][ncl] += NR_END;
|
||||
t[nrl][ncl] -= ndl;
|
||||
|
||||
for(j=ncl+1;j<=nch;j++) t[nrl][j]=t[nrl][j-1]+ndep;
|
||||
for(i=nrl+1;i<=nrh;i++) {
|
||||
t[i]=t[i-1]+ncol;
|
||||
t[i][ncl]=t[i-1][ncl]+ncol*ndep;
|
||||
for(j=ncl+1;j<=nch;j++) t[i][j]=t[i][j-1]+ndep;
|
||||
}
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return t;
|
||||
}
|
||||
|
||||
void free_vector(float *v, long nl, long nh)
|
||||
/* free a float vector allocated with vector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_ivector(int *v, long nl, long nh)
|
||||
/* free an int vector allocated with ivector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_cvector(unsigned char *v, long nl, long nh)
|
||||
/* free an unsigned char vector allocated with cvector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_lvector(unsigned long *v, long nl, long nh)
|
||||
/* free an unsigned long vector allocated with lvector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_dvector(double *v, long nl, long nh)
|
||||
/* free a double vector allocated with dvector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_matrix(float **m, long nrl, long nrh, long ncl, long nch)
|
||||
/* free a float matrix allocated by matrix() */
|
||||
{
|
||||
free((FREE_ARG) (m[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (m+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_dmatrix(double **m, long nrl, long nrh, long ncl, long nch)
|
||||
/* free a double matrix allocated by dmatrix() */
|
||||
{
|
||||
free((FREE_ARG) (m[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (m+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_imatrix(int **m, long nrl, long nrh, long ncl, long nch)
|
||||
/* free an int matrix allocated by imatrix() */
|
||||
{
|
||||
free((FREE_ARG) (m[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (m+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_submatrix(float **b, long nrl, long nrh, long ncl, long nch)
|
||||
/* free a submatrix allocated by submatrix() */
|
||||
{
|
||||
free((FREE_ARG) (b+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_convert_matrix(float **b, long nrl, long nrh, long ncl, long nch)
|
||||
/* free a matrix allocated by convert_matrix() */
|
||||
{
|
||||
free((FREE_ARG) (b+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_f3tensor(float ***t, long nrl, long nrh, long ncl, long nch,
|
||||
long ndl, long ndh)
|
||||
/* free a float f3tensor allocated by f3tensor() */
|
||||
{
|
||||
free((FREE_ARG) (t[nrl][ncl]+ndl-NR_END));
|
||||
free((FREE_ARG) (t[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (t+nrl-NR_END));
|
||||
}
|
||||
|
||||
#else /* ANSI */
|
||||
/* traditional - K&R */
|
||||
|
||||
#include <stdio.h>
|
||||
#define NR_END 1
|
||||
#define FREE_ARG char*
|
||||
|
||||
void nrerror(error_text)
|
||||
char error_text[];
|
||||
/* Numerical Recipes standard error handler */
|
||||
{
|
||||
void exit();
|
||||
|
||||
fprintf(stderr,"Numerical Recipes run-time error...\n");
|
||||
fprintf(stderr,"%s\n",error_text);
|
||||
fprintf(stderr,"...now exiting to system...\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
float *vector(nl,nh)
|
||||
long nh,nl;
|
||||
/* allocate a float vector with subscript range v[nl..nh] */
|
||||
{
|
||||
float *v;
|
||||
|
||||
v=(float *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(float)));
|
||||
if (!v) nrerror("allocation failure in vector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
int *ivector(nl,nh)
|
||||
long nh,nl;
|
||||
/* allocate an int vector with subscript range v[nl..nh] */
|
||||
{
|
||||
int *v;
|
||||
|
||||
v=(int *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(int)));
|
||||
if (!v) nrerror("allocation failure in ivector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
unsigned char *cvector(nl,nh)
|
||||
long nh,nl;
|
||||
/* allocate an unsigned char vector with subscript range v[nl..nh] */
|
||||
{
|
||||
unsigned char *v;
|
||||
|
||||
v=(unsigned char *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(unsigned char)));
|
||||
if (!v) nrerror("allocation failure in cvector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
unsigned long *lvector(nl,nh)
|
||||
long nh,nl;
|
||||
/* allocate an unsigned long vector with subscript range v[nl..nh] */
|
||||
{
|
||||
unsigned long *v;
|
||||
|
||||
v=(unsigned long *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(long)));
|
||||
if (!v) nrerror("allocation failure in lvector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
double *dvector(nl,nh)
|
||||
long nh,nl;
|
||||
/* allocate a double vector with subscript range v[nl..nh] */
|
||||
{
|
||||
double *v;
|
||||
|
||||
v=(double *)malloc((unsigned int) ((nh-nl+1+NR_END)*sizeof(double)));
|
||||
if (!v) nrerror("allocation failure in dvector()");
|
||||
return v-nl+NR_END;
|
||||
}
|
||||
|
||||
float **matrix(nrl,nrh,ncl,nch)
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* allocate a float matrix with subscript range m[nrl..nrh][ncl..nch] */
|
||||
{
|
||||
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
float **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(float **) malloc((unsigned int)((nrow+NR_END)*sizeof(float*)));
|
||||
if (!m) nrerror("allocation failure 1 in matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
m[nrl]=(float *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(float)));
|
||||
if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
|
||||
m[nrl] += NR_END;
|
||||
m[nrl] -= ncl;
|
||||
|
||||
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
double **dmatrix(nrl,nrh,ncl,nch)
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */
|
||||
{
|
||||
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
double **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(double **) malloc((unsigned int)((nrow+NR_END)*sizeof(double*)));
|
||||
if (!m) nrerror("allocation failure 1 in matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
m[nrl]=(double *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(double)));
|
||||
if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
|
||||
m[nrl] += NR_END;
|
||||
m[nrl] -= ncl;
|
||||
|
||||
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
int **imatrix(nrl,nrh,ncl,nch)
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */
|
||||
{
|
||||
long i, nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
int **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(int **) malloc((unsigned int)((nrow+NR_END)*sizeof(int*)));
|
||||
if (!m) nrerror("allocation failure 1 in matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
m[nrl]=(int *) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(int)));
|
||||
if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
|
||||
m[nrl] += NR_END;
|
||||
m[nrl] -= ncl;
|
||||
|
||||
for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
float **submatrix(a,oldrl,oldrh,oldcl,oldch,newrl,newcl)
|
||||
float **a;
|
||||
long newcl,newrl,oldch,oldcl,oldrh,oldrl;
|
||||
/* point a submatrix [newrl..][newcl..] to a[oldrl..oldrh][oldcl..oldch] */
|
||||
{
|
||||
long i,j,nrow=oldrh-oldrl+1,ncol=oldcl-newcl;
|
||||
float **m;
|
||||
|
||||
/* allocate array of pointers to rows */
|
||||
m=(float **) malloc((unsigned int) ((nrow+NR_END)*sizeof(float*)));
|
||||
if (!m) nrerror("allocation failure in submatrix()");
|
||||
m += NR_END;
|
||||
m -= newrl;
|
||||
|
||||
/* set pointers to rows */
|
||||
for(i=oldrl,j=newrl;i<=oldrh;i++,j++) m[j]=a[i]+ncol;
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
float **convert_matrix(a,nrl,nrh,ncl,nch)
|
||||
float *a;
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* allocate a float matrix m[nrl..nrh][ncl..nch] that points to the matrix
|
||||
declared in the standard C manner as a[nrow][ncol], where nrow=nrh-nrl+1
|
||||
and ncol=nch-ncl+1. The routine should be called with the address
|
||||
&a[0][0] as the first argument. */
|
||||
{
|
||||
long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1;
|
||||
float **m;
|
||||
|
||||
/* allocate pointers to rows */
|
||||
m=(float **) malloc((unsigned int) ((nrow+NR_END)*sizeof(float*)));
|
||||
if (!m) nrerror("allocation failure in convert_matrix()");
|
||||
m += NR_END;
|
||||
m -= nrl;
|
||||
|
||||
/* set pointers to rows */
|
||||
m[nrl]=a-ncl;
|
||||
for(i=1,j=nrl+1;i<nrow;i++,j++) m[j]=m[j-1]+ncol;
|
||||
/* return pointer to array of pointers to rows */
|
||||
return m;
|
||||
}
|
||||
|
||||
float ***f3tensor(nrl,nrh,ncl,nch,ndl,ndh)
|
||||
long nch,ncl,ndh,ndl,nrh,nrl;
|
||||
/* allocate a float 3tensor with range t[nrl..nrh][ncl..nch][ndl..ndh] */
|
||||
{
|
||||
long i,j,nrow=nrh-nrl+1,ncol=nch-ncl+1,ndep=ndh-ndl+1;
|
||||
float ***t;
|
||||
|
||||
/* allocate pointers to pointers to rows */
|
||||
t=(float ***) malloc((unsigned int)((nrow+NR_END)*sizeof(float**)));
|
||||
if (!t) nrerror("allocation failure 1 in f3tensor()");
|
||||
t += NR_END;
|
||||
t -= nrl;
|
||||
|
||||
/* allocate pointers to rows and set pointers to them */
|
||||
t[nrl]=(float **) malloc((unsigned int)((nrow*ncol+NR_END)*sizeof(float*)));
|
||||
if (!t[nrl]) nrerror("allocation failure 2 in f3tensor()");
|
||||
t[nrl] += NR_END;
|
||||
t[nrl] -= ncl;
|
||||
|
||||
/* allocate rows and set pointers to them */
|
||||
t[nrl][ncl]=(float *) malloc((unsigned int)((nrow*ncol*ndep+NR_END)*sizeof(float)));
|
||||
if (!t[nrl][ncl]) nrerror("allocation failure 3 in f3tensor()");
|
||||
t[nrl][ncl] += NR_END;
|
||||
t[nrl][ncl] -= ndl;
|
||||
|
||||
for(j=ncl+1;j<=nch;j++) t[nrl][j]=t[nrl][j-1]+ndep;
|
||||
for(i=nrl+1;i<=nrh;i++) {
|
||||
t[i]=t[i-1]+ncol;
|
||||
t[i][ncl]=t[i-1][ncl]+ncol*ndep;
|
||||
for(j=ncl+1;j<=nch;j++) t[i][j]=t[i][j-1]+ndep;
|
||||
}
|
||||
|
||||
/* return pointer to array of pointers to rows */
|
||||
return t;
|
||||
}
|
||||
|
||||
void free_vector(v,nl,nh)
|
||||
float *v;
|
||||
long nh,nl;
|
||||
/* free a float vector allocated with vector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_ivector(v,nl,nh)
|
||||
int *v;
|
||||
long nh,nl;
|
||||
/* free an int vector allocated with ivector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_cvector(v,nl,nh)
|
||||
long nh,nl;
|
||||
unsigned char *v;
|
||||
/* free an unsigned char vector allocated with cvector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_lvector(v,nl,nh)
|
||||
long nh,nl;
|
||||
unsigned long *v;
|
||||
/* free an unsigned long vector allocated with lvector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_dvector(v,nl,nh)
|
||||
double *v;
|
||||
long nh,nl;
|
||||
/* free a double vector allocated with dvector() */
|
||||
{
|
||||
free((FREE_ARG) (v+nl-NR_END));
|
||||
}
|
||||
|
||||
void free_matrix(m,nrl,nrh,ncl,nch)
|
||||
float **m;
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* free a float matrix allocated by matrix() */
|
||||
{
|
||||
free((FREE_ARG) (m[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (m+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_dmatrix(m,nrl,nrh,ncl,nch)
|
||||
double **m;
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* free a double matrix allocated by dmatrix() */
|
||||
{
|
||||
free((FREE_ARG) (m[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (m+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_imatrix(m,nrl,nrh,ncl,nch)
|
||||
int **m;
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* free an int matrix allocated by imatrix() */
|
||||
{
|
||||
free((FREE_ARG) (m[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (m+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_submatrix(b,nrl,nrh,ncl,nch)
|
||||
float **b;
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* free a submatrix allocated by submatrix() */
|
||||
{
|
||||
free((FREE_ARG) (b+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_convert_matrix(b,nrl,nrh,ncl,nch)
|
||||
float **b;
|
||||
long nch,ncl,nrh,nrl;
|
||||
/* free a matrix allocated by convert_matrix() */
|
||||
{
|
||||
free((FREE_ARG) (b+nrl-NR_END));
|
||||
}
|
||||
|
||||
void free_f3tensor(t,nrl,nrh,ncl,nch,ndl,ndh)
|
||||
float ***t;
|
||||
long nch,ncl,ndh,ndl,nrh,nrl;
|
||||
/* free a float f3tensor allocated by f3tensor() */
|
||||
{
|
||||
free((FREE_ARG) (t[nrl][ncl]+ndl-NR_END));
|
||||
free((FREE_ARG) (t[nrl]+ncl-NR_END));
|
||||
free((FREE_ARG) (t+nrl-NR_END));
|
||||
}
|
||||
|
||||
#endif /* ANSI */
|
101
graph/new/nrutil.h
Normal file
101
graph/new/nrutil.h
Normal file
@ -0,0 +1,101 @@
|
||||
#ifndef _NR_UTILS_H_
|
||||
#define _NR_UTILS_H_
|
||||
|
||||
static float sqrarg;
|
||||
#define SQR(a) ((sqrarg=(a)) == 0.0 ? 0.0 : sqrarg*sqrarg)
|
||||
|
||||
static double dsqrarg;
|
||||
#define DSQR(a) ((dsqrarg=(a)) == 0.0 ? 0.0 : dsqrarg*dsqrarg)
|
||||
|
||||
static double dmaxarg1,dmaxarg2;
|
||||
#define DMAX(a,b) (dmaxarg1=(a),dmaxarg2=(b),(dmaxarg1) > (dmaxarg2) ?\
|
||||
(dmaxarg1) : (dmaxarg2))
|
||||
|
||||
static double dminarg1,dminarg2;
|
||||
#define DMIN(a,b) (dminarg1=(a),dminarg2=(b),(dminarg1) < (dminarg2) ?\
|
||||
(dminarg1) : (dminarg2))
|
||||
|
||||
static float maxarg1,maxarg2;
|
||||
#define FMAX(a,b) (maxarg1=(a),maxarg2=(b),(maxarg1) > (maxarg2) ?\
|
||||
(maxarg1) : (maxarg2))
|
||||
|
||||
static float minarg1,minarg2;
|
||||
#define FMIN(a,b) (minarg1=(a),minarg2=(b),(minarg1) < (minarg2) ?\
|
||||
(minarg1) : (minarg2))
|
||||
|
||||
static long lmaxarg1,lmaxarg2;
|
||||
#define LMAX(a,b) (lmaxarg1=(a),lmaxarg2=(b),(lmaxarg1) > (lmaxarg2) ?\
|
||||
(lmaxarg1) : (lmaxarg2))
|
||||
|
||||
static long lminarg1,lminarg2;
|
||||
#define LMIN(a,b) (lminarg1=(a),lminarg2=(b),(lminarg1) < (lminarg2) ?\
|
||||
(lminarg1) : (lminarg2))
|
||||
|
||||
static int imaxarg1,imaxarg2;
|
||||
#define IMAX(a,b) (imaxarg1=(a),imaxarg2=(b),(imaxarg1) > (imaxarg2) ?\
|
||||
(imaxarg1) : (imaxarg2))
|
||||
|
||||
static int iminarg1,iminarg2;
|
||||
#define IMIN(a,b) (iminarg1=(a),iminarg2=(b),(iminarg1) < (iminarg2) ?\
|
||||
(iminarg1) : (iminarg2))
|
||||
|
||||
#define SIGN(a,b) ((b) >= 0.0 ? fabs(a) : -fabs(a))
|
||||
|
||||
#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */
|
||||
|
||||
void nrerror(char error_text[]);
|
||||
float *vector(long nl, long nh);
|
||||
int *ivector(long nl, long nh);
|
||||
unsigned char *cvector(long nl, long nh);
|
||||
unsigned long *lvector(long nl, long nh);
|
||||
double *dvector(long nl, long nh);
|
||||
float **matrix(long nrl, long nrh, long ncl, long nch);
|
||||
double **dmatrix(long nrl, long nrh, long ncl, long nch);
|
||||
int **imatrix(long nrl, long nrh, long ncl, long nch);
|
||||
float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch,
|
||||
long newrl, long newcl);
|
||||
float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch);
|
||||
float ***f3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh);
|
||||
void free_vector(float *v, long nl, long nh);
|
||||
void free_ivector(int *v, long nl, long nh);
|
||||
void free_cvector(unsigned char *v, long nl, long nh);
|
||||
void free_lvector(unsigned long *v, long nl, long nh);
|
||||
void free_dvector(double *v, long nl, long nh);
|
||||
void free_matrix(float **m, long nrl, long nrh, long ncl, long nch);
|
||||
void free_dmatrix(double **m, long nrl, long nrh, long ncl, long nch);
|
||||
void free_imatrix(int **m, long nrl, long nrh, long ncl, long nch);
|
||||
void free_submatrix(float **b, long nrl, long nrh, long ncl, long nch);
|
||||
void free_convert_matrix(float **b, long nrl, long nrh, long ncl, long nch);
|
||||
void free_f3tensor(float ***t, long nrl, long nrh, long ncl, long nch,
|
||||
long ndl, long ndh);
|
||||
|
||||
#else /* ANSI */
|
||||
/* traditional - K&R */
|
||||
|
||||
void nrerror();
|
||||
float *vector();
|
||||
float **matrix();
|
||||
float **submatrix();
|
||||
float **convert_matrix();
|
||||
float ***f3tensor();
|
||||
double *dvector();
|
||||
double **dmatrix();
|
||||
int *ivector();
|
||||
int **imatrix();
|
||||
unsigned char *cvector();
|
||||
unsigned long *lvector();
|
||||
void free_vector();
|
||||
void free_dvector();
|
||||
void free_ivector();
|
||||
void free_cvector();
|
||||
void free_lvector();
|
||||
void free_matrix();
|
||||
void free_submatrix();
|
||||
void free_convert_matrix();
|
||||
void free_dmatrix();
|
||||
void free_imatrix();
|
||||
void free_f3tensor();
|
||||
|
||||
#endif /* ANSI */
|
||||
|
||||
#endif /* _NR_UTILS_H_ */
|
Reference in New Issue
Block a user