@@ -620,6 +620,7 @@ fn lc_query_set_to_poly_query_set<'a, F: Field, T: Clone + Ord>(
620
620
poly_query_set
621
621
}
622
622
623
+ /// Dummy doc
623
624
#[ cfg( test) ]
624
625
pub mod tests {
625
626
use crate :: * ;
@@ -645,6 +646,7 @@ pub mod tests {
645
646
sponge : fn ( ) -> S ,
646
647
}
647
648
649
+ /// Dummy doc
648
650
pub fn bad_degree_bound_test < F , P , PC , S > (
649
651
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
650
652
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
@@ -738,6 +740,7 @@ pub mod tests {
738
740
Ok ( ( ) )
739
741
}
740
742
743
+ /// Dummy doc
741
744
fn test_template < F , P , PC , S > ( info : TestInfo < F , P , S > ) -> Result < ( ) , PC :: Error >
742
745
where
743
746
F : PrimeField ,
@@ -879,6 +882,7 @@ pub mod tests {
879
882
Ok ( ( ) )
880
883
}
881
884
885
+ /// Dummy doc
882
886
fn equation_test_template < F , P , PC , S > ( info : TestInfo < F , P , S > ) -> Result < ( ) , PC :: Error >
883
887
where
884
888
F : PrimeField ,
@@ -1060,6 +1064,7 @@ pub mod tests {
1060
1064
Ok ( ( ) )
1061
1065
}
1062
1066
1067
+ /// Dummy doc
1063
1068
pub fn single_poly_test < F , P , PC , S > (
1064
1069
num_vars : Option < usize > ,
1065
1070
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
@@ -1088,6 +1093,7 @@ pub mod tests {
1088
1093
test_template :: < F , P , PC , S > ( info)
1089
1094
}
1090
1095
1096
+ /// Dummy doc
1091
1097
pub fn linear_poly_degree_bound_test < F , P , PC , S > (
1092
1098
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
1093
1099
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
@@ -1115,6 +1121,7 @@ pub mod tests {
1115
1121
test_template :: < F , P , PC , S > ( info)
1116
1122
}
1117
1123
1124
+ /// Dummy doc
1118
1125
pub fn single_poly_degree_bound_test < F , P , PC , S > (
1119
1126
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
1120
1127
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
@@ -1142,6 +1149,7 @@ pub mod tests {
1142
1149
test_template :: < F , P , PC , S > ( info)
1143
1150
}
1144
1151
1152
+ /// Dummy doc
1145
1153
pub fn quadratic_poly_degree_bound_multiple_queries_test < F , P , PC , S > (
1146
1154
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
1147
1155
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
@@ -1169,6 +1177,7 @@ pub mod tests {
1169
1177
test_template :: < F , P , PC , S > ( info)
1170
1178
}
1171
1179
1180
+ /// Dummy doc
1172
1181
pub fn single_poly_degree_bound_multiple_queries_test < F , P , PC , S > (
1173
1182
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
1174
1183
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
@@ -1196,6 +1205,7 @@ pub mod tests {
1196
1205
test_template :: < F , P , PC , S > ( info)
1197
1206
}
1198
1207
1208
+ /// Dummy doc
1199
1209
pub fn two_polys_degree_bound_single_query_test < F , P , PC , S > (
1200
1210
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
1201
1211
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
@@ -1223,6 +1233,7 @@ pub mod tests {
1223
1233
test_template :: < F , P , PC , S > ( info)
1224
1234
}
1225
1235
1236
+ /// Dummy doc
1226
1237
pub fn full_end_to_end_test < F , P , PC , S > (
1227
1238
num_vars : Option < usize > ,
1228
1239
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
@@ -1251,6 +1262,7 @@ pub mod tests {
1251
1262
test_template :: < F , P , PC , S > ( info)
1252
1263
}
1253
1264
1265
+ /// Dummy doc
1254
1266
pub fn full_end_to_end_equation_test < F , P , PC , S > (
1255
1267
num_vars : Option < usize > ,
1256
1268
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
@@ -1279,6 +1291,7 @@ pub mod tests {
1279
1291
equation_test_template :: < F , P , PC , S > ( info)
1280
1292
}
1281
1293
1294
+ /// Dummy doc
1282
1295
pub fn single_equation_test < F , P , PC , S > (
1283
1296
num_vars : Option < usize > ,
1284
1297
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
@@ -1307,6 +1320,7 @@ pub mod tests {
1307
1320
equation_test_template :: < F , P , PC , S > ( info)
1308
1321
}
1309
1322
1323
+ /// Dummy doc
1310
1324
pub fn two_equation_test < F , P , PC , S > (
1311
1325
num_vars : Option < usize > ,
1312
1326
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
@@ -1335,6 +1349,7 @@ pub mod tests {
1335
1349
equation_test_template :: < F , P , PC , S > ( info)
1336
1350
}
1337
1351
1352
+ /// Dummy doc
1338
1353
pub fn two_equation_degree_bound_test < F , P , PC , S > (
1339
1354
rand_poly : fn ( usize , Option < usize > , & mut ChaCha20Rng ) -> P ,
1340
1355
rand_point : fn ( Option < usize > , & mut ChaCha20Rng ) -> P :: Point ,
0 commit comments