1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Multi-Dimensional Offline Algorithms.

pub mod approx_graph_search;
pub mod convex_optimization;
pub mod optimal_graph_search;
pub mod static_fractional;
pub mod static_integral;

mod graph_search;

pub use graph_search::Vertice;

/// Lists the number of possible values of a config, from smallest to largest
/// as well as the indices of the upper bound of each dimension.
#[derive(Clone, Debug)]
pub struct Values {
    values: Vec<i32>,
    bound_indices: Vec<usize>,
}