dds_bridge/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

/// Data structures about bidding and scoring
pub mod contract;

/// Data structures about dealing and playing
pub mod deal;

/// Solver functions for double dummy problems
pub mod solver;