前提・実現したいこと
配列、pheromoneを初期化したい。
発生している問題・エラーメッセージ
initial_pheromoneでの セグメントエラー
該当のソースコード
C言語
1ファイル as.c 2#include <stdio.h> 3#include <math.h> 4#include <limits.h> 5#include <assert.h> 6#include <string.h> 7#include <stdlib.h> 8#include <time.h> 9 10#include "sub.h" 11 12double pheromone_0; 13 double alpha; 14 double beta; 15 double rho; 16 double q_0; 17 int n; 18 int nant; 19 20void erace(void){ 21 22 alpha=1.0; 23 beta=1.0; //ヒューリスティック情報の優先度 24 rho=0.5; //フェロモン蒸発率 25 q_0=0; 26 27 pheromone_0=1.0; 28printf("pheromone_0;%f\n",pheromone_0); 29 initial_pheromone( pheromone_0); 30printf("%f\n",pheromone[0][0]); 31} 32 33int main(int argc, char *argv[]){ 34 35 int i; 36 37 n=51; 38 39 nant=10; //アリの数 40 41 42 start_program(); 43 44 erace(); 45 46 47 48 49 50 51 for(i=0;i<n;i++){ 52 free(pheromone[i]); 53 free(total[i]); 54 } 55 free(total); 56 free(pheromone); 57 return(0); 58}
sub.c #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <limits.h> #include "tesb.h" ant_struct *ant; ant_struct *bestant; double **pheromone; double **total; void initial_pheromone(double initial_trail) //フェロモンの初期化 { long int i, j; for ( i = 0 ; i < n ; i++ ) { for ( j =0 ; j <=i ; j++ ) { pheromone[i][j] = initial_trail; pheromone[j][i]=pheromone[i][j]; } } } void start_program(void) { int i,j; if((ant=malloc(sizeof(ant_struct)*nant+sizeof(ant_struct *)*nant))==NULL){ printf("out of memory,exit"); exit(1); } for(i=0;i<nant;i++){ ant[i].tour=calloc(n+1,sizeof(int)); ant[i].visited=calloc(n,sizeof(char)); } if((bestant=malloc(sizeof(ant_struct)))==NULL){ printf("out of memory,exit"); exit(1); } bestant->tour=calloc(n+1,sizeof(int)); bestant->visited=calloc(n,sizeof(char)); pheromone=malloc(sizeof(double *)*n); for(i=0;i<n;i++){ pheromone[i]=malloc(sizeof(double*)*n); } total=malloc(sizeof(double *)*n); for(i=0;i<n;i++){ total[i]=malloc(sizeof(double*)*n); } }
ファイル sub.h typedef struct { int *tour; char *visited; int tour_length; } ant_struct; extern ant_struct *ant; extern ant_struct *bestant; extern double **pheromone; extern int nant; extern double rho; //フェロモン蒸発率 extern double alpha; //フェロモンの重要性 extern double beta; //ヒューリスティックの重要性 extern double q_0; //最良の道を選ぶ確率 int *best_ant_score; void compute_total(void); void initial_pheromone(double initial_trail); void start_program(void); extern double pheromone_0; extern int n; extern double **pheromone; extern double **total;
試したこと
配列が問題なのかと思って配列を表示してみたりしたのですが配列のメモリもしっかり用意できていました。
修正してみたのですがまだエラーがでてしまいます。明日またmallocを使わない方法でやってみようと思います
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/28 11:03
2019/11/29 02:22
2019/11/29 02:36