1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
//! # orx_funvec
//!
//! Traits to unify access to elements of n-dimensional vectors which are particularly useful in algorithms requiring both flexibility through abstraction over inputs and performance through monomorphization.
//!
//! ## Traits and Methods
//!
//! `trait FunVec<const DIM: usize, T>` represents `DIM` dimensional vectors of `T` requiring only the following method to be implemented:
//!
//! * `fn at<Idx: IntoIndex<DIM>>(&self, index: Idx) -> Option<T>`
//!
//! `FunVec` is different from, a generalization of, multi dimensional vectors due to the following:
//!
//! * The elements are not necessarily contagious or dense. They can rather represent any level of sparsity/density depending on the underlying type.
//! * Assumed to be of infinite length.
//!
//! Additionally, the trait provides with, auto implements, the `iter_over` method which allows to iterate over values of the vector at the given indices.
//!
//! The crate also provides the reference returning counterpart `FunVecRef<const DIM: usize, T>` requiring the method `fn ref_at<Idx: IntoIndex<DIM>>(&self, index: Idx) -> Option<&T>`.
//!
//! ## Implementations and Features
//!
//! This crate provides implementations for a wide range of types which are useful in algorithms. As mentioned above, implementing the trait for a new type is straightforward.
//!
//! Finally, the following implementations are optionally provided through features:
//!
//! * `ndarray` by `impl_ndarray` feature,
//! * `indexmap` by `impl_indexmap` feature,
//! * `smallvec` by `impl_smallvec` feature,
//! * or all implementations by `impl_all` feature.
//!
//! ## Motivation
//!
//! The motivation of the create is demonstrated by a use case in the following example.
//!
//! Assume we need to solve a network problem, namely minimum cost network flow (mcnf) problem ([wikipedia](https://en.wikipedia.org/wiki/Minimum-cost_flow_problem)). In the example, we ignore the graph input. Instead, we focus on the following inputs:
//!
//! * demands: each node of the graph has an amount of demand, which represents supply when negative.
//! * costs: each arc has an associated unit flow cost.
//! * capacities: each arc has a limited flow capacity.
//!
//! The mcnf problem provides a certain level of abstraction over inputs. For instance:
//! * If demands are non-zero only for two nodes, the problem is a single commodity problem; otherwise, it can represent a multi commodity mcnf problem.
//! * If demands are 1 and -1 for source and sink nodes and zero for all others, and if capacities are irrelevant, the problem becomes a shortest path problem.
//! * If we want to find the least number of arcs rather than the shortest path, we can use a costs matrix whose elements are 1 for all arcs.
//!
//! Abstraction over the inputs is powerful since it allows to implement a generic mcnf solver without the need to make assumptions on the concrete input types.
//!
//! ### Problem Setup
//!
//! Below we implement our fake solver generic over the input types.
//!
//! ```rust
//! use orx_funvec::*;
//!
//! const N: usize = 4;
//! type Unit = i32;
//!
//! #[derive(derive_new::new)]
//! struct FakeResult {
//!     sum_demands: i32,
//!     sum_costs: i32,
//!     sum_capacities: i32,
//! }
//!
//! #[derive(derive_new::new)]
//! struct FakeMcnfSolver<Demands, Costs, Capacities>
//! where
//!     Demands: FunVec<1, Unit>,
//!     Costs: FunVec<2, Unit>,
//!     Capacities: FunVec<2, Unit>,
//! {
//!     demands: Demands,
//!     costs: Costs,
//!     capacities: Capacities,
//! }
//!
//! impl<Demands, Costs, Capacities> FakeMcnfSolver<Demands, Costs, Capacities>
//! where
//!     Demands: FunVec<1, Unit>,
//!     Costs: FunVec<2, Unit>,
//!     Capacities: FunVec<2, Unit>,
//! {
//!     fn fake_solve(&self) -> FakeResult {
//!         let sum_demands = self
//!             .demands
//!             .iter_over(0..N)
//!             .flatten()
//!             .filter(|x| x > &0)
//!             .sum();
//!
//!         let mut sum_costs = 0;
//!         let mut sum_capacities = 0;
//!         for i in 0..N {
//!             for j in 0..N {
//!                 if let Some(cost) = self.costs.at([i, j]) {
//!                     sum_costs += cost;
//!                 }
//!
//!                 if let Some(capacity) = self.capacities.at((i, j)) {
//!                     sum_capacities += capacity;
//!                 }
//!             }
//!         }
//!         FakeResult::new(sum_demands, sum_costs, sum_capacities)
//!     }
//! }
//! ```
//!
//! ### Variant 1: Single Commodity
//!
//! In the below example, we use our generic solver with:
//!
//! * a single commodity problem where demands vector is a cheap closure (`Closure<_, usize, Unit>`),
//! * a complete costs matrix (`Vec<Vec<Unit>>`),
//! * a uniform capacity matrix represented as a cheap closure (`Box<dyn Fn((usize, usize)) -> Unit>`).
//!
//! ```rust
//! # use orx_funvec::*;
//! #
//! # const N: usize = 4;
//! # type Unit = i32;
//! #
//! # #[derive(derive_new::new)]
//! # struct FakeResult {
//! #     sum_demands: i32,
//! #     sum_costs: i32,
//! #     sum_capacities: i32,
//! # }
//! #
//! # #[derive(derive_new::new)]
//! # struct FakeMcnfSolver<Demands, Costs, Capacities>
//! # where
//! #     Demands: FunVec<1, Unit>,
//! #     Costs: FunVec<2, Unit>,
//! #     Capacities: FunVec<2, Unit>,
//! # {
//! #     demands: Demands,
//! #     costs: Costs,
//! #     capacities: Capacities,
//! # }
//! #
//! # impl<Demands, Costs, Capacities> FakeMcnfSolver<Demands, Costs, Capacities>
//! # where
//! #     Demands: FunVec<1, Unit>,
//! #     Costs: FunVec<2, Unit>,
//! #     Capacities: FunVec<2, Unit>,
//! # {
//! #     fn fake_solve(&self) -> FakeResult {
//! #         let sum_demands = self
//! #             .demands
//! #             .iter_over(0..N)
//! #             .flatten()
//! #             .filter(|x| x > &0)
//! #             .sum();
//! #
//! #         let mut sum_costs = 0;
//! #         let mut sum_capacities = 0;
//! #         for i in 0..N {
//! #             for j in 0..N {
//! #                 if let Some(cost) = self.costs.at([i, j]) {
//! #                     sum_costs += cost;
//! #                 }
//! #
//! #                 if let Some(capacity) = self.capacities.at((i, j)) {
//! #                     sum_capacities += capacity;
//! #                 }
//! #             }
//! #         }
//! #         FakeResult::new(sum_demands, sum_costs, sum_capacities)
//! #     }
//! # }
//! use orx_closure::Capture;
//!
//! fn some_if_not_self_edge(ij: (usize, usize), value: i32) -> Option<i32> {
//!     if ij.0 == ij.1 {
//!         None
//!     } else {
//!         Some(value)
//!     }
//! }
//!
//! // mcnf problem with a single source and sink
//! let source = 0;
//! let sink = 2;
//! let demand = 10;
//!
//! // demands vector as a no-box orx_closure::Closure
//! let demands =
//!     Capture((source, sink, demand)).fun(|(s, t, d), i: usize| match (i == *s, i == *t) {
//!         (true, _) => Some(*d),
//!         (_, true) => Some(-*d),
//!         _ => None,
//!     });
//!
//! // complete cost matrix
//! let costs = vec![
//!     vec![0, 1, 2, 3],
//!     vec![2, 0, 2, 2],
//!     vec![7, 10, 0, 9],
//!     vec![1, 1, 1, 0],
//! ];
//!
//! // capacities matrix as a box dyn Fn
//! let capacities: Box<dyn Fn((usize, usize)) -> Option<i32>> =
//!     Box::new(|ij: (usize, usize)| some_if_not_self_edge(ij, 100));
//!
//! // simulate & assert
//! let solver = FakeMcnfSolver::new(demands, costs, capacities);
//! let result = solver.fake_solve();
//!
//! assert_eq!(10, result.sum_demands);
//! assert_eq!(41, result.sum_costs);
//! assert_eq!((N * (N - 1) * 100) as i32, result.sum_capacities);
//! ```
//!
//! ### Variant 2: Multi Commodity
//!
//! In the second example variant, we use our solver with:
//!
//! * a multi commodity problem where demands vector is computed by a closure on the fly (`Closure<_, usize, Unit>`),
//! * arc costs are computed as Euclidean distances by a closure using captured node locations (`Closure<_, (usize, usize), Unit>`),
//! * a sparse capacity matrix using hash map (`Vec<HashMap<usize, Unit>>`).
//!
//! ```rust
//! # use orx_funvec::*;
//! #
//! # const N: usize = 4;
//! # type Unit = i32;
//! #
//! # #[derive(derive_new::new)]
//! # struct FakeResult {
//! #     sum_demands: i32,
//! #     sum_costs: i32,
//! #     sum_capacities: i32,
//! # }
//! #
//! # #[derive(derive_new::new)]
//! # struct FakeMcnfSolver<Demands, Costs, Capacities>
//! # where
//! #     Demands: FunVec<1, Unit>,
//! #     Costs: FunVec<2, Unit>,
//! #     Capacities: FunVec<2, Unit>,
//! # {
//! #     demands: Demands,
//! #     costs: Costs,
//! #     capacities: Capacities,
//! # }
//! #
//! # impl<Demands, Costs, Capacities> FakeMcnfSolver<Demands, Costs, Capacities>
//! # where
//! #     Demands: FunVec<1, Unit>,
//! #     Costs: FunVec<2, Unit>,
//! #     Capacities: FunVec<2, Unit>,
//! # {
//! #     fn fake_solve(&self) -> FakeResult {
//! #         let sum_demands = self
//! #             .demands
//! #             .iter_over(0..N)
//! #             .flatten()
//! #             .filter(|x| x > &0)
//! #             .sum();
//! #
//! #         let mut sum_costs = 0;
//! #         let mut sum_capacities = 0;
//! #         for i in 0..N {
//! #             for j in 0..N {
//! #                 if let Some(cost) = self.costs.at([i, j]) {
//! #                     sum_costs += cost;
//! #                 }
//! #
//! #                 if let Some(capacity) = self.capacities.at((i, j)) {
//! #                     sum_capacities += capacity;
//! #                 }
//! #             }
//! #         }
//! #         FakeResult::new(sum_demands, sum_costs, sum_capacities)
//! #     }
//! # }
//! use orx_closure::Capture;
//! use std::collections::HashMap;
//!
//! fn get_euclidean_distance(location1: (f64, f64), location2: (f64, f64)) -> i32 {
//!     let (x1, y1) = location1;
//!     let (x2, y2) = location2;
//!     (f64::powf(x1 - x2, 2.0) + f64::powf(y1 - y2, 2.0)).sqrt() as i32
//! }
//!
//! // multi-commodity mcnf problem
//! struct Commodity {
//!     origin: usize,
//!     destination: usize,
//!     amount: Unit,
//! }
//! let commodities = vec![
//!     Commodity {
//!         origin: 0,
//!         destination: 2,
//!         amount: 10,
//!     },
//!     Commodity {
//!         origin: 1,
//!         destination: 3,
//!         amount: 20,
//!     },
//! ];
//!
//! // demands vector as a no-box orx_closure::Closure capturing a reference of commodities collection
//! let demands = Capture(&commodities).fun(|com, i: usize| {
//!     Some(
//!         com.iter()
//!             .map(|c| {
//!                 if c.origin == i {
//!                     c.amount
//!                 } else if c.destination == i {
//!                     -c.amount
//!                 } else {
//!                     0
//!                 }
//!             })
//!             .sum::<i32>(),
//!     )
//! });
//!
//! // costs computed as Euclidean distances of node coordinates
//! let locations = vec![(0.0, 3.0), (3.0, 5.0), (7.0, 2.0), (1.0, 1.0)];
//! let costs = Capture(locations).fun(|loc, (i, j): (usize, usize)| {
//!     loc.get(i)
//!         .and_then(|l1| loc.get(j).map(|l2| (l1, l2)))
//!         .map(|(l1, l2)| get_euclidean_distance(*l1, *l2))
//! });
//!
//! // capacities defined as a Vec of HashMap to take advantage of sparsity in the graph
//! let capacities = vec![
//!     HashMap::from_iter([(1, 100), (3, 200)].into_iter()),
//!     HashMap::from_iter([(3, 300)].into_iter()),
//!     HashMap::from_iter([(0, 400), (3, 500)].into_iter()),
//!     HashMap::new(),
//! ];
//!
//! // simulate & assert
//! let solver = FakeMcnfSolver::new(demands, costs, capacities);
//! let result = solver.fake_solve();
//!
//! assert_eq!(30, result.sum_demands);
//! assert_eq!(54, result.sum_costs);
//! assert_eq!(1500, result.sum_capacities);
//! ```
//!
//! ### Variant 3: Shortest Distance
//!
//! Next, we solve a shortest distance problem with the generic solver:
//!
//! * demands vector is all zeros except for the source and sink represented as a cheap closure (`Closure<_, usize, Unit>`),
//! * arc costs are computed as Euclidean distances by a closure using captured node locations (`Closure<_, (usize, usize), Unit>`),
//! * capacities are all-ones-matrix represented by a scalar value which has the memory size of a number and `at` calls will be replaced by the inlined value (`ScalarAsVec<Unit>`).
//!
//! ```rust
//! # use orx_funvec::*;
//! #
//! # const N: usize = 4;
//! # type Unit = i32;
//! #
//! # #[derive(derive_new::new)]
//! # struct FakeResult {
//! #     sum_demands: i32,
//! #     sum_costs: i32,
//! #     sum_capacities: i32,
//! # }
//! #
//! # #[derive(derive_new::new)]
//! # struct FakeMcnfSolver<Demands, Costs, Capacities>
//! # where
//! #     Demands: FunVec<1, Unit>,
//! #     Costs: FunVec<2, Unit>,
//! #     Capacities: FunVec<2, Unit>,
//! # {
//! #     demands: Demands,
//! #     costs: Costs,
//! #     capacities: Capacities,
//! # }
//! #
//! # impl<Demands, Costs, Capacities> FakeMcnfSolver<Demands, Costs, Capacities>
//! # where
//! #     Demands: FunVec<1, Unit>,
//! #     Costs: FunVec<2, Unit>,
//! #     Capacities: FunVec<2, Unit>,
//! # {
//! #     fn fake_solve(&self) -> FakeResult {
//! #         let sum_demands = self
//! #             .demands
//! #             .iter_over(0..N)
//! #             .flatten()
//! #             .filter(|x| x > &0)
//! #             .sum();
//! #
//! #         let mut sum_costs = 0;
//! #         let mut sum_capacities = 0;
//! #         for i in 0..N {
//! #             for j in 0..N {
//! #                 if let Some(cost) = self.costs.at([i, j]) {
//! #                     sum_costs += cost;
//! #                 }
//! #
//! #                 if let Some(capacity) = self.capacities.at((i, j)) {
//! #                     sum_capacities += capacity;
//! #                 }
//! #             }
//! #         }
//! #         FakeResult::new(sum_demands, sum_costs, sum_capacities)
//! #     }
//! # }
//! #
//! # fn get_euclidean_distance(location1: (f64, f64), location2: (f64, f64)) -> i32 {
//! #    let (x1, y1) = location1;
//! #    let (x2, y2) = location2;
//! #    (f64::powf(x1 - x2, 2.0) + f64::powf(y1 - y2, 2.0)).sqrt() as i32
//! # }
//! use orx_closure::Capture;
//!
//! let source = 3;
//! let sink = 1;
//!
//! // demands vector as a no-box orx_closure::Closure
//! let demands = Capture((source, sink)).fun(|(s, t), i: usize| match (i == *s, i == *t) {
//!     (true, _) => Some(1),
//!     (_, true) => Some(-1),
//!     _ => None,
//! });
//!
//! // costs computed as Euclidean distances of node coordinates
//! let locations = vec![(0.0, 3.0), (3.0, 5.0), (7.0, 2.0), (1.0, 1.0)];
//! let costs = Capture(locations).fun(|loc, (i, j): (usize, usize)| {
//!     loc.get(i)
//!         .and_then(|l1| loc.get(j).map(|l2| (l1, l2)))
//!         .map(|(l1, l2)| get_euclidean_distance(*l1, *l2))
//! });
//!
//! // uniform capacities for all edges
//! let capacities = ScalarAsVec(1);
//!
//! // simulate & assert
//! let solver = FakeMcnfSolver::new(demands, costs, capacities);
//! let result = solver.fake_solve();
//!
//! assert_eq!(1, result.sum_demands);
//! assert_eq!(54, result.sum_costs);
//! assert_eq!((N * N) as i32, result.sum_capacities);
//! ```

#![warn(
    missing_docs,
    clippy::unwrap_in_result,
    clippy::unwrap_used,
    clippy::panic,
    clippy::panic_in_result_fn,
    clippy::float_cmp,
    clippy::float_cmp_const,
    clippy::missing_panics_doc,
    clippy::todo
)]

mod d1;
mod d2;
mod d3;
mod d4;
mod d_any;
mod empty_vec;
mod funvec_ref;
mod funvec_val;
mod index;
mod iter_over_ref;
mod iter_over_val;
mod scalar_as_vec;

pub use empty_vec::EmptyVec;
pub use funvec_ref::FunVecRef;
pub use funvec_val::FunVec;
pub use index::{FromIndex, IntoIndex};
pub use scalar_as_vec::ScalarAsVec;