Before adding another data structure to the chain.
| | |
| | | }; |
| | | typedef struct ts_vertex ts_vertex; |
| | | |
| | | typedef struct { |
| | | ts_uint n; |
| | | ts_vertex **vtx; |
| | | |
| | | } ts_vertex_list; |
| | | |
| | | |
| | | /** ts_bond is a structure that describes a bond */ |
| | | typedef struct { |
| | | ts_vertex *vtx1; |
| | |
| | | |
| | | //ts_uint ts_fprintf(FILE *fd, char *fmt, va_list ap); |
| | | |
| | | #define VTX(vlist,n) &(vlist->vtx[n]) |
| | | |
| | | #endif |
| | |
| | | */ |
| | | |
| | | int main(int argv, char *argc[]){ |
| | | ts_int i; |
| | | ts_bool retval; |
| | | ts_vertex **vlist=init_vertex_list(5); |
| | | ts_vertex_list *vlist=init_vertex_list(5); |
| | | |
| | | |
| | | retval=vtx_add_neighbour(&vlist[0],&vlist[1]); |
| | | retval=vtx_add_neighbour(VTX(vlist,1),VTX(vlist,0)); |
| | | if(retval==TS_FAIL) printf("1. already a member or vertex is null!\n"); |
| | | retval=vtx_add_neighbour(&vlist[1],&vlist[0]); |
| | | retval=vtx_add_neighbour(VTX(vlist,0),VTX(vlist,1)); |
| | | if(retval==TS_FAIL) printf("2. already a member or vertex is null!\n"); |
| | | |
| | | for(i=0;i<5;i++){ |
| | | vtx_free(&vlist[i]); |
| | | } |
| | | free(vlist); |
| | | vtx_list_free(vlist); |
| | | printf("Done.\n"); |
| | | return 0; //program finished perfectly ok. We return 0. |
| | | } |
| | |
| | | #include "vertex.h" |
| | | #include<stdio.h> |
| | | |
| | | /* Argument je struktura vlist in stevilo vertexov, ki jih zelimo dati v |
| | | * vlist je lahko NULL, N mora biti vecje od 0. Ce vlist obstaja, potem resizamo |
| | | * vlist na stevilo N. |
| | | */ |
| | | ts_vertex **init_vertex_list(ts_uint N){ |
| | | ts_vertex_list *init_vertex_list(ts_uint N){ |
| | | ts_int i; |
| | | ts_vertex **vlist; |
| | | ts_vertex_list *vlist=(ts_vertex_list *)malloc(sizeof(ts_vertex_list *)); |
| | | |
| | | if(N==0){ |
| | | err("Initialized vertex list with zero elements. Pointer set to NULL"); |
| | | vlist=NULL; |
| | | return NULL; |
| | | vlist->n=0; |
| | | vlist->vtx=NULL; |
| | | return vlist; |
| | | } |
| | | vlist=(ts_vertex **)malloc(N*sizeof(ts_vertex *)); |
| | | if(vlist==NULL) |
| | | fatal("Fatal error reserving memory space for vertex list! Could number of requsted vertices be too large?", 100); |
| | | |
| | | for(i=0;i<N;i++){ |
| | | vlist[i]=init_vertex(i); |
| | | } |
| | | |
| | | vlist->vtx=(ts_vertex **)malloc(N*sizeof(ts_vertex *)); |
| | | if(vlist->vtx==NULL) |
| | | fatal("Fatal error reserving memory space for vertex list! Could number of requsted vertices be too large?", 100); |
| | | for(i=0;i<N;i++) vlist->vtx[i]=init_vertex(i); |
| | | vlist->n=N; |
| | | return vlist; |
| | | } |
| | | |
| | |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | ts_bool vtx_list_free(ts_vertex_list *vlist){ |
| | | int i; |
| | | for(i=0;i<vlist->n;i++){ |
| | | vtx_free(VTX(vlist,i)); |
| | | } |
| | | free(vlist); |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | inline ts_double vertex_distance_sq(ts_vertex **vtx1, ts_vertex **vtx2){ |
| | | |
| | | |
| | | |
| | | inline ts_double vtx_distance_sq(ts_vertex **vtx1, ts_vertex **vtx2){ |
| | | ts_double dist; |
| | | #ifdef TS_DOUBLE_DOUBLE |
| | | dist=pow((*vtx1)->x-(*vtx2)->x,2) + pow((*vtx1)->y-(*vtx2)->y,2) + pow((*vtx1)->z-(*vtx2)->z,2); |
| | |
| | | * indexing the vertexes 0..N-1. |
| | | * @returns ts_bool value 1 on success, 0 otherwise |
| | | */ |
| | | ts_vertex **init_vertex_list(ts_uint N); |
| | | ts_vertex_list *init_vertex_list(ts_uint N); |
| | | ts_vertex *init_vertex(ts_uint idx); |
| | | ts_bool vtx_add_neighbour(ts_vertex **vtx, ts_vertex **nvtx); |
| | | ts_bool vtx_free(ts_vertex **vtx); |
| | | ts_bool vtx_list_free(ts_vertex_list *vlist); |
| | | #endif |