aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-ats-solver-eval.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-02-10 23:24:01 +0000
committerChristian Grothoff <christian@grothoff.org>2015-02-10 23:24:01 +0000
commit1c323bd4cbb388a9e7515a1f733a3062bf093aee (patch)
tree7cc525d79149d44840b9f7a0040aaf3e69ecd665 /src/ats/gnunet-ats-solver-eval.h
parentaedaaed687db1ff20b447378f01ad7306921450c (diff)
downloadgnunet-1c323bd4cbb388a9e7515a1f733a3062bf093aee.tar.gz
gnunet-1c323bd4cbb388a9e7515a1f733a3062bf093aee.zip
fixing #3657 (replace ATS_Information with struct), but WIHTOUT fixing ATS testcases yet
Diffstat (limited to 'src/ats/gnunet-ats-solver-eval.h')
-rw-r--r--src/ats/gnunet-ats-solver-eval.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ats/gnunet-ats-solver-eval.h b/src/ats/gnunet-ats-solver-eval.h
index bc5083e34..44ccfe081 100644
--- a/src/ats/gnunet-ats-solver-eval.h
+++ b/src/ats/gnunet-ats-solver-eval.h
@@ -120,8 +120,8 @@ struct LoggingPeer
120 120
121 long long unsigned int id; 121 long long unsigned int id;
122 struct GNUNET_PeerIdentity peer_id; 122 struct GNUNET_PeerIdentity peer_id;
123 double pref_abs[GNUNET_ATS_PreferenceCount]; 123 double pref_abs[GNUNET_ATS_PREFERENCE_END];
124 double pref_norm[GNUNET_ATS_PreferenceCount]; 124 double pref_norm[GNUNET_ATS_PREFERENCE_END];
125 int is_requested; 125 int is_requested;
126 126
127 struct LoggingAddress *addr_head; 127 struct LoggingAddress *addr_head;
@@ -215,7 +215,7 @@ struct GNUNET_ATS_TEST_Operation
215 enum OperationType type; 215 enum OperationType type;
216 enum GeneratorType gen_type; 216 enum GeneratorType gen_type;
217 enum GNUNET_ATS_PreferenceKind pref_type; 217 enum GNUNET_ATS_PreferenceKind pref_type;
218 enum GNUNET_ATS_Property prop_type; 218 // enum GNUNET_ATS_Property prop_type;
219}; 219};
220 220
221struct Episode 221struct Episode