ibdgen 0.1.0

Generate incomplete block designs for experiments with prohibited pairs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::block_array::BlockArray;
use crate::coincidence_matrix::CoincidenceMatrix;

#[derive(Debug, Default)]
pub struct BlockResult {
    pub best_log_det: f64,
    pub best_block_array: BlockArray,
    pub best_d: f64,
    pub best_diagonality: f64,
    pub best_coincidence: CoincidenceMatrix
}